diff --git a/extension/CHANGELOG.md b/extension/CHANGELOG.md index 7fd780dc..9474ce0d 100644 --- a/extension/CHANGELOG.md +++ b/extension/CHANGELOG.md @@ -1,5 +1,17 @@ # remotedev-redux-devtools-extension +## 3.0.13 + +### Patch Changes + +- Updated dependencies [8a7eae4] + - react-json-tree@0.17.0 + - @redux-devtools/app@2.2.0 + - @redux-devtools/slider-monitor@4.0.0 + - @redux-devtools/ui@1.3.0 + - @redux-devtools/core@3.13.0 + - @redux-devtools/utils@2.0.0 + ## 3.0.12 ### Patch Changes diff --git a/extension/package.json b/extension/package.json index 1599a5ef..4f8d5599 100644 --- a/extension/package.json +++ b/extension/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "remotedev-redux-devtools-extension", - "version": "3.0.12", + "version": "3.0.13", "description": "Redux Developer Tools for debugging application state changes.", "homepage": "https://github.com/reduxjs/redux-devtools/tree/master/extension", "license": "MIT", @@ -30,57 +30,56 @@ }, "dependencies": { "@babel/polyfill": "^7.12.1", - "@redux-devtools/app": "^2.1.4", - "@redux-devtools/core": "^3.12.0", + "@redux-devtools/app": "^2.2.0", + "@redux-devtools/core": "^3.13.0", "@redux-devtools/instrument": "^2.1.0", "@redux-devtools/serialize": "^0.4.1", - "@redux-devtools/slider-monitor": "^3.1.2", - "@redux-devtools/ui": "^1.2.1", - "@redux-devtools/utils": "^1.2.1", + "@redux-devtools/slider-monitor": "^4.0.0", + "@redux-devtools/ui": "^1.3.0", + "@redux-devtools/utils": "^2.0.0", "@types/jsan": "^3.1.2", "jsan": "^3.1.14", "localforage": "^1.10.0", "lodash": "^4.17.21", - "react": "^17.0.2", - "react-dom": "^17.0.2", - "react-icons": "^4.3.1", - "react-is": "^17.0.2", - "react-json-tree": "^0.16.2", - "react-redux": "^7.2.8", + "react": "^18.2.0", + "react-dom": "^18.2.0", + "react-icons": "^4.4.0", + "react-is": "^18.2.0", + "react-json-tree": "^0.17.0", + "react-redux": "^8.0.2", "redux": "^4.2.0", "redux-persist": "^6.0.0", "styled-components": "^5.3.5" }, "devDependencies": { - "@babel/core": "^7.17.10", - "@babel/preset-env": "^7.17.10", - "@babel/preset-react": "^7.16.7", - "@babel/preset-typescript": "^7.16.7", + "@babel/core": "^7.18.5", + "@babel/preset-env": "^7.18.2", + "@babel/preset-react": "^7.17.12", + "@babel/preset-typescript": "^7.17.12", "@babel/register": "^7.17.7", "@testing-library/jest-dom": "^5.16.4", - "@testing-library/react": "^12.1.5", - "@types/chrome": "^0.0.184", + "@testing-library/react": "^13.3.0", + "@types/chrome": "^0.0.191", "@types/lodash": "^4.14.182", - "@types/react": "^17.0.45", - "@types/react-dom": "^17.0.16", - "@types/react-redux": "^7.1.24", + "@types/react": "^18.0.14", + "@types/react-dom": "^18.0.5", "@types/styled-components": "^5.1.25", "babel-loader": "^8.2.5", "bestzip": "^2.2.1", - "chromedriver": "^100.0.0", - "copy-webpack-plugin": "^9.1.0", + "chromedriver": "^102.0.0", + "copy-webpack-plugin": "^11.0.0", "cross-env": "^7.0.3", "css-loader": "^6.7.1", - "electron": "^18.2.0", - "eslint": "^8.15.0", + "electron": "^19.0.6", + "eslint": "^8.18.0", "eslint-config-airbnb": "^19.0.4", "eslint-plugin-import": "^2.26.0", - "eslint-plugin-jsx-a11y": "^6.5.1", - "eslint-plugin-react": "~7.28.0", - "eslint-plugin-react-hooks": "^4.5.0", + "eslint-plugin-jsx-a11y": "^6.6.0", + "eslint-plugin-react": "^7.30.1", + "eslint-plugin-react-hooks": "^4.6.0", "file-loader": "^6.2.0", "fork-ts-checker-webpack-plugin": "^7.2.11", - "immutable": "^4.0.0", + "immutable": "^4.1.0", "jest": "^27.5.1", "path-browserify": "^1.0.1", "pug-html-loader": "^1.1.5", @@ -88,12 +87,12 @@ "react-transform-catch-errors": "^1.0.2", "react-transform-hmr": "^1.0.4", "rimraf": "^3.0.2", - "selenium-webdriver": "^4.1.2", + "selenium-webdriver": "^4.3.0", "sinon-chrome": "^3.0.1", "style-loader": "^3.3.1", - "ts-jest": "^27.1.4", - "typescript": "~4.6.4", - "webpack": "^5.72.0", - "webpack-cli": "^4.9.2" + "ts-jest": "^27.1.5", + "typescript": "~4.7.4", + "webpack": "^5.73.0", + "webpack-cli": "^4.10.0" } } diff --git a/extension/src/browser/extension/devpanel/index.tsx b/extension/src/browser/extension/devpanel/index.tsx index af1823ad..af4fbfc3 100644 --- a/extension/src/browser/extension/devpanel/index.tsx +++ b/extension/src/browser/extension/devpanel/index.tsx @@ -1,5 +1,5 @@ import React, { CSSProperties } from 'react'; -import { render, unmountComponentAtNode } from 'react-dom'; +import { createRoot, Root } from 'react-dom/client'; import { Provider } from 'react-redux'; import { Persistor } from 'redux-persist'; import { REMOVE_INSTANCE, StoreAction } from '@redux-devtools/app'; @@ -27,23 +27,21 @@ let naTimeout: NodeJS.Timeout; const isChrome = navigator.userAgent.indexOf('Firefox') === -1; -function renderDevTools() { - const node = document.getElementById('root'); - unmountComponentAtNode(node!); +function renderDevTools(root: Root) { + root.unmount(); clearTimeout(naTimeout); ({ store, persistor } = configureStore(position, bgConnection)); - render( + root.render( - , - node + ); rendered = true; } -function renderNA() { +function renderNA(root: Root) { if (rendered === false) return; rendered = false; naTimeout = setTimeout(() => { @@ -76,32 +74,31 @@ function renderNA() { ); } - const node = document.getElementById('root'); - unmountComponentAtNode(node!); - render(message, node); + root.unmount(); + root.render(message); store = undefined; }); } else { - const node = document.getElementById('root'); - unmountComponentAtNode(node!); - render(message, node); + root.unmount(); + root.render(message); store = undefined; } }, 3500); } function init(id: number) { - renderNA(); + const root = createRoot(document.getElementById('root')!); + renderNA(root); bgConnection = chrome.runtime.connect({ name: id ? id.toString() : undefined, }); bgConnection.onMessage.addListener( >(message: PanelMessage) => { if (message.type === 'NA') { - if (message.id === id) renderNA(); + if (message.id === id) renderNA(root); else store!.dispatch({ type: REMOVE_INSTANCE, id: message.id }); } else { - if (!rendered) renderDevTools(); + if (!rendered) renderDevTools(root); store!.dispatch(message); } } diff --git a/extension/src/browser/extension/options/index.tsx b/extension/src/browser/extension/options/index.tsx index 55805985..b344b86b 100644 --- a/extension/src/browser/extension/options/index.tsx +++ b/extension/src/browser/extension/options/index.tsx @@ -1,5 +1,5 @@ import React from 'react'; -import { render } from 'react-dom'; +import { createRoot } from 'react-dom/client'; import OptionsComponent from './Options'; import { Options } from './syncOptions'; @@ -13,10 +13,8 @@ chrome.runtime.getBackgroundPage((background) => { }; const renderOptions = (options: Options) => { - render( - , - document.getElementById('root') - ); + const root = createRoot(document.getElementById('root')!); + root.render(); }; syncOptions.subscribe(renderOptions); diff --git a/extension/src/browser/extension/window/index.tsx b/extension/src/browser/extension/window/index.tsx index 4fc8d38a..41b72b08 100644 --- a/extension/src/browser/extension/window/index.tsx +++ b/extension/src/browser/extension/window/index.tsx @@ -1,5 +1,5 @@ import React from 'react'; -import { render } from 'react-dom'; +import { createRoot } from 'react-dom/client'; import { Provider } from 'react-redux'; import { PersistGate } from 'redux-persist/integration/react'; import { UPDATE_STATE } from '@redux-devtools/app'; @@ -25,13 +25,13 @@ chrome.runtime.getBackgroundPage((window) => { bg.onMessage.addListener(update); update(); - render( + const root = createRoot(document.getElementById('root')!); + root.render( - , - document.getElementById('root') + ); }); diff --git a/extension/src/browser/extension/window/remote.tsx b/extension/src/browser/extension/window/remote.tsx index 4f8b196b..f91c372a 100644 --- a/extension/src/browser/extension/window/remote.tsx +++ b/extension/src/browser/extension/window/remote.tsx @@ -1,5 +1,5 @@ import React from 'react'; -import { render } from 'react-dom'; +import { createRoot } from 'react-dom/client'; import { Root } from '@redux-devtools/app'; import '../../views/remote.pug'; @@ -15,7 +15,8 @@ chrome.storage.local.get( }, (options) => { const AppAsAny = Root as any; - render( + const root = createRoot(document.getElementById('root')!); + root.render( , - document.getElementById('root') + /> ); } ); diff --git a/package.json b/package.json index 5e58df1a..c2024fcb 100644 --- a/package.json +++ b/package.json @@ -1,21 +1,21 @@ { "private": true, "devDependencies": { - "@babel/core": "^7.17.10", - "@babel/eslint-parser": "^7.17.0", - "@changesets/cli": "^2.22.0", - "@typescript-eslint/eslint-plugin": "^5.22.0", - "@typescript-eslint/parser": "^5.22.0", - "eslint": "^8.15.0", + "@babel/core": "^7.18.5", + "@babel/eslint-parser": "^7.18.2", + "@changesets/cli": "^2.23.0", + "@typescript-eslint/eslint-plugin": "^5.29.0", + "@typescript-eslint/parser": "^5.29.0", + "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-jest": "^26.1.5", - "eslint-plugin-react": "~7.28.0", - "eslint-plugin-react-hooks": "^4.5.0", + "eslint-plugin-jest": "^26.5.3", + "eslint-plugin-react": "^7.30.1", + "eslint-plugin-react-hooks": "^4.6.0", "jest": "^27.5.1", - "prettier": "2.6.2", - "typescript": "~4.6.4", - "nx": "^14.1.4", - "@nrwl/nx-cloud": "^14.0.3" + "prettier": "2.7.1", + "typescript": "~4.7.4", + "nx": "^14.3.6", + "@nrwl/nx-cloud": "^14.1.2" }, "scripts": { "format": "prettier --write .", @@ -38,10 +38,16 @@ "packages/redux-devtools-rtk-query-monitor/demo", "packages/redux-devtools-slider-monitor/examples/todomvc" ], - "packageManager": "pnpm@6.32.12", + "packageManager": "pnpm@7.3.0", "pnpm": { "overrides": { "@babel/highlight>chalk": "Methuselah96/chalk#v2-without-process" + }, + "peerDependencyRules": { + "allowedVersions": { + "react": "18", + "react-dom": "18" + } } } } diff --git a/packages/d3-state-visualizer/examples/tree/package.json b/packages/d3-state-visualizer/examples/tree/package.json index f9d9157d..ab15dfac 100644 --- a/packages/d3-state-visualizer/examples/tree/package.json +++ b/packages/d3-state-visualizer/examples/tree/package.json @@ -29,22 +29,22 @@ "map2tree": "^2.1.0" }, "devDependencies": { - "@babel/core": "^7.17.10", - "@babel/preset-env": "^7.17.10", - "@babel/preset-typescript": "^7.16.7", - "@types/node": "^16.11.33", - "@typescript-eslint/eslint-plugin": "^5.22.0", - "@typescript-eslint/parser": "^5.22.0", + "@babel/core": "^7.18.5", + "@babel/preset-env": "^7.18.2", + "@babel/preset-typescript": "^7.17.12", + "@types/node": "^16.11.41", + "@typescript-eslint/eslint-plugin": "^5.29.0", + "@typescript-eslint/parser": "^5.29.0", "babel-loader": "^8.2.5", "cross-env": "^7.0.3", - "eslint": "^8.15.0", + "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", "fork-ts-checker-webpack-plugin": "^7.2.11", "html-webpack-plugin": "^5.5.0", - "ts-node": "^10.7.0", - "typescript": "~4.6.4", - "webpack": "^5.72.0", - "webpack-cli": "^4.9.2", - "webpack-dev-server": "^4.9.0" + "ts-node": "^10.8.1", + "typescript": "~4.7.4", + "webpack": "^5.73.0", + "webpack-cli": "^4.10.0", + "webpack-dev-server": "^4.9.2" } } diff --git a/packages/d3-state-visualizer/package.json b/packages/d3-state-visualizer/package.json index 20e20fd1..71d341da 100644 --- a/packages/d3-state-visualizer/package.json +++ b/packages/d3-state-visualizer/package.json @@ -42,7 +42,7 @@ "prepublish": "pnpm run type-check && pnpm run lint" }, "dependencies": { - "@babel/runtime": "^7.17.9", + "@babel/runtime": "^7.18.3", "@types/d3": "^3.5.47", "d3": "^3.5.17", "d3tooltip": "^2.1.0", @@ -52,24 +52,25 @@ }, "devDependencies": { "@babel/cli": "^7.17.10", - "@babel/core": "^7.17.10", - "@babel/eslint-parser": "^7.17.0", - "@babel/plugin-transform-runtime": "^7.17.10", - "@babel/preset-env": "^7.17.10", - "@babel/preset-typescript": "^7.16.7", + "@babel/core": "^7.18.5", + "@babel/eslint-parser": "^7.18.2", + "@babel/plugin-transform-runtime": "^7.18.5", + "@babel/preset-env": "^7.18.2", + "@babel/preset-typescript": "^7.17.12", "@rollup/plugin-babel": "^5.3.1", - "@rollup/plugin-commonjs": "^22.0.0", + "@rollup/plugin-commonjs": "^22.0.1", "@rollup/plugin-node-resolve": "^13.3.0", - "@types/ramda": "^0.28.12", - "@typescript-eslint/eslint-plugin": "^5.22.0", - "@typescript-eslint/parser": "^5.22.0", - "eslint": "^8.15.0", + "@types/node": "^16.11.41", + "@types/ramda": "^0.28.14", + "@typescript-eslint/eslint-plugin": "^5.29.0", + "@typescript-eslint/parser": "^5.29.0", + "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", "rimraf": "^3.0.2", - "rollup": "^2.72.1", + "rollup": "^2.75.7", "rollup-plugin-terser": "^7.0.2", - "rollup-plugin-typescript2": "^0.31.2", + "rollup-plugin-typescript2": "^0.32.1", "tslib": "^2.4.0", - "typescript": "~4.6.4" + "typescript": "~4.7.4" } } diff --git a/packages/d3tooltip/package.json b/packages/d3tooltip/package.json index f779d550..92fbe6b4 100644 --- a/packages/d3tooltip/package.json +++ b/packages/d3tooltip/package.json @@ -38,32 +38,33 @@ "prepublish": "pnpm run type-check && pnpm run lint" }, "dependencies": { - "@babel/runtime": "^7.17.9", + "@babel/runtime": "^7.18.3", "ramda": "^0.28.0" }, "devDependencies": { "@babel/cli": "^7.17.10", - "@babel/core": "^7.17.10", - "@babel/eslint-parser": "^7.17.0", - "@babel/plugin-transform-runtime": "^7.17.10", - "@babel/preset-env": "^7.17.10", - "@babel/preset-typescript": "^7.16.7", + "@babel/core": "^7.18.5", + "@babel/eslint-parser": "^7.18.2", + "@babel/plugin-transform-runtime": "^7.18.5", + "@babel/preset-env": "^7.18.2", + "@babel/preset-typescript": "^7.17.12", "@rollup/plugin-babel": "^5.3.1", - "@rollup/plugin-commonjs": "^22.0.0", + "@rollup/plugin-commonjs": "^22.0.1", "@rollup/plugin-node-resolve": "^13.3.0", "@types/d3": "^3.5.47", - "@types/ramda": "^0.28.12", - "@typescript-eslint/eslint-plugin": "^5.22.0", - "@typescript-eslint/parser": "^5.22.0", + "@types/node": "^16.11.41", + "@types/ramda": "^0.28.14", + "@typescript-eslint/eslint-plugin": "^5.29.0", + "@typescript-eslint/parser": "^5.29.0", "d3": "^3.5.17", - "eslint": "^8.15.0", + "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", "rimraf": "^3.0.2", - "rollup": "^2.72.1", + "rollup": "^2.75.7", "rollup-plugin-terser": "^7.0.2", - "rollup-plugin-typescript2": "^0.31.2", + "rollup-plugin-typescript2": "^0.32.1", "tslib": "^2.4.0", - "typescript": "~4.6.4" + "typescript": "~4.7.4" }, "peerDependencies": { "@types/d3": "^3.5.47", diff --git a/packages/map2tree/package.json b/packages/map2tree/package.json index 64f82792..b25f59a8 100755 --- a/packages/map2tree/package.json +++ b/packages/map2tree/package.json @@ -42,34 +42,35 @@ "prepublish": "pnpm run type-check && pnpm run lint && pnpm run test" }, "dependencies": { - "@babel/runtime": "^7.17.9", + "@babel/runtime": "^7.18.3", "lodash": "^4.17.21" }, "devDependencies": { "@babel/cli": "^7.17.10", - "@babel/core": "^7.17.10", - "@babel/eslint-parser": "^7.17.0", - "@babel/plugin-transform-runtime": "^7.17.10", - "@babel/preset-env": "^7.17.10", - "@babel/preset-typescript": "^7.16.7", + "@babel/core": "^7.18.5", + "@babel/eslint-parser": "^7.18.2", + "@babel/plugin-transform-runtime": "^7.18.5", + "@babel/preset-env": "^7.18.2", + "@babel/preset-typescript": "^7.17.12", "@rollup/plugin-babel": "^5.3.1", - "@rollup/plugin-commonjs": "^22.0.0", + "@rollup/plugin-commonjs": "^22.0.1", "@rollup/plugin-node-resolve": "^13.3.0", - "@types/jest": "^27.5.0", + "@types/jest": "^27.5.2", "@types/lodash": "^4.14.182", - "@typescript-eslint/eslint-plugin": "^5.22.0", - "@typescript-eslint/parser": "^5.22.0", - "eslint": "^8.15.0", + "@types/node": "^16.11.41", + "@typescript-eslint/eslint-plugin": "^5.29.0", + "@typescript-eslint/parser": "^5.29.0", + "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-jest": "^26.1.5", - "immutable": "^4.0.0", + "eslint-plugin-jest": "^26.5.3", + "immutable": "^4.1.0", "jest": "^27.5.1", "rimraf": "^3.0.2", - "rollup": "^2.72.1", + "rollup": "^2.75.7", "rollup-plugin-terser": "^7.0.2", - "rollup-plugin-typescript2": "^0.31.2", - "ts-jest": "^27.1.4", + "rollup-plugin-typescript2": "^0.32.1", + "ts-jest": "^27.1.5", "tslib": "^2.4.0", - "typescript": "~4.6.4" + "typescript": "~4.7.4" } } diff --git a/packages/react-base16-styling/package.json b/packages/react-base16-styling/package.json index e990f923..6e419401 100644 --- a/packages/react-base16-styling/package.json +++ b/packages/react-base16-styling/package.json @@ -39,32 +39,32 @@ "prepublish": "pnpm run type-check && pnpm run lint && pnpm run test" }, "dependencies": { - "@babel/runtime": "^7.17.9", + "@babel/runtime": "^7.18.3", "@types/base16": "^1.0.2", "@types/lodash": "^4.14.182", "base16": "^1.0.0", "color": "^4.2.3", - "csstype": "^3.0.11", + "csstype": "^3.1.0", "lodash.curry": "^4.1.1" }, "devDependencies": { "@babel/cli": "^7.17.10", - "@babel/core": "^7.17.10", - "@babel/eslint-parser": "^7.17.0", - "@babel/plugin-transform-runtime": "^7.17.10", - "@babel/preset-env": "^7.17.10", - "@babel/preset-typescript": "^7.16.7", + "@babel/core": "^7.18.5", + "@babel/eslint-parser": "^7.18.2", + "@babel/plugin-transform-runtime": "^7.18.5", + "@babel/preset-env": "^7.18.2", + "@babel/preset-typescript": "^7.17.12", "@types/color": "^3.0.3", - "@types/jest": "^27.5.0", + "@types/jest": "^27.5.2", "@types/lodash.curry": "^4.1.7", - "@typescript-eslint/eslint-plugin": "^5.22.0", - "@typescript-eslint/parser": "^5.22.0", - "eslint": "^8.15.0", + "@typescript-eslint/eslint-plugin": "^5.29.0", + "@typescript-eslint/parser": "^5.29.0", + "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-jest": "^26.1.5", + "eslint-plugin-jest": "^26.5.3", "jest": "^27.5.1", "rimraf": "^3.0.2", - "ts-jest": "^27.1.4", - "typescript": "~4.6.4" + "ts-jest": "^27.1.5", + "typescript": "~4.7.4" } } diff --git a/packages/react-dock/CHANGELOG.md b/packages/react-dock/CHANGELOG.md index ef35fcd8..c12be2ae 100644 --- a/packages/react-dock/CHANGELOG.md +++ b/packages/react-dock/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## 0.6.0 + +### Minor Changes + +- 8a7eae4: Add React 18 to peerDependencies range + ## 0.5.0 - Adds ESM build (https://github.com/reduxjs/redux-devtools/pull/997) and switches the default export to a named export in order to ensure that the CommonJS output and the ESM output are [interchangeable](https://rollupjs.org/guide/en/#outputexports): diff --git a/packages/react-dock/demo/CHANGELOG.md b/packages/react-dock/demo/CHANGELOG.md new file mode 100644 index 00000000..fa789e88 --- /dev/null +++ b/packages/react-dock/demo/CHANGELOG.md @@ -0,0 +1,8 @@ +# react-dock-demo + +## 0.1.5 + +### Patch Changes + +- Updated dependencies [8a7eae4] + - react-dock@0.6.0 diff --git a/packages/react-dock/demo/package.json b/packages/react-dock/demo/package.json index 52418312..a4b30e90 100644 --- a/packages/react-dock/demo/package.json +++ b/packages/react-dock/demo/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "react-dock-demo", - "version": "0.1.4", + "version": "0.1.5", "license": "MIT", "scripts": { "start": "cross-env TS_NODE_PROJECT=\"tsconfig.webpack.json\" webpack serve --open", @@ -10,37 +10,37 @@ "type-check": "tsc --noEmit" }, "dependencies": { - "react": "^17.0.2", - "react-bootstrap": "^2.3.1", - "react-dock": "^0.5.1", - "react-dom": "^17.0.2", - "react-icons": "^4.3.1", - "react-is": "^17.0.2", + "react": "^18.2.0", + "react-bootstrap": "^2.4.0", + "react-dock": "^0.6.0", + "react-dom": "^18.2.0", + "react-icons": "^4.4.0", + "react-is": "^18.2.0", "styled-components": "^5.3.5" }, "devDependencies": { - "@babel/core": "^7.17.10", - "@babel/preset-env": "^7.17.10", - "@babel/preset-react": "^7.16.7", - "@babel/preset-typescript": "^7.16.7", - "@types/node": "^16.11.33", - "@types/react": "^17.0.45", - "@types/react-dom": "^17.0.16", + "@babel/core": "^7.18.5", + "@babel/preset-env": "^7.18.2", + "@babel/preset-react": "^7.17.12", + "@babel/preset-typescript": "^7.17.12", + "@types/node": "^16.11.41", + "@types/react": "^18.0.14", + "@types/react-dom": "^18.0.5", "@types/styled-components": "^5.1.25", - "@typescript-eslint/eslint-plugin": "^5.22.0", - "@typescript-eslint/parser": "^5.22.0", + "@typescript-eslint/eslint-plugin": "^5.29.0", + "@typescript-eslint/parser": "^5.29.0", "babel-loader": "^8.2.5", "cross-env": "^7.0.3", - "eslint": "^8.15.0", + "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-react": "~7.28.0", - "eslint-plugin-react-hooks": "^4.5.0", + "eslint-plugin-react": "^7.30.1", + "eslint-plugin-react-hooks": "^4.6.0", "fork-ts-checker-webpack-plugin": "^7.2.11", "html-webpack-plugin": "^5.5.0", - "ts-node": "^10.7.0", - "typescript": "~4.6.4", - "webpack": "^5.72.0", - "webpack-cli": "^4.9.2", - "webpack-dev-server": "^4.9.0" + "ts-node": "^10.8.1", + "typescript": "~4.7.4", + "webpack": "^5.73.0", + "webpack-cli": "^4.10.0", + "webpack-dev-server": "^4.9.2" } } diff --git a/packages/react-dock/demo/src/index.tsx b/packages/react-dock/demo/src/index.tsx index b597a442..fb0bce67 100644 --- a/packages/react-dock/demo/src/index.tsx +++ b/packages/react-dock/demo/src/index.tsx @@ -1,5 +1,6 @@ import React from 'react'; -import ReactDOM from 'react-dom'; +import ReactDOM from 'react-dom/client'; import App from './App'; -ReactDOM.render(, document.getElementById('root')); +const root = ReactDOM.createRoot(document.getElementById('root')!); +root.render(); diff --git a/packages/react-dock/package.json b/packages/react-dock/package.json index c6f89fff..a2f046de 100644 --- a/packages/react-dock/package.json +++ b/packages/react-dock/package.json @@ -1,6 +1,6 @@ { "name": "react-dock", - "version": "0.5.1", + "version": "0.6.0", "description": "Resizable dockable react component", "keywords": [ "react", @@ -39,7 +39,7 @@ "prepublish": "pnpm run type-check && pnpm run lint && pnpm run test" }, "dependencies": { - "@babel/runtime": "^7.17.9", + "@babel/runtime": "^7.18.3", "@types/lodash": "^4.14.182", "@types/prop-types": "^15.7.5", "lodash.debounce": "^4.0.8", @@ -47,32 +47,32 @@ }, "devDependencies": { "@babel/cli": "^7.17.10", - "@babel/core": "^7.17.10", - "@babel/eslint-parser": "^7.17.0", - "@babel/plugin-transform-runtime": "^7.17.10", - "@babel/preset-env": "^7.17.10", - "@babel/preset-react": "^7.16.7", - "@babel/preset-typescript": "^7.16.7", - "@types/jest": "^27.5.0", + "@babel/core": "^7.18.5", + "@babel/eslint-parser": "^7.18.2", + "@babel/plugin-transform-runtime": "^7.18.5", + "@babel/preset-env": "^7.18.2", + "@babel/preset-react": "^7.17.12", + "@babel/preset-typescript": "^7.17.12", + "@types/jest": "^27.5.2", "@types/lodash.debounce": "^4.0.7", - "@types/react": "^17.0.45", - "@types/react-test-renderer": "^17.0.2", - "@typescript-eslint/eslint-plugin": "^5.22.0", - "@typescript-eslint/parser": "^5.22.0", - "eslint": "^8.15.0", + "@types/react": "^18.0.14", + "@types/react-test-renderer": "^18.0.0", + "@typescript-eslint/eslint-plugin": "^5.29.0", + "@typescript-eslint/parser": "^5.29.0", + "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-jest": "^26.1.5", - "eslint-plugin-react": "~7.28.0", - "eslint-plugin-react-hooks": "^4.5.0", + "eslint-plugin-jest": "^26.5.3", + "eslint-plugin-react": "^7.30.1", + "eslint-plugin-react-hooks": "^4.6.0", "jest": "^27.5.1", - "react": "^17.0.2", - "react-test-renderer": "^17.0.2", + "react": "^18.2.0", + "react-test-renderer": "^18.2.0", "rimraf": "^3.0.2", - "ts-jest": "^27.1.4", - "typescript": "~4.6.4" + "ts-jest": "^27.1.5", + "typescript": "~4.7.4" }, "peerDependencies": { - "@types/react": "^16.3.0 || ^17.0.0", - "react": "^16.3.0 || ^17.0.0" + "@types/react": "^16.3.0 || ^17.0.0 || ^18.0.0", + "react": "^16.3.0 || ^17.0.0 || ^18.0.0" } } diff --git a/packages/react-json-tree/CHANGELOG.md b/packages/react-json-tree/CHANGELOG.md index 832b6f08..ff5456d6 100644 --- a/packages/react-json-tree/CHANGELOG.md +++ b/packages/react-json-tree/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## 0.17.0 + +### Minor Changes + +- 8a7eae4: Add React 18 to peerDependencies range + ## 0.16.2 ### Patch Changes diff --git a/packages/react-json-tree/examples/CHANGELOG.md b/packages/react-json-tree/examples/CHANGELOG.md new file mode 100644 index 00000000..668d0d76 --- /dev/null +++ b/packages/react-json-tree/examples/CHANGELOG.md @@ -0,0 +1,8 @@ +# react-json-tree-example + +## 1.1.7 + +### Patch Changes + +- Updated dependencies [8a7eae4] + - react-json-tree@0.17.0 diff --git a/packages/react-json-tree/examples/package.json b/packages/react-json-tree/examples/package.json index 6c7ea704..972f5ae1 100644 --- a/packages/react-json-tree/examples/package.json +++ b/packages/react-json-tree/examples/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "react-json-tree-example", - "version": "1.1.6", + "version": "1.1.7", "description": "React-Json-Tree example", "homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/react-json-tree/examples", "bugs": { @@ -19,34 +19,34 @@ "type-check": "tsc --noEmit" }, "dependencies": { - "immutable": "^4.0.0", - "react": "^17.0.2", + "immutable": "^4.1.0", + "react": "^18.2.0", "react-base16-styling": "^0.9.1", - "react-dom": "^17.0.2", - "react-json-tree": "^0.16.1" + "react-dom": "^18.2.0", + "react-json-tree": "^0.17.0" }, "devDependencies": { - "@babel/core": "^7.17.10", - "@babel/preset-env": "^7.17.10", - "@babel/preset-react": "^7.16.7", - "@babel/preset-typescript": "^7.16.7", - "@types/node": "^16.11.33", - "@types/react": "^17.0.45", - "@types/react-dom": "^17.0.16", - "@typescript-eslint/eslint-plugin": "^5.22.0", - "@typescript-eslint/parser": "^5.22.0", + "@babel/core": "^7.18.5", + "@babel/preset-env": "^7.18.2", + "@babel/preset-react": "^7.17.12", + "@babel/preset-typescript": "^7.17.12", + "@types/node": "^16.11.41", + "@types/react": "^18.0.14", + "@types/react-dom": "^18.0.5", + "@typescript-eslint/eslint-plugin": "^5.29.0", + "@typescript-eslint/parser": "^5.29.0", "babel-loader": "^8.2.5", "cross-env": "^7.0.3", - "eslint": "^8.15.0", + "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-react": "~7.28.0", - "eslint-plugin-react-hooks": "^4.5.0", + "eslint-plugin-react": "^7.30.1", + "eslint-plugin-react-hooks": "^4.6.0", "fork-ts-checker-webpack-plugin": "^7.2.11", "html-webpack-plugin": "^5.5.0", - "ts-node": "^10.7.0", - "typescript": "~4.6.4", - "webpack": "^5.72.0", - "webpack-cli": "^4.9.2", - "webpack-dev-server": "^4.9.0" + "ts-node": "^10.8.1", + "typescript": "~4.7.4", + "webpack": "^5.73.0", + "webpack-cli": "^4.10.0", + "webpack-dev-server": "^4.9.2" } } diff --git a/packages/react-json-tree/examples/src/index.tsx b/packages/react-json-tree/examples/src/index.tsx index aca61f2f..7e1c5c48 100644 --- a/packages/react-json-tree/examples/src/index.tsx +++ b/packages/react-json-tree/examples/src/index.tsx @@ -1,5 +1,6 @@ -import { render } from 'react-dom'; +import { createRoot } from 'react-dom/client'; import React from 'react'; import App from './App'; -render(, document.getElementById('root')); +const root = createRoot(document.getElementById('root')!); +root.render(); diff --git a/packages/react-json-tree/package.json b/packages/react-json-tree/package.json index f1b0e0bb..92f5200b 100644 --- a/packages/react-json-tree/package.json +++ b/packages/react-json-tree/package.json @@ -1,6 +1,6 @@ { "name": "react-json-tree", - "version": "0.16.2", + "version": "0.17.0", "description": "React JSON Viewer Component, Extracted from redux-devtools", "keywords": [ "react", @@ -45,7 +45,7 @@ "prepublish": "pnpm run type-check && pnpm run lint && pnpm run test" }, "dependencies": { - "@babel/runtime": "^7.17.9", + "@babel/runtime": "^7.18.3", "@types/lodash": "^4.14.182", "@types/prop-types": "^15.7.5", "prop-types": "^15.8.1", @@ -53,38 +53,39 @@ }, "devDependencies": { "@babel/cli": "^7.17.10", - "@babel/core": "^7.17.10", - "@babel/eslint-parser": "^7.17.0", - "@babel/plugin-transform-runtime": "^7.17.10", - "@babel/preset-env": "^7.17.10", - "@babel/preset-react": "^7.16.7", - "@babel/preset-typescript": "^7.16.7", + "@babel/core": "^7.18.5", + "@babel/eslint-parser": "^7.18.2", + "@babel/plugin-transform-runtime": "^7.18.5", + "@babel/preset-env": "^7.18.2", + "@babel/preset-react": "^7.17.12", + "@babel/preset-typescript": "^7.17.12", "@rollup/plugin-babel": "^5.3.1", - "@rollup/plugin-commonjs": "^22.0.0", + "@rollup/plugin-commonjs": "^22.0.1", "@rollup/plugin-node-resolve": "^13.3.0", - "@types/jest": "^27.5.0", - "@types/react": "^17.0.45", - "@types/react-test-renderer": "^17.0.2", - "@typescript-eslint/eslint-plugin": "^5.22.0", - "@typescript-eslint/parser": "^5.22.0", - "eslint": "^8.15.0", + "@types/jest": "^27.5.2", + "@types/node": "^16.11.41", + "@types/react": "^18.0.14", + "@types/react-test-renderer": "^18.0.0", + "@typescript-eslint/eslint-plugin": "^5.29.0", + "@typescript-eslint/parser": "^5.29.0", + "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-jest": "^26.1.5", - "eslint-plugin-react": "~7.28.0", - "eslint-plugin-react-hooks": "^4.5.0", + "eslint-plugin-jest": "^26.5.3", + "eslint-plugin-react": "^7.30.1", + "eslint-plugin-react-hooks": "^4.6.0", "jest": "^27.5.1", - "react": "^17.0.2", - "react-test-renderer": "^17.0.2", + "react": "^18.2.0", + "react-test-renderer": "^18.2.0", "rimraf": "^3.0.2", - "rollup": "^2.72.1", + "rollup": "^2.75.7", "rollup-plugin-terser": "^7.0.2", - "rollup-plugin-typescript2": "^0.31.2", - "ts-jest": "^27.1.4", + "rollup-plugin-typescript2": "^0.32.1", + "ts-jest": "^27.1.5", "tslib": "^2.4.0", - "typescript": "~4.6.4" + "typescript": "~4.7.4" }, "peerDependencies": { - "@types/react": "^16.3.0 || ^17.0.0", - "react": "^16.3.0 || ^17.0.0" + "@types/react": "^16.3.0 || ^17.0.0 || ^18.0.0", + "react": "^16.3.0 || ^17.0.0 || ^18.0.0" } } diff --git a/packages/redux-devtools-app/CHANGELOG.md b/packages/redux-devtools-app/CHANGELOG.md index c9ad8352..6a67a00c 100644 --- a/packages/redux-devtools-app/CHANGELOG.md +++ b/packages/redux-devtools-app/CHANGELOG.md @@ -1,5 +1,24 @@ # Change Log +## 2.2.0 + +### Minor Changes + +- 8a7eae4: Add React 18 to peerDependencies range + +### Patch Changes + +- Updated dependencies [8a7eae4] + - @redux-devtools/chart-monitor@3.0.0 + - @redux-devtools/inspector-monitor-test-tab@1.0.0 + - @redux-devtools/inspector-monitor-trace-tab@1.0.0 + - @redux-devtools/inspector-monitor@3.0.0 + - @redux-devtools/log-monitor@4.0.0 + - @redux-devtools/rtk-query-monitor@3.0.0 + - @redux-devtools/slider-monitor@4.0.0 + - @redux-devtools/ui@1.3.0 + - @redux-devtools/core@3.13.0 + ## 2.1.4 ### Patch Changes diff --git a/packages/redux-devtools-app/README.md b/packages/redux-devtools-app/README.md index 60167928..021e71e7 100644 --- a/packages/redux-devtools-app/README.md +++ b/packages/redux-devtools-app/README.md @@ -16,10 +16,11 @@ Also it's a react component you can use to build amazing monitor applications li ```js import React from 'react'; -import ReactDom from 'react-dom'; +import ReactDOM from 'react-dom/client'; import { Root } from '@redux-devtools/app'; -ReactDom.render(, document.getElementById('root')); +const root = ReactDOM.createRoot(document.getElementById('root')); +root.render(); ``` ### Parameters diff --git a/packages/redux-devtools-app/demo/index.tsx b/packages/redux-devtools-app/demo/index.tsx index f95bc46a..97641977 100644 --- a/packages/redux-devtools-app/demo/index.tsx +++ b/packages/redux-devtools-app/demo/index.tsx @@ -1,8 +1,9 @@ import React from 'react'; -import { render } from 'react-dom'; +import { createRoot } from 'react-dom/client'; import { Root } from '../src'; -render(, document.getElementById('root')); +const root = createRoot(document.getElementById('root')!); +root.render(); if (module.hot) { // https://github.com/webpack/webpack/issues/418#issuecomment-53398056 diff --git a/packages/redux-devtools-app/package.json b/packages/redux-devtools-app/package.json index 81866d9d..cde495d0 100644 --- a/packages/redux-devtools-app/package.json +++ b/packages/redux-devtools-app/package.json @@ -1,6 +1,6 @@ { "name": "@redux-devtools/app", - "version": "2.1.4", + "version": "2.2.0", "description": "Redux DevTools app", "homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/redux-devtools-app", "bugs": { @@ -40,17 +40,17 @@ "prepublish": "pnpm run type-check && pnpm run lint && pnpm run test" }, "dependencies": { - "@babel/runtime": "^7.17.9", - "@redux-devtools/chart-monitor": "^2.1.1", - "@redux-devtools/core": "^3.12.0", - "@redux-devtools/inspector-monitor": "^2.1.2", - "@redux-devtools/inspector-monitor-test-tab": "^0.8.6", - "@redux-devtools/inspector-monitor-trace-tab": "^0.3.4", - "@redux-devtools/log-monitor": "^3.1.1", - "@redux-devtools/rtk-query-monitor": "^2.1.2", - "@redux-devtools/slider-monitor": "^3.1.2", - "@redux-devtools/ui": "^1.2.1", - "@reduxjs/toolkit": "^1.8.1", + "@babel/runtime": "^7.18.3", + "@redux-devtools/chart-monitor": "^3.0.0", + "@redux-devtools/core": "^3.13.0", + "@redux-devtools/inspector-monitor": "^3.0.0", + "@redux-devtools/inspector-monitor-test-tab": "^1.0.0", + "@redux-devtools/inspector-monitor-trace-tab": "^1.0.0", + "@redux-devtools/log-monitor": "^4.0.0", + "@redux-devtools/rtk-query-monitor": "^3.0.0", + "@redux-devtools/slider-monitor": "^4.0.0", + "@redux-devtools/ui": "^1.3.0", + "@reduxjs/toolkit": "^1.8.2", "@types/prop-types": "^15.7.5", "d3-state-visualizer": "^1.6.0", "javascript-stringify": "^2.1.0", @@ -59,67 +59,66 @@ "localforage": "^1.10.0", "lodash": "^4.17.21", "prop-types": "^15.8.1", - "react-icons": "^4.3.1", - "react-is": "^17.0.2", - "react-redux": "^7.2.8", + "react-icons": "^4.4.0", + "react-is": "^18.2.0", + "react-redux": "^8.0.2", "redux": "^4.2.0", "redux-persist": "^6.0.0", - "socketcluster-client": "^14.3.2" + "socketcluster-client": "^16.1.1" }, "devDependencies": { "@babel/cli": "^7.17.10", - "@babel/core": "^7.17.10", - "@babel/eslint-parser": "^7.17.0", - "@babel/plugin-transform-runtime": "^7.17.10", - "@babel/preset-env": "^7.17.10", - "@babel/preset-react": "^7.16.7", - "@babel/preset-typescript": "^7.16.7", + "@babel/core": "^7.18.5", + "@babel/eslint-parser": "^7.18.2", + "@babel/plugin-transform-runtime": "^7.18.5", + "@babel/preset-env": "^7.18.2", + "@babel/preset-react": "^7.17.12", + "@babel/preset-typescript": "^7.17.12", "@rjsf/core": "^4.2.0", "@testing-library/jest-dom": "^5.16.4", - "@testing-library/react": "^12.1.5", - "@types/jest": "^27.5.0", + "@testing-library/react": "^13.3.0", + "@types/jest": "^27.5.2", "@types/jsan": "^3.1.2", "@types/json-schema": "^7.0.11", "@types/lodash": "^4.14.182", - "@types/node": "^16.11.33", - "@types/react": "^17.0.45", - "@types/react-dom": "^17.0.16", - "@types/react-redux": "^7.1.24", - "@types/socketcluster-client": "^13.0.5", + "@types/node": "^16.11.41", + "@types/react": "^18.0.14", + "@types/react-dom": "^18.0.5", + "@types/socketcluster-client": "^16.0.0", "@types/styled-components": "^5.1.25", - "@types/testing-library__jest-dom": "^5.14.3", - "@types/webpack-env": "^1.16.4", - "@typescript-eslint/eslint-plugin": "^5.22.0", - "@typescript-eslint/parser": "^5.22.0", + "@types/testing-library__jest-dom": "^5.14.5", + "@types/webpack-env": "^1.17.0", + "@typescript-eslint/eslint-plugin": "^5.29.0", + "@typescript-eslint/parser": "^5.29.0", "babel-loader": "^8.2.5", "cross-env": "^7.0.3", "css-loader": "^6.7.1", - "eslint": "^8.15.0", + "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-jest": "^26.1.5", - "eslint-plugin-react": "~7.28.0", - "eslint-plugin-react-hooks": "^4.5.0", + "eslint-plugin-jest": "^26.5.3", + "eslint-plugin-react": "^7.30.1", + "eslint-plugin-react-hooks": "^4.6.0", "fork-ts-checker-webpack-plugin": "^7.2.11", - "html-loader": "^3.1.0", + "html-loader": "^3.1.2", "html-webpack-plugin": "^5.5.0", "jest": "^27.5.1", "path-browserify": "^1.0.1", - "react": "^17.0.2", - "react-dom": "^17.0.2", + "react": "^18.2.0", + "react-dom": "^18.2.0", "rimraf": "^3.0.2", "style-loader": "^3.3.1", "styled-components": "^5.3.5", - "ts-jest": "^27.1.4", - "ts-node": "^10.7.0", - "typescript": "~4.6.4", - "webpack": "^5.72.0", - "webpack-cli": "^4.9.2", - "webpack-dev-server": "^4.9.0" + "ts-jest": "^27.1.5", + "ts-node": "^10.8.1", + "typescript": "~4.7.4", + "webpack": "^5.73.0", + "webpack-cli": "^4.10.0", + "webpack-dev-server": "^4.9.2" }, "peerDependencies": { - "@types/react": "^16.3.0 || ^17.0.0", + "@types/react": "^16.3.0 || ^17.0.0 || ^18.0.0", "@types/styled-components": "^5.1.25", - "react": "^16.3.0 || ^17.0.0", + "react": "^16.3.0 || ^17.0.0 || ^18.0.0", "styled-components": "^5.3.5" } } diff --git a/packages/redux-devtools-app/src/actions/index.ts b/packages/redux-devtools-app/src/actions/index.ts index 45d53105..5f5fe4a0 100644 --- a/packages/redux-devtools-app/src/actions/index.ts +++ b/packages/redux-devtools-app/src/actions/index.ts @@ -1,5 +1,5 @@ import { SchemeName, ThemeName } from '@redux-devtools/ui'; -import { AuthStates, States } from 'socketcluster-client/lib/scclientsocket'; +import { AuthStates, States } from 'socketcluster-client/lib/clientsocket'; import { REHYDRATE } from 'redux-persist'; import { CHANGE_SECTION, diff --git a/packages/redux-devtools-app/src/constants/socketActionTypes.ts b/packages/redux-devtools-app/src/constants/socketActionTypes.ts index afe2ca33..df6a28d9 100644 --- a/packages/redux-devtools-app/src/constants/socketActionTypes.ts +++ b/packages/redux-devtools-app/src/constants/socketActionTypes.ts @@ -16,7 +16,7 @@ export const { AUTHENTICATED, PENDING, UNAUTHENTICATED, -} = socketCluster.SCClientSocket as unknown as States; +} = socketCluster.AGClientSocket as unknown as States; export const CONNECT_REQUEST = 'socket/CONNECT_REQUEST'; export const CONNECT_SUCCESS = 'socket/CONNECT_SUCCESS'; export const CONNECT_ERROR = 'socket/CONNECT_ERROR'; diff --git a/packages/redux-devtools-app/src/containers/DevTools.tsx b/packages/redux-devtools-app/src/containers/DevTools.tsx index a9047737..9915fbca 100644 --- a/packages/redux-devtools-app/src/containers/DevTools.tsx +++ b/packages/redux-devtools-app/src/containers/DevTools.tsx @@ -20,7 +20,7 @@ interface Props { } class DevTools extends Component { - monitorProps: unknown; + monitorProps?: object; Monitor?: React.ComponentType< LiftedState, unknown> > & { diff --git a/packages/redux-devtools-app/src/middlewares/api.ts b/packages/redux-devtools-app/src/middlewares/api.ts index 5c136dec..ce64bdc0 100644 --- a/packages/redux-devtools-app/src/middlewares/api.ts +++ b/packages/redux-devtools-app/src/middlewares/api.ts @@ -1,4 +1,4 @@ -import socketCluster, { SCClientSocket } from 'socketcluster-client'; +import socketClusterClient, { AGClientSocket } from 'socketcluster-client'; import { stringify } from 'jsan'; import { Dispatch, MiddlewareAPI } from 'redux'; import * as actions from '../constants/socketActionTypes'; @@ -25,11 +25,16 @@ import { import { nonReduxDispatch } from '../utils/monitorActions'; import { StoreState } from '../reducers'; -let socket: SCClientSocket; +let socket: AGClientSocket; let store: MiddlewareAPI, StoreState>; function emit({ message: type, id, instanceId, action, state }: EmitAction) { - socket.emit(id ? `sc-${id}` : 'respond', { type, action, state, instanceId }); + void socket.transmit(id ? `sc-${id}` : 'respond', { + type, + action, + state, + instanceId, + }); } function startMonitoring(channel: string) { @@ -120,7 +125,7 @@ function monitoring(request: MonitoringRequest) { instanceId === instances.selected && (request.type === 'ACTION' || request.type === 'STATE') ) { - socket.emit('respond', { + void socket.transmit('respond', { type: 'SYNC', state: stringify(instances.states[instanceId]), id: request.id, @@ -134,65 +139,84 @@ function subscribe( subscription: typeof UPDATE_STATE | typeof UPDATE_REPORTS ) { const channel = socket.subscribe(channelName); - if (subscription === UPDATE_STATE) channel.watch(monitoring); - else { + if (subscription === UPDATE_STATE) { + void (async () => { + for await (const data of channel) { + monitoring(data as MonitoringRequest); + } + })(); + } else { const watcher = (request: UpdateReportsRequest) => { store.dispatch({ type: subscription, request }); }; - channel.watch(watcher); - socket.on(channelName, watcher); + void (async () => { + for await (const data of channel) { + watcher(data as UpdateReportsRequest); + } + })(); } } function handleConnection() { - socket.on('connect', (status) => { - store.dispatch({ - type: actions.CONNECT_SUCCESS, - payload: { - id: status.id, - authState: socket.authState, - socketState: socket.state, - }, - error: status.authError, - }); - if (socket.authState !== actions.AUTHENTICATED) { - store.dispatch({ type: actions.AUTH_REQUEST }); + void (async () => { + for await (const data of socket.listener('connect')) { + store.dispatch({ + type: actions.CONNECT_SUCCESS, + payload: { + id: data.id, + authState: socket.authState, + socketState: socket.state, + }, + // @ts-expect-error Is this legitimate? + error: data.authError, + }); + if (socket.authState !== actions.AUTHENTICATED) { + store.dispatch({ type: actions.AUTH_REQUEST }); + } } - }); - socket.on('disconnect', (code) => { - store.dispatch({ type: actions.DISCONNECTED, code }); - }); + })(); + void (async () => { + for await (const data of socket.listener('disconnect')) { + store.dispatch({ type: actions.DISCONNECTED, code: data.code }); + } + })(); - socket.on('subscribe', (channel) => { - store.dispatch({ type: actions.SUBSCRIBE_SUCCESS, channel }); - }); - socket.on('unsubscribe', (channel) => { - socket.unsubscribe(channel); - socket.unwatch(channel); - socket.off(channel); - store.dispatch({ type: actions.UNSUBSCRIBE, channel }); - }); - socket.on('subscribeFail', (error) => { - store.dispatch({ - type: actions.SUBSCRIBE_ERROR, - error, - status: 'subscribeFail', - }); - }); - socket.on('dropOut', (error) => { - store.dispatch({ type: actions.SUBSCRIBE_ERROR, error, status: 'dropOut' }); - }); + void (async () => { + for await (const data of socket.listener('subscribe')) { + store.dispatch({ + type: actions.SUBSCRIBE_SUCCESS, + channel: data.channel, + }); + } + })(); + void (async () => { + for await (const data of socket.listener('unsubscribe')) { + void socket.unsubscribe(data.channel); + store.dispatch({ type: actions.UNSUBSCRIBE, channel: data.channel }); + } + })(); + void (async () => { + for await (const data of socket.listener('subscribeFail')) { + store.dispatch({ + type: actions.SUBSCRIBE_ERROR, + error: data.error, + status: 'subscribeFail', + }); + } + })(); - socket.on('error', (error) => { - store.dispatch({ type: actions.CONNECT_ERROR, error }); - }); + void (async () => { + for await (const data of socket.listener('error')) { + store.dispatch({ type: actions.CONNECT_ERROR, error: data.error }); + } + })(); } function connect() { if (process.env.NODE_ENV === 'test') return; const connection = store.getState().connection; try { - socket = socketCluster.create(connection.options); + socket = socketClusterClient.create(connection.options); handleConnection(); } catch (error) { store.dispatch({ type: actions.CONNECT_ERROR, error: error as Error }); @@ -205,43 +229,42 @@ function connect() { function disconnect() { if (socket) { socket.disconnect(); - socket.off(); } } function login() { - socket.emit('login', {}, (error: Error, baseChannel: string) => { - if (error) { - store.dispatch({ type: actions.AUTH_ERROR, error }); - return; + void (async () => { + try { + const baseChannel = (await socket.invoke('login', {})) as string; + store.dispatch({ type: actions.AUTH_SUCCESS, baseChannel }); + store.dispatch({ + type: actions.SUBSCRIBE_REQUEST, + channel: baseChannel, + subscription: UPDATE_STATE, + }); + store.dispatch({ + type: actions.SUBSCRIBE_REQUEST, + channel: 'report', + subscription: UPDATE_REPORTS, + }); + } catch (error) { + store.dispatch({ type: actions.AUTH_ERROR, error: error as Error }); } - store.dispatch({ type: actions.AUTH_SUCCESS, baseChannel }); - store.dispatch({ - type: actions.SUBSCRIBE_REQUEST, - channel: baseChannel, - subscription: UPDATE_STATE, - }); - store.dispatch({ - type: actions.SUBSCRIBE_REQUEST, - channel: 'report', - subscription: UPDATE_REPORTS, - }); - }); + })(); } function getReport(reportId: unknown) { - socket.emit( - 'getReport', - reportId, - (error: Error, data: { payload: string }) => { - if (error) { - store.dispatch({ type: GET_REPORT_ERROR, error }); - return; - } + void (async () => { + try { + const data = (await socket.invoke('getReport', reportId)) as { + payload: string; + }; store.dispatch({ type: GET_REPORT_SUCCESS, data }); store.dispatch(importState(data.payload)); + } catch (error) { + store.dispatch({ type: GET_REPORT_ERROR, error: error as Error }); } - ); + })(); } export function api(inStore: MiddlewareAPI, StoreState>) { diff --git a/packages/redux-devtools-app/src/reducers/socket.ts b/packages/redux-devtools-app/src/reducers/socket.ts index cc7e4386..a4390453 100644 --- a/packages/redux-devtools-app/src/reducers/socket.ts +++ b/packages/redux-devtools-app/src/reducers/socket.ts @@ -1,4 +1,4 @@ -import { AuthStates, States } from 'socketcluster-client/lib/scclientsocket'; +import { AuthStates, States } from 'socketcluster-client/lib/clientsocket'; import * as actions from '../constants/socketActionTypes'; import { StoreAction } from '../actions'; diff --git a/packages/redux-devtools-chart-monitor/CHANGELOG.md b/packages/redux-devtools-chart-monitor/CHANGELOG.md index a821a33c..03e91310 100644 --- a/packages/redux-devtools-chart-monitor/CHANGELOG.md +++ b/packages/redux-devtools-chart-monitor/CHANGELOG.md @@ -1,5 +1,24 @@ # Change Log +## 3.0.1 + +### Patch Changes + +- a55ba302: Fix peer dependencies on @redux-devtools/core +- Updated dependencies [a55ba302] + - @redux-devtools/core@3.13.1 + +## 3.0.0 + +### Minor Changes + +- 8a7eae4: Add React 18 to peerDependencies range + +### Patch Changes + +- Updated dependencies [8a7eae4] + - @redux-devtools/core@3.13.0 + ## 2.1.1 ### Patch Changes diff --git a/packages/redux-devtools-chart-monitor/package.json b/packages/redux-devtools-chart-monitor/package.json index aafa2d32..e16f5297 100644 --- a/packages/redux-devtools-chart-monitor/package.json +++ b/packages/redux-devtools-chart-monitor/package.json @@ -1,6 +1,6 @@ { "name": "@redux-devtools/chart-monitor", - "version": "2.1.1", + "version": "3.0.1", "description": "Chart monitor for Redux DevTools", "keywords": [ "redux", @@ -39,7 +39,7 @@ "prepublish": "pnpm run type-check && pnpm run lint" }, "dependencies": { - "@babel/runtime": "^7.17.9", + "@babel/runtime": "^7.18.3", "@types/prop-types": "^15.7.5", "@types/redux-devtools-themes": "^1.0.0", "d3-state-visualizer": "^1.6.0", @@ -49,29 +49,29 @@ }, "devDependencies": { "@babel/cli": "^7.17.10", - "@babel/core": "^7.17.10", - "@babel/eslint-parser": "^7.17.0", - "@babel/plugin-transform-runtime": "^7.17.10", - "@babel/preset-env": "^7.17.10", - "@babel/preset-react": "^7.16.7", - "@babel/preset-typescript": "^7.16.7", - "@redux-devtools/core": "^3.12.0", - "@types/react": "^17.0.45", - "@typescript-eslint/eslint-plugin": "^5.22.0", - "@typescript-eslint/parser": "^5.22.0", - "eslint": "^8.15.0", + "@babel/core": "^7.18.5", + "@babel/eslint-parser": "^7.18.2", + "@babel/plugin-transform-runtime": "^7.18.5", + "@babel/preset-env": "^7.18.2", + "@babel/preset-react": "^7.17.12", + "@babel/preset-typescript": "^7.17.12", + "@redux-devtools/core": "^3.13.1", + "@types/react": "^18.0.14", + "@typescript-eslint/eslint-plugin": "^5.29.0", + "@typescript-eslint/parser": "^5.29.0", + "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-react": "~7.28.0", - "eslint-plugin-react-hooks": "^4.5.0", - "react": "^17.0.2", + "eslint-plugin-react": "^7.30.1", + "eslint-plugin-react-hooks": "^4.6.0", + "react": "^18.2.0", "redux": "^4.2.0", "rimraf": "^3.0.2", - "typescript": "~4.6.4" + "typescript": "~4.7.4" }, "peerDependencies": { - "@redux-devtools/core": "^3.7.0", - "@types/react": "^16.3.0 || ^17.0.0", - "react": "^16.3.0 || ^17.0.0", + "@redux-devtools/core": "^3.13.1", + "@types/react": "^16.3.0 || ^17.0.0 || ^18.0.0", + "react": "^16.3.0 || ^17.0.0 || ^18.0.0", "redux": "^3.4.0 || ^4.0.0" } } diff --git a/packages/redux-devtools-cli/app/index.html b/packages/redux-devtools-cli/app/index.html index 1c8ee65d..1fac0566 100644 --- a/packages/redux-devtools-cli/app/index.html +++ b/packages/redux-devtools-cli/app/index.html @@ -31,16 +31,15 @@ diff --git a/packages/redux-devtools-cli/package.json b/packages/redux-devtools-cli/package.json index 3efc16dd..110cc185 100644 --- a/packages/redux-devtools-cli/package.json +++ b/packages/redux-devtools-cli/package.json @@ -41,26 +41,26 @@ }, "dependencies": { "@redux-devtools/app": "^2.1.3", - "@types/react": "^17.0.45", - "apollo-server-express": "^3.7.0", + "@types/react": "^18.0.14", + "apollo-server-express": "^3.9.0", "body-parser": "^1.20.0", "chalk": "^4.1.2", "cors": "^2.8.5", "cross-spawn": "^7.0.3", - "electron": "^18.2.0", + "electron": "^19.0.6", "express": "^4.18.1", "getport": "^0.1.0", - "graphql": "^16.4.0", - "knex": "^2.0.0", + "graphql": "^16.5.0", + "knex": "^2.1.0", "lodash": "^4.17.21", "minimist": "^1.2.6", "morgan": "^1.10.0", "open": "^8.4.0", - "react": "^17.0.2", - "react-dom": "^17.0.2", - "react-is": "^17.0.2", + "react": "^18.2.0", + "react-dom": "^18.2.0", + "react-is": "^18.2.0", "semver": "^7.3.7", - "socketcluster": "^14.4.2", + "socketcluster-server": "^16.2.1", "sqlite3": "^5.0.8", "styled-components": "^5.3.5", "uuid": "^8.3.2" @@ -70,29 +70,28 @@ "@types/cors": "^2.8.12", "@types/cross-spawn": "^6.0.2", "@types/express": "^4.17.13", - "@types/jest": "^27.5.0", + "@types/jest": "^27.5.2", "@types/lodash": "^4.14.182", "@types/minimist": "^1.2.2", "@types/morgan": "^1.9.3", - "@types/node": "^16.11.33", - "@types/semver": "^7.3.9", - "@types/socketcluster": "^14.0.4", - "@types/socketcluster-client": "^13.0.5", - "@types/socketcluster-server": "^14.2.6", + "@types/node": "^16.11.41", + "@types/semver": "^7.3.10", + "@types/socketcluster-client": "^16.0.0", + "@types/socketcluster-server": "^16.1.0", "@types/styled-components": "^5.1.25", "@types/supertest": "^2.0.12", "@types/uuid": "^8.3.4", - "@typescript-eslint/eslint-plugin": "^5.22.0", - "@typescript-eslint/parser": "^5.22.0", - "eslint": "^8.15.0", + "@typescript-eslint/eslint-plugin": "^5.29.0", + "@typescript-eslint/parser": "^5.29.0", + "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-jest": "^26.1.5", + "eslint-plugin-jest": "^26.5.3", "jest": "^27.5.1", "ncp": "^2.0.0", "rimraf": "^3.0.2", - "socketcluster-client": "^14.3.2", + "socketcluster-client": "^16.1.1", "supertest": "^6.2.3", - "ts-jest": "^27.1.4", - "typescript": "~4.6.4" + "ts-jest": "^27.1.5", + "typescript": "~4.7.4" } } diff --git a/packages/redux-devtools-cli/src/bin/redux-devtools.ts b/packages/redux-devtools-cli/src/bin/redux-devtools.ts index 049d245b..74ce0166 100644 --- a/packages/redux-devtools-cli/src/bin/redux-devtools.ts +++ b/packages/redux-devtools-cli/src/bin/redux-devtools.ts @@ -88,10 +88,9 @@ if (argv.injectserver) { } // eslint-disable-next-line @typescript-eslint/no-floating-promises -server(argv).then(function (r) { +server(argv).then(async function (r) { if (argv.open && argv.open !== 'false') { - r.on('ready', async function () { - await openApp(argv.open as string, options); - }); + await r.listener('ready').once(); + await openApp(argv.open as string, options); } }); diff --git a/packages/redux-devtools-cli/src/db/connector.ts b/packages/redux-devtools-cli/src/db/connector.ts index 64d78cbb..c07a4d92 100644 --- a/packages/redux-devtools-cli/src/db/connector.ts +++ b/packages/redux-devtools-cli/src/db/connector.ts @@ -1,8 +1,8 @@ import path from 'path'; import knexModule, { Knex } from 'knex'; -import { SCServer } from 'socketcluster-server'; +import { AGServer } from 'socketcluster-server'; -export default function connector(options: SCServer.SCServerOptions) { +export default function connector(options: AGServer.AGServerOptions) { const dbOptions = options.dbOptions as Knex.Config; dbOptions.useNullAsDefault = true; if (!(dbOptions as any).migrate) { diff --git a/packages/redux-devtools-cli/src/index.ts b/packages/redux-devtools-cli/src/index.ts index 0ec675ce..24b8104e 100644 --- a/packages/redux-devtools-cli/src/index.ts +++ b/packages/redux-devtools-cli/src/index.ts @@ -1,6 +1,10 @@ +import express from 'express'; +import http from 'http'; import getPort from 'getport'; -import SocketCluster from 'socketcluster'; +import socketClusterServer from 'socketcluster-server'; import getOptions, { Options } from './options'; +import routes from './routes'; +import createStore from './store'; // var LOG_LEVEL_NONE = 0; const LOG_LEVEL_ERROR = 1; @@ -8,16 +12,14 @@ const LOG_LEVEL_WARN = 2; const LOG_LEVEL_INFO = 3; export interface ExtendedOptions extends Options { - workerController: string; allowClientPublish: boolean; } export default function (argv: { [arg: string]: any }): Promise<{ portAlreadyUsed?: boolean; - on: (status: 'ready', cb: (() => void) | (() => Promise)) => void; + listener: (eventName: 'ready') => { once(): Promise }; }> { const options = Object.assign(getOptions(argv), { - workerController: __dirname + '/worker.js', allowClientPublish: false, }); const port = options.port; @@ -39,8 +41,12 @@ export default function (argv: { [arg: string]: any }): Promise<{ } resolve({ portAlreadyUsed: true, - on: function (status: string, cb: () => void) { - cb(); + listener: function (eventName: 'ready') { + return { + once() { + return Promise.resolve(); + }, + }; }, }); } else { @@ -48,7 +54,100 @@ export default function (argv: { [arg: string]: any }): Promise<{ console.log('[ReduxDevTools] Start server...'); console.log('-'.repeat(80) + '\n'); } - resolve(new SocketCluster(options)); + const httpServer = http.createServer(); + const agServer = socketClusterServer.attach(httpServer, options); + + const app = express(); + httpServer.on('request', app); + const store = createStore(options); + app.use(routes(options, store, agServer)); + + agServer.setMiddleware( + agServer.MIDDLEWARE_INBOUND, + // eslint-disable-next-line @typescript-eslint/no-misused-promises + async (middlewareStream) => { + for await (const action of middlewareStream) { + if (action.type === action.TRANSMIT) { + const channel = action.receiver; + const data = action.data; + if ( + channel.substring(0, 3) === 'sc-' || + channel === 'respond' || + channel === 'log' + ) { + void agServer.exchange.transmitPublish(channel, data); + } else if (channel === 'log-noid') { + void agServer.exchange.transmitPublish('log', { + id: action.socket.id, + data: data, + }); + } + } else if (action.type === action.SUBSCRIBE) { + if (action.channel === 'report') { + store + .list() + .then(function (data) { + void agServer.exchange.transmitPublish('report', { + type: 'list', + data: data, + }); + }) + .catch(function (error) { + console.error(error); // eslint-disable-line no-console + }); + } + } + action.allow(); + } + } + ); + + void (async () => { + for await (const { socket } of agServer.listener('connection')) { + let channelToWatch: string, channelToEmit: string; + void (async () => { + for await (const request of socket.procedure('login')) { + const credentials = request.data; + if (credentials === 'master') { + channelToWatch = 'respond'; + channelToEmit = 'log'; + } else { + channelToWatch = 'log'; + channelToEmit = 'respond'; + } + request.end(channelToWatch); + } + })(); + void (async () => { + for await (const request of socket.procedure('getReport')) { + const id = request.data as string; + store + .get(id) + .then(function (data) { + request.end(data); + }) + .catch(function (error) { + console.error(error); // eslint-disable-line no-console + }); + } + })(); + void (async () => { + for await (const data of socket.listener('disconnect')) { + const channel = agServer.exchange.channel('sc-' + socket.id); + channel.unsubscribe(); + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + void agServer.exchange.transmitPublish(channelToEmit!, { + id: socket.id, + type: 'DISCONNECTED', + }); + } + })(); + } + })(); + + httpServer.listen(options.port); + // @ts-expect-error Shouldn't there be a 'ready' event? + resolve(agServer); } /* eslint-enable no-console */ }); diff --git a/packages/redux-devtools-cli/src/routes.ts b/packages/redux-devtools-cli/src/routes.ts index e0b7b0a6..9ea4766a 100644 --- a/packages/redux-devtools-cli/src/routes.ts +++ b/packages/redux-devtools-cli/src/routes.ts @@ -5,7 +5,7 @@ import morgan from 'morgan'; import * as http from 'http'; import bodyParser from 'body-parser'; import cors from 'cors'; -import { SCServer } from 'socketcluster-server'; +import { AGServer } from 'socketcluster-server'; import { ApolloServer } from 'apollo-server-express'; import { AddData, ReportBaseFields, Store } from './store'; import { resolvers, schema } from './api/schema'; @@ -21,9 +21,9 @@ function serveUmdModule(name: string) { } function routes( - options: SCServer.SCServerOptions, + options: AGServer.AGServerOptions, store: Store, - scServer: SCServer + scServer: AGServer ): Router { const limit = options.maxRequestBody; const logHTTPRequests = options.logHTTPRequests; @@ -65,7 +65,8 @@ function routes( serveUmdModule('@redux-devtools/app'); app.get('/port.js', function (req, res) { - res.send(`reduxDevToolsPort = ${options.port!}`); + // eslint-disable-next-line @typescript-eslint/restrict-template-expressions + res.send(`reduxDevToolsPort = ${options.port}`); }); app.get('*', function (req, res) { res.sendFile(path.join(__dirname, '../app/index.html')); @@ -108,7 +109,7 @@ function routes( id: (r as ReportBaseFields).id, error: (r as { error: string }).error, }); - scServer.exchange.publish('report', { + void scServer.exchange.transmitPublish('report', { type: 'add', data: r, }); diff --git a/packages/redux-devtools-cli/src/store.ts b/packages/redux-devtools-cli/src/store.ts index 08da6b76..0d6edd99 100644 --- a/packages/redux-devtools-cli/src/store.ts +++ b/packages/redux-devtools-cli/src/store.ts @@ -1,6 +1,6 @@ import { v4 as uuidV4 } from 'uuid'; import pick from 'lodash/pick'; -import { SCServer } from 'socketcluster-server'; +import { AGServer } from 'socketcluster-server'; import { Knex } from 'knex'; import connector from './db/connector'; @@ -139,7 +139,7 @@ export interface Store { add: (data: AddData) => Promise; } -function createStore(options: SCServer.SCServerOptions): Store { +function createStore(options: AGServer.AGServerOptions): Store { knex = connector(options); return { diff --git a/packages/redux-devtools-cli/src/worker.ts b/packages/redux-devtools-cli/src/worker.ts deleted file mode 100644 index b6597e09..00000000 --- a/packages/redux-devtools-cli/src/worker.ts +++ /dev/null @@ -1,86 +0,0 @@ -import SCWorker from 'socketcluster/scworker'; -import express from 'express'; -import routes from './routes'; -import createStore from './store'; - -const app = express(); - -class Worker extends SCWorker { - run() { - const httpServer = this.httpServer; - const scServer = this.scServer; - const options = this.options; - const store = createStore(options); - - httpServer.on('request', app); - - app.use(routes(options, store, scServer)); - - scServer.addMiddleware(scServer.MIDDLEWARE_EMIT, function (req, next) { - const channel = req.event; - const data = req.data; - if ( - channel.substr(0, 3) === 'sc-' || - channel === 'respond' || - channel === 'log' - ) { - scServer.exchange.publish(channel, data); - } else if (channel === 'log-noid') { - scServer.exchange.publish('log', { id: req.socket.id, data: data }); - } - next(); - }); - - scServer.addMiddleware(scServer.MIDDLEWARE_SUBSCRIBE, function (req, next) { - next(); - if (req.channel === 'report') { - store - .list() - .then(function (data) { - req.socket.emit(req.channel!, { type: 'list', data: data }); - }) - .catch(function (error) { - console.error(error); // eslint-disable-line no-console - }); - } - }); - - scServer.on('connection', function (socket) { - let channelToWatch: string, channelToEmit: string; - socket.on('login', function (this: Worker, credentials, respond) { - if (credentials === 'master') { - channelToWatch = 'respond'; - channelToEmit = 'log'; - } else { - channelToWatch = 'log'; - channelToEmit = 'respond'; - } - this.exchange.subscribe('sc-' + socket.id).watch(function (msg) { - socket.emit(channelToWatch, msg); - }); - respond(null, channelToWatch); - }); - socket.on('getReport', function (id: string, respond) { - store - .get(id) - .then(function (data) { - respond(null, data); - }) - .catch(function (error) { - console.error(error); // eslint-disable-line no-console - }); - }); - socket.on('disconnect', function (this: Worker) { - const channel = this.exchange.channel('sc-' + socket.id); - channel.unsubscribe(); - channel.destroy(); - scServer.exchange.publish(channelToEmit, { - id: socket.id, - type: 'DISCONNECTED', - }); - }); - }); - } -} - -new Worker(); diff --git a/packages/redux-devtools-cli/test/integration.spec.ts b/packages/redux-devtools-cli/test/integration.spec.ts index ec1482f7..0f81d11f 100644 --- a/packages/redux-devtools-cli/test/integration.spec.ts +++ b/packages/redux-devtools-cli/test/integration.spec.ts @@ -1,6 +1,6 @@ import childProcess from 'child_process'; import request from 'supertest'; -import scClient from 'socketcluster-client'; +import socketClusterClient from 'socketcluster-client'; jest.setTimeout(10000); @@ -44,20 +44,30 @@ describe('Server', function () { }); describe('Realtime monitoring', function () { - let socket: scClient.SCClientSocket, - socket2: scClient.SCClientSocket, + let socket: socketClusterClient.AGClientSocket, + socket2: socketClusterClient.AGClientSocket, channel; beforeAll(function () { - socket = scClient.connect({ hostname: 'localhost', port: 8000 }); + socket = socketClusterClient.create({ + hostname: 'localhost', + port: 8000, + }); socket.connect(); - socket.on('error', function (error) { - console.error('Socket1 error', error); // eslint-disable-line no-console + void (async () => { + for await (const data of socket.listener('error')) { + console.error('Socket1 error', data.error); // eslint-disable-line no-console + } + })(); + socket2 = socketClusterClient.create({ + hostname: 'localhost', + port: 8000, }); - socket2 = scClient.connect({ hostname: 'localhost', port: 8000 }); socket2.connect(); - socket.on('error', function (error) { - console.error('Socket2 error', error); // eslint-disable-line no-console - }); + void (async () => { + for await (const data of socket2.listener('error')) { + console.error('Socket2 error', data.error); // eslint-disable-line no-console + } + })(); }); afterAll(function () { @@ -65,73 +75,50 @@ describe('Server', function () { socket2.disconnect(); }); - it('should connect', function () { - return new Promise((done) => { - socket.on('connect', function (status) { - expect(status.id).toBeTruthy(); - done(); - }); - }); + it('should connect', async function () { + const data = await socket.listener('connect').once(); + expect(data.id).toBeTruthy(); }); - it('should login', function () { - socket.emit( - 'login', - 'master', - function (error: Error | undefined, channelName: string) { - if (error) { - /* eslint-disable-next-line no-console */ - console.log(error); - return; - } - expect(channelName).toBe('respond'); - channel = socket.subscribe(channelName); - expect(channel.SUBSCRIBED).toBe('subscribed'); - } - ); + it('should login', async function () { + try { + const channelName = (await socket.invoke('login', 'master')) as string; + expect(channelName).toBe('respond'); + channel = socket.subscribe(channelName); + expect(channel.SUBSCRIBED).toBe('subscribed'); + } catch (error) { + console.log(error); + } }); - it('should send message', function () { - return new Promise((done) => { - const data = { - type: 'ACTION', - payload: { - todos: 'do some', - }, + it('should send message', async function () { + const data = { + type: 'ACTION', + payload: { + todos: 'do some', + }, + action: { + timestamp: 1483349708506, action: { - timestamp: 1483349708506, - action: { - type: 'ADD_TODO', - text: 'hggg', - }, + type: 'ADD_TODO', + text: 'hggg', }, - instanceId: 'tAmA7H5fclyWhvizAAAi', - name: 'LoggerInstance', - id: 'tAmA7H5fclyWhvizAAAi', - }; + }, + instanceId: 'tAmA7H5fclyWhvizAAAi', + name: 'LoggerInstance', + id: 'tAmA7H5fclyWhvizAAAi', + }; - socket2.emit( - 'login', - '', - function (error: Error | undefined, channelName: string) { - if (error) { - /* eslint-disable-next-line no-console */ - console.log(error); - return; - } - expect(channelName).toBe('log'); - const channel2 = socket2.subscribe(channelName); - expect(channel2.SUBSCRIBED).toBe('subscribed'); - channel2.on('subscribe', function () { - channel2.watch(function (message) { - expect(message).toEqual(data); - done(); - }); - socket.emit(channelName, data); - }); - } - ); - }); + try { + const channelName = (await socket.invoke('login', '')) as string; + expect(channelName).toBe('log'); + const channel2 = socket2.subscribe(channelName); + expect(channel2.SUBSCRIBED).toBe('subscribed'); + const message = await channel2.listener('subscribe').once(); + expect(message).toEqual(data); + } catch (error) { + console.log(error); + } }); }); @@ -149,97 +136,61 @@ describe('Server', function () { 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) ' + 'AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.95 Safari/537.36', }; - it('should add a report', function () { - return new Promise((done) => { - // eslint-disable-next-line @typescript-eslint/no-floating-promises - request('http://localhost:8000') - .post('/') - .send(report) - .set('Accept', 'application/json') - .expect('Content-Type', /application\/json/) - .expect(200) - .then(function (res: { body: { id: string } }) { - id = res.body.id; - expect(id).toBeTruthy(); - done(); - }); - }); + it('should add a report', async function () { + const res = await request('http://localhost:8000') + .post('/') + .send(report) + .set('Accept', 'application/json') + .expect('Content-Type', /application\/json/) + .expect(200); + id = res.body.id; + expect(id).toBeTruthy(); }); - it('should get the report', function () { - return new Promise((done) => { - // eslint-disable-next-line @typescript-eslint/no-floating-promises - request('http://localhost:8000') - .post('/') - .send({ - op: 'get', - id: id, - }) - .set('Accept', 'application/json') - .expect('Content-Type', /application\/json/) - .expect(200) - .then(function (res: { body: unknown }) { - expect(res.body).toMatchObject(report); - done(); - }); - }); + it('should get the report', async function () { + const res = await request('http://localhost:8000') + .post('/') + .send({ + op: 'get', + id: id, + }) + .set('Accept', 'application/json') + .expect('Content-Type', /application\/json/) + .expect(200); + expect(res.body).toMatchObject(report); }); - it('should list reports', function () { - return new Promise((done) => { - // eslint-disable-next-line @typescript-eslint/no-floating-promises - request('http://localhost:8000') - .post('/') - .send({ - op: 'list', - }) - .set('Accept', 'application/json') - .expect('Content-Type', /application\/json/) - .expect(200) - .then(function (res: { - body: { id: string; title: string | null; added: string | null }[]; - }) { - expect(res.body).toHaveLength(1); - expect(res.body[0].id).toBe(id); - expect(res.body[0].title).toBe('Test report'); - expect(res.body[0].added).toBeTruthy(); - done(); - }); - }); + it('should list reports', async function () { + const res = await request('http://localhost:8000') + .post('/') + .send({ + op: 'list', + }) + .set('Accept', 'application/json') + .expect('Content-Type', /application\/json/) + .expect(200); + expect(res.body).toHaveLength(1); + expect(res.body[0].id).toBe(id); + expect(res.body[0].title).toBe('Test report'); + expect(res.body[0].added).toBeTruthy(); }); }); describe('GraphQL backend', function () { - it('should get the report', function () { - return new Promise((done) => { - // eslint-disable-next-line @typescript-eslint/no-floating-promises - request('http://localhost:8000') - .post('/graphql') - .send({ - query: '{ reports { id, type, title } }', - }) - .set('Accept', 'application/json') - .expect('Content-Type', /application\/json/) - .expect(200) - .then(function (res: { - body: { - data: { - reports: { - id: string; - title: string | null; - type: string | null; - }[]; - }; - }; - }) { - const reports = res.body.data.reports; - expect(reports).toHaveLength(1); - expect(reports[0].id).toBeTruthy(); - expect(reports[0].title).toBe('Test report'); - expect(reports[0].type).toBe('ACTIONS'); - done(); - }); - }); + it('should get the report', async function () { + const res = await request('http://localhost:8000') + .post('/graphql') + .send({ + query: '{ reports { id, type, title } }', + }) + .set('Accept', 'application/json') + .expect('Content-Type', /application\/json/) + .expect(200); + const reports = res.body.data.reports; + expect(reports).toHaveLength(1); + expect(reports[0].id).toBeTruthy(); + expect(reports[0].title).toBe('Test report'); + expect(reports[0].type).toBe('ACTIONS'); }); }); }); diff --git a/packages/redux-devtools-dock-monitor/CHANGELOG.md b/packages/redux-devtools-dock-monitor/CHANGELOG.md index 7394d499..cac58858 100644 --- a/packages/redux-devtools-dock-monitor/CHANGELOG.md +++ b/packages/redux-devtools-dock-monitor/CHANGELOG.md @@ -1,5 +1,25 @@ # Change Log +## 3.0.1 + +### Patch Changes + +- a55ba302: Fix peer dependencies on @redux-devtools/core +- Updated dependencies [a55ba302] + - @redux-devtools/core@3.13.1 + +## 3.0.0 + +### Minor Changes + +- 8a7eae4: Add React 18 to peerDependencies range + +### Patch Changes + +- Updated dependencies [8a7eae4] + - react-dock@0.6.0 + - @redux-devtools/core@3.13.0 + ## 2.1.1 ### Patch Changes diff --git a/packages/redux-devtools-dock-monitor/package.json b/packages/redux-devtools-dock-monitor/package.json index 6fe1dbeb..0d53534f 100644 --- a/packages/redux-devtools-dock-monitor/package.json +++ b/packages/redux-devtools-dock-monitor/package.json @@ -1,6 +1,6 @@ { "name": "@redux-devtools/dock-monitor", - "version": "2.1.1", + "version": "3.0.1", "description": "A resizable and movable dock for Redux DevTools monitors", "keywords": [ "redux", @@ -41,38 +41,38 @@ "prepublish": "pnpm run type-check && pnpm run lint" }, "dependencies": { - "@babel/runtime": "^7.17.9", + "@babel/runtime": "^7.18.3", "@types/prop-types": "^15.7.5", "parse-key": "^0.2.1", "prop-types": "^15.8.1", - "react-dock": "^0.5.1" + "react-dock": "^0.6.0" }, "devDependencies": { "@babel/cli": "^7.17.10", - "@babel/core": "^7.17.10", - "@babel/eslint-parser": "^7.17.0", - "@babel/plugin-transform-runtime": "^7.17.10", - "@babel/preset-env": "^7.17.10", - "@babel/preset-react": "^7.16.7", - "@babel/preset-typescript": "^7.16.7", - "@redux-devtools/core": "^3.12.0", + "@babel/core": "^7.18.5", + "@babel/eslint-parser": "^7.18.2", + "@babel/plugin-transform-runtime": "^7.18.5", + "@babel/preset-env": "^7.18.2", + "@babel/preset-react": "^7.17.12", + "@babel/preset-typescript": "^7.17.12", + "@redux-devtools/core": "^3.13.1", "@types/parse-key": "^0.2.0", - "@types/react": "^17.0.45", - "@typescript-eslint/eslint-plugin": "^5.22.0", - "@typescript-eslint/parser": "^5.22.0", - "eslint": "^8.15.0", + "@types/react": "^18.0.14", + "@typescript-eslint/eslint-plugin": "^5.29.0", + "@typescript-eslint/parser": "^5.29.0", + "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-react": "~7.28.0", - "eslint-plugin-react-hooks": "^4.5.0", - "react": "^17.0.2", + "eslint-plugin-react": "^7.30.1", + "eslint-plugin-react-hooks": "^4.6.0", + "react": "^18.2.0", "redux": "^4.2.0", "rimraf": "^3.0.2", - "typescript": "~4.6.4" + "typescript": "~4.7.4" }, "peerDependencies": { - "@redux-devtools/core": "^3.7.0", - "@types/react": "^16.3.0 || ^17.0.0", - "react": "^16.3.0 || ^17.0.0", + "@redux-devtools/core": "^3.13.1", + "@types/react": "^16.3.0 || ^17.0.0 || ^18.0.0", + "react": "^16.3.0 || ^17.0.0 || ^18.0.0", "redux": "^3.4.0 || ^4.0.0" } } diff --git a/packages/redux-devtools-extension/package.json b/packages/redux-devtools-extension/package.json index b27f14e6..888cd018 100644 --- a/packages/redux-devtools-extension/package.json +++ b/packages/redux-devtools-extension/package.json @@ -29,23 +29,23 @@ "prepublish": "pnpm run type-check && pnpm run lint" }, "dependencies": { - "@babel/runtime": "^7.17.9", + "@babel/runtime": "^7.18.3", "immutable": "^4.0.0" }, "devDependencies": { "@babel/cli": "^7.17.10", - "@babel/core": "^7.17.10", - "@babel/eslint-parser": "^7.17.0", - "@babel/plugin-transform-runtime": "^7.17.10", - "@babel/preset-env": "^7.17.10", - "@babel/preset-typescript": "^7.16.7", - "@typescript-eslint/eslint-plugin": "^5.22.0", - "@typescript-eslint/parser": "^5.22.0", - "eslint": "^8.15.0", + "@babel/core": "^7.18.5", + "@babel/eslint-parser": "^7.18.2", + "@babel/plugin-transform-runtime": "^7.18.5", + "@babel/preset-env": "^7.18.2", + "@babel/preset-typescript": "^7.17.12", + "@typescript-eslint/eslint-plugin": "^5.29.0", + "@typescript-eslint/parser": "^5.29.0", + "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", "redux": "^4.2.0", "rimraf": "^3.0.2", - "typescript": "~4.6.4" + "typescript": "~4.7.4" }, "peerDependencies": { "redux": "^3.1.0 || ^4.0.0" diff --git a/packages/redux-devtools-inspector-monitor-test-tab/CHANGELOG.md b/packages/redux-devtools-inspector-monitor-test-tab/CHANGELOG.md index 7171bf70..4629d6bb 100644 --- a/packages/redux-devtools-inspector-monitor-test-tab/CHANGELOG.md +++ b/packages/redux-devtools-inspector-monitor-test-tab/CHANGELOG.md @@ -1,5 +1,17 @@ # Change Log +## 1.0.0 + +### Minor Changes + +- 8a7eae4: Add React 18 to peerDependencies range + +### Patch Changes + +- Updated dependencies [8a7eae4] + - @redux-devtools/inspector-monitor@3.0.0 + - @redux-devtools/ui@1.3.0 + ## 0.8.6 ### Patch Changes diff --git a/packages/redux-devtools-inspector-monitor-test-tab/demo/CHANGELOG.md b/packages/redux-devtools-inspector-monitor-test-tab/demo/CHANGELOG.md index ab8e89cc..12624533 100644 --- a/packages/redux-devtools-inspector-monitor-test-tab/demo/CHANGELOG.md +++ b/packages/redux-devtools-inspector-monitor-test-tab/demo/CHANGELOG.md @@ -1,5 +1,16 @@ # test-demo +## 0.1.10 + +### Patch Changes + +- Updated dependencies [8a7eae4] + - @redux-devtools/dock-monitor@3.0.0 + - @redux-devtools/inspector-monitor-test-tab@1.0.0 + - @redux-devtools/inspector-monitor@3.0.0 + - @redux-devtools/ui@1.3.0 + - @redux-devtools/core@3.13.0 + ## 0.1.9 ### Patch Changes diff --git a/packages/redux-devtools-inspector-monitor-test-tab/demo/package.json b/packages/redux-devtools-inspector-monitor-test-tab/demo/package.json index 75acf40e..cd4e2eff 100644 --- a/packages/redux-devtools-inspector-monitor-test-tab/demo/package.json +++ b/packages/redux-devtools-inspector-monitor-test-tab/demo/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "test-demo", - "version": "0.1.9", + "version": "0.1.10", "license": "MIT", "scripts": { "start": "cross-env TS_NODE_PROJECT=\"tsconfig.webpack.json\" webpack serve --open", @@ -10,55 +10,50 @@ "type-check": "tsc --noEmit" }, "dependencies": { - "@redux-devtools/core": "^3.12.0", - "@redux-devtools/dock-monitor": "^2.1.1", - "@redux-devtools/inspector-monitor": "^2.1.2", - "@redux-devtools/inspector-monitor-test-tab": "^0.8.6", - "@redux-devtools/ui": "^1.2.1", - "connected-react-router": "^6.9.2", - "history": "^4.10.1", - "immutable": "^4.0.0", + "@redux-devtools/core": "^3.13.0", + "@redux-devtools/dock-monitor": "^3.0.0", + "@redux-devtools/inspector-monitor": "^3.0.0", + "@redux-devtools/inspector-monitor-test-tab": "^1.0.0", + "@redux-devtools/ui": "^1.3.0", + "immutable": "^4.1.0", "lodash.shuffle": "^4.2.0", - "react": "^17.0.2", - "react-dom": "^17.0.2", - "react-is": "^17.0.2", - "react-redux": "^7.2.8", - "react-router": "^5.3.1", + "react": "^18.2.0", + "react-dom": "^18.2.0", + "react-is": "^18.2.0", + "react-redux": "^8.0.2", + "react-router-dom": "^6.3.0", "redux": "^4.2.0", "redux-logger": "^3.0.6", "styled-components": "^5.3.5" }, "devDependencies": { - "@babel/core": "^7.17.10", - "@babel/preset-env": "^7.17.10", - "@babel/preset-react": "^7.16.7", - "@babel/preset-typescript": "^7.16.7", - "@types/history": "^4.7.11", + "@babel/core": "^7.18.5", + "@babel/preset-env": "^7.18.2", + "@babel/preset-react": "^7.17.12", + "@babel/preset-typescript": "^7.17.12", "@types/lodash.shuffle": "^4.2.7", - "@types/node": "^16.11.33", - "@types/react": "^17.0.45", - "@types/react-dom": "^17.0.16", - "@types/react-redux": "^7.1.24", - "@types/react-router": "^5.1.18", + "@types/node": "^16.11.41", + "@types/react": "^18.0.14", + "@types/react-dom": "^18.0.5", "@types/redux-logger": "^3.0.9", "@types/styled-components": "^5.1.25", - "@types/webpack-env": "^1.16.4", - "@typescript-eslint/eslint-plugin": "^5.22.0", - "@typescript-eslint/parser": "^5.22.0", + "@types/webpack-env": "^1.17.0", + "@typescript-eslint/eslint-plugin": "^5.29.0", + "@typescript-eslint/parser": "^5.29.0", "babel-loader": "^8.2.5", "cross-env": "^7.0.3", "css-loader": "^6.7.1", - "eslint": "^8.15.0", + "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-react": "~7.28.0", - "eslint-plugin-react-hooks": "^4.5.0", + "eslint-plugin-react": "^7.30.1", + "eslint-plugin-react-hooks": "^4.6.0", "fork-ts-checker-webpack-plugin": "^7.2.11", "html-webpack-plugin": "^5.5.0", "style-loader": "^3.3.1", - "ts-node": "^10.7.0", - "typescript": "~4.6.4", - "webpack": "^5.72.0", - "webpack-cli": "^4.9.2", - "webpack-dev-server": "^4.9.0" + "ts-node": "^10.8.1", + "typescript": "~4.7.4", + "webpack": "^5.73.0", + "webpack-cli": "^4.10.0", + "webpack-dev-server": "^4.9.2" } } diff --git a/packages/redux-devtools-inspector-monitor-test-tab/demo/src/DemoApp.tsx b/packages/redux-devtools-inspector-monitor-test-tab/demo/src/DemoApp.tsx index cb94daea..5f68b080 100644 --- a/packages/redux-devtools-inspector-monitor-test-tab/demo/src/DemoApp.tsx +++ b/packages/redux-devtools-inspector-monitor-test-tab/demo/src/DemoApp.tsx @@ -1,8 +1,8 @@ -import React, { CSSProperties } from 'react'; +import React, { CSSProperties, useRef } from 'react'; import { connect } from 'react-redux'; import { Button, Toolbar, Spacer } from '@redux-devtools/ui'; -import { push as pushRoute } from 'connected-react-router'; import pkg from '@redux-devtools/inspector-monitor-test-tab/package.json'; +import { useLocation } from 'react-router-dom'; import getOptions from './getOptions'; import { DemoAppState } from './reducers'; import { @@ -69,87 +69,84 @@ interface Props shuffleArray: () => void; } -class DemoApp extends React.Component { - timeout?: number; +function DemoApp(props: Props) { + const timeout = useRef(); + const location = useLocation(); - render() { - const options = getOptions(this.props.router.location); + const options = getOptions(location); - return ( -
-

{pkg.name || Package Name}

-
- {pkg.description || ( - Package Description - )} -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- {options.useExtension ? ( - - Disable browser extension - - ) : ( - - Use browser extension - - )} -
-
- ); - } - - toggleTimeoutUpdate = () => { - const enabled = !this.props.timeoutUpdateEnabled; - this.props.toggleTimeoutUpdate(enabled); + const toggleTimeoutUpdate = () => { + const enabled = !props.timeoutUpdateEnabled; + props.toggleTimeoutUpdate(enabled); if (enabled) { - this.timeout = window.setInterval(this.props.timeoutUpdate, 1000); + timeout.current = window.setInterval(props.timeoutUpdate, 1000); } else { - clearTimeout(this.timeout); + clearTimeout(timeout.current); } }; + + return ( +
+

{pkg.name || Package Name}

+
+ {pkg.description || ( + Package Description + )} +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ {options.useExtension ? ( + + Disable browser extension + + ) : ( + + Use browser extension + + )} +
+
+ ); } export default connect((state: DemoAppState) => state, { @@ -180,5 +177,4 @@ export default connect((state: DemoAppState) => state, { addFunction: (): AddFunctionAction => ({ type: 'ADD_FUNCTION' }), addSymbol: (): AddSymbolAction => ({ type: 'ADD_SYMBOL' }), shuffleArray: (): ShuffleArrayAction => ({ type: 'SHUFFLE_ARRAY' }), - pushRoute, })(DemoApp); diff --git a/packages/redux-devtools-inspector-monitor-test-tab/demo/src/DevTools.tsx b/packages/redux-devtools-inspector-monitor-test-tab/demo/src/DevTools.tsx index 3dfd5e23..fe45c903 100644 --- a/packages/redux-devtools-inspector-monitor-test-tab/demo/src/DevTools.tsx +++ b/packages/redux-devtools-inspector-monitor-test-tab/demo/src/DevTools.tsx @@ -1,5 +1,4 @@ import React from 'react'; -import { connect } from 'react-redux'; import { createDevTools } from '@redux-devtools/core'; import { InspectorMonitor, @@ -7,10 +6,9 @@ import { Tab, } from '@redux-devtools/inspector-monitor'; import { DockMonitor } from '@redux-devtools/dock-monitor'; -import { Location } from 'history'; +import { useLocation } from 'react-router-dom'; import getOptions from './getOptions'; import { TestTab } from '@redux-devtools/inspector-monitor-test-tab'; -import { DemoAppState } from './reducers'; import { Action } from 'redux'; export const getDevTools = (location: { search: string }) => @@ -38,13 +36,8 @@ export const getDevTools = (location: { search: string }) => ); -const UnconnectedDevTools = ({ location }: { location: Location }) => { +export function ConnectedDevTools() { + const location = useLocation(); const DevTools = getDevTools(location); return ; -}; - -const mapStateToProps = (state: DemoAppState) => ({ - location: state.router.location, -}); - -export const ConnectedDevTools = connect(mapStateToProps)(UnconnectedDevTools); +} diff --git a/packages/redux-devtools-inspector-monitor-test-tab/demo/src/getOptions.ts b/packages/redux-devtools-inspector-monitor-test-tab/demo/src/getOptions.ts index 2b8a0071..99aa45c8 100644 --- a/packages/redux-devtools-inspector-monitor-test-tab/demo/src/getOptions.ts +++ b/packages/redux-devtools-inspector-monitor-test-tab/demo/src/getOptions.ts @@ -9,12 +9,12 @@ export default function getOptions(location: { search: string }) { return { useExtension: location.search.indexOf('ext') !== -1, supportImmutable: location.search.indexOf('immutable') !== -1, - theme: getTheme(), + theme: getTheme(location), dark: location.search.indexOf('dark') !== -1, }; } -function getTheme() { +function getTheme(location: { search: string }) { const match = /theme=([^&]+)/.exec(location.search); return match ? match[1] : 'inspector'; } diff --git a/packages/redux-devtools-inspector-monitor-test-tab/demo/src/index.tsx b/packages/redux-devtools-inspector-monitor-test-tab/demo/src/index.tsx index 675ba777..f31cfbb6 100644 --- a/packages/redux-devtools-inspector-monitor-test-tab/demo/src/index.tsx +++ b/packages/redux-devtools-inspector-monitor-test-tab/demo/src/index.tsx @@ -1,5 +1,5 @@ import React from 'react'; -import { render } from 'react-dom'; +import { createRoot } from 'react-dom/client'; import { Container } from '@redux-devtools/ui'; import { Provider } from 'react-redux'; import { @@ -10,12 +10,10 @@ import { StoreEnhancerStoreCreator, } from 'redux'; import logger from 'redux-logger'; -import { Route } from 'react-router'; -import { createBrowserHistory } from 'history'; -import { ConnectedRouter, routerMiddleware } from 'connected-react-router'; +import { BrowserRouter, Route, Routes } from 'react-router-dom'; import { persistState } from '@redux-devtools/core'; import DemoApp from './DemoApp'; -import createRootReducer from './reducers'; +import { rootReducer } from './reducers'; import getOptions from './getOptions'; import { ConnectedDevTools, getDevTools } from './DevTools'; @@ -31,14 +29,12 @@ const ROOT = const DevTools = getDevTools(window.location); -const history = createBrowserHistory(); - const useDevtoolsExtension = !!(window as unknown as { __REDUX_DEVTOOLS_EXTENSION__: unknown }) && getOptions(window.location).useExtension; const enhancer = compose( - applyMiddleware(logger, routerMiddleware(history)), + applyMiddleware(logger), (next: StoreEnhancerStoreCreator) => { const instrument = useDevtoolsExtension ? ( @@ -52,11 +48,12 @@ const enhancer = compose( persistState(getDebugSessionKey()) ); -const store = createStore(createRootReducer(history), enhancer); +const store = createStore(rootReducer, enhancer); -render( +const root = createRoot(document.getElementById('root')!); +root.render( - + - - - + + } /> + {!useDevtoolsExtension && } - - , - document.getElementById('root') + + ); diff --git a/packages/redux-devtools-inspector-monitor-test-tab/demo/src/reducers.ts b/packages/redux-devtools-inspector-monitor-test-tab/demo/src/reducers.ts index cf39dba0..1481c51f 100644 --- a/packages/redux-devtools-inspector-monitor-test-tab/demo/src/reducers.ts +++ b/packages/redux-devtools-inspector-monitor-test-tab/demo/src/reducers.ts @@ -1,12 +1,6 @@ import Immutable from 'immutable'; import shuffle from 'lodash.shuffle'; import { combineReducers, Reducer } from 'redux'; -import { - connectRouter, - LocationChangeAction, - RouterState, -} from 'connected-react-router'; -import { History } from 'history'; type Nested = { long: { nested: { path: { to: { a: string } } }[] } }; @@ -139,11 +133,9 @@ type DemoAppAction = | HugePayloadAction | AddFunctionAction | AddSymbolAction - | ShuffleArrayAction - | LocationChangeAction; + | ShuffleArrayAction; export interface DemoAppState { - router: RouterState; timeoutUpdateEnabled: boolean; store: number; undefined: { val: undefined }; @@ -162,11 +154,8 @@ export interface DemoAppState { shuffleArray: unknown[]; } -const createRootReducer = ( - history: History -): Reducer => +export const rootReducer: Reducer = combineReducers({ - router: connectRouter(history) as Reducer, timeoutUpdateEnabled: (state = false, action) => action.type === 'TOGGLE_TIMEOUT_UPDATE' ? action.timeoutUpdateEnabled @@ -231,5 +220,3 @@ const createRootReducer = ( shuffleArray: (state = DEFAULT_SHUFFLE_ARRAY, action) => action.type === 'SHUFFLE_ARRAY' ? shuffle(state) : state, }); - -export default createRootReducer; diff --git a/packages/redux-devtools-inspector-monitor-test-tab/package.json b/packages/redux-devtools-inspector-monitor-test-tab/package.json index 6a6d5711..341cc8a7 100644 --- a/packages/redux-devtools-inspector-monitor-test-tab/package.json +++ b/packages/redux-devtools-inspector-monitor-test-tab/package.json @@ -1,6 +1,6 @@ { "name": "@redux-devtools/inspector-monitor-test-tab", - "version": "0.8.6", + "version": "1.0.0", "description": "Generate tests for redux devtools.", "keywords": [ "redux", @@ -43,54 +43,54 @@ "prepublish": "pnpm run type-check && pnpm run lint && pnpm run test" }, "dependencies": { - "@babel/runtime": "^7.17.9", - "@redux-devtools/ui": "^1.2.1", + "@babel/runtime": "^7.18.3", + "@redux-devtools/ui": "^1.3.0", "@types/prop-types": "^15.7.5", "es6template": "^1.0.5", "javascript-stringify": "^2.1.0", "jsan": "^3.1.14", "object-path": "^0.11.8", "prop-types": "^15.8.1", - "react-icons": "^4.3.1", + "react-icons": "^4.4.0", "simple-diff": "^1.6.0" }, "devDependencies": { "@babel/cli": "^7.17.10", - "@babel/core": "^7.17.10", - "@babel/eslint-parser": "^7.17.0", - "@babel/plugin-transform-runtime": "^7.17.10", - "@babel/preset-env": "^7.17.10", - "@babel/preset-react": "^7.16.7", - "@babel/preset-typescript": "^7.16.7", - "@redux-devtools/core": "^3.12.0", - "@redux-devtools/inspector-monitor": "^2.1.2", - "@testing-library/react": "^12.1.5", + "@babel/core": "^7.18.5", + "@babel/eslint-parser": "^7.18.2", + "@babel/plugin-transform-runtime": "^7.18.5", + "@babel/preset-env": "^7.18.2", + "@babel/preset-react": "^7.17.12", + "@babel/preset-typescript": "^7.17.12", + "@redux-devtools/core": "^3.13.0", + "@redux-devtools/inspector-monitor": "^3.0.0", + "@testing-library/react": "^13.3.0", "@types/es6template": "^1.0.0", - "@types/jest": "^27.5.0", + "@types/jest": "^27.5.2", "@types/jsan": "^3.1.2", "@types/object-path": "^0.11.1", - "@types/react": "^17.0.45", + "@types/react": "^18.0.14", "@types/simple-diff": "^1.6.1", - "@typescript-eslint/eslint-plugin": "^5.22.0", - "@typescript-eslint/parser": "^5.22.0", - "eslint": "^8.15.0", + "@typescript-eslint/eslint-plugin": "^5.29.0", + "@typescript-eslint/parser": "^5.29.0", + "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-jest": "^26.1.5", - "eslint-plugin-react": "~7.28.0", - "eslint-plugin-react-hooks": "^4.5.0", + "eslint-plugin-jest": "^26.5.3", + "eslint-plugin-react": "^7.30.1", + "eslint-plugin-react-hooks": "^4.6.0", "jest": "^27.5.1", - "react": "^17.0.2", - "react-dom": "^17.0.2", + "react": "^18.2.0", + "react-dom": "^18.2.0", "redux": "^4.2.0", "rimraf": "^3.0.2", - "ts-jest": "^27.1.4", - "typescript": "~4.6.4" + "ts-jest": "^27.1.5", + "typescript": "~4.7.4" }, "peerDependencies": { - "@redux-devtools/inspector-monitor": "^2.0.0", - "@types/react": "^16.3.0 || ^17.0.0", + "@redux-devtools/inspector-monitor": "^3.0.0", + "@types/react": "^16.3.0 || ^17.0.0 || ^18.0.0", "@types/styled-components": "^5.1.25", - "react": "^16.3.0 || ^17.0.0", + "react": "^16.3.0 || ^17.0.0 || ^18.0.0", "redux": "^3.4.0 || ^4.0.0", "styled-components": "^5.3.5" } diff --git a/packages/redux-devtools-inspector-monitor-trace-tab/CHANGELOG.md b/packages/redux-devtools-inspector-monitor-trace-tab/CHANGELOG.md index 974adf7b..86920e24 100644 --- a/packages/redux-devtools-inspector-monitor-trace-tab/CHANGELOG.md +++ b/packages/redux-devtools-inspector-monitor-trace-tab/CHANGELOG.md @@ -1,5 +1,16 @@ # Change Log +## 1.0.0 + +### Minor Changes + +- 8a7eae4: Add React 18 to peerDependencies range + +### Patch Changes + +- Updated dependencies [8a7eae4] + - @redux-devtools/inspector-monitor@3.0.0 + ## 0.3.4 ### Patch Changes diff --git a/packages/redux-devtools-inspector-monitor-trace-tab/package.json b/packages/redux-devtools-inspector-monitor-trace-tab/package.json index d3732a5e..2dd86bd4 100644 --- a/packages/redux-devtools-inspector-monitor-trace-tab/package.json +++ b/packages/redux-devtools-inspector-monitor-trace-tab/package.json @@ -1,6 +1,6 @@ { "name": "@redux-devtools/inspector-monitor-trace-tab", - "version": "0.3.4", + "version": "1.0.0", "description": "Submonitor for Redux DevTools inspector to show stack traces.", "homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/redux-devtools-inspector-monitor-trace-tab", "license": "MIT", @@ -31,8 +31,8 @@ }, "dependencies": { "@babel/code-frame": "^7.16.7", - "@babel/runtime": "^7.17.9", - "@types/chrome": "^0.0.184", + "@babel/runtime": "^7.18.3", + "@types/chrome": "^0.0.191", "anser": "^2.1.1", "html-entities": "^2.3.3", "path-browserify": "^1.0.1", @@ -41,43 +41,43 @@ }, "devDependencies": { "@babel/cli": "^7.17.10", - "@babel/core": "^7.17.10", - "@babel/eslint-parser": "^7.17.0", - "@babel/plugin-transform-runtime": "^7.17.10", - "@babel/preset-env": "^7.17.10", - "@babel/preset-react": "^7.16.7", - "@babel/preset-typescript": "^7.16.7", - "@redux-devtools/core": "^3.12.0", - "@redux-devtools/inspector-monitor": "^2.1.2", - "@testing-library/react": "^12.1.5", + "@babel/core": "^7.18.5", + "@babel/eslint-parser": "^7.18.2", + "@babel/plugin-transform-runtime": "^7.18.5", + "@babel/preset-env": "^7.18.2", + "@babel/preset-react": "^7.17.12", + "@babel/preset-typescript": "^7.17.12", + "@redux-devtools/core": "^3.13.0", + "@redux-devtools/inspector-monitor": "^3.0.0", + "@testing-library/react": "^13.3.0", "@types/babel__code-frame": "^7.0.3", "@types/html-entities": "^1.3.4", - "@types/jest": "^27.5.0", - "@types/node": "^16.11.33", + "@types/jest": "^27.5.2", + "@types/node": "^16.11.41", "@types/path-browserify": "^1.0.0", - "@types/react": "^17.0.45", + "@types/react": "^18.0.14", "@types/redux-devtools-themes": "^1.0.0", "@types/source-map": "0.5.2", - "@typescript-eslint/eslint-plugin": "^5.22.0", - "@typescript-eslint/parser": "^5.22.0", - "eslint": "^8.15.0", + "@typescript-eslint/eslint-plugin": "^5.29.0", + "@typescript-eslint/parser": "^5.29.0", + "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-jest": "^26.1.5", - "eslint-plugin-react": "~7.28.0", - "eslint-plugin-react-hooks": "^4.5.0", + "eslint-plugin-jest": "^26.5.3", + "eslint-plugin-react": "^7.30.1", + "eslint-plugin-react-hooks": "^4.6.0", "jest": "^27.5.1", - "react": "^17.0.2", - "react-dom": "^17.0.2", - "react-test-renderer": "^17.0.2", + "react": "^18.2.0", + "react-dom": "^18.2.0", + "react-test-renderer": "^18.2.0", "redux": "^4.2.0", "rimraf": "^3.0.2", - "ts-jest": "^27.1.4", - "typescript": "~4.6.4" + "ts-jest": "^27.1.5", + "typescript": "~4.7.4" }, "peerDependencies": { - "@redux-devtools/inspector-monitor": "^2.0.0", - "@types/react": "^16.3.0 || ^17.0.0", - "react": "^16.3.0 || ^17.0.0", + "@redux-devtools/inspector-monitor": "^3.0.0", + "@types/react": "^16.3.0 || ^17.0.0 || ^18.0.0", + "react": "^16.3.0 || ^17.0.0 || ^18.0.0", "redux": "^3.4.0 || ^4.0.0" } } diff --git a/packages/redux-devtools-inspector-monitor-trace-tab/test/StackTraceTab.spec.tsx b/packages/redux-devtools-inspector-monitor-trace-tab/test/StackTraceTab.spec.tsx index 75f23713..0650118a 100644 --- a/packages/redux-devtools-inspector-monitor-trace-tab/test/StackTraceTab.spec.tsx +++ b/packages/redux-devtools-inspector-monitor-trace-tab/test/StackTraceTab.spec.tsx @@ -1,5 +1,5 @@ import React from 'react'; -import { render, screen } from '@testing-library/react'; +import { render, screen, waitFor } from '@testing-library/react'; import { TraceTab } from '../src/StackTraceTab'; const actions = { @@ -42,7 +42,10 @@ describe('StackTraceTab component', () => { const { container } = render( ); - await screen.findByTestId('stack-trace'); + const stackTraceDiv = await screen.findByTestId('stack-trace'); + await waitFor(() => + expect(stackTraceDiv.querySelector('div')).toBeTruthy() + ); expect(container.firstChild).toMatchSnapshot(); }); }); diff --git a/packages/redux-devtools-inspector-monitor/CHANGELOG.md b/packages/redux-devtools-inspector-monitor/CHANGELOG.md index 9b016e24..bceb0b77 100644 --- a/packages/redux-devtools-inspector-monitor/CHANGELOG.md +++ b/packages/redux-devtools-inspector-monitor/CHANGELOG.md @@ -1,5 +1,25 @@ # Change Log +## 3.0.1 + +### Patch Changes + +- a55ba302: Fix peer dependencies on @redux-devtools/core +- Updated dependencies [a55ba302] + - @redux-devtools/core@3.13.1 + +## 3.0.0 + +### Minor Changes + +- 8a7eae4: Add React 18 to peerDependencies range + +### Patch Changes + +- Updated dependencies [8a7eae4] + - react-json-tree@0.17.0 + - @redux-devtools/core@3.13.0 + ## 2.1.2 ### Patch Changes diff --git a/packages/redux-devtools-inspector-monitor/demo/CHANGELOG.md b/packages/redux-devtools-inspector-monitor/demo/CHANGELOG.md index 0010b632..3a6a7e52 100644 --- a/packages/redux-devtools-inspector-monitor/demo/CHANGELOG.md +++ b/packages/redux-devtools-inspector-monitor/demo/CHANGELOG.md @@ -1,5 +1,14 @@ # inspector-demo +## 0.1.7 + +### Patch Changes + +- Updated dependencies [8a7eae4] + - @redux-devtools/dock-monitor@3.0.0 + - @redux-devtools/inspector-monitor@3.0.0 + - @redux-devtools/core@3.13.0 + ## 0.1.6 ### Patch Changes diff --git a/packages/redux-devtools-inspector-monitor/demo/package.json b/packages/redux-devtools-inspector-monitor/demo/package.json index c696b879..64909a2b 100644 --- a/packages/redux-devtools-inspector-monitor/demo/package.json +++ b/packages/redux-devtools-inspector-monitor/demo/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "inspector-demo", - "version": "0.1.6", + "version": "0.1.7", "license": "MIT", "scripts": { "start": "cross-env TS_NODE_PROJECT=\"tsconfig.webpack.json\" webpack serve --open", @@ -10,51 +10,46 @@ "type-check": "tsc --noEmit" }, "dependencies": { - "@redux-devtools/core": "^3.12.0", - "@redux-devtools/dock-monitor": "^2.1.1", - "@redux-devtools/inspector-monitor": "^2.1.2", + "@redux-devtools/core": "^3.13.0", + "@redux-devtools/dock-monitor": "^3.0.0", + "@redux-devtools/inspector-monitor": "^3.0.0", "base16": "^1.0.0", - "connected-react-router": "^6.9.2", - "history": "^4.10.1", - "immutable": "^4.0.0", + "immutable": "^4.1.0", "lodash.shuffle": "^4.2.0", - "react": "^17.0.2", - "react-bootstrap": "^2.3.1", - "react-dom": "^17.0.2", - "react-redux": "^7.2.8", - "react-router": "^5.3.1", + "react": "^18.2.0", + "react-bootstrap": "^2.4.0", + "react-dom": "^18.2.0", + "react-redux": "^8.0.2", + "react-router-dom": "^6.3.0", "redux": "^4.2.0", "redux-logger": "^3.0.6" }, "devDependencies": { - "@babel/core": "^7.17.10", - "@babel/preset-env": "^7.17.10", - "@babel/preset-react": "^7.16.7", - "@babel/preset-typescript": "^7.16.7", + "@babel/core": "^7.18.5", + "@babel/preset-env": "^7.18.2", + "@babel/preset-react": "^7.17.12", + "@babel/preset-typescript": "^7.17.12", "@types/base16": "^1.0.2", - "@types/history": "^4.7.11", "@types/lodash.shuffle": "^4.2.7", - "@types/node": "^16.11.33", - "@types/react": "^17.0.45", - "@types/react-dom": "^17.0.16", - "@types/react-redux": "^7.1.24", - "@types/react-router": "^5.1.18", + "@types/node": "^16.11.41", + "@types/react": "^18.0.14", + "@types/react-dom": "^18.0.5", "@types/redux-logger": "^3.0.9", - "@types/webpack-env": "^1.16.4", - "@typescript-eslint/eslint-plugin": "^5.22.0", - "@typescript-eslint/parser": "^5.22.0", + "@types/webpack-env": "^1.17.0", + "@typescript-eslint/eslint-plugin": "^5.29.0", + "@typescript-eslint/parser": "^5.29.0", "babel-loader": "^8.2.5", "cross-env": "^7.0.3", - "eslint": "^8.15.0", + "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-react": "~7.28.0", - "eslint-plugin-react-hooks": "^4.5.0", + "eslint-plugin-react": "^7.30.1", + "eslint-plugin-react-hooks": "^4.6.0", "fork-ts-checker-webpack-plugin": "^7.2.11", "html-webpack-plugin": "^5.5.0", - "ts-node": "^10.7.0", - "typescript": "~4.6.4", - "webpack": "^5.72.0", - "webpack-cli": "^4.9.2", - "webpack-dev-server": "^4.9.0" + "ts-node": "^10.8.1", + "typescript": "~4.7.4", + "webpack": "^5.73.0", + "webpack-cli": "^4.10.0", + "webpack-dev-server": "^4.9.2" } } diff --git a/packages/redux-devtools-inspector-monitor/demo/src/DemoApp.tsx b/packages/redux-devtools-inspector-monitor/demo/src/DemoApp.tsx index a1cd466c..deea8812 100644 --- a/packages/redux-devtools-inspector-monitor/demo/src/DemoApp.tsx +++ b/packages/redux-devtools-inspector-monitor/demo/src/DemoApp.tsx @@ -1,4 +1,4 @@ -import React, { CSSProperties } from 'react'; +import React, { CSSProperties, useRef } from 'react'; import { connect } from 'react-redux'; import pkg from '@redux-devtools/inspector-monitor/package.json'; import Button from 'react-bootstrap/Button'; @@ -10,9 +10,8 @@ import Col from 'react-bootstrap/Col'; import InputGroup from 'react-bootstrap/InputGroup'; import Row from 'react-bootstrap/Row'; import * as base16 from 'base16'; -import { push as pushRoute } from 'connected-react-router'; -import { Path } from 'history'; import { inspectorThemes } from '@redux-devtools/inspector-monitor'; +import { useLocation, useNavigate } from 'react-router-dom'; import getOptions, { Options } from './getOptions'; import { AddFunctionAction, @@ -140,132 +139,15 @@ interface Props addFunction: () => void; addSymbol: () => void; shuffleArray: () => void; - pushRoute: (path: Path) => void; } -class DemoApp extends React.Component { - timeout?: number; +function DemoApp(props: Props) { + const timeout = useRef(); + const location = useLocation(); + const navigate = useNavigate(); - render() { - const options = getOptions(this.props.router.location); - - return ( -
-

- {pkg.name || Package Name} -

-
- {pkg.description || ( - Package Description - )} -
-
-
-
- - - Theme: - - - - - this.setTheme(options, event.currentTarget.value) - } - > - {themeOptions.map((theme) => ( - - - {options.dark ? 'Light theme' : 'Dark theme'} - - - - -
-
-
-
-
- - - - - - - - - - - - - - - - - -
-
- -
- ); - } - - toggleExtension = () => { - const options = getOptions(this.props.router.location); + const toggleExtension = () => { + const options = getOptions(location); window.location.href = buildUrl({ ...options, @@ -273,34 +155,147 @@ class DemoApp extends React.Component { }); }; - toggleImmutableSupport = () => { - const options = getOptions(this.props.router.location); + const toggleImmutableSupport = () => { + const options = getOptions(location); - this.props.pushRoute( + navigate( buildUrl({ ...options, supportImmutable: !options.supportImmutable }) ); }; - toggleTheme = () => { - const options = getOptions(this.props.router.location); + const toggleTheme = () => { + const options = getOptions(location); - this.props.pushRoute(buildUrl({ ...options, dark: !options.dark })); + navigate(buildUrl({ ...options, dark: !options.dark })); }; - setTheme = (options: Options, theme: string) => { - this.props.pushRoute(buildUrl({ ...options, theme })); + const setTheme = (options: Options, theme: string) => { + navigate(buildUrl({ ...options, theme })); }; - toggleTimeoutUpdate = () => { - const enabled = !this.props.timeoutUpdateEnabled; - this.props.toggleTimeoutUpdate(enabled); + const toggleTimeoutUpdate = () => { + const enabled = !props.timeoutUpdateEnabled; + props.toggleTimeoutUpdate(enabled); if (enabled) { - this.timeout = window.setInterval(this.props.timeoutUpdate, 1000); + timeout.current = window.setInterval(props.timeoutUpdate, 1000); } else { - clearTimeout(this.timeout); + clearTimeout(timeout.current); } }; + + const options = getOptions(location); + + return ( +
+

+ {pkg.name || Package Name} +

+
+ {pkg.description || ( + Package Description + )} +
+
+
+
+ + + Theme: + + + + + setTheme(options, event.currentTarget.value) + } + > + {themeOptions.map((theme) => ( + + + {options.dark ? 'Light theme' : 'Dark theme'} + + + + +
+
+
+
+
+ + + + + + + + + + + + + + + + + +
+
+ +
+ ); } export default connect((state: DemoAppState) => state, { @@ -332,5 +327,4 @@ export default connect((state: DemoAppState) => state, { addFunction: (): AddFunctionAction => ({ type: 'ADD_FUNCTION' }), addSymbol: (): AddSymbolAction => ({ type: 'ADD_SYMBOL' }), shuffleArray: (): ShuffleArrayAction => ({ type: 'SHUFFLE_ARRAY' }), - pushRoute, })(DemoApp); diff --git a/packages/redux-devtools-inspector-monitor/demo/src/DevTools.tsx b/packages/redux-devtools-inspector-monitor/demo/src/DevTools.tsx index 829474e6..4042f2a0 100644 --- a/packages/redux-devtools-inspector-monitor/demo/src/DevTools.tsx +++ b/packages/redux-devtools-inspector-monitor/demo/src/DevTools.tsx @@ -1,14 +1,12 @@ import React from 'react'; -import { connect } from 'react-redux'; import { createDevTools } from '@redux-devtools/core'; import { DockMonitor } from '@redux-devtools/dock-monitor'; -import { Location } from 'history'; import { InspectorMonitor, base16Themes, } from '@redux-devtools/inspector-monitor'; +import { useLocation } from 'react-router-dom'; import getOptions from './getOptions'; -import { DemoAppState } from './reducers'; const CustomComponent = () => (
); -const UnconnectedDevTools = ({ location }: { location: Location }) => { +export function ConnectedDevTools() { + const location = useLocation(); const DevTools = getDevTools(location); return ; -}; - -const mapStateToProps = (state: DemoAppState) => ({ - location: state.router.location, -}); - -export const ConnectedDevTools = connect(mapStateToProps)(UnconnectedDevTools); +} diff --git a/packages/redux-devtools-inspector-monitor/demo/src/getOptions.ts b/packages/redux-devtools-inspector-monitor/demo/src/getOptions.ts index 2b8a0071..99aa45c8 100644 --- a/packages/redux-devtools-inspector-monitor/demo/src/getOptions.ts +++ b/packages/redux-devtools-inspector-monitor/demo/src/getOptions.ts @@ -9,12 +9,12 @@ export default function getOptions(location: { search: string }) { return { useExtension: location.search.indexOf('ext') !== -1, supportImmutable: location.search.indexOf('immutable') !== -1, - theme: getTheme(), + theme: getTheme(location), dark: location.search.indexOf('dark') !== -1, }; } -function getTheme() { +function getTheme(location: { search: string }) { const match = /theme=([^&]+)/.exec(location.search); return match ? match[1] : 'inspector'; } diff --git a/packages/redux-devtools-inspector-monitor/demo/src/index.tsx b/packages/redux-devtools-inspector-monitor/demo/src/index.tsx index 82015be0..026cf4ce 100644 --- a/packages/redux-devtools-inspector-monitor/demo/src/index.tsx +++ b/packages/redux-devtools-inspector-monitor/demo/src/index.tsx @@ -1,5 +1,5 @@ import React from 'react'; -import { render } from 'react-dom'; +import { createRoot } from 'react-dom/client'; import { Provider } from 'react-redux'; import { createStore, @@ -9,12 +9,10 @@ import { StoreEnhancer, } from 'redux'; import logger from 'redux-logger'; -import { Route } from 'react-router'; -import { createBrowserHistory } from 'history'; -import { ConnectedRouter, routerMiddleware } from 'connected-react-router'; +import { BrowserRouter, Route, Routes } from 'react-router-dom'; import { persistState } from '@redux-devtools/core'; import DemoApp from './DemoApp'; -import createRootReducer from './reducers'; +import { rootReducer } from './reducers'; import getOptions from './getOptions'; import { ConnectedDevTools, getDevTools } from './DevTools'; @@ -30,14 +28,12 @@ const ROOT = const DevTools = getDevTools(window.location); -const history = createBrowserHistory(); - const useDevtoolsExtension = !!(window as unknown as { __REDUX_DEVTOOLS_EXTENSION__: unknown }) .__REDUX_DEVTOOLS_EXTENSION__ && getOptions(window.location).useExtension; const enhancer = compose( - applyMiddleware(logger, routerMiddleware(history)), + applyMiddleware(logger), (next: StoreEnhancerStoreCreator) => { const instrument = useDevtoolsExtension ? ( @@ -51,16 +47,16 @@ const enhancer = compose( persistState(getDebugSessionKey()) ); -const store = createStore(createRootReducer(history), enhancer); +const store = createStore(rootReducer, enhancer); -render( +const root = createRoot(document.getElementById('root')!); +root.render( - - - - + + + } /> + {!useDevtoolsExtension && } - - , - document.getElementById('root') + + ); diff --git a/packages/redux-devtools-inspector-monitor/demo/src/reducers.ts b/packages/redux-devtools-inspector-monitor/demo/src/reducers.ts index a90e4646..f98b19ae 100644 --- a/packages/redux-devtools-inspector-monitor/demo/src/reducers.ts +++ b/packages/redux-devtools-inspector-monitor/demo/src/reducers.ts @@ -1,12 +1,6 @@ import Immutable from 'immutable'; import shuffle from 'lodash.shuffle'; import { combineReducers, Reducer } from 'redux'; -import { - connectRouter, - LocationChangeAction, - RouterState, -} from 'connected-react-router'; -import { History } from 'history'; type Nested = { long: { nested: { path: { to: { a: string } } }[] } }; @@ -168,11 +162,9 @@ type DemoAppAction = | HugePayloadAction | AddFunctionAction | AddSymbolAction - | ShuffleArrayAction - | LocationChangeAction; + | ShuffleArrayAction; export interface DemoAppState { - router: RouterState; timeoutUpdateEnabled: boolean; store: number; undefined: { val: undefined }; @@ -192,11 +184,8 @@ export interface DemoAppState { shuffleArray: unknown[]; } -const createRootReducer = ( - history: History -): Reducer => +export const rootReducer: Reducer = combineReducers({ - router: connectRouter(history) as Reducer, timeoutUpdateEnabled: (state = false, action) => action.type === 'TOGGLE_TIMEOUT_UPDATE' ? action.timeoutUpdateEnabled @@ -263,5 +252,3 @@ const createRootReducer = ( shuffleArray: (state = DEFAULT_SHUFFLE_ARRAY, action) => action.type === 'SHUFFLE_ARRAY' ? shuffle(state) : state, }); - -export default createRootReducer; diff --git a/packages/redux-devtools-inspector-monitor/package.json b/packages/redux-devtools-inspector-monitor/package.json index 802f77ba..cac5d79a 100644 --- a/packages/redux-devtools-inspector-monitor/package.json +++ b/packages/redux-devtools-inspector-monitor/package.json @@ -1,6 +1,6 @@ { "name": "@redux-devtools/inspector-monitor", - "version": "2.1.2", + "version": "3.0.1", "description": "Redux DevTools Diff Monitor", "homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/redux-devtools-inspector-monitor", "bugs": { @@ -35,13 +35,13 @@ "prepublish": "pnpm run type-check && pnpm run lint" }, "dependencies": { - "@babel/runtime": "^7.17.9", + "@babel/runtime": "^7.18.3", "@types/dragula": "^3.7.1", "@types/lodash": "^4.14.182", "@types/prop-types": "^15.7.5", "dateformat": "^4.6.3", "hex-rgba": "^1.0.2", - "immutable": "^4.0.0", + "immutable": "^4.1.0", "javascript-stringify": "^2.1.0", "jsondiffpatch": "^0.4.1", "jss": "^10.9.0", @@ -50,40 +50,40 @@ "prop-types": "^15.8.1", "react-base16-styling": "^0.9.1", "react-dragula": "^1.1.17", - "react-json-tree": "^0.16.1", + "react-json-tree": "^0.17.0", "redux-devtools-themes": "^1.0.0" }, "devDependencies": { "@babel/cli": "^7.17.10", - "@babel/core": "^7.17.10", - "@babel/eslint-parser": "^7.17.0", - "@babel/plugin-transform-runtime": "^7.17.10", - "@babel/preset-env": "^7.17.10", - "@babel/preset-react": "^7.16.7", - "@babel/preset-typescript": "^7.16.7", - "@redux-devtools/core": "^3.12.0", + "@babel/core": "^7.18.5", + "@babel/eslint-parser": "^7.18.2", + "@babel/plugin-transform-runtime": "^7.18.5", + "@babel/preset-env": "^7.18.2", + "@babel/preset-react": "^7.17.12", + "@babel/preset-typescript": "^7.17.12", + "@redux-devtools/core": "^3.13.1", "@types/dateformat": "^3.0.1", "@types/hex-rgba": "^1.0.1", "@types/history": "^4.7.11", "@types/lodash.debounce": "^4.0.7", - "@types/react": "^17.0.45", + "@types/react": "^18.0.14", "@types/react-dragula": "^1.1.0", "@types/redux-devtools-themes": "^1.0.0", - "@typescript-eslint/eslint-plugin": "^5.22.0", - "@typescript-eslint/parser": "^5.22.0", - "eslint": "^8.15.0", + "@typescript-eslint/eslint-plugin": "^5.29.0", + "@typescript-eslint/parser": "^5.29.0", + "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-react": "~7.28.0", - "eslint-plugin-react-hooks": "^4.5.0", - "react": "^17.0.2", + "eslint-plugin-react": "^7.30.1", + "eslint-plugin-react-hooks": "^4.6.0", + "react": "^18.2.0", "redux": "^4.2.0", "rimraf": "^3.0.2", - "typescript": "~4.6.4" + "typescript": "~4.7.4" }, "peerDependencies": { - "@redux-devtools/core": "^3.7.0", - "@types/react": "^16.3.0 || ^17.0.0", - "react": "^16.3.0 || ^17.0.0", + "@redux-devtools/core": "^3.13.1", + "@types/react": "^16.3.0 || ^17.0.0 || ^18.0.0", + "react": "^16.3.0 || ^17.0.0 || ^18.0.0", "redux": "^3.4.0 || ^4.0.0" } } diff --git a/packages/redux-devtools-instrument/package.json b/packages/redux-devtools-instrument/package.json index bd615788..4ce30cae 100644 --- a/packages/redux-devtools-instrument/package.json +++ b/packages/redux-devtools-instrument/package.json @@ -41,30 +41,30 @@ "prepublish": "pnpm run type-check && pnpm run lint && pnpm run test" }, "dependencies": { - "@babel/runtime": "^7.17.9", + "@babel/runtime": "^7.18.3", "lodash": "^4.17.21" }, "devDependencies": { "@babel/cli": "^7.17.10", - "@babel/core": "^7.17.10", - "@babel/eslint-parser": "^7.17.0", - "@babel/plugin-transform-runtime": "^7.17.10", - "@babel/preset-env": "^7.17.10", - "@babel/preset-typescript": "^7.16.7", - "@types/jest": "^27.5.0", + "@babel/core": "^7.18.5", + "@babel/eslint-parser": "^7.18.2", + "@babel/plugin-transform-runtime": "^7.18.5", + "@babel/preset-env": "^7.18.2", + "@babel/preset-typescript": "^7.17.12", + "@types/jest": "^27.5.2", "@types/lodash": "^4.14.182", - "@types/node": "^16.11.33", - "@typescript-eslint/eslint-plugin": "^5.22.0", - "@typescript-eslint/parser": "^5.22.0", - "eslint": "^8.15.0", + "@types/node": "^16.11.41", + "@typescript-eslint/eslint-plugin": "^5.29.0", + "@typescript-eslint/parser": "^5.29.0", + "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-jest": "^26.1.5", + "eslint-plugin-jest": "^26.5.3", "jest": "^27.5.1", "redux": "^4.2.0", "rimraf": "^3.0.2", "rxjs": "^7.5.5", - "ts-jest": "^27.1.4", - "typescript": "~4.6.4" + "ts-jest": "^27.1.5", + "typescript": "~4.7.4" }, "peerDependencies": { "redux": "^3.4.0 || ^4.0.0" diff --git a/packages/redux-devtools-log-monitor/CHANGELOG.md b/packages/redux-devtools-log-monitor/CHANGELOG.md index 8a4d3a41..5976d8e2 100644 --- a/packages/redux-devtools-log-monitor/CHANGELOG.md +++ b/packages/redux-devtools-log-monitor/CHANGELOG.md @@ -1,5 +1,25 @@ # Change Log +## 4.0.1 + +### Patch Changes + +- a55ba302: Fix peer dependencies on @redux-devtools/core +- Updated dependencies [a55ba302] + - @redux-devtools/core@3.13.1 + +## 4.0.0 + +### Minor Changes + +- 8a7eae4: Add React 18 to peerDependencies range + +### Patch Changes + +- Updated dependencies [8a7eae4] + - react-json-tree@0.17.0 + - @redux-devtools/core@3.13.0 + ## 3.1.1 ### Patch Changes diff --git a/packages/redux-devtools-log-monitor/package.json b/packages/redux-devtools-log-monitor/package.json index d6981a4d..1af5fa7f 100644 --- a/packages/redux-devtools-log-monitor/package.json +++ b/packages/redux-devtools-log-monitor/package.json @@ -1,6 +1,6 @@ { "name": "@redux-devtools/log-monitor", - "version": "3.1.1", + "version": "4.0.1", "description": "The default tree view monitor for Redux DevTools", "keywords": [ "redux", @@ -41,40 +41,40 @@ "prepublish": "pnpm run type-check && pnpm run lint" }, "dependencies": { - "@babel/runtime": "^7.17.9", + "@babel/runtime": "^7.18.3", "@types/lodash.debounce": "^4.0.7", "@types/prop-types": "^15.7.5", "@types/redux-devtools-themes": "^1.0.0", "lodash.debounce": "^4.0.8", "prop-types": "^15.8.1", - "react-json-tree": "^0.16.1", + "react-json-tree": "^0.17.0", "redux-devtools-themes": "^1.0.0" }, "devDependencies": { "@babel/cli": "^7.17.10", - "@babel/core": "^7.17.10", - "@babel/eslint-parser": "^7.17.0", - "@babel/plugin-transform-runtime": "^7.17.10", - "@babel/preset-env": "^7.17.10", - "@babel/preset-react": "^7.16.7", - "@babel/preset-typescript": "^7.16.7", - "@redux-devtools/core": "^3.12.0", - "@types/react": "^17.0.45", - "@typescript-eslint/eslint-plugin": "^5.22.0", - "@typescript-eslint/parser": "^5.22.0", - "eslint": "^8.15.0", + "@babel/core": "^7.18.5", + "@babel/eslint-parser": "^7.18.2", + "@babel/plugin-transform-runtime": "^7.18.5", + "@babel/preset-env": "^7.18.2", + "@babel/preset-react": "^7.17.12", + "@babel/preset-typescript": "^7.17.12", + "@redux-devtools/core": "^3.13.1", + "@types/react": "^18.0.14", + "@typescript-eslint/eslint-plugin": "^5.29.0", + "@typescript-eslint/parser": "^5.29.0", + "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-react": "~7.28.0", - "eslint-plugin-react-hooks": "^4.5.0", - "react": "^17.0.2", + "eslint-plugin-react": "^7.30.1", + "eslint-plugin-react-hooks": "^4.6.0", + "react": "^18.2.0", "redux": "^4.2.0", "rimraf": "^3.0.2", - "typescript": "~4.6.4" + "typescript": "~4.7.4" }, "peerDependencies": { - "@redux-devtools/core": "^3.7.0", - "@types/react": "^16.3.0 || ^17.0.0", - "react": "^16.3.0 || ^17.0.0", + "@redux-devtools/core": "^3.13.1", + "@types/react": "^16.3.0 || ^17.0.0 || ^18.0.0", + "react": "^16.3.0 || ^17.0.0 || ^18.0.0", "redux": "^3.4.0 || ^4.0.0" } } diff --git a/packages/redux-devtools-log-monitor/src/LogMonitorButton.tsx b/packages/redux-devtools-log-monitor/src/LogMonitorButton.tsx index 50afcc85..01924eb9 100644 --- a/packages/redux-devtools-log-monitor/src/LogMonitorButton.tsx +++ b/packages/redux-devtools-log-monitor/src/LogMonitorButton.tsx @@ -1,4 +1,4 @@ -import React, { CSSProperties } from 'react'; +import React, { CSSProperties, ReactNode } from 'react'; import { Base16Theme } from 'redux-devtools-themes'; import brighten from './brighten'; @@ -29,6 +29,7 @@ interface Props { theme: Base16Theme; onClick: () => void; enabled: boolean; + children?: ReactNode; } export default class LogMonitorButton extends React.PureComponent< diff --git a/packages/redux-devtools-remote/CHANGELOG.md b/packages/redux-devtools-remote/CHANGELOG.md index fa83901d..67c0f336 100644 --- a/packages/redux-devtools-remote/CHANGELOG.md +++ b/packages/redux-devtools-remote/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## 0.7.5 + +### Patch Changes + +- @redux-devtools/utils@2.0.0 + ## 0.7.4 ### Patch Changes diff --git a/packages/redux-devtools-remote/package.json b/packages/redux-devtools-remote/package.json index 16e2494d..93667456 100644 --- a/packages/redux-devtools-remote/package.json +++ b/packages/redux-devtools-remote/package.json @@ -1,6 +1,6 @@ { "name": "@redux-devtools/remote", - "version": "0.7.4", + "version": "0.7.5", "description": "Relay Redux actions to remote Redux DevTools.", "keywords": [ "redux", @@ -41,32 +41,32 @@ "prepublish": "pnpm run type-check && pnpm run lint" }, "dependencies": { - "@babel/runtime": "^7.17.9", + "@babel/runtime": "^7.18.3", "@redux-devtools/instrument": "^2.1.0", - "@redux-devtools/utils": "^1.2.1", + "@redux-devtools/utils": "^2.0.0", "jsan": "^3.1.14", "querystring": "^0.2.1", "rn-host-detect": "^1.2.0", - "socketcluster-client": "^14.3.2" + "socketcluster-client": "^16.1.1" }, "devDependencies": { "@babel/cli": "^7.17.10", - "@babel/core": "^7.17.10", - "@babel/eslint-parser": "^7.17.0", - "@babel/plugin-transform-runtime": "^7.17.10", - "@babel/preset-env": "^7.17.10", - "@babel/preset-typescript": "^7.16.7", + "@babel/core": "^7.18.5", + "@babel/eslint-parser": "^7.18.2", + "@babel/plugin-transform-runtime": "^7.18.5", + "@babel/preset-env": "^7.18.2", + "@babel/preset-typescript": "^7.17.12", "@types/jsan": "^3.1.2", - "@types/node": "^16.11.33", + "@types/node": "^16.11.41", "@types/rn-host-detect": "^1.2.0", - "@types/socketcluster-client": "^13.0.5", - "@typescript-eslint/eslint-plugin": "^5.22.0", - "@typescript-eslint/parser": "^5.22.0", - "eslint": "^8.15.0", + "@types/socketcluster-client": "^16.0.0", + "@typescript-eslint/eslint-plugin": "^5.29.0", + "@typescript-eslint/parser": "^5.29.0", + "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", "redux": "^4.2.0", "rimraf": "^3.0.2", - "typescript": "~4.6.4" + "typescript": "~4.7.4" }, "peerDependencies": { "redux": "^3.5.2 || ^4.0.0" diff --git a/packages/redux-devtools-remote/src/devTools.ts b/packages/redux-devtools-remote/src/devTools.ts index 08dc7e85..224e0aca 100644 --- a/packages/redux-devtools-remote/src/devTools.ts +++ b/packages/redux-devtools-remote/src/devTools.ts @@ -1,5 +1,5 @@ import { stringify, parse } from 'jsan'; -import socketCluster, { SCClientSocket } from 'socketcluster-client'; +import socketClusterClient, { AGClientSocket } from 'socketcluster-client'; import configureStore from './configureStore'; import { defaultSocketOptions } from './constants'; import getHostForRN from 'rn-host-detect'; @@ -179,7 +179,7 @@ class DevToolsEnhancer> { store!: EnhancedStore; filters: LocalFilter | undefined; instanceId?: string; - socket?: SCClientSocket; + socket?: AGClientSocket; sendTo?: string; instanceName: string | undefined; appInstanceId!: string; @@ -241,7 +241,8 @@ class DevToolsEnhancer> { ) { const message: MessageToRelay = { type, - id: this.socket!.id, + // eslint-disable-next-line @typescript-eslint/no-unnecessary-type-assertion + id: this.socket!.id!, name: this.instanceName, instanceId: this.appInstanceId, }; @@ -279,7 +280,8 @@ class DevToolsEnhancer> { } else if (action) { message.action = action as ActionCreatorObject[]; } - this.socket!.emit(this.socket!.id ? 'log' : 'log-noid', message); + // eslint-disable-next-line @typescript-eslint/no-unnecessary-type-assertion + void this.socket!.transmit(this.socket!.id ? 'log' : 'log-noid', message); } dispatchRemotely( @@ -300,7 +302,9 @@ class DevToolsEnhancer> { if ( message.type === 'IMPORT' || (message.type === 'SYNC' && + // eslint-disable-next-line @typescript-eslint/no-unnecessary-type-assertion this.socket!.id && + // eslint-disable-next-line @typescript-eslint/no-unnecessary-type-assertion message.id !== this.socket!.id) ) { this.store.liftedStore.dispatch({ @@ -387,15 +391,22 @@ class DevToolsEnhancer> { } login() { - this.socket!.emit('login', 'master', (err: Error, channelName: string) => { - if (err) { - console.log(err); - return; + void (async () => { + try { + // eslint-disable-next-line @typescript-eslint/no-unnecessary-type-assertion + const channelName = (await this.socket!.invoke( + 'login', + 'master' + )) as string; + this.channel = channelName; + // eslint-disable-next-line @typescript-eslint/no-unnecessary-type-assertion + for await (const data of this.socket!.subscribe(channelName)) { + this.handleMessages(data as Message); + } + } catch (error) { + console.log(error); } - this.channel = channelName; - this.socket!.subscribe(channelName).watch(this.handleMessages); - this.socket!.on(channelName, this.handleMessages); - }); + })(); this.started = true; this.relay('START'); } @@ -404,11 +415,9 @@ class DevToolsEnhancer> { this.started = false; this.isMonitored = false; if (!this.socket) return; - this.socket.destroyChannel(this.channel!); - if (keepConnected) { - this.socket.off(this.channel, this.handleMessages); - } else { - this.socket.off(); + void this.socket.unsubscribe(this.channel!); + this.socket.closeChannel(this.channel!); + if (!keepConnected) { this.socket.disconnect(); } }; @@ -420,36 +429,48 @@ class DevToolsEnhancer> { ) return; - this.socket = socketCluster.create(this.socketOptions); + this.socket = socketClusterClient.create(this.socketOptions); - this.socket.on('error', (err) => { - // if we've already had this error before, increment it's counter, otherwise assign it '1' since we've had the error once. - // eslint-disable-next-line no-prototype-builtins - this.errorCounts[err.name] = this.errorCounts.hasOwnProperty(err.name) - ? this.errorCounts[err.name] + 1 - : 1; + void (async () => { + // eslint-disable-next-line @typescript-eslint/no-unnecessary-type-assertion + for await (const data of this.socket!.listener('error')) { + // if we've already had this error before, increment it's counter, otherwise assign it '1' since we've had the error once. + // eslint-disable-next-line no-prototype-builtins,@typescript-eslint/no-unsafe-argument + this.errorCounts[data.error.name] = this.errorCounts.hasOwnProperty( + data.error.name + ) + ? this.errorCounts[data.error.name] + 1 + : 1; - if (this.suppressConnectErrors) { - if (this.errorCounts[err.name] === 1) { - console.log( - 'remote-redux-devtools: Socket connection errors are being suppressed. ' + - '\n' + - "This can be disabled by setting suppressConnectErrors to 'false'." - ); - console.log(err); + if (this.suppressConnectErrors) { + if (this.errorCounts[data.error.name] === 1) { + console.log( + 'remote-redux-devtools: Socket connection errors are being suppressed. ' + + '\n' + + "This can be disabled by setting suppressConnectErrors to 'false'." + ); + console.log(data.error); + } + } else { + console.log(data.error); } - } else { - console.log(err); } - }); - this.socket.on('connect', () => { - console.log('connected to remotedev-server'); - this.errorCounts = {}; // clear the errorCounts object, so that we'll log any new errors in the event of a disconnect - this.login(); - }); - this.socket.on('disconnect', () => { - this.stop(true); - }); + })(); + + void (async () => { + // eslint-disable-next-line @typescript-eslint/no-unnecessary-type-assertion + for await (const data of this.socket!.listener('connect')) { + console.log('connected to remotedev-server'); + this.errorCounts = {}; // clear the errorCounts object, so that we'll log any new errors in the event of a disconnect + this.login(); + } + })(); + void (async () => { + // eslint-disable-next-line @typescript-eslint/no-unnecessary-type-assertion + for await (const data of this.socket!.listener('disconnect')) { + this.stop(true); + } + })(); }; checkForReducerErrors = (liftedState = this.getLiftedStateRaw()) => { diff --git a/packages/redux-devtools-rtk-query-monitor/CHANGELOG.md b/packages/redux-devtools-rtk-query-monitor/CHANGELOG.md index 17b08d2e..54c86762 100644 --- a/packages/redux-devtools-rtk-query-monitor/CHANGELOG.md +++ b/packages/redux-devtools-rtk-query-monitor/CHANGELOG.md @@ -1,5 +1,26 @@ # Change Log +## 3.0.1 + +### Patch Changes + +- a55ba302: Fix peer dependencies on @redux-devtools/core +- Updated dependencies [a55ba302] + - @redux-devtools/core@3.13.1 + +## 3.0.0 + +### Minor Changes + +- 8a7eae4: Add React 18 to peerDependencies range + +### Patch Changes + +- Updated dependencies [8a7eae4] + - react-json-tree@0.17.0 + - @redux-devtools/ui@1.3.0 + - @redux-devtools/core@3.13.0 + ## 2.1.2 ### Patch Changes diff --git a/packages/redux-devtools-rtk-query-monitor/demo/CHANGELOG.md b/packages/redux-devtools-rtk-query-monitor/demo/CHANGELOG.md index c946bf9a..04906628 100644 --- a/packages/redux-devtools-rtk-query-monitor/demo/CHANGELOG.md +++ b/packages/redux-devtools-rtk-query-monitor/demo/CHANGELOG.md @@ -1,5 +1,14 @@ # rtk-query-demo +## 0.1.9 + +### Patch Changes + +- Updated dependencies [8a7eae4] + - @redux-devtools/dock-monitor@3.0.0 + - @redux-devtools/rtk-query-monitor@3.0.0 + - @redux-devtools/core@3.13.0 + ## 0.1.8 ### Patch Changes diff --git a/packages/redux-devtools-rtk-query-monitor/demo/package.json b/packages/redux-devtools-rtk-query-monitor/demo/package.json index f1ceab42..f5e55d87 100644 --- a/packages/redux-devtools-rtk-query-monitor/demo/package.json +++ b/packages/redux-devtools-rtk-query-monitor/demo/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "rtk-query-demo", - "version": "0.1.8", + "version": "0.1.9", "license": "MIT", "scripts": { "start": "cross-env TS_NODE_PROJECT=\"tsconfig.webpack.json\" webpack serve --open", @@ -10,56 +10,54 @@ "type-check": "tsc --noEmit" }, "dependencies": { - "@babel/runtime": "^7.17.9", - "@chakra-ui/react": "^1.8.8", - "@emotion/react": "^11.9.0", - "@emotion/styled": "^11.8.1", - "@mswjs/data": "^0.10.0", - "@redux-devtools/core": "^3.12.0", - "@redux-devtools/dock-monitor": "^2.1.1", - "@redux-devtools/rtk-query-monitor": "^2.1.2", - "@reduxjs/toolkit": "^1.8.1", - "framer-motion": "^6.3.3", - "msw": "^0.39.2", - "react": "^17.0.2", - "react-dom": "^17.0.2", - "react-icons": "^4.3.1", - "react-is": "^17.0.2", - "react-redux": "^7.2.8", - "react-router-dom": "^5.3.1", + "@babel/runtime": "^7.18.3", + "@chakra-ui/react": "^2.2.1", + "@emotion/react": "^11.9.3", + "@emotion/styled": "^11.9.3", + "@mswjs/data": "^0.10.1", + "@redux-devtools/core": "^3.13.0", + "@redux-devtools/dock-monitor": "^3.0.0", + "@redux-devtools/rtk-query-monitor": "^3.0.0", + "@reduxjs/toolkit": "^1.8.2", + "framer-motion": "^6.3.15", + "msw": "^0.42.3", + "react": "^18.2.0", + "react-dom": "^18.2.0", + "react-icons": "^4.4.0", + "react-is": "^18.2.0", + "react-redux": "^8.0.2", + "react-router-dom": "^6.3.0", "styled-components": "^5.3.5" }, "devDependencies": { - "@babel/core": "^7.17.10", - "@babel/plugin-transform-runtime": "^7.17.10", - "@babel/preset-env": "^7.17.10", - "@babel/preset-react": "^7.16.7", - "@babel/preset-typescript": "^7.16.7", + "@babel/core": "^7.18.5", + "@babel/plugin-transform-runtime": "^7.18.5", + "@babel/preset-env": "^7.18.2", + "@babel/preset-react": "^7.17.12", + "@babel/preset-typescript": "^7.17.12", "@types/copy-webpack-plugin": "^8.0.1", - "@types/node": "^16.11.33", - "@types/react": "^17.0.45", - "@types/react-dom": "^17.0.16", - "@types/react-redux": "^7.1.24", - "@types/react-router-dom": "^5.3.3", + "@types/node": "^16.11.41", + "@types/react": "^18.0.14", + "@types/react-dom": "^18.0.5", "@types/styled-components": "^5.1.25", - "@typescript-eslint/eslint-plugin": "^5.22.0", - "@typescript-eslint/parser": "^5.22.0", + "@typescript-eslint/eslint-plugin": "^5.29.0", + "@typescript-eslint/parser": "^5.29.0", "babel-loader": "^8.2.5", - "copy-webpack-plugin": "^9.1.0", + "copy-webpack-plugin": "^11.0.0", "cross-env": "^7.0.3", "css-loader": "^6.7.1", - "eslint": "^8.15.0", + "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-react": "~7.28.0", - "eslint-plugin-react-hooks": "^4.5.0", + "eslint-plugin-react": "^7.30.1", + "eslint-plugin-react-hooks": "^4.6.0", "fork-ts-checker-webpack-plugin": "^7.2.11", "html-webpack-plugin": "^5.5.0", "style-loader": "^3.3.1", - "ts-node": "^10.7.0", - "typescript": "~4.6.4", - "webpack": "^5.72.0", - "webpack-cli": "^4.9.2", - "webpack-dev-server": "^4.9.0" + "ts-node": "^10.8.1", + "typescript": "~4.7.4", + "webpack": "^5.73.0", + "webpack-cli": "^4.10.0", + "webpack-dev-server": "^4.9.2" }, "msw": { "workerDirectory": "public" diff --git a/packages/redux-devtools-rtk-query-monitor/demo/src/features/posts/PostDetail.tsx b/packages/redux-devtools-rtk-query-monitor/demo/src/features/posts/PostDetail.tsx index 35ed2ced..99811e49 100644 --- a/packages/redux-devtools-rtk-query-monitor/demo/src/features/posts/PostDetail.tsx +++ b/packages/redux-devtools-rtk-query-monitor/demo/src/features/posts/PostDetail.tsx @@ -1,5 +1,5 @@ import React, { useState } from 'react'; -import { useHistory, useParams } from 'react-router-dom'; +import { useNavigate, useParams } from 'react-router-dom'; import { useDeletePostMutation, useGetPostQuery, @@ -73,13 +73,13 @@ const PostJsonDetail = ({ id }: { id: string }) => { export const PostDetail = () => { const { id } = useParams<{ id: string }>(); - const history = useHistory(); + const navigate = useNavigate(); const toast = useToast(); const [isEditing, setIsEditing] = useState(false); - const { data: post, isLoading } = useGetPostQuery(id); + const { data: post, isLoading } = useGetPostQuery(id!); const [updatePost, { isLoading: isUpdating }] = useUpdatePostMutation(); @@ -106,7 +106,7 @@ export const PostDetail = () => { name={post.name} onUpdate={async (name) => { try { - await updatePost({ id, name }).unwrap(); + await updatePost({ id: id!, name }).unwrap(); } catch { toast({ title: 'An error occurred', @@ -137,9 +137,7 @@ export const PostDetail = () => { {isUpdating ? 'Updating...' : 'Edit'} ); - userEvent.click(screen.getByRole('button')); + await userEvent.click(screen.getByRole('button')); expect(onClick).toHaveBeenCalled(); }); }); diff --git a/packages/redux-devtools-ui/test/ContextMenu.test.tsx b/packages/redux-devtools-ui/test/ContextMenu.test.tsx index d50a81e2..57d43528 100644 --- a/packages/redux-devtools-ui/test/ContextMenu.test.tsx +++ b/packages/redux-devtools-ui/test/ContextMenu.test.tsx @@ -18,13 +18,13 @@ describe('ContextMenu', function () { ); expect(container.firstChild).toMatchSnapshot(); }); - it('should handle the click event', () => { + it('should handle the click event', async () => { const onClick = jest.fn(); render( ); - userEvent.click(screen.getByRole('button', { name: 'Menu Item 1' })); + await userEvent.click(screen.getByRole('button', { name: 'Menu Item 1' })); expect(onClick).toHaveBeenCalled(); }); }); diff --git a/packages/redux-devtools-ui/test/Dialog.test.tsx b/packages/redux-devtools-ui/test/Dialog.test.tsx index 6397d478..c81868de 100644 --- a/packages/redux-devtools-ui/test/Dialog.test.tsx +++ b/packages/redux-devtools-ui/test/Dialog.test.tsx @@ -52,7 +52,7 @@ describe('Dialog', function () { expect(container.firstChild).toMatchSnapshot(); }); - it('should handle dismiss event', () => { + it('should handle dismiss event', async () => { const onDismiss = jest.fn(); render( ); - userEvent.click(screen.getByRole('button', { name: 'Cancel' })); + await userEvent.click(screen.getByRole('button', { name: 'Cancel' })); expect(onDismiss).toHaveBeenCalled(); }); - it('should handle submit event', () => { + it('should handle submit event', async () => { const onSubmit = jest.fn(); render( ); - userEvent.click(screen.getByRole('button', { name: 'Submit' })); + await userEvent.click(screen.getByRole('button', { name: 'Submit' })); expect(onSubmit).toHaveBeenCalled(); }); }); diff --git a/packages/redux-devtools-ui/test/Form.test.tsx b/packages/redux-devtools-ui/test/Form.test.tsx index 6521ccea..a44be26b 100644 --- a/packages/redux-devtools-ui/test/Form.test.tsx +++ b/packages/redux-devtools-ui/test/Form.test.tsx @@ -44,7 +44,7 @@ describe('Form', function () { expect(container.firstChild).toMatchSnapshot(); }); - it('should handle the submit event', () => { + it('should handle the submit event', async () => { const onSubmit = jest.fn(); render(
); - userEvent.click(screen.getByRole('button', { name: 'Submit' })); + await userEvent.click(screen.getByRole('button', { name: 'Submit' })); expect(onSubmit).toHaveBeenCalled(); }); }); diff --git a/packages/redux-devtools-ui/test/Notification.test.tsx b/packages/redux-devtools-ui/test/Notification.test.tsx index 7b92cdfa..e5e55a9f 100644 --- a/packages/redux-devtools-ui/test/Notification.test.tsx +++ b/packages/redux-devtools-ui/test/Notification.test.tsx @@ -23,11 +23,11 @@ describe('Notification', function () { expect(container.firstChild).toMatchSnapshot(); }); - it('should handle the click event', () => { + it('should handle the click event', async () => { const onClose = jest.fn(); render(Message); - userEvent.click(screen.getByRole('button')); + await userEvent.click(screen.getByRole('button')); expect(onClose).toHaveBeenCalled(); }); }); diff --git a/packages/redux-devtools-ui/test/SegmentedControl.test.tsx b/packages/redux-devtools-ui/test/SegmentedControl.test.tsx index 5d2c8460..c9c4c78e 100644 --- a/packages/redux-devtools-ui/test/SegmentedControl.test.tsx +++ b/packages/redux-devtools-ui/test/SegmentedControl.test.tsx @@ -17,7 +17,7 @@ describe('SegmentedControl', function () { ); expect(container.firstChild).toMatchSnapshot(); }); - it('should handle the click event', () => { + it('should handle the click event', async () => { const onClick = jest.fn(); render( ); - userEvent.click(screen.getByRole('button', { name: 'Button1' })); + await userEvent.click(screen.getByRole('button', { name: 'Button1' })); expect(onClick).toHaveBeenCalled(); }); }); diff --git a/packages/redux-devtools-ui/test/Select.test.tsx b/packages/redux-devtools-ui/test/Select.test.tsx index 8e6e1f68..a946c745 100644 --- a/packages/redux-devtools-ui/test/Select.test.tsx +++ b/packages/redux-devtools-ui/test/Select.test.tsx @@ -37,27 +37,27 @@ describe('Select', function () { expect(container.firstChild).toMatchSnapshot(); }); - it('should select another option', () => { + it('should select another option', async () => { const onChange = jest.fn(); const { container } = render( ); - userEvent.type(screen.getByRole('combobox'), 'text'); + await userEvent.type(screen.getByRole('combobox'), 'text'); expect(container.firstChild).toMatchSnapshot(); - userEvent.type(screen.getByRole('combobox'), '{enter}'); + await userEvent.type(screen.getByRole('combobox'), '{enter}'); expect(onChange).not.toHaveBeenCalled(); }); }); diff --git a/packages/redux-devtools-ui/test/Tabs.test.tsx b/packages/redux-devtools-ui/test/Tabs.test.tsx index 257d9de0..73dbac07 100644 --- a/packages/redux-devtools-ui/test/Tabs.test.tsx +++ b/packages/redux-devtools-ui/test/Tabs.test.tsx @@ -43,11 +43,11 @@ describe('Tabs', function () { expect(container.firstChild).toMatchSnapshot(); }); - it('should select tab', () => { + it('should select tab', async () => { const onClick = jest.fn(); render(); - userEvent.click(screen.getByRole('button', { name: 'Tab1' })); + await userEvent.click(screen.getByRole('button', { name: 'Tab1' })); expect(onClick).toHaveBeenCalled(); }); }); diff --git a/packages/redux-devtools-utils/CHANGELOG.md b/packages/redux-devtools-utils/CHANGELOG.md index 52af5f60..20bc43ba 100644 --- a/packages/redux-devtools-utils/CHANGELOG.md +++ b/packages/redux-devtools-utils/CHANGELOG.md @@ -1,5 +1,20 @@ # Change Log +## 2.0.1 + +### Patch Changes + +- a55ba302: Fix peer dependencies on @redux-devtools/core +- Updated dependencies [a55ba302] + - @redux-devtools/core@3.13.1 + +## 2.0.0 + +### Patch Changes + +- Updated dependencies [8a7eae4] + - @redux-devtools/core@3.13.0 + ## 1.2.1 ### Patch Changes diff --git a/packages/redux-devtools-utils/package.json b/packages/redux-devtools-utils/package.json index 395fb573..9d00d926 100644 --- a/packages/redux-devtools-utils/package.json +++ b/packages/redux-devtools-utils/package.json @@ -1,6 +1,6 @@ { "name": "@redux-devtools/utils", - "version": "1.2.1", + "version": "2.0.1", "description": "Reusable functions of Redux DevTools", "homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/redux-devtools-utils", "bugs": { @@ -32,12 +32,12 @@ "prepublish": "pnpm run type-check && pnpm run lint" }, "dependencies": { - "@babel/runtime": "^7.17.9", - "@redux-devtools/core": "^3.12.0", + "@babel/runtime": "^7.18.3", + "@redux-devtools/core": "^3.13.1", "@redux-devtools/serialize": "^0.4.1", "@types/get-params": "^0.1.0", "get-params": "^0.1.2", - "immutable": "^4.0.0", + "immutable": "^4.1.0", "jsan": "^3.1.14", "lodash": "^4.17.21", "nanoid": "^3.3.4", @@ -45,24 +45,24 @@ }, "devDependencies": { "@babel/cli": "^7.17.10", - "@babel/core": "^7.17.10", - "@babel/eslint-parser": "^7.17.0", - "@babel/plugin-transform-runtime": "^7.17.10", - "@babel/preset-env": "^7.17.10", - "@babel/preset-typescript": "^7.16.7", + "@babel/core": "^7.18.5", + "@babel/eslint-parser": "^7.18.2", + "@babel/plugin-transform-runtime": "^7.18.5", + "@babel/preset-env": "^7.18.2", + "@babel/preset-typescript": "^7.17.12", "@types/jsan": "^3.1.2", "@types/lodash": "^4.14.182", - "@types/node": "^16.11.33", - "@typescript-eslint/eslint-plugin": "^5.22.0", - "@typescript-eslint/parser": "^5.22.0", - "eslint": "^8.15.0", + "@types/node": "^16.11.41", + "@typescript-eslint/eslint-plugin": "^5.29.0", + "@typescript-eslint/parser": "^5.29.0", + "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", "rimraf": "^3.0.2", - "typescript": "~4.6.4" + "typescript": "~4.7.4" }, "peerDependencies": { - "@redux-devtools/core": "^3.7.0", - "immutable": "^4.0.0", + "@redux-devtools/core": "^3.13.1", + "immutable": "^4.1.0", "redux": "^4.2.0" } } diff --git a/packages/redux-devtools/CHANGELOG.md b/packages/redux-devtools/CHANGELOG.md index 6a77726a..0d659a1f 100644 --- a/packages/redux-devtools/CHANGELOG.md +++ b/packages/redux-devtools/CHANGELOG.md @@ -1,5 +1,17 @@ # Change Log +## 3.13.1 + +### Patch Changes + +- a55ba302: Fix peer dependencies on @redux-devtools/core + +## 3.13.0 + +### Minor Changes + +- 8a7eae4: Add React 18 to peerDependencies range + ## 3.12.0 ### Minor Changes diff --git a/packages/redux-devtools/examples/counter/CHANGELOG.md b/packages/redux-devtools/examples/counter/CHANGELOG.md index 835763ab..b6d8548a 100644 --- a/packages/redux-devtools/examples/counter/CHANGELOG.md +++ b/packages/redux-devtools/examples/counter/CHANGELOG.md @@ -1,5 +1,14 @@ # counter-redux +## 0.1.9 + +### Patch Changes + +- Updated dependencies [8a7eae4] + - @redux-devtools/dock-monitor@3.0.0 + - @redux-devtools/log-monitor@4.0.0 + - @redux-devtools/core@3.13.0 + ## 0.1.8 ### Patch Changes diff --git a/packages/redux-devtools/examples/counter/package.json b/packages/redux-devtools/examples/counter/package.json index 06ed2afb..af3c3768 100644 --- a/packages/redux-devtools/examples/counter/package.json +++ b/packages/redux-devtools/examples/counter/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "counter-redux", - "version": "0.1.8", + "version": "0.1.9", "description": "Counter example for redux", "homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/redux-devtools/examples/counter", "bugs": { @@ -19,41 +19,40 @@ "type-check": "tsc --noEmit" }, "dependencies": { - "@redux-devtools/core": "^3.12.0", - "@redux-devtools/dock-monitor": "^2.1.1", - "@redux-devtools/log-monitor": "^3.1.1", + "@redux-devtools/core": "^3.13.0", + "@redux-devtools/dock-monitor": "^3.0.0", + "@redux-devtools/log-monitor": "^4.0.0", "prop-types": "^15.8.1", - "react": "^17.0.2", - "react-dom": "^17.0.2", - "react-redux": "^7.2.8", + "react": "^18.2.0", + "react-dom": "^18.2.0", + "react-redux": "^8.0.2", "redux": "^4.2.0", "redux-thunk": "^2.4.1" }, "devDependencies": { - "@babel/core": "^7.17.10", - "@babel/preset-env": "^7.17.10", - "@babel/preset-react": "^7.16.7", - "@babel/preset-typescript": "^7.16.7", - "@types/node": "^16.11.33", + "@babel/core": "^7.18.5", + "@babel/preset-env": "^7.18.2", + "@babel/preset-react": "^7.17.12", + "@babel/preset-typescript": "^7.17.12", + "@types/node": "^16.11.41", "@types/prop-types": "^15.7.5", - "@types/react": "^17.0.45", - "@types/react-dom": "^17.0.16", - "@types/react-redux": "^7.1.24", - "@types/webpack-env": "^1.16.4", - "@typescript-eslint/eslint-plugin": "^5.22.0", - "@typescript-eslint/parser": "^5.22.0", + "@types/react": "^18.0.14", + "@types/react-dom": "^18.0.5", + "@types/webpack-env": "^1.17.0", + "@typescript-eslint/eslint-plugin": "^5.29.0", + "@typescript-eslint/parser": "^5.29.0", "babel-loader": "^8.2.5", "cross-env": "^7.0.3", - "eslint": "^8.15.0", + "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-react": "~7.28.0", - "eslint-plugin-react-hooks": "^4.5.0", + "eslint-plugin-react": "^7.30.1", + "eslint-plugin-react-hooks": "^4.6.0", "fork-ts-checker-webpack-plugin": "^7.2.11", "html-webpack-plugin": "^5.5.0", - "ts-node": "^10.7.0", - "typescript": "~4.6.4", - "webpack": "^5.72.0", - "webpack-cli": "^4.9.2", - "webpack-dev-server": "^4.9.0" + "ts-node": "^10.8.1", + "typescript": "~4.7.4", + "webpack": "^5.73.0", + "webpack-cli": "^4.10.0", + "webpack-dev-server": "^4.9.2" } } diff --git a/packages/redux-devtools/examples/counter/src/index.tsx b/packages/redux-devtools/examples/counter/src/index.tsx index d731d108..6f7fc48a 100644 --- a/packages/redux-devtools/examples/counter/src/index.tsx +++ b/packages/redux-devtools/examples/counter/src/index.tsx @@ -1,8 +1,9 @@ import React from 'react'; -import { render } from 'react-dom'; +import { createRoot } from 'react-dom/client'; import configureStore from './store/configureStore'; import Root from './containers/Root'; const store = configureStore(); -render(, document.getElementById('root')); +const root = createRoot(document.getElementById('root')!); +root.render(); diff --git a/packages/redux-devtools/examples/todomvc/CHANGELOG.md b/packages/redux-devtools/examples/todomvc/CHANGELOG.md index 870cd4f5..109e7774 100644 --- a/packages/redux-devtools/examples/todomvc/CHANGELOG.md +++ b/packages/redux-devtools/examples/todomvc/CHANGELOG.md @@ -1,5 +1,14 @@ # todomvc +## 0.2.8 + +### Patch Changes + +- Updated dependencies [8a7eae4] + - @redux-devtools/dock-monitor@3.0.0 + - @redux-devtools/log-monitor@4.0.0 + - @redux-devtools/core@3.13.0 + ## 0.2.7 ### Patch Changes diff --git a/packages/redux-devtools/examples/todomvc/package.json b/packages/redux-devtools/examples/todomvc/package.json index 6b96799a..14f64201 100644 --- a/packages/redux-devtools/examples/todomvc/package.json +++ b/packages/redux-devtools/examples/todomvc/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "todomvc", - "version": "0.2.7", + "version": "0.2.8", "description": "TodoMVC example for redux", "keywords": [ "react", @@ -31,45 +31,44 @@ "type-check": "tsc --noEmit" }, "dependencies": { - "@redux-devtools/core": "^3.12.0", - "@redux-devtools/dock-monitor": "^2.1.1", - "@redux-devtools/log-monitor": "^3.1.1", + "@redux-devtools/core": "^3.13.0", + "@redux-devtools/dock-monitor": "^3.0.0", + "@redux-devtools/log-monitor": "^4.0.0", "classnames": "^2.3.1", "prop-types": "^15.8.1", - "react": "^17.0.2", - "react-dom": "^17.0.2", - "react-redux": "^7.2.8", + "react": "^18.2.0", + "react-dom": "^18.2.0", + "react-redux": "^8.0.2", "redux": "^4.2.0", "todomvc-app-css": "^2.4.2" }, "devDependencies": { - "@babel/core": "^7.17.10", - "@babel/preset-env": "^7.17.10", - "@babel/preset-react": "^7.16.7", - "@babel/preset-typescript": "^7.16.7", + "@babel/core": "^7.18.5", + "@babel/preset-env": "^7.18.2", + "@babel/preset-react": "^7.17.12", + "@babel/preset-typescript": "^7.17.12", "@types/classnames": "^2.3.1", - "@types/node": "^16.11.33", + "@types/node": "^16.11.41", "@types/prop-types": "^15.7.5", - "@types/react": "^17.0.45", - "@types/react-dom": "^17.0.16", - "@types/react-redux": "^7.1.24", - "@types/webpack-env": "^1.16.4", - "@typescript-eslint/eslint-plugin": "^5.22.0", - "@typescript-eslint/parser": "^5.22.0", + "@types/react": "^18.0.14", + "@types/react-dom": "^18.0.5", + "@types/webpack-env": "^1.17.0", + "@typescript-eslint/eslint-plugin": "^5.29.0", + "@typescript-eslint/parser": "^5.29.0", "babel-loader": "^8.2.5", "cross-env": "^7.0.3", "css-loader": "^6.7.1", - "eslint": "^8.15.0", + "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-react": "~7.28.0", - "eslint-plugin-react-hooks": "^4.5.0", + "eslint-plugin-react": "^7.30.1", + "eslint-plugin-react-hooks": "^4.6.0", "fork-ts-checker-webpack-plugin": "^7.2.11", "html-webpack-plugin": "^5.5.0", "style-loader": "^3.3.1", - "ts-node": "^10.7.0", - "typescript": "~4.6.4", - "webpack": "^5.72.0", - "webpack-cli": "^4.9.2", - "webpack-dev-server": "^4.9.0" + "ts-node": "^10.8.1", + "typescript": "~4.7.4", + "webpack": "^5.73.0", + "webpack-cli": "^4.10.0", + "webpack-dev-server": "^4.9.2" } } diff --git a/packages/redux-devtools/examples/todomvc/src/index.tsx b/packages/redux-devtools/examples/todomvc/src/index.tsx index ea5cd00e..1aa83dbb 100644 --- a/packages/redux-devtools/examples/todomvc/src/index.tsx +++ b/packages/redux-devtools/examples/todomvc/src/index.tsx @@ -1,9 +1,10 @@ import 'todomvc-app-css/index.css'; import React from 'react'; -import { render } from 'react-dom'; +import { createRoot } from 'react-dom/client'; import configureStore from './store/configureStore'; import Root from './containers/Root'; const store = configureStore(); -render(, document.getElementById('root')); +const root = createRoot(document.getElementById('root')!); +root.render(); diff --git a/packages/redux-devtools/package.json b/packages/redux-devtools/package.json index 6576e609..7be343ec 100644 --- a/packages/redux-devtools/package.json +++ b/packages/redux-devtools/package.json @@ -1,6 +1,6 @@ { "name": "@redux-devtools/core", - "version": "3.12.0", + "version": "3.13.1", "description": "Redux DevTools with hot reloading and time travel", "keywords": [ "redux", @@ -41,7 +41,7 @@ "prepublish": "pnpm run type-check && pnpm run lint && pnpm run test" }, "dependencies": { - "@babel/runtime": "^7.17.9", + "@babel/runtime": "^7.18.3", "@redux-devtools/instrument": "^2.1.0", "@types/prop-types": "^15.7.5", "lodash": "^4.17.21", @@ -49,35 +49,34 @@ }, "devDependencies": { "@babel/cli": "^7.17.10", - "@babel/core": "^7.17.10", - "@babel/eslint-parser": "^7.17.0", - "@babel/plugin-transform-runtime": "^7.17.10", - "@babel/preset-env": "^7.17.10", - "@babel/preset-react": "^7.16.7", - "@babel/preset-typescript": "^7.16.7", - "@types/jest": "^27.5.0", + "@babel/core": "^7.18.5", + "@babel/eslint-parser": "^7.18.2", + "@babel/plugin-transform-runtime": "^7.18.5", + "@babel/preset-env": "^7.18.2", + "@babel/preset-react": "^7.17.12", + "@babel/preset-typescript": "^7.17.12", + "@types/jest": "^27.5.2", "@types/lodash": "^4.14.182", - "@types/node": "^16.11.33", - "@types/react": "^17.0.45", - "@types/react-redux": "^7.1.24", - "@typescript-eslint/eslint-plugin": "^5.22.0", - "@typescript-eslint/parser": "^5.22.0", - "eslint": "^8.15.0", + "@types/node": "^16.11.41", + "@types/react": "^18.0.14", + "@typescript-eslint/eslint-plugin": "^5.29.0", + "@typescript-eslint/parser": "^5.29.0", + "eslint": "^8.18.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-jest": "^26.1.5", - "eslint-plugin-react": "~7.28.0", - "eslint-plugin-react-hooks": "^4.5.0", + "eslint-plugin-jest": "^26.5.3", + "eslint-plugin-react": "^7.30.1", + "eslint-plugin-react-hooks": "^4.6.0", "jest": "^27.5.1", - "react": "^17.0.2", - "react-dom": "^17.0.2", - "react-redux": "^7.2.8", + "react": "^18.2.0", + "react-dom": "^18.2.0", + "react-redux": "^8.0.2", "redux": "^4.2.0", "rimraf": "^3.0.2", - "ts-jest": "^27.1.4", - "typescript": "~4.6.4" + "ts-jest": "^27.1.5", + "typescript": "~4.7.4" }, "peerDependencies": { - "react": "^0.14.9 || ^15.3.0 || ^16.0.0 || ^17.0.0", + "react": "^0.14.9 || ^15.3.0 || ^16.0.0 || ^17.0.0 || ^18.0.0", "react-redux": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0", "redux": "^3.5.2 || ^4.0.0" } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 7d385341..aa43798e 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,4 +1,4 @@ -lockfileVersion: 5.3 +lockfileVersion: 5.4 overrides: '@babel/highlight>chalk': Methuselah96/chalk#v2-without-process @@ -7,78 +7,77 @@ importers: .: specifiers: - '@babel/core': ^7.17.10 - '@babel/eslint-parser': ^7.17.0 - '@changesets/cli': ^2.22.0 - '@nrwl/nx-cloud': ^14.0.3 - '@typescript-eslint/eslint-plugin': ^5.22.0 - '@typescript-eslint/parser': ^5.22.0 - eslint: ^8.15.0 + '@babel/core': ^7.18.5 + '@babel/eslint-parser': ^7.18.2 + '@changesets/cli': ^2.23.0 + '@nrwl/nx-cloud': ^14.1.2 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-jest: ^26.1.5 - eslint-plugin-react: ~7.28.0 - eslint-plugin-react-hooks: ^4.5.0 + eslint-plugin-jest: ^26.5.3 + eslint-plugin-react: ^7.30.1 + eslint-plugin-react-hooks: ^4.6.0 jest: ^27.5.1 - nx: ^14.1.4 - prettier: 2.6.2 - typescript: ~4.6.4 + nx: ^14.3.6 + prettier: 2.7.1 + typescript: ~4.7.4 devDependencies: - '@babel/core': 7.17.10 - '@babel/eslint-parser': 7.17.0_035b3d23fd8620ffc8b252e0ab28a400 - '@changesets/cli': 2.22.0 - '@nrwl/nx-cloud': 14.0.3 - '@typescript-eslint/eslint-plugin': 5.22.0_9817cbad956b8aa5d1e3d9ec99e4a1e4 - '@typescript-eslint/parser': 5.22.0_eslint@8.15.0+typescript@4.6.4 - eslint: 8.15.0 - eslint-config-prettier: 8.5.0_eslint@8.15.0 - eslint-plugin-jest: 26.1.5_a9d133e1b4f50468488a2a18eed99ada - eslint-plugin-react: 7.28.0_eslint@8.15.0 - eslint-plugin-react-hooks: 4.5.0_eslint@8.15.0 + '@babel/core': 7.18.5 + '@babel/eslint-parser': 7.18.2_cz6e4qppzra6gosrrzcvbsxiom + '@changesets/cli': 2.23.0 + '@nrwl/nx-cloud': 14.1.2 + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 + eslint-plugin-jest: 26.5.3_hkaktba3mic4t6mktu5mmyzyhi + eslint-plugin-react: 7.30.1_eslint@8.18.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 jest: 27.5.1 - nx: 14.1.4_typescript@4.6.4 - prettier: 2.6.2 - typescript: 4.6.4 + nx: 14.3.6 + prettier: 2.7.1 + typescript: 4.7.4 extension: specifiers: - '@babel/core': ^7.17.10 + '@babel/core': ^7.18.5 '@babel/polyfill': ^7.12.1 - '@babel/preset-env': ^7.17.10 - '@babel/preset-react': ^7.16.7 - '@babel/preset-typescript': ^7.16.7 + '@babel/preset-env': ^7.18.2 + '@babel/preset-react': ^7.17.12 + '@babel/preset-typescript': ^7.17.12 '@babel/register': ^7.17.7 - '@redux-devtools/app': ^2.1.4 - '@redux-devtools/core': ^3.12.0 + '@redux-devtools/app': ^2.2.0 + '@redux-devtools/core': ^3.13.0 '@redux-devtools/instrument': ^2.1.0 '@redux-devtools/serialize': ^0.4.1 - '@redux-devtools/slider-monitor': ^3.1.2 - '@redux-devtools/ui': ^1.2.1 - '@redux-devtools/utils': ^1.2.1 + '@redux-devtools/slider-monitor': ^4.0.0 + '@redux-devtools/ui': ^1.3.0 + '@redux-devtools/utils': ^2.0.0 '@testing-library/jest-dom': ^5.16.4 - '@testing-library/react': ^12.1.5 - '@types/chrome': ^0.0.184 + '@testing-library/react': ^13.3.0 + '@types/chrome': ^0.0.191 '@types/jsan': ^3.1.2 '@types/lodash': ^4.14.182 - '@types/react': ^17.0.45 - '@types/react-dom': ^17.0.16 - '@types/react-redux': ^7.1.24 + '@types/react': ^18.0.14 + '@types/react-dom': ^18.0.5 '@types/styled-components': ^5.1.25 babel-loader: ^8.2.5 bestzip: ^2.2.1 - chromedriver: ^100.0.0 - copy-webpack-plugin: ^9.1.0 + chromedriver: ^102.0.0 + copy-webpack-plugin: ^11.0.0 cross-env: ^7.0.3 css-loader: ^6.7.1 - electron: ^18.2.0 - eslint: ^8.15.0 + electron: ^19.0.6 + eslint: ^8.18.0 eslint-config-airbnb: ^19.0.4 eslint-plugin-import: ^2.26.0 - eslint-plugin-jsx-a11y: ^6.5.1 - eslint-plugin-react: ~7.28.0 - eslint-plugin-react-hooks: ^4.5.0 + eslint-plugin-jsx-a11y: ^6.6.0 + eslint-plugin-react: ^7.30.1 + eslint-plugin-react-hooks: ^4.6.0 file-loader: ^6.2.0 fork-ts-checker-webpack-plugin: ^7.2.11 - immutable: ^4.0.0 + immutable: ^4.1.0 jest: ^27.5.1 jsan: ^3.1.14 localforage: ^1.10.0 @@ -86,25 +85,25 @@ importers: path-browserify: ^1.0.1 pug-html-loader: ^1.1.5 raw-loader: ^4.0.2 - react: ^17.0.2 - react-dom: ^17.0.2 - react-icons: ^4.3.1 - react-is: ^17.0.2 - react-json-tree: ^0.16.2 - react-redux: ^7.2.8 + react: ^18.2.0 + react-dom: ^18.2.0 + react-icons: ^4.4.0 + react-is: ^18.2.0 + react-json-tree: ^0.17.0 + react-redux: ^8.0.2 react-transform-catch-errors: ^1.0.2 react-transform-hmr: ^1.0.4 redux: ^4.2.0 redux-persist: ^6.0.0 rimraf: ^3.0.2 - selenium-webdriver: ^4.1.2 + selenium-webdriver: ^4.3.0 sinon-chrome: ^3.0.1 style-loader: ^3.3.1 styled-components: ^5.3.5 - ts-jest: ^27.1.4 - typescript: ~4.6.4 - webpack: ^5.72.0 - webpack-cli: ^4.9.2 + ts-jest: ^27.1.5 + typescript: ~4.7.4 + webpack: ^5.73.0 + webpack-cli: ^4.10.0 dependencies: '@babel/polyfill': 7.12.1 '@redux-devtools/app': link:../packages/redux-devtools-app @@ -118,91 +117,91 @@ importers: jsan: 3.1.14 localforage: 1.10.0 lodash: 4.17.21 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - react-icons: 4.3.1_react@17.0.2 - react-is: 17.0.2 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + react-icons: 4.4.0_react@18.2.0 + react-is: 18.2.0 react-json-tree: link:../packages/react-json-tree - react-redux: 7.2.8_react-dom@17.0.2+react@17.0.2 + react-redux: 8.0.2_jcbkrypqxz3emsprsw5dchskju redux: 4.2.0 - redux-persist: 6.0.0_react@17.0.2+redux@4.2.0 - styled-components: 5.3.5_281a4fa50a045c9112baf635f3bc27a7 + redux-persist: 6.0.0_react@18.2.0+redux@4.2.0 + styled-components: 5.3.5_7i5myeigehqah43i5u7wbekgba devDependencies: - '@babel/core': 7.17.10 - '@babel/preset-env': 7.17.10_@babel+core@7.17.10 - '@babel/preset-react': 7.16.7_@babel+core@7.17.10 - '@babel/preset-typescript': 7.16.7_@babel+core@7.17.10 - '@babel/register': 7.17.7_@babel+core@7.17.10 + '@babel/core': 7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-react': 7.17.12_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 + '@babel/register': 7.17.7_@babel+core@7.18.5 '@testing-library/jest-dom': 5.16.4 - '@testing-library/react': 12.1.5_react-dom@17.0.2+react@17.0.2 - '@types/chrome': 0.0.184 + '@testing-library/react': 13.3.0_biqbaboplfbrettd7655fr4n2y + '@types/chrome': 0.0.191 '@types/lodash': 4.14.182 - '@types/react': 17.0.45 - '@types/react-dom': 17.0.16 - '@types/react-redux': 7.1.24 + '@types/react': 18.0.14 + '@types/react-dom': 18.0.5 '@types/styled-components': 5.1.25 - babel-loader: 8.2.5_887a5110397f957d9e06dd05497793db + babel-loader: 8.2.5_te6ollfzjcco6mbxjl755ucqke bestzip: 2.2.1 - chromedriver: 100.0.0 - copy-webpack-plugin: 9.1.0_webpack@5.72.0 + chromedriver: 102.0.0 + copy-webpack-plugin: 11.0.0_webpack@5.73.0 cross-env: 7.0.3 - css-loader: 6.7.1_webpack@5.72.0 - electron: 18.2.0 - eslint: 8.15.0 - eslint-config-airbnb: 19.0.4_17019bae230ebd7b3243fd1d86555b4d - eslint-plugin-import: 2.26.0_f340230f306732139172ba983d5555be - eslint-plugin-jsx-a11y: 6.5.1_eslint@8.15.0 - eslint-plugin-react: 7.28.0_eslint@8.15.0 - eslint-plugin-react-hooks: 4.5.0_eslint@8.15.0 - file-loader: 6.2.0_webpack@5.72.0 - fork-ts-checker-webpack-plugin: 7.2.11_typescript@4.6.4+webpack@5.72.0 - immutable: 4.0.0 + css-loader: 6.7.1_webpack@5.73.0 + electron: 19.0.6 + eslint: 8.18.0 + eslint-config-airbnb: 19.0.4_egamsbadvc6ovgxe5yxurj2cai + eslint-plugin-import: 2.26.0_eslint@8.18.0 + eslint-plugin-jsx-a11y: 6.6.0_eslint@8.18.0 + eslint-plugin-react: 7.30.1_eslint@8.18.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 + file-loader: 6.2.0_webpack@5.73.0 + fork-ts-checker-webpack-plugin: 7.2.11_3o2jfq6vfqxns3sz6wn2nnc3ei + immutable: 4.1.0 jest: 27.5.1 path-browserify: 1.0.1 pug-html-loader: 1.1.5 - raw-loader: 4.0.2_webpack@5.72.0 + raw-loader: 4.0.2_webpack@5.73.0 react-transform-catch-errors: 1.0.2 react-transform-hmr: 1.0.4 rimraf: 3.0.2 - selenium-webdriver: 4.1.2 + selenium-webdriver: 4.3.0 sinon-chrome: 3.0.1 - style-loader: 3.3.1_webpack@5.72.0 - ts-jest: 27.1.4_1b8efe0ed321f0989772e89f9c474479 - typescript: 4.6.4 - webpack: 5.72.0_webpack-cli@4.9.2 - webpack-cli: 4.9.2_webpack@5.72.0 + style-loader: 3.3.1_webpack@5.73.0 + ts-jest: 27.1.5_fddvm4zdts2kttulaik7bnebje + typescript: 4.7.4 + webpack: 5.73.0_webpack-cli@4.10.0 + webpack-cli: 4.10.0_webpack@5.73.0 packages/d3-state-visualizer: specifiers: '@babel/cli': ^7.17.10 - '@babel/core': ^7.17.10 - '@babel/eslint-parser': ^7.17.0 - '@babel/plugin-transform-runtime': ^7.17.10 - '@babel/preset-env': ^7.17.10 - '@babel/preset-typescript': ^7.16.7 - '@babel/runtime': ^7.17.9 + '@babel/core': ^7.18.5 + '@babel/eslint-parser': ^7.18.2 + '@babel/plugin-transform-runtime': ^7.18.5 + '@babel/preset-env': ^7.18.2 + '@babel/preset-typescript': ^7.17.12 + '@babel/runtime': ^7.18.3 '@rollup/plugin-babel': ^5.3.1 - '@rollup/plugin-commonjs': ^22.0.0 + '@rollup/plugin-commonjs': ^22.0.1 '@rollup/plugin-node-resolve': ^13.3.0 '@types/d3': ^3.5.47 - '@types/ramda': ^0.28.12 - '@typescript-eslint/eslint-plugin': ^5.22.0 - '@typescript-eslint/parser': ^5.22.0 + '@types/node': ^16.11.41 + '@types/ramda': ^0.28.14 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 d3: ^3.5.17 d3tooltip: ^2.1.0 deepmerge: ^4.2.2 - eslint: ^8.15.0 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 map2tree: ^2.1.0 ramda: ^0.28.0 rimraf: ^3.0.2 - rollup: ^2.72.1 + rollup: ^2.75.7 rollup-plugin-terser: ^7.0.2 - rollup-plugin-typescript2: ^0.31.2 + rollup-plugin-typescript2: ^0.32.1 tslib: ^2.4.0 - typescript: ~4.6.4 + typescript: ~4.7.4 dependencies: - '@babel/runtime': 7.17.9 + '@babel/runtime': 7.18.3 '@types/d3': 3.5.47 d3: 3.5.17 d3tooltip: link:../d3tooltip @@ -210,617 +209,621 @@ importers: map2tree: link:../map2tree ramda: 0.28.0 devDependencies: - '@babel/cli': 7.17.10_@babel+core@7.17.10 - '@babel/core': 7.17.10 - '@babel/eslint-parser': 7.17.0_035b3d23fd8620ffc8b252e0ab28a400 - '@babel/plugin-transform-runtime': 7.17.10_@babel+core@7.17.10 - '@babel/preset-env': 7.17.10_@babel+core@7.17.10 - '@babel/preset-typescript': 7.16.7_@babel+core@7.17.10 - '@rollup/plugin-babel': 5.3.1_18dfcb1ca7050ba6f445f613f30091b1 - '@rollup/plugin-commonjs': 22.0.0_rollup@2.72.1 - '@rollup/plugin-node-resolve': 13.3.0_rollup@2.72.1 - '@types/ramda': 0.28.12 - '@typescript-eslint/eslint-plugin': 5.22.0_9817cbad956b8aa5d1e3d9ec99e4a1e4 - '@typescript-eslint/parser': 5.22.0_eslint@8.15.0+typescript@4.6.4 - eslint: 8.15.0 - eslint-config-prettier: 8.5.0_eslint@8.15.0 + '@babel/cli': 7.17.10_@babel+core@7.18.5 + '@babel/core': 7.18.5 + '@babel/eslint-parser': 7.18.2_cz6e4qppzra6gosrrzcvbsxiom + '@babel/plugin-transform-runtime': 7.18.5_@babel+core@7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 + '@rollup/plugin-babel': 5.3.1_za5spbk65gc2bmrclluhieacz4 + '@rollup/plugin-commonjs': 22.0.1_rollup@2.75.7 + '@rollup/plugin-node-resolve': 13.3.0_rollup@2.75.7 + '@types/node': 16.11.41 + '@types/ramda': 0.28.14 + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 rimraf: 3.0.2 - rollup: 2.72.1 - rollup-plugin-terser: 7.0.2_rollup@2.72.1 - rollup-plugin-typescript2: 0.31.2_rollup@2.72.1+typescript@4.6.4 + rollup: 2.75.7 + rollup-plugin-terser: 7.0.2_rollup@2.75.7 + rollup-plugin-typescript2: 0.32.1_okefoyb4o5sittgqayreuhurei tslib: 2.4.0 - typescript: 4.6.4 + typescript: 4.7.4 packages/d3-state-visualizer/examples/tree: specifiers: - '@babel/core': ^7.17.10 - '@babel/preset-env': ^7.17.10 - '@babel/preset-typescript': ^7.16.7 - '@types/node': ^16.11.33 - '@typescript-eslint/eslint-plugin': ^5.22.0 - '@typescript-eslint/parser': ^5.22.0 + '@babel/core': ^7.18.5 + '@babel/preset-env': ^7.18.2 + '@babel/preset-typescript': ^7.17.12 + '@types/node': ^16.11.41 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 babel-loader: ^8.2.5 cross-env: ^7.0.3 d3-state-visualizer: ^1.6.0 - eslint: ^8.15.0 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 fork-ts-checker-webpack-plugin: ^7.2.11 html-webpack-plugin: ^5.5.0 map2tree: ^2.1.0 - ts-node: ^10.7.0 - typescript: ~4.6.4 - webpack: ^5.72.0 - webpack-cli: ^4.9.2 - webpack-dev-server: ^4.9.0 + ts-node: ^10.8.1 + typescript: ~4.7.4 + webpack: ^5.73.0 + webpack-cli: ^4.10.0 + webpack-dev-server: ^4.9.2 dependencies: d3-state-visualizer: link:../.. map2tree: link:../../../map2tree devDependencies: - '@babel/core': 7.17.10 - '@babel/preset-env': 7.17.10_@babel+core@7.17.10 - '@babel/preset-typescript': 7.16.7_@babel+core@7.17.10 - '@types/node': 16.11.33 - '@typescript-eslint/eslint-plugin': 5.22.0_9817cbad956b8aa5d1e3d9ec99e4a1e4 - '@typescript-eslint/parser': 5.22.0_eslint@8.15.0+typescript@4.6.4 - babel-loader: 8.2.5_887a5110397f957d9e06dd05497793db + '@babel/core': 7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 + '@types/node': 16.11.41 + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e + babel-loader: 8.2.5_te6ollfzjcco6mbxjl755ucqke cross-env: 7.0.3 - eslint: 8.15.0 - eslint-config-prettier: 8.5.0_eslint@8.15.0 - fork-ts-checker-webpack-plugin: 7.2.11_typescript@4.6.4+webpack@5.72.0 - html-webpack-plugin: 5.5.0_webpack@5.72.0 - ts-node: 10.7.0_fd4b5ff48b408bf425abfec4a641da13 - typescript: 4.6.4 - webpack: 5.72.0_webpack-cli@4.9.2 - webpack-cli: 4.9.2_e12b136d9a821d211692f1ec9717cf12 - webpack-dev-server: 4.9.0_webpack-cli@4.9.2+webpack@5.72.0 + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 + fork-ts-checker-webpack-plugin: 7.2.11_3o2jfq6vfqxns3sz6wn2nnc3ei + html-webpack-plugin: 5.5.0_webpack@5.73.0 + ts-node: 10.8.1_qqpsu5gwjto2muvbbvmj4ndcmu + typescript: 4.7.4 + webpack: 5.73.0_webpack-cli@4.10.0 + webpack-cli: 4.10.0_hnfkmnck6ti4dm6ulhhz44v2ju + webpack-dev-server: 4.9.2_77l47gmqkrqiei5z7sbwz5iaj4 packages/d3tooltip: specifiers: '@babel/cli': ^7.17.10 - '@babel/core': ^7.17.10 - '@babel/eslint-parser': ^7.17.0 - '@babel/plugin-transform-runtime': ^7.17.10 - '@babel/preset-env': ^7.17.10 - '@babel/preset-typescript': ^7.16.7 - '@babel/runtime': ^7.17.9 + '@babel/core': ^7.18.5 + '@babel/eslint-parser': ^7.18.2 + '@babel/plugin-transform-runtime': ^7.18.5 + '@babel/preset-env': ^7.18.2 + '@babel/preset-typescript': ^7.17.12 + '@babel/runtime': ^7.18.3 '@rollup/plugin-babel': ^5.3.1 - '@rollup/plugin-commonjs': ^22.0.0 + '@rollup/plugin-commonjs': ^22.0.1 '@rollup/plugin-node-resolve': ^13.3.0 '@types/d3': ^3.5.47 - '@types/ramda': ^0.28.12 - '@typescript-eslint/eslint-plugin': ^5.22.0 - '@typescript-eslint/parser': ^5.22.0 + '@types/node': ^16.11.41 + '@types/ramda': ^0.28.14 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 d3: ^3.5.17 - eslint: ^8.15.0 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 ramda: ^0.28.0 rimraf: ^3.0.2 - rollup: ^2.72.1 + rollup: ^2.75.7 rollup-plugin-terser: ^7.0.2 - rollup-plugin-typescript2: ^0.31.2 + rollup-plugin-typescript2: ^0.32.1 tslib: ^2.4.0 - typescript: ~4.6.4 + typescript: ~4.7.4 dependencies: - '@babel/runtime': 7.17.9 + '@babel/runtime': 7.18.3 ramda: 0.28.0 devDependencies: - '@babel/cli': 7.17.10_@babel+core@7.17.10 - '@babel/core': 7.17.10 - '@babel/eslint-parser': 7.17.0_035b3d23fd8620ffc8b252e0ab28a400 - '@babel/plugin-transform-runtime': 7.17.10_@babel+core@7.17.10 - '@babel/preset-env': 7.17.10_@babel+core@7.17.10 - '@babel/preset-typescript': 7.16.7_@babel+core@7.17.10 - '@rollup/plugin-babel': 5.3.1_18dfcb1ca7050ba6f445f613f30091b1 - '@rollup/plugin-commonjs': 22.0.0_rollup@2.72.1 - '@rollup/plugin-node-resolve': 13.3.0_rollup@2.72.1 + '@babel/cli': 7.17.10_@babel+core@7.18.5 + '@babel/core': 7.18.5 + '@babel/eslint-parser': 7.18.2_cz6e4qppzra6gosrrzcvbsxiom + '@babel/plugin-transform-runtime': 7.18.5_@babel+core@7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 + '@rollup/plugin-babel': 5.3.1_za5spbk65gc2bmrclluhieacz4 + '@rollup/plugin-commonjs': 22.0.1_rollup@2.75.7 + '@rollup/plugin-node-resolve': 13.3.0_rollup@2.75.7 '@types/d3': 3.5.47 - '@types/ramda': 0.28.12 - '@typescript-eslint/eslint-plugin': 5.22.0_9817cbad956b8aa5d1e3d9ec99e4a1e4 - '@typescript-eslint/parser': 5.22.0_eslint@8.15.0+typescript@4.6.4 + '@types/node': 16.11.41 + '@types/ramda': 0.28.14 + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e d3: 3.5.17 - eslint: 8.15.0 - eslint-config-prettier: 8.5.0_eslint@8.15.0 + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 rimraf: 3.0.2 - rollup: 2.72.1 - rollup-plugin-terser: 7.0.2_rollup@2.72.1 - rollup-plugin-typescript2: 0.31.2_rollup@2.72.1+typescript@4.6.4 + rollup: 2.75.7 + rollup-plugin-terser: 7.0.2_rollup@2.75.7 + rollup-plugin-typescript2: 0.32.1_okefoyb4o5sittgqayreuhurei tslib: 2.4.0 - typescript: 4.6.4 + typescript: 4.7.4 packages/map2tree: specifiers: '@babel/cli': ^7.17.10 - '@babel/core': ^7.17.10 - '@babel/eslint-parser': ^7.17.0 - '@babel/plugin-transform-runtime': ^7.17.10 - '@babel/preset-env': ^7.17.10 - '@babel/preset-typescript': ^7.16.7 - '@babel/runtime': ^7.17.9 + '@babel/core': ^7.18.5 + '@babel/eslint-parser': ^7.18.2 + '@babel/plugin-transform-runtime': ^7.18.5 + '@babel/preset-env': ^7.18.2 + '@babel/preset-typescript': ^7.17.12 + '@babel/runtime': ^7.18.3 '@rollup/plugin-babel': ^5.3.1 - '@rollup/plugin-commonjs': ^22.0.0 + '@rollup/plugin-commonjs': ^22.0.1 '@rollup/plugin-node-resolve': ^13.3.0 - '@types/jest': ^27.5.0 + '@types/jest': ^27.5.2 '@types/lodash': ^4.14.182 - '@typescript-eslint/eslint-plugin': ^5.22.0 - '@typescript-eslint/parser': ^5.22.0 - eslint: ^8.15.0 + '@types/node': ^16.11.41 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-jest: ^26.1.5 - immutable: ^4.0.0 + eslint-plugin-jest: ^26.5.3 + immutable: ^4.1.0 jest: ^27.5.1 lodash: ^4.17.21 rimraf: ^3.0.2 - rollup: ^2.72.1 + rollup: ^2.75.7 rollup-plugin-terser: ^7.0.2 - rollup-plugin-typescript2: ^0.31.2 - ts-jest: ^27.1.4 + rollup-plugin-typescript2: ^0.32.1 + ts-jest: ^27.1.5 tslib: ^2.4.0 - typescript: ~4.6.4 + typescript: ~4.7.4 dependencies: - '@babel/runtime': 7.17.9 + '@babel/runtime': 7.18.3 lodash: 4.17.21 devDependencies: - '@babel/cli': 7.17.10_@babel+core@7.17.10 - '@babel/core': 7.17.10 - '@babel/eslint-parser': 7.17.0_035b3d23fd8620ffc8b252e0ab28a400 - '@babel/plugin-transform-runtime': 7.17.10_@babel+core@7.17.10 - '@babel/preset-env': 7.17.10_@babel+core@7.17.10 - '@babel/preset-typescript': 7.16.7_@babel+core@7.17.10 - '@rollup/plugin-babel': 5.3.1_18dfcb1ca7050ba6f445f613f30091b1 - '@rollup/plugin-commonjs': 22.0.0_rollup@2.72.1 - '@rollup/plugin-node-resolve': 13.3.0_rollup@2.72.1 - '@types/jest': 27.5.0 + '@babel/cli': 7.17.10_@babel+core@7.18.5 + '@babel/core': 7.18.5 + '@babel/eslint-parser': 7.18.2_cz6e4qppzra6gosrrzcvbsxiom + '@babel/plugin-transform-runtime': 7.18.5_@babel+core@7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 + '@rollup/plugin-babel': 5.3.1_za5spbk65gc2bmrclluhieacz4 + '@rollup/plugin-commonjs': 22.0.1_rollup@2.75.7 + '@rollup/plugin-node-resolve': 13.3.0_rollup@2.75.7 + '@types/jest': 27.5.2 '@types/lodash': 4.14.182 - '@typescript-eslint/eslint-plugin': 5.22.0_9817cbad956b8aa5d1e3d9ec99e4a1e4 - '@typescript-eslint/parser': 5.22.0_eslint@8.15.0+typescript@4.6.4 - eslint: 8.15.0 - eslint-config-prettier: 8.5.0_eslint@8.15.0 - eslint-plugin-jest: 26.1.5_a9d133e1b4f50468488a2a18eed99ada - immutable: 4.0.0 + '@types/node': 16.11.41 + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 + eslint-plugin-jest: 26.5.3_hkaktba3mic4t6mktu5mmyzyhi + immutable: 4.1.0 jest: 27.5.1 rimraf: 3.0.2 - rollup: 2.72.1 - rollup-plugin-terser: 7.0.2_rollup@2.72.1 - rollup-plugin-typescript2: 0.31.2_rollup@2.72.1+typescript@4.6.4 - ts-jest: 27.1.4_6b62438663b23957550c965172b78733 + rollup: 2.75.7 + rollup-plugin-terser: 7.0.2_rollup@2.75.7 + rollup-plugin-typescript2: 0.32.1_okefoyb4o5sittgqayreuhurei + ts-jest: 27.1.5_7giygfzd3xe4pjz4ngu3nwlqbm tslib: 2.4.0 - typescript: 4.6.4 + typescript: 4.7.4 packages/react-base16-styling: specifiers: '@babel/cli': ^7.17.10 - '@babel/core': ^7.17.10 - '@babel/eslint-parser': ^7.17.0 - '@babel/plugin-transform-runtime': ^7.17.10 - '@babel/preset-env': ^7.17.10 - '@babel/preset-typescript': ^7.16.7 - '@babel/runtime': ^7.17.9 + '@babel/core': ^7.18.5 + '@babel/eslint-parser': ^7.18.2 + '@babel/plugin-transform-runtime': ^7.18.5 + '@babel/preset-env': ^7.18.2 + '@babel/preset-typescript': ^7.17.12 + '@babel/runtime': ^7.18.3 '@types/base16': ^1.0.2 '@types/color': ^3.0.3 - '@types/jest': ^27.5.0 + '@types/jest': ^27.5.2 '@types/lodash': ^4.14.182 '@types/lodash.curry': ^4.1.7 - '@typescript-eslint/eslint-plugin': ^5.22.0 - '@typescript-eslint/parser': ^5.22.0 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 base16: ^1.0.0 color: ^4.2.3 - csstype: ^3.0.11 - eslint: ^8.15.0 + csstype: ^3.1.0 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-jest: ^26.1.5 + eslint-plugin-jest: ^26.5.3 jest: ^27.5.1 lodash.curry: ^4.1.1 rimraf: ^3.0.2 - ts-jest: ^27.1.4 - typescript: ~4.6.4 + ts-jest: ^27.1.5 + typescript: ~4.7.4 dependencies: - '@babel/runtime': 7.17.9 + '@babel/runtime': 7.18.3 '@types/base16': 1.0.2 '@types/lodash': 4.14.182 base16: 1.0.0 color: 4.2.3 - csstype: 3.0.11 + csstype: 3.1.0 lodash.curry: 4.1.1 devDependencies: - '@babel/cli': 7.17.10_@babel+core@7.17.10 - '@babel/core': 7.17.10 - '@babel/eslint-parser': 7.17.0_035b3d23fd8620ffc8b252e0ab28a400 - '@babel/plugin-transform-runtime': 7.17.10_@babel+core@7.17.10 - '@babel/preset-env': 7.17.10_@babel+core@7.17.10 - '@babel/preset-typescript': 7.16.7_@babel+core@7.17.10 + '@babel/cli': 7.17.10_@babel+core@7.18.5 + '@babel/core': 7.18.5 + '@babel/eslint-parser': 7.18.2_cz6e4qppzra6gosrrzcvbsxiom + '@babel/plugin-transform-runtime': 7.18.5_@babel+core@7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 '@types/color': 3.0.3 - '@types/jest': 27.5.0 + '@types/jest': 27.5.2 '@types/lodash.curry': 4.1.7 - '@typescript-eslint/eslint-plugin': 5.22.0_9817cbad956b8aa5d1e3d9ec99e4a1e4 - '@typescript-eslint/parser': 5.22.0_eslint@8.15.0+typescript@4.6.4 - eslint: 8.15.0 - eslint-config-prettier: 8.5.0_eslint@8.15.0 - eslint-plugin-jest: 26.1.5_a9d133e1b4f50468488a2a18eed99ada + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 + eslint-plugin-jest: 26.5.3_hkaktba3mic4t6mktu5mmyzyhi jest: 27.5.1 rimraf: 3.0.2 - ts-jest: 27.1.4_6b62438663b23957550c965172b78733 - typescript: 4.6.4 + ts-jest: 27.1.5_7giygfzd3xe4pjz4ngu3nwlqbm + typescript: 4.7.4 packages/react-dock: specifiers: '@babel/cli': ^7.17.10 - '@babel/core': ^7.17.10 - '@babel/eslint-parser': ^7.17.0 - '@babel/plugin-transform-runtime': ^7.17.10 - '@babel/preset-env': ^7.17.10 - '@babel/preset-react': ^7.16.7 - '@babel/preset-typescript': ^7.16.7 - '@babel/runtime': ^7.17.9 - '@types/jest': ^27.5.0 + '@babel/core': ^7.18.5 + '@babel/eslint-parser': ^7.18.2 + '@babel/plugin-transform-runtime': ^7.18.5 + '@babel/preset-env': ^7.18.2 + '@babel/preset-react': ^7.17.12 + '@babel/preset-typescript': ^7.17.12 + '@babel/runtime': ^7.18.3 + '@types/jest': ^27.5.2 '@types/lodash': ^4.14.182 '@types/lodash.debounce': ^4.0.7 '@types/prop-types': ^15.7.5 - '@types/react': ^17.0.45 - '@types/react-test-renderer': ^17.0.2 - '@typescript-eslint/eslint-plugin': ^5.22.0 - '@typescript-eslint/parser': ^5.22.0 - eslint: ^8.15.0 + '@types/react': ^18.0.14 + '@types/react-test-renderer': ^18.0.0 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-jest: ^26.1.5 - eslint-plugin-react: ~7.28.0 - eslint-plugin-react-hooks: ^4.5.0 + eslint-plugin-jest: ^26.5.3 + eslint-plugin-react: ^7.30.1 + eslint-plugin-react-hooks: ^4.6.0 jest: ^27.5.1 lodash.debounce: ^4.0.8 prop-types: ^15.8.1 - react: ^17.0.2 - react-test-renderer: ^17.0.2 + react: ^18.2.0 + react-test-renderer: ^18.2.0 rimraf: ^3.0.2 - ts-jest: ^27.1.4 - typescript: ~4.6.4 + ts-jest: ^27.1.5 + typescript: ~4.7.4 dependencies: - '@babel/runtime': 7.17.9 + '@babel/runtime': 7.18.3 '@types/lodash': 4.14.182 '@types/prop-types': 15.7.5 lodash.debounce: 4.0.8 prop-types: 15.8.1 devDependencies: - '@babel/cli': 7.17.10_@babel+core@7.17.10 - '@babel/core': 7.17.10 - '@babel/eslint-parser': 7.17.0_035b3d23fd8620ffc8b252e0ab28a400 - '@babel/plugin-transform-runtime': 7.17.10_@babel+core@7.17.10 - '@babel/preset-env': 7.17.10_@babel+core@7.17.10 - '@babel/preset-react': 7.16.7_@babel+core@7.17.10 - '@babel/preset-typescript': 7.16.7_@babel+core@7.17.10 - '@types/jest': 27.5.0 + '@babel/cli': 7.17.10_@babel+core@7.18.5 + '@babel/core': 7.18.5 + '@babel/eslint-parser': 7.18.2_cz6e4qppzra6gosrrzcvbsxiom + '@babel/plugin-transform-runtime': 7.18.5_@babel+core@7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-react': 7.17.12_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 + '@types/jest': 27.5.2 '@types/lodash.debounce': 4.0.7 - '@types/react': 17.0.45 - '@types/react-test-renderer': 17.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_9817cbad956b8aa5d1e3d9ec99e4a1e4 - '@typescript-eslint/parser': 5.22.0_eslint@8.15.0+typescript@4.6.4 - eslint: 8.15.0 - eslint-config-prettier: 8.5.0_eslint@8.15.0 - eslint-plugin-jest: 26.1.5_a9d133e1b4f50468488a2a18eed99ada - eslint-plugin-react: 7.28.0_eslint@8.15.0 - eslint-plugin-react-hooks: 4.5.0_eslint@8.15.0 + '@types/react': 18.0.14 + '@types/react-test-renderer': 18.0.0 + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 + eslint-plugin-jest: 26.5.3_hkaktba3mic4t6mktu5mmyzyhi + eslint-plugin-react: 7.30.1_eslint@8.18.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 jest: 27.5.1 - react: 17.0.2 - react-test-renderer: 17.0.2_react@17.0.2 + react: 18.2.0 + react-test-renderer: 18.2.0_react@18.2.0 rimraf: 3.0.2 - ts-jest: 27.1.4_6b62438663b23957550c965172b78733 - typescript: 4.6.4 + ts-jest: 27.1.5_7giygfzd3xe4pjz4ngu3nwlqbm + typescript: 4.7.4 packages/react-dock/demo: specifiers: - '@babel/core': ^7.17.10 - '@babel/preset-env': ^7.17.10 - '@babel/preset-react': ^7.16.7 - '@babel/preset-typescript': ^7.16.7 - '@types/node': ^16.11.33 - '@types/react': ^17.0.45 - '@types/react-dom': ^17.0.16 + '@babel/core': ^7.18.5 + '@babel/preset-env': ^7.18.2 + '@babel/preset-react': ^7.17.12 + '@babel/preset-typescript': ^7.17.12 + '@types/node': ^16.11.41 + '@types/react': ^18.0.14 + '@types/react-dom': ^18.0.5 '@types/styled-components': ^5.1.25 - '@typescript-eslint/eslint-plugin': ^5.22.0 - '@typescript-eslint/parser': ^5.22.0 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 babel-loader: ^8.2.5 cross-env: ^7.0.3 - eslint: ^8.15.0 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-react: ~7.28.0 - eslint-plugin-react-hooks: ^4.5.0 + eslint-plugin-react: ^7.30.1 + eslint-plugin-react-hooks: ^4.6.0 fork-ts-checker-webpack-plugin: ^7.2.11 html-webpack-plugin: ^5.5.0 - react: ^17.0.2 - react-bootstrap: ^2.3.1 - react-dock: ^0.5.1 - react-dom: ^17.0.2 - react-icons: ^4.3.1 - react-is: ^17.0.2 + react: ^18.2.0 + react-bootstrap: ^2.4.0 + react-dock: ^0.6.0 + react-dom: ^18.2.0 + react-icons: ^4.4.0 + react-is: ^18.2.0 styled-components: ^5.3.5 - ts-node: ^10.7.0 - typescript: ~4.6.4 - webpack: ^5.72.0 - webpack-cli: ^4.9.2 - webpack-dev-server: ^4.9.0 + ts-node: ^10.8.1 + typescript: ~4.7.4 + webpack: ^5.73.0 + webpack-cli: ^4.10.0 + webpack-dev-server: ^4.9.2 dependencies: - react: 17.0.2 - react-bootstrap: 2.3.1_569957a51d469c962fcce166a59b9f78 + react: 18.2.0 + react-bootstrap: 2.4.0_twyhzqqpkwvvgrmyeapdo6i4my react-dock: link:.. - react-dom: 17.0.2_react@17.0.2 - react-icons: 4.3.1_react@17.0.2 - react-is: 17.0.2 - styled-components: 5.3.5_281a4fa50a045c9112baf635f3bc27a7 + react-dom: 18.2.0_react@18.2.0 + react-icons: 4.4.0_react@18.2.0 + react-is: 18.2.0 + styled-components: 5.3.5_7i5myeigehqah43i5u7wbekgba devDependencies: - '@babel/core': 7.17.10 - '@babel/preset-env': 7.17.10_@babel+core@7.17.10 - '@babel/preset-react': 7.16.7_@babel+core@7.17.10 - '@babel/preset-typescript': 7.16.7_@babel+core@7.17.10 - '@types/node': 16.11.33 - '@types/react': 17.0.45 - '@types/react-dom': 17.0.16 + '@babel/core': 7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-react': 7.17.12_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 + '@types/node': 16.11.41 + '@types/react': 18.0.14 + '@types/react-dom': 18.0.5 '@types/styled-components': 5.1.25 - '@typescript-eslint/eslint-plugin': 5.22.0_9817cbad956b8aa5d1e3d9ec99e4a1e4 - '@typescript-eslint/parser': 5.22.0_eslint@8.15.0+typescript@4.6.4 - babel-loader: 8.2.5_887a5110397f957d9e06dd05497793db + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e + babel-loader: 8.2.5_te6ollfzjcco6mbxjl755ucqke cross-env: 7.0.3 - eslint: 8.15.0 - eslint-config-prettier: 8.5.0_eslint@8.15.0 - eslint-plugin-react: 7.28.0_eslint@8.15.0 - eslint-plugin-react-hooks: 4.5.0_eslint@8.15.0 - fork-ts-checker-webpack-plugin: 7.2.11_typescript@4.6.4+webpack@5.72.0 - html-webpack-plugin: 5.5.0_webpack@5.72.0 - ts-node: 10.7.0_fd4b5ff48b408bf425abfec4a641da13 - typescript: 4.6.4 - webpack: 5.72.0_webpack-cli@4.9.2 - webpack-cli: 4.9.2_e12b136d9a821d211692f1ec9717cf12 - webpack-dev-server: 4.9.0_webpack-cli@4.9.2+webpack@5.72.0 + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 + eslint-plugin-react: 7.30.1_eslint@8.18.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 + fork-ts-checker-webpack-plugin: 7.2.11_3o2jfq6vfqxns3sz6wn2nnc3ei + html-webpack-plugin: 5.5.0_webpack@5.73.0 + ts-node: 10.8.1_qqpsu5gwjto2muvbbvmj4ndcmu + typescript: 4.7.4 + webpack: 5.73.0_webpack-cli@4.10.0 + webpack-cli: 4.10.0_hnfkmnck6ti4dm6ulhhz44v2ju + webpack-dev-server: 4.9.2_77l47gmqkrqiei5z7sbwz5iaj4 packages/react-json-tree: specifiers: '@babel/cli': ^7.17.10 - '@babel/core': ^7.17.10 - '@babel/eslint-parser': ^7.17.0 - '@babel/plugin-transform-runtime': ^7.17.10 - '@babel/preset-env': ^7.17.10 - '@babel/preset-react': ^7.16.7 - '@babel/preset-typescript': ^7.16.7 - '@babel/runtime': ^7.17.9 + '@babel/core': ^7.18.5 + '@babel/eslint-parser': ^7.18.2 + '@babel/plugin-transform-runtime': ^7.18.5 + '@babel/preset-env': ^7.18.2 + '@babel/preset-react': ^7.17.12 + '@babel/preset-typescript': ^7.17.12 + '@babel/runtime': ^7.18.3 '@rollup/plugin-babel': ^5.3.1 - '@rollup/plugin-commonjs': ^22.0.0 + '@rollup/plugin-commonjs': ^22.0.1 '@rollup/plugin-node-resolve': ^13.3.0 - '@types/jest': ^27.5.0 + '@types/jest': ^27.5.2 '@types/lodash': ^4.14.182 + '@types/node': ^16.11.41 '@types/prop-types': ^15.7.5 - '@types/react': ^17.0.45 - '@types/react-test-renderer': ^17.0.2 - '@typescript-eslint/eslint-plugin': ^5.22.0 - '@typescript-eslint/parser': ^5.22.0 - eslint: ^8.15.0 + '@types/react': ^18.0.14 + '@types/react-test-renderer': ^18.0.0 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-jest: ^26.1.5 - eslint-plugin-react: ~7.28.0 - eslint-plugin-react-hooks: ^4.5.0 + eslint-plugin-jest: ^26.5.3 + eslint-plugin-react: ^7.30.1 + eslint-plugin-react-hooks: ^4.6.0 jest: ^27.5.1 prop-types: ^15.8.1 - react: ^17.0.2 + react: ^18.2.0 react-base16-styling: ^0.9.1 - react-test-renderer: ^17.0.2 + react-test-renderer: ^18.2.0 rimraf: ^3.0.2 - rollup: ^2.72.1 + rollup: ^2.75.7 rollup-plugin-terser: ^7.0.2 - rollup-plugin-typescript2: ^0.31.2 - ts-jest: ^27.1.4 + rollup-plugin-typescript2: ^0.32.1 + ts-jest: ^27.1.5 tslib: ^2.4.0 - typescript: ~4.6.4 + typescript: ~4.7.4 dependencies: - '@babel/runtime': 7.17.9 + '@babel/runtime': 7.18.3 '@types/lodash': 4.14.182 '@types/prop-types': 15.7.5 prop-types: 15.8.1 react-base16-styling: link:../react-base16-styling devDependencies: - '@babel/cli': 7.17.10_@babel+core@7.17.10 - '@babel/core': 7.17.10 - '@babel/eslint-parser': 7.17.0_035b3d23fd8620ffc8b252e0ab28a400 - '@babel/plugin-transform-runtime': 7.17.10_@babel+core@7.17.10 - '@babel/preset-env': 7.17.10_@babel+core@7.17.10 - '@babel/preset-react': 7.16.7_@babel+core@7.17.10 - '@babel/preset-typescript': 7.16.7_@babel+core@7.17.10 - '@rollup/plugin-babel': 5.3.1_18dfcb1ca7050ba6f445f613f30091b1 - '@rollup/plugin-commonjs': 22.0.0_rollup@2.72.1 - '@rollup/plugin-node-resolve': 13.3.0_rollup@2.72.1 - '@types/jest': 27.5.0 - '@types/react': 17.0.45 - '@types/react-test-renderer': 17.0.2 - '@typescript-eslint/eslint-plugin': 5.22.0_9817cbad956b8aa5d1e3d9ec99e4a1e4 - '@typescript-eslint/parser': 5.22.0_eslint@8.15.0+typescript@4.6.4 - eslint: 8.15.0 - eslint-config-prettier: 8.5.0_eslint@8.15.0 - eslint-plugin-jest: 26.1.5_a9d133e1b4f50468488a2a18eed99ada - eslint-plugin-react: 7.28.0_eslint@8.15.0 - eslint-plugin-react-hooks: 4.5.0_eslint@8.15.0 + '@babel/cli': 7.17.10_@babel+core@7.18.5 + '@babel/core': 7.18.5 + '@babel/eslint-parser': 7.18.2_cz6e4qppzra6gosrrzcvbsxiom + '@babel/plugin-transform-runtime': 7.18.5_@babel+core@7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-react': 7.17.12_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 + '@rollup/plugin-babel': 5.3.1_za5spbk65gc2bmrclluhieacz4 + '@rollup/plugin-commonjs': 22.0.1_rollup@2.75.7 + '@rollup/plugin-node-resolve': 13.3.0_rollup@2.75.7 + '@types/jest': 27.5.2 + '@types/node': 16.11.41 + '@types/react': 18.0.14 + '@types/react-test-renderer': 18.0.0 + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 + eslint-plugin-jest: 26.5.3_hkaktba3mic4t6mktu5mmyzyhi + eslint-plugin-react: 7.30.1_eslint@8.18.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 jest: 27.5.1 - react: 17.0.2 - react-test-renderer: 17.0.2_react@17.0.2 + react: 18.2.0 + react-test-renderer: 18.2.0_react@18.2.0 rimraf: 3.0.2 - rollup: 2.72.1 - rollup-plugin-terser: 7.0.2_rollup@2.72.1 - rollup-plugin-typescript2: 0.31.2_rollup@2.72.1+typescript@4.6.4 - ts-jest: 27.1.4_6b62438663b23957550c965172b78733 + rollup: 2.75.7 + rollup-plugin-terser: 7.0.2_rollup@2.75.7 + rollup-plugin-typescript2: 0.32.1_okefoyb4o5sittgqayreuhurei + ts-jest: 27.1.5_7giygfzd3xe4pjz4ngu3nwlqbm tslib: 2.4.0 - typescript: 4.6.4 + typescript: 4.7.4 packages/react-json-tree/examples: specifiers: - '@babel/core': ^7.17.10 - '@babel/preset-env': ^7.17.10 - '@babel/preset-react': ^7.16.7 - '@babel/preset-typescript': ^7.16.7 - '@types/node': ^16.11.33 - '@types/react': ^17.0.45 - '@types/react-dom': ^17.0.16 - '@typescript-eslint/eslint-plugin': ^5.22.0 - '@typescript-eslint/parser': ^5.22.0 + '@babel/core': ^7.18.5 + '@babel/preset-env': ^7.18.2 + '@babel/preset-react': ^7.17.12 + '@babel/preset-typescript': ^7.17.12 + '@types/node': ^16.11.41 + '@types/react': ^18.0.14 + '@types/react-dom': ^18.0.5 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 babel-loader: ^8.2.5 cross-env: ^7.0.3 - eslint: ^8.15.0 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-react: ~7.28.0 - eslint-plugin-react-hooks: ^4.5.0 + eslint-plugin-react: ^7.30.1 + eslint-plugin-react-hooks: ^4.6.0 fork-ts-checker-webpack-plugin: ^7.2.11 html-webpack-plugin: ^5.5.0 - immutable: ^4.0.0 - react: ^17.0.2 + immutable: ^4.1.0 + react: ^18.2.0 react-base16-styling: ^0.9.1 - react-dom: ^17.0.2 - react-json-tree: ^0.16.1 - ts-node: ^10.7.0 - typescript: ~4.6.4 - webpack: ^5.72.0 - webpack-cli: ^4.9.2 - webpack-dev-server: ^4.9.0 + react-dom: ^18.2.0 + react-json-tree: ^0.17.0 + ts-node: ^10.8.1 + typescript: ~4.7.4 + webpack: ^5.73.0 + webpack-cli: ^4.10.0 + webpack-dev-server: ^4.9.2 dependencies: - immutable: 4.0.0 - react: 17.0.2 + immutable: 4.1.0 + react: 18.2.0 react-base16-styling: link:../../react-base16-styling - react-dom: 17.0.2_react@17.0.2 + react-dom: 18.2.0_react@18.2.0 react-json-tree: link:.. devDependencies: - '@babel/core': 7.17.10 - '@babel/preset-env': 7.17.10_@babel+core@7.17.10 - '@babel/preset-react': 7.16.7_@babel+core@7.17.10 - '@babel/preset-typescript': 7.16.7_@babel+core@7.17.10 - '@types/node': 16.11.33 - '@types/react': 17.0.45 - '@types/react-dom': 17.0.16 - '@typescript-eslint/eslint-plugin': 5.22.0_9817cbad956b8aa5d1e3d9ec99e4a1e4 - '@typescript-eslint/parser': 5.22.0_eslint@8.15.0+typescript@4.6.4 - babel-loader: 8.2.5_887a5110397f957d9e06dd05497793db + '@babel/core': 7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-react': 7.17.12_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 + '@types/node': 16.11.41 + '@types/react': 18.0.14 + '@types/react-dom': 18.0.5 + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e + babel-loader: 8.2.5_te6ollfzjcco6mbxjl755ucqke cross-env: 7.0.3 - eslint: 8.15.0 - eslint-config-prettier: 8.5.0_eslint@8.15.0 - eslint-plugin-react: 7.28.0_eslint@8.15.0 - eslint-plugin-react-hooks: 4.5.0_eslint@8.15.0 - fork-ts-checker-webpack-plugin: 7.2.11_typescript@4.6.4+webpack@5.72.0 - html-webpack-plugin: 5.5.0_webpack@5.72.0 - ts-node: 10.7.0_fd4b5ff48b408bf425abfec4a641da13 - typescript: 4.6.4 - webpack: 5.72.0_webpack-cli@4.9.2 - webpack-cli: 4.9.2_e12b136d9a821d211692f1ec9717cf12 - webpack-dev-server: 4.9.0_webpack-cli@4.9.2+webpack@5.72.0 + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 + eslint-plugin-react: 7.30.1_eslint@8.18.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 + fork-ts-checker-webpack-plugin: 7.2.11_3o2jfq6vfqxns3sz6wn2nnc3ei + html-webpack-plugin: 5.5.0_webpack@5.73.0 + ts-node: 10.8.1_qqpsu5gwjto2muvbbvmj4ndcmu + typescript: 4.7.4 + webpack: 5.73.0_webpack-cli@4.10.0 + webpack-cli: 4.10.0_hnfkmnck6ti4dm6ulhhz44v2ju + webpack-dev-server: 4.9.2_77l47gmqkrqiei5z7sbwz5iaj4 packages/redux-devtools: specifiers: '@babel/cli': ^7.17.10 - '@babel/core': ^7.17.10 - '@babel/eslint-parser': ^7.17.0 - '@babel/plugin-transform-runtime': ^7.17.10 - '@babel/preset-env': ^7.17.10 - '@babel/preset-react': ^7.16.7 - '@babel/preset-typescript': ^7.16.7 - '@babel/runtime': ^7.17.9 + '@babel/core': ^7.18.5 + '@babel/eslint-parser': ^7.18.2 + '@babel/plugin-transform-runtime': ^7.18.5 + '@babel/preset-env': ^7.18.2 + '@babel/preset-react': ^7.17.12 + '@babel/preset-typescript': ^7.17.12 + '@babel/runtime': ^7.18.3 '@redux-devtools/instrument': ^2.1.0 - '@types/jest': ^27.5.0 + '@types/jest': ^27.5.2 '@types/lodash': ^4.14.182 - '@types/node': ^16.11.33 + '@types/node': ^16.11.41 '@types/prop-types': ^15.7.5 - '@types/react': ^17.0.45 - '@types/react-redux': ^7.1.24 - '@typescript-eslint/eslint-plugin': ^5.22.0 - '@typescript-eslint/parser': ^5.22.0 - eslint: ^8.15.0 + '@types/react': ^18.0.14 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-jest: ^26.1.5 - eslint-plugin-react: ~7.28.0 - eslint-plugin-react-hooks: ^4.5.0 + eslint-plugin-jest: ^26.5.3 + eslint-plugin-react: ^7.30.1 + eslint-plugin-react-hooks: ^4.6.0 jest: ^27.5.1 lodash: ^4.17.21 prop-types: ^15.8.1 - react: ^17.0.2 - react-dom: ^17.0.2 - react-redux: ^7.2.8 + react: ^18.2.0 + react-dom: ^18.2.0 + react-redux: ^8.0.2 redux: ^4.2.0 rimraf: ^3.0.2 - ts-jest: ^27.1.4 - typescript: ~4.6.4 + ts-jest: ^27.1.5 + typescript: ~4.7.4 dependencies: - '@babel/runtime': 7.17.9 + '@babel/runtime': 7.18.3 '@redux-devtools/instrument': link:../redux-devtools-instrument '@types/prop-types': 15.7.5 lodash: 4.17.21 prop-types: 15.8.1 devDependencies: - '@babel/cli': 7.17.10_@babel+core@7.17.10 - '@babel/core': 7.17.10 - '@babel/eslint-parser': 7.17.0_035b3d23fd8620ffc8b252e0ab28a400 - '@babel/plugin-transform-runtime': 7.17.10_@babel+core@7.17.10 - '@babel/preset-env': 7.17.10_@babel+core@7.17.10 - '@babel/preset-react': 7.16.7_@babel+core@7.17.10 - '@babel/preset-typescript': 7.16.7_@babel+core@7.17.10 - '@types/jest': 27.5.0 + '@babel/cli': 7.17.10_@babel+core@7.18.5 + '@babel/core': 7.18.5 + '@babel/eslint-parser': 7.18.2_cz6e4qppzra6gosrrzcvbsxiom + '@babel/plugin-transform-runtime': 7.18.5_@babel+core@7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-react': 7.17.12_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 + '@types/jest': 27.5.2 '@types/lodash': 4.14.182 - '@types/node': 16.11.33 - '@types/react': 17.0.45 - '@types/react-redux': 7.1.24 - '@typescript-eslint/eslint-plugin': 5.22.0_9817cbad956b8aa5d1e3d9ec99e4a1e4 - '@typescript-eslint/parser': 5.22.0_eslint@8.15.0+typescript@4.6.4 - eslint: 8.15.0 - eslint-config-prettier: 8.5.0_eslint@8.15.0 - eslint-plugin-jest: 26.1.5_a9d133e1b4f50468488a2a18eed99ada - eslint-plugin-react: 7.28.0_eslint@8.15.0 - eslint-plugin-react-hooks: 4.5.0_eslint@8.15.0 + '@types/node': 16.11.41 + '@types/react': 18.0.14 + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 + eslint-plugin-jest: 26.5.3_hkaktba3mic4t6mktu5mmyzyhi + eslint-plugin-react: 7.30.1_eslint@8.18.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 jest: 27.5.1 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - react-redux: 7.2.8_react-dom@17.0.2+react@17.0.2 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + react-redux: 8.0.2_42iqcqzqjdyq32nxzztmetzyhu redux: 4.2.0 rimraf: 3.0.2 - ts-jest: 27.1.4_6b62438663b23957550c965172b78733 - typescript: 4.6.4 + ts-jest: 27.1.5_7giygfzd3xe4pjz4ngu3nwlqbm + typescript: 4.7.4 packages/redux-devtools-app: specifiers: '@babel/cli': ^7.17.10 - '@babel/core': ^7.17.10 - '@babel/eslint-parser': ^7.17.0 - '@babel/plugin-transform-runtime': ^7.17.10 - '@babel/preset-env': ^7.17.10 - '@babel/preset-react': ^7.16.7 - '@babel/preset-typescript': ^7.16.7 - '@babel/runtime': ^7.17.9 - '@redux-devtools/chart-monitor': ^2.1.1 - '@redux-devtools/core': ^3.12.0 - '@redux-devtools/inspector-monitor': ^2.1.2 - '@redux-devtools/inspector-monitor-test-tab': ^0.8.6 - '@redux-devtools/inspector-monitor-trace-tab': ^0.3.4 - '@redux-devtools/log-monitor': ^3.1.1 - '@redux-devtools/rtk-query-monitor': ^2.1.2 - '@redux-devtools/slider-monitor': ^3.1.2 - '@redux-devtools/ui': ^1.2.1 - '@reduxjs/toolkit': ^1.8.1 + '@babel/core': ^7.18.5 + '@babel/eslint-parser': ^7.18.2 + '@babel/plugin-transform-runtime': ^7.18.5 + '@babel/preset-env': ^7.18.2 + '@babel/preset-react': ^7.17.12 + '@babel/preset-typescript': ^7.17.12 + '@babel/runtime': ^7.18.3 + '@redux-devtools/chart-monitor': ^3.0.0 + '@redux-devtools/core': ^3.13.0 + '@redux-devtools/inspector-monitor': ^3.0.0 + '@redux-devtools/inspector-monitor-test-tab': ^1.0.0 + '@redux-devtools/inspector-monitor-trace-tab': ^1.0.0 + '@redux-devtools/log-monitor': ^4.0.0 + '@redux-devtools/rtk-query-monitor': ^3.0.0 + '@redux-devtools/slider-monitor': ^4.0.0 + '@redux-devtools/ui': ^1.3.0 + '@reduxjs/toolkit': ^1.8.2 '@rjsf/core': ^4.2.0 '@testing-library/jest-dom': ^5.16.4 - '@testing-library/react': ^12.1.5 - '@types/jest': ^27.5.0 + '@testing-library/react': ^13.3.0 + '@types/jest': ^27.5.2 '@types/jsan': ^3.1.2 '@types/json-schema': ^7.0.11 '@types/lodash': ^4.14.182 - '@types/node': ^16.11.33 + '@types/node': ^16.11.41 '@types/prop-types': ^15.7.5 - '@types/react': ^17.0.45 - '@types/react-dom': ^17.0.16 - '@types/react-redux': ^7.1.24 - '@types/socketcluster-client': ^13.0.5 + '@types/react': ^18.0.14 + '@types/react-dom': ^18.0.5 + '@types/socketcluster-client': ^16.0.0 '@types/styled-components': ^5.1.25 - '@types/testing-library__jest-dom': ^5.14.3 - '@types/webpack-env': ^1.16.4 - '@typescript-eslint/eslint-plugin': ^5.22.0 - '@typescript-eslint/parser': ^5.22.0 + '@types/testing-library__jest-dom': ^5.14.5 + '@types/webpack-env': ^1.17.0 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 babel-loader: ^8.2.5 cross-env: ^7.0.3 css-loader: ^6.7.1 d3-state-visualizer: ^1.6.0 - eslint: ^8.15.0 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-jest: ^26.1.5 - eslint-plugin-react: ~7.28.0 - eslint-plugin-react-hooks: ^4.5.0 + eslint-plugin-jest: ^26.5.3 + eslint-plugin-react: ^7.30.1 + eslint-plugin-react-hooks: ^4.6.0 fork-ts-checker-webpack-plugin: ^7.2.11 - html-loader: ^3.1.0 + html-loader: ^3.1.2 html-webpack-plugin: ^5.5.0 javascript-stringify: ^2.1.0 jest: ^27.5.1 @@ -830,25 +833,25 @@ importers: lodash: ^4.17.21 path-browserify: ^1.0.1 prop-types: ^15.8.1 - react: ^17.0.2 - react-dom: ^17.0.2 - react-icons: ^4.3.1 - react-is: ^17.0.2 - react-redux: ^7.2.8 + react: ^18.2.0 + react-dom: ^18.2.0 + react-icons: ^4.4.0 + react-is: ^18.2.0 + react-redux: ^8.0.2 redux: ^4.2.0 redux-persist: ^6.0.0 rimraf: ^3.0.2 - socketcluster-client: ^14.3.2 + socketcluster-client: ^16.1.1 style-loader: ^3.3.1 styled-components: ^5.3.5 - ts-jest: ^27.1.4 - ts-node: ^10.7.0 - typescript: ~4.6.4 - webpack: ^5.72.0 - webpack-cli: ^4.9.2 - webpack-dev-server: ^4.9.0 + ts-jest: ^27.1.5 + ts-node: ^10.8.1 + typescript: ~4.7.4 + webpack: ^5.73.0 + webpack-cli: ^4.10.0 + webpack-dev-server: ^4.9.2 dependencies: - '@babel/runtime': 7.17.9 + '@babel/runtime': 7.18.3 '@redux-devtools/chart-monitor': link:../redux-devtools-chart-monitor '@redux-devtools/core': link:../redux-devtools '@redux-devtools/inspector-monitor': link:../redux-devtools-inspector-monitor @@ -858,7 +861,7 @@ importers: '@redux-devtools/rtk-query-monitor': link:../redux-devtools-rtk-query-monitor '@redux-devtools/slider-monitor': link:../redux-devtools-slider-monitor '@redux-devtools/ui': link:../redux-devtools-ui - '@reduxjs/toolkit': 1.8.1_react-redux@7.2.8+react@17.0.2 + '@reduxjs/toolkit': 1.8.2_kkwg4cbsojnjnupd3btipussee '@types/prop-types': 15.7.5 d3-state-visualizer: link:../d3-state-visualizer javascript-stringify: 2.1.0 @@ -867,92 +870,91 @@ importers: localforage: 1.10.0 lodash: 4.17.21 prop-types: 15.8.1 - react-icons: 4.3.1_react@17.0.2 - react-is: 17.0.2 - react-redux: 7.2.8_react-dom@17.0.2+react@17.0.2 + react-icons: 4.4.0_react@18.2.0 + react-is: 18.2.0 + react-redux: 8.0.2_jcbkrypqxz3emsprsw5dchskju redux: 4.2.0 - redux-persist: 6.0.0_react@17.0.2+redux@4.2.0 - socketcluster-client: 14.3.2 + redux-persist: 6.0.0_react@18.2.0+redux@4.2.0 + socketcluster-client: 16.1.1 devDependencies: - '@babel/cli': 7.17.10_@babel+core@7.17.10 - '@babel/core': 7.17.10 - '@babel/eslint-parser': 7.17.0_035b3d23fd8620ffc8b252e0ab28a400 - '@babel/plugin-transform-runtime': 7.17.10_@babel+core@7.17.10 - '@babel/preset-env': 7.17.10_@babel+core@7.17.10 - '@babel/preset-react': 7.16.7_@babel+core@7.17.10 - '@babel/preset-typescript': 7.16.7_@babel+core@7.17.10 - '@rjsf/core': 4.2.0_react@17.0.2 + '@babel/cli': 7.17.10_@babel+core@7.18.5 + '@babel/core': 7.18.5 + '@babel/eslint-parser': 7.18.2_cz6e4qppzra6gosrrzcvbsxiom + '@babel/plugin-transform-runtime': 7.18.5_@babel+core@7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-react': 7.17.12_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 + '@rjsf/core': 4.2.0_react@18.2.0 '@testing-library/jest-dom': 5.16.4 - '@testing-library/react': 12.1.5_react-dom@17.0.2+react@17.0.2 - '@types/jest': 27.5.0 + '@testing-library/react': 13.3.0_biqbaboplfbrettd7655fr4n2y + '@types/jest': 27.5.2 '@types/jsan': 3.1.2 '@types/json-schema': 7.0.11 '@types/lodash': 4.14.182 - '@types/node': 16.11.33 - '@types/react': 17.0.45 - '@types/react-dom': 17.0.16 - '@types/react-redux': 7.1.24 - '@types/socketcluster-client': 13.0.5 + '@types/node': 16.11.41 + '@types/react': 18.0.14 + '@types/react-dom': 18.0.5 + '@types/socketcluster-client': 16.0.0 '@types/styled-components': 5.1.25 - '@types/testing-library__jest-dom': 5.14.3 - '@types/webpack-env': 1.16.4 - '@typescript-eslint/eslint-plugin': 5.22.0_9817cbad956b8aa5d1e3d9ec99e4a1e4 - '@typescript-eslint/parser': 5.22.0_eslint@8.15.0+typescript@4.6.4 - babel-loader: 8.2.5_887a5110397f957d9e06dd05497793db + '@types/testing-library__jest-dom': 5.14.5 + '@types/webpack-env': 1.17.0 + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e + babel-loader: 8.2.5_te6ollfzjcco6mbxjl755ucqke cross-env: 7.0.3 - css-loader: 6.7.1_webpack@5.72.0 - eslint: 8.15.0 - eslint-config-prettier: 8.5.0_eslint@8.15.0 - eslint-plugin-jest: 26.1.5_a9d133e1b4f50468488a2a18eed99ada - eslint-plugin-react: 7.28.0_eslint@8.15.0 - eslint-plugin-react-hooks: 4.5.0_eslint@8.15.0 - fork-ts-checker-webpack-plugin: 7.2.11_typescript@4.6.4+webpack@5.72.0 - html-loader: 3.1.0_webpack@5.72.0 - html-webpack-plugin: 5.5.0_webpack@5.72.0 - jest: 27.5.1_ts-node@10.7.0 + css-loader: 6.7.1_webpack@5.73.0 + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 + eslint-plugin-jest: 26.5.3_hkaktba3mic4t6mktu5mmyzyhi + eslint-plugin-react: 7.30.1_eslint@8.18.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 + fork-ts-checker-webpack-plugin: 7.2.11_3o2jfq6vfqxns3sz6wn2nnc3ei + html-loader: 3.1.2_webpack@5.73.0 + html-webpack-plugin: 5.5.0_webpack@5.73.0 + jest: 27.5.1_ts-node@10.8.1 path-browserify: 1.0.1 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 rimraf: 3.0.2 - style-loader: 3.3.1_webpack@5.72.0 - styled-components: 5.3.5_281a4fa50a045c9112baf635f3bc27a7 - ts-jest: 27.1.4_6b62438663b23957550c965172b78733 - ts-node: 10.7.0_fd4b5ff48b408bf425abfec4a641da13 - typescript: 4.6.4 - webpack: 5.72.0_webpack-cli@4.9.2 - webpack-cli: 4.9.2_e12b136d9a821d211692f1ec9717cf12 - webpack-dev-server: 4.9.0_webpack-cli@4.9.2+webpack@5.72.0 + style-loader: 3.3.1_webpack@5.73.0 + styled-components: 5.3.5_7i5myeigehqah43i5u7wbekgba + ts-jest: 27.1.5_7giygfzd3xe4pjz4ngu3nwlqbm + ts-node: 10.8.1_qqpsu5gwjto2muvbbvmj4ndcmu + typescript: 4.7.4 + webpack: 5.73.0_webpack-cli@4.10.0 + webpack-cli: 4.10.0_hnfkmnck6ti4dm6ulhhz44v2ju + webpack-dev-server: 4.9.2_77l47gmqkrqiei5z7sbwz5iaj4 packages/redux-devtools-chart-monitor: specifiers: '@babel/cli': ^7.17.10 - '@babel/core': ^7.17.10 - '@babel/eslint-parser': ^7.17.0 - '@babel/plugin-transform-runtime': ^7.17.10 - '@babel/preset-env': ^7.17.10 - '@babel/preset-react': ^7.16.7 - '@babel/preset-typescript': ^7.16.7 - '@babel/runtime': ^7.17.9 - '@redux-devtools/core': ^3.12.0 + '@babel/core': ^7.18.5 + '@babel/eslint-parser': ^7.18.2 + '@babel/plugin-transform-runtime': ^7.18.5 + '@babel/preset-env': ^7.18.2 + '@babel/preset-react': ^7.17.12 + '@babel/preset-typescript': ^7.17.12 + '@babel/runtime': ^7.18.3 + '@redux-devtools/core': ^3.13.1 '@types/prop-types': ^15.7.5 - '@types/react': ^17.0.45 + '@types/react': ^18.0.14 '@types/redux-devtools-themes': ^1.0.0 - '@typescript-eslint/eslint-plugin': ^5.22.0 - '@typescript-eslint/parser': ^5.22.0 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 d3-state-visualizer: ^1.6.0 deepmerge: ^4.2.2 - eslint: ^8.15.0 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-react: ~7.28.0 - eslint-plugin-react-hooks: ^4.5.0 + eslint-plugin-react: ^7.30.1 + eslint-plugin-react-hooks: ^4.6.0 prop-types: ^15.8.1 - react: ^17.0.2 + react: ^18.2.0 redux: ^4.2.0 redux-devtools-themes: ^1.0.0 rimraf: ^3.0.2 - typescript: ~4.6.4 + typescript: ~4.7.4 dependencies: - '@babel/runtime': 7.17.9 + '@babel/runtime': 7.18.3 '@types/prop-types': 15.7.5 '@types/redux-devtools-themes': 1.0.0 d3-state-visualizer: link:../d3-state-visualizer @@ -960,25 +962,25 @@ importers: prop-types: 15.8.1 redux-devtools-themes: 1.0.0 devDependencies: - '@babel/cli': 7.17.10_@babel+core@7.17.10 - '@babel/core': 7.17.10 - '@babel/eslint-parser': 7.17.0_035b3d23fd8620ffc8b252e0ab28a400 - '@babel/plugin-transform-runtime': 7.17.10_@babel+core@7.17.10 - '@babel/preset-env': 7.17.10_@babel+core@7.17.10 - '@babel/preset-react': 7.16.7_@babel+core@7.17.10 - '@babel/preset-typescript': 7.16.7_@babel+core@7.17.10 + '@babel/cli': 7.17.10_@babel+core@7.18.5 + '@babel/core': 7.18.5 + '@babel/eslint-parser': 7.18.2_cz6e4qppzra6gosrrzcvbsxiom + '@babel/plugin-transform-runtime': 7.18.5_@babel+core@7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-react': 7.17.12_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 '@redux-devtools/core': link:../redux-devtools - '@types/react': 17.0.45 - '@typescript-eslint/eslint-plugin': 5.22.0_9817cbad956b8aa5d1e3d9ec99e4a1e4 - '@typescript-eslint/parser': 5.22.0_eslint@8.15.0+typescript@4.6.4 - eslint: 8.15.0 - eslint-config-prettier: 8.5.0_eslint@8.15.0 - eslint-plugin-react: 7.28.0_eslint@8.15.0 - eslint-plugin-react-hooks: 4.5.0_eslint@8.15.0 - react: 17.0.2 + '@types/react': 18.0.14 + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 + eslint-plugin-react: 7.30.1_eslint@8.18.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 + react: 18.2.0 redux: 4.2.0 rimraf: 3.0.2 - typescript: 4.6.4 + typescript: 4.7.4 packages/redux-devtools-cli: specifiers: @@ -987,209 +989,207 @@ importers: '@types/cors': ^2.8.12 '@types/cross-spawn': ^6.0.2 '@types/express': ^4.17.13 - '@types/jest': ^27.5.0 + '@types/jest': ^27.5.2 '@types/lodash': ^4.14.182 '@types/minimist': ^1.2.2 '@types/morgan': ^1.9.3 - '@types/node': ^16.11.33 - '@types/react': ^17.0.45 - '@types/semver': ^7.3.9 - '@types/socketcluster': ^14.0.4 - '@types/socketcluster-client': ^13.0.5 - '@types/socketcluster-server': ^14.2.6 + '@types/node': ^16.11.41 + '@types/react': ^18.0.14 + '@types/semver': ^7.3.10 + '@types/socketcluster-client': ^16.0.0 + '@types/socketcluster-server': ^16.1.0 '@types/styled-components': ^5.1.25 '@types/supertest': ^2.0.12 '@types/uuid': ^8.3.4 - '@typescript-eslint/eslint-plugin': ^5.22.0 - '@typescript-eslint/parser': ^5.22.0 - apollo-server-express: ^3.7.0 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 + apollo-server-express: ^3.9.0 body-parser: ^1.20.0 chalk: ^4.1.2 cors: ^2.8.5 cross-spawn: ^7.0.3 - electron: ^18.2.0 - eslint: ^8.15.0 + electron: ^19.0.6 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-jest: ^26.1.5 + eslint-plugin-jest: ^26.5.3 express: ^4.18.1 getport: ^0.1.0 - graphql: ^16.4.0 + graphql: ^16.5.0 jest: ^27.5.1 - knex: ^2.0.0 + knex: ^2.1.0 lodash: ^4.17.21 minimist: ^1.2.6 morgan: ^1.10.0 ncp: ^2.0.0 open: ^8.4.0 - react: ^17.0.2 - react-dom: ^17.0.2 - react-is: ^17.0.2 + react: ^18.2.0 + react-dom: ^18.2.0 + react-is: ^18.2.0 rimraf: ^3.0.2 semver: ^7.3.7 - socketcluster: ^14.4.2 - socketcluster-client: ^14.3.2 + socketcluster-client: ^16.1.1 + socketcluster-server: ^16.2.1 sqlite3: ^5.0.8 styled-components: ^5.3.5 supertest: ^6.2.3 - ts-jest: ^27.1.4 - typescript: ~4.6.4 + ts-jest: ^27.1.5 + typescript: ~4.7.4 uuid: ^8.3.2 dependencies: '@redux-devtools/app': link:../redux-devtools-app - '@types/react': 17.0.45 - apollo-server-express: 3.7.0_express@4.18.1+graphql@16.4.0 + '@types/react': 18.0.14 + apollo-server-express: 3.9.0_g7snex6epo2tsaz6yhvyva23iq body-parser: 1.20.0 chalk: 4.1.2 cors: 2.8.5 cross-spawn: 7.0.3 - electron: 18.2.0 + electron: 19.0.6 express: 4.18.1 getport: 0.1.0 - graphql: 16.4.0 - knex: 2.0.0_sqlite3@5.0.8 + graphql: 16.5.0 + knex: 2.1.0_sqlite3@5.0.8 lodash: 4.17.21 minimist: 1.2.6 morgan: 1.10.0 open: 8.4.0 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - react-is: 17.0.2 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + react-is: 18.2.0 semver: 7.3.7 - socketcluster: 14.4.2 + socketcluster-server: 16.2.1 sqlite3: 5.0.8 - styled-components: 5.3.5_281a4fa50a045c9112baf635f3bc27a7 + styled-components: 5.3.5_7i5myeigehqah43i5u7wbekgba uuid: 8.3.2 devDependencies: '@types/body-parser': 1.19.2 '@types/cors': 2.8.12 '@types/cross-spawn': 6.0.2 '@types/express': 4.17.13 - '@types/jest': 27.5.0 + '@types/jest': 27.5.2 '@types/lodash': 4.14.182 '@types/minimist': 1.2.2 '@types/morgan': 1.9.3 - '@types/node': 16.11.33 - '@types/semver': 7.3.9 - '@types/socketcluster': 14.0.4 - '@types/socketcluster-client': 13.0.5 - '@types/socketcluster-server': 14.2.6 + '@types/node': 16.11.41 + '@types/semver': 7.3.10 + '@types/socketcluster-client': 16.0.0 + '@types/socketcluster-server': 16.1.0 '@types/styled-components': 5.1.25 '@types/supertest': 2.0.12 '@types/uuid': 8.3.4 - '@typescript-eslint/eslint-plugin': 5.22.0_9817cbad956b8aa5d1e3d9ec99e4a1e4 - '@typescript-eslint/parser': 5.22.0_eslint@8.15.0+typescript@4.6.4 - eslint: 8.15.0 - eslint-config-prettier: 8.5.0_eslint@8.15.0 - eslint-plugin-jest: 26.1.5_a9d133e1b4f50468488a2a18eed99ada + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 + eslint-plugin-jest: 26.5.3_hkaktba3mic4t6mktu5mmyzyhi jest: 27.5.1 ncp: 2.0.0 rimraf: 3.0.2 - socketcluster-client: 14.3.2 + socketcluster-client: 16.1.1 supertest: 6.2.3 - ts-jest: 27.1.4_6b62438663b23957550c965172b78733 - typescript: 4.6.4 + ts-jest: 27.1.5_mqaoisgizytgigbr3gbjwvnjie + typescript: 4.7.4 packages/redux-devtools-dock-monitor: specifiers: '@babel/cli': ^7.17.10 - '@babel/core': ^7.17.10 - '@babel/eslint-parser': ^7.17.0 - '@babel/plugin-transform-runtime': ^7.17.10 - '@babel/preset-env': ^7.17.10 - '@babel/preset-react': ^7.16.7 - '@babel/preset-typescript': ^7.16.7 - '@babel/runtime': ^7.17.9 - '@redux-devtools/core': ^3.12.0 + '@babel/core': ^7.18.5 + '@babel/eslint-parser': ^7.18.2 + '@babel/plugin-transform-runtime': ^7.18.5 + '@babel/preset-env': ^7.18.2 + '@babel/preset-react': ^7.17.12 + '@babel/preset-typescript': ^7.17.12 + '@babel/runtime': ^7.18.3 + '@redux-devtools/core': ^3.13.1 '@types/parse-key': ^0.2.0 '@types/prop-types': ^15.7.5 - '@types/react': ^17.0.45 - '@typescript-eslint/eslint-plugin': ^5.22.0 - '@typescript-eslint/parser': ^5.22.0 - eslint: ^8.15.0 + '@types/react': ^18.0.14 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-react: ~7.28.0 - eslint-plugin-react-hooks: ^4.5.0 + eslint-plugin-react: ^7.30.1 + eslint-plugin-react-hooks: ^4.6.0 parse-key: ^0.2.1 prop-types: ^15.8.1 - react: ^17.0.2 - react-dock: ^0.5.1 + react: ^18.2.0 + react-dock: ^0.6.0 redux: ^4.2.0 rimraf: ^3.0.2 - typescript: ~4.6.4 + typescript: ~4.7.4 dependencies: - '@babel/runtime': 7.17.9 + '@babel/runtime': 7.18.3 '@types/prop-types': 15.7.5 parse-key: 0.2.1 prop-types: 15.8.1 react-dock: link:../react-dock devDependencies: - '@babel/cli': 7.17.10_@babel+core@7.17.10 - '@babel/core': 7.17.10 - '@babel/eslint-parser': 7.17.0_035b3d23fd8620ffc8b252e0ab28a400 - '@babel/plugin-transform-runtime': 7.17.10_@babel+core@7.17.10 - '@babel/preset-env': 7.17.10_@babel+core@7.17.10 - '@babel/preset-react': 7.16.7_@babel+core@7.17.10 - '@babel/preset-typescript': 7.16.7_@babel+core@7.17.10 + '@babel/cli': 7.17.10_@babel+core@7.18.5 + '@babel/core': 7.18.5 + '@babel/eslint-parser': 7.18.2_cz6e4qppzra6gosrrzcvbsxiom + '@babel/plugin-transform-runtime': 7.18.5_@babel+core@7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-react': 7.17.12_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 '@redux-devtools/core': link:../redux-devtools '@types/parse-key': 0.2.0 - '@types/react': 17.0.45 - '@typescript-eslint/eslint-plugin': 5.22.0_9817cbad956b8aa5d1e3d9ec99e4a1e4 - '@typescript-eslint/parser': 5.22.0_eslint@8.15.0+typescript@4.6.4 - eslint: 8.15.0 - eslint-config-prettier: 8.5.0_eslint@8.15.0 - eslint-plugin-react: 7.28.0_eslint@8.15.0 - eslint-plugin-react-hooks: 4.5.0_eslint@8.15.0 - react: 17.0.2 + '@types/react': 18.0.14 + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 + eslint-plugin-react: 7.30.1_eslint@8.18.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 + react: 18.2.0 redux: 4.2.0 rimraf: 3.0.2 - typescript: 4.6.4 + typescript: 4.7.4 packages/redux-devtools-extension: specifiers: '@babel/cli': ^7.17.10 - '@babel/core': ^7.17.10 - '@babel/eslint-parser': ^7.17.0 - '@babel/plugin-transform-runtime': ^7.17.10 - '@babel/preset-env': ^7.17.10 - '@babel/preset-typescript': ^7.16.7 - '@babel/runtime': ^7.17.9 - '@typescript-eslint/eslint-plugin': ^5.22.0 - '@typescript-eslint/parser': ^5.22.0 - eslint: ^8.15.0 + '@babel/core': ^7.18.5 + '@babel/eslint-parser': ^7.18.2 + '@babel/plugin-transform-runtime': ^7.18.5 + '@babel/preset-env': ^7.18.2 + '@babel/preset-typescript': ^7.17.12 + '@babel/runtime': ^7.18.3 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 immutable: ^4.0.0 redux: ^4.2.0 rimraf: ^3.0.2 - typescript: ~4.6.4 + typescript: ~4.7.4 dependencies: - '@babel/runtime': 7.17.9 - immutable: 4.0.0 + '@babel/runtime': 7.18.3 + immutable: 4.1.0 devDependencies: - '@babel/cli': 7.17.10_@babel+core@7.17.10 - '@babel/core': 7.17.10 - '@babel/eslint-parser': 7.17.0_035b3d23fd8620ffc8b252e0ab28a400 - '@babel/plugin-transform-runtime': 7.17.10_@babel+core@7.17.10 - '@babel/preset-env': 7.17.10_@babel+core@7.17.10 - '@babel/preset-typescript': 7.16.7_@babel+core@7.17.10 - '@typescript-eslint/eslint-plugin': 5.22.0_9817cbad956b8aa5d1e3d9ec99e4a1e4 - '@typescript-eslint/parser': 5.22.0_eslint@8.15.0+typescript@4.6.4 - eslint: 8.15.0 - eslint-config-prettier: 8.5.0_eslint@8.15.0 + '@babel/cli': 7.17.10_@babel+core@7.18.5 + '@babel/core': 7.18.5 + '@babel/eslint-parser': 7.18.2_cz6e4qppzra6gosrrzcvbsxiom + '@babel/plugin-transform-runtime': 7.18.5_@babel+core@7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 redux: 4.2.0 rimraf: 3.0.2 - typescript: 4.6.4 + typescript: 4.7.4 packages/redux-devtools-inspector-monitor: specifiers: '@babel/cli': ^7.17.10 - '@babel/core': ^7.17.10 - '@babel/eslint-parser': ^7.17.0 - '@babel/plugin-transform-runtime': ^7.17.10 - '@babel/preset-env': ^7.17.10 - '@babel/preset-react': ^7.16.7 - '@babel/preset-typescript': ^7.16.7 - '@babel/runtime': ^7.17.9 - '@redux-devtools/core': ^3.12.0 + '@babel/core': ^7.18.5 + '@babel/eslint-parser': ^7.18.2 + '@babel/plugin-transform-runtime': ^7.18.5 + '@babel/preset-env': ^7.18.2 + '@babel/preset-react': ^7.17.12 + '@babel/preset-typescript': ^7.17.12 + '@babel/runtime': ^7.18.3 + '@redux-devtools/core': ^3.13.1 '@types/dateformat': ^3.0.1 '@types/dragula': ^3.7.1 '@types/hex-rgba': ^1.0.1 @@ -1197,40 +1197,40 @@ importers: '@types/lodash': ^4.14.182 '@types/lodash.debounce': ^4.0.7 '@types/prop-types': ^15.7.5 - '@types/react': ^17.0.45 + '@types/react': ^18.0.14 '@types/react-dragula': ^1.1.0 '@types/redux-devtools-themes': ^1.0.0 - '@typescript-eslint/eslint-plugin': ^5.22.0 - '@typescript-eslint/parser': ^5.22.0 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 dateformat: ^4.6.3 - eslint: ^8.15.0 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-react: ~7.28.0 - eslint-plugin-react-hooks: ^4.5.0 + eslint-plugin-react: ^7.30.1 + eslint-plugin-react-hooks: ^4.6.0 hex-rgba: ^1.0.2 - immutable: ^4.0.0 + immutable: ^4.1.0 javascript-stringify: ^2.1.0 jsondiffpatch: ^0.4.1 jss: ^10.9.0 jss-preset-default: ^10.9.0 lodash.debounce: ^4.0.8 prop-types: ^15.8.1 - react: ^17.0.2 + react: ^18.2.0 react-base16-styling: ^0.9.1 react-dragula: ^1.1.17 - react-json-tree: ^0.16.1 + react-json-tree: ^0.17.0 redux: ^4.2.0 redux-devtools-themes: ^1.0.0 rimraf: ^3.0.2 - typescript: ~4.6.4 + typescript: ~4.7.4 dependencies: - '@babel/runtime': 7.17.9 + '@babel/runtime': 7.18.3 '@types/dragula': 3.7.1 '@types/lodash': 4.14.182 '@types/prop-types': 15.7.5 dateformat: 4.6.3 hex-rgba: 1.0.2 - immutable: 4.0.0 + immutable: 4.1.0 javascript-stringify: 2.1.0 jsondiffpatch: 0.4.1 jss: 10.9.0 @@ -1242,76 +1242,76 @@ importers: react-json-tree: link:../react-json-tree redux-devtools-themes: 1.0.0 devDependencies: - '@babel/cli': 7.17.10_@babel+core@7.17.10 - '@babel/core': 7.17.10 - '@babel/eslint-parser': 7.17.0_035b3d23fd8620ffc8b252e0ab28a400 - '@babel/plugin-transform-runtime': 7.17.10_@babel+core@7.17.10 - '@babel/preset-env': 7.17.10_@babel+core@7.17.10 - '@babel/preset-react': 7.16.7_@babel+core@7.17.10 - '@babel/preset-typescript': 7.16.7_@babel+core@7.17.10 + '@babel/cli': 7.17.10_@babel+core@7.18.5 + '@babel/core': 7.18.5 + '@babel/eslint-parser': 7.18.2_cz6e4qppzra6gosrrzcvbsxiom + '@babel/plugin-transform-runtime': 7.18.5_@babel+core@7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-react': 7.17.12_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 '@redux-devtools/core': link:../redux-devtools '@types/dateformat': 3.0.1 '@types/hex-rgba': 1.0.1 '@types/history': 4.7.11 '@types/lodash.debounce': 4.0.7 - '@types/react': 17.0.45 + '@types/react': 18.0.14 '@types/react-dragula': 1.1.0 '@types/redux-devtools-themes': 1.0.0 - '@typescript-eslint/eslint-plugin': 5.22.0_9817cbad956b8aa5d1e3d9ec99e4a1e4 - '@typescript-eslint/parser': 5.22.0_eslint@8.15.0+typescript@4.6.4 - eslint: 8.15.0 - eslint-config-prettier: 8.5.0_eslint@8.15.0 - eslint-plugin-react: 7.28.0_eslint@8.15.0 - eslint-plugin-react-hooks: 4.5.0_eslint@8.15.0 - react: 17.0.2 + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 + eslint-plugin-react: 7.30.1_eslint@8.18.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 + react: 18.2.0 redux: 4.2.0 rimraf: 3.0.2 - typescript: 4.6.4 + typescript: 4.7.4 packages/redux-devtools-inspector-monitor-test-tab: specifiers: '@babel/cli': ^7.17.10 - '@babel/core': ^7.17.10 - '@babel/eslint-parser': ^7.17.0 - '@babel/plugin-transform-runtime': ^7.17.10 - '@babel/preset-env': ^7.17.10 - '@babel/preset-react': ^7.16.7 - '@babel/preset-typescript': ^7.16.7 - '@babel/runtime': ^7.17.9 - '@redux-devtools/core': ^3.12.0 - '@redux-devtools/inspector-monitor': ^2.1.2 - '@redux-devtools/ui': ^1.2.1 - '@testing-library/react': ^12.1.5 + '@babel/core': ^7.18.5 + '@babel/eslint-parser': ^7.18.2 + '@babel/plugin-transform-runtime': ^7.18.5 + '@babel/preset-env': ^7.18.2 + '@babel/preset-react': ^7.17.12 + '@babel/preset-typescript': ^7.17.12 + '@babel/runtime': ^7.18.3 + '@redux-devtools/core': ^3.13.0 + '@redux-devtools/inspector-monitor': ^3.0.0 + '@redux-devtools/ui': ^1.3.0 + '@testing-library/react': ^13.3.0 '@types/es6template': ^1.0.0 - '@types/jest': ^27.5.0 + '@types/jest': ^27.5.2 '@types/jsan': ^3.1.2 '@types/object-path': ^0.11.1 '@types/prop-types': ^15.7.5 - '@types/react': ^17.0.45 + '@types/react': ^18.0.14 '@types/simple-diff': ^1.6.1 - '@typescript-eslint/eslint-plugin': ^5.22.0 - '@typescript-eslint/parser': ^5.22.0 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 es6template: ^1.0.5 - eslint: ^8.15.0 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-jest: ^26.1.5 - eslint-plugin-react: ~7.28.0 - eslint-plugin-react-hooks: ^4.5.0 + eslint-plugin-jest: ^26.5.3 + eslint-plugin-react: ^7.30.1 + eslint-plugin-react-hooks: ^4.6.0 javascript-stringify: ^2.1.0 jest: ^27.5.1 jsan: ^3.1.14 object-path: ^0.11.8 prop-types: ^15.8.1 - react: ^17.0.2 - react-dom: ^17.0.2 - react-icons: ^4.3.1 + react: ^18.2.0 + react-dom: ^18.2.0 + react-icons: ^4.4.0 redux: ^4.2.0 rimraf: ^3.0.2 simple-diff: ^1.6.0 - ts-jest: ^27.1.4 - typescript: ~4.6.4 + ts-jest: ^27.1.5 + typescript: ~4.7.4 dependencies: - '@babel/runtime': 7.17.9 + '@babel/runtime': 7.18.3 '@redux-devtools/ui': link:../redux-devtools-ui '@types/prop-types': 15.7.5 es6template: 1.0.5 @@ -1319,401 +1319,381 @@ importers: jsan: 3.1.14 object-path: 0.11.8 prop-types: 15.8.1 - react-icons: 4.3.1_react@17.0.2 + react-icons: 4.4.0_react@18.2.0 simple-diff: 1.6.0 devDependencies: - '@babel/cli': 7.17.10_@babel+core@7.17.10 - '@babel/core': 7.17.10 - '@babel/eslint-parser': 7.17.0_035b3d23fd8620ffc8b252e0ab28a400 - '@babel/plugin-transform-runtime': 7.17.10_@babel+core@7.17.10 - '@babel/preset-env': 7.17.10_@babel+core@7.17.10 - '@babel/preset-react': 7.16.7_@babel+core@7.17.10 - '@babel/preset-typescript': 7.16.7_@babel+core@7.17.10 + '@babel/cli': 7.17.10_@babel+core@7.18.5 + '@babel/core': 7.18.5 + '@babel/eslint-parser': 7.18.2_cz6e4qppzra6gosrrzcvbsxiom + '@babel/plugin-transform-runtime': 7.18.5_@babel+core@7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-react': 7.17.12_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 '@redux-devtools/core': link:../redux-devtools '@redux-devtools/inspector-monitor': link:../redux-devtools-inspector-monitor - '@testing-library/react': 12.1.5_react-dom@17.0.2+react@17.0.2 + '@testing-library/react': 13.3.0_biqbaboplfbrettd7655fr4n2y '@types/es6template': 1.0.0 - '@types/jest': 27.5.0 + '@types/jest': 27.5.2 '@types/jsan': 3.1.2 '@types/object-path': 0.11.1 - '@types/react': 17.0.45 + '@types/react': 18.0.14 '@types/simple-diff': 1.6.1 - '@typescript-eslint/eslint-plugin': 5.22.0_9817cbad956b8aa5d1e3d9ec99e4a1e4 - '@typescript-eslint/parser': 5.22.0_eslint@8.15.0+typescript@4.6.4 - eslint: 8.15.0 - eslint-config-prettier: 8.5.0_eslint@8.15.0 - eslint-plugin-jest: 26.1.5_a9d133e1b4f50468488a2a18eed99ada - eslint-plugin-react: 7.28.0_eslint@8.15.0 - eslint-plugin-react-hooks: 4.5.0_eslint@8.15.0 + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 + eslint-plugin-jest: 26.5.3_hkaktba3mic4t6mktu5mmyzyhi + eslint-plugin-react: 7.30.1_eslint@8.18.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 jest: 27.5.1 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 redux: 4.2.0 rimraf: 3.0.2 - ts-jest: 27.1.4_6b62438663b23957550c965172b78733 - typescript: 4.6.4 + ts-jest: 27.1.5_7giygfzd3xe4pjz4ngu3nwlqbm + typescript: 4.7.4 packages/redux-devtools-inspector-monitor-test-tab/demo: specifiers: - '@babel/core': ^7.17.10 - '@babel/preset-env': ^7.17.10 - '@babel/preset-react': ^7.16.7 - '@babel/preset-typescript': ^7.16.7 - '@redux-devtools/core': ^3.12.0 - '@redux-devtools/dock-monitor': ^2.1.1 - '@redux-devtools/inspector-monitor': ^2.1.2 - '@redux-devtools/inspector-monitor-test-tab': ^0.8.6 - '@redux-devtools/ui': ^1.2.1 - '@types/history': ^4.7.11 + '@babel/core': ^7.18.5 + '@babel/preset-env': ^7.18.2 + '@babel/preset-react': ^7.17.12 + '@babel/preset-typescript': ^7.17.12 + '@redux-devtools/core': ^3.13.0 + '@redux-devtools/dock-monitor': ^3.0.0 + '@redux-devtools/inspector-monitor': ^3.0.0 + '@redux-devtools/inspector-monitor-test-tab': ^1.0.0 + '@redux-devtools/ui': ^1.3.0 '@types/lodash.shuffle': ^4.2.7 - '@types/node': ^16.11.33 - '@types/react': ^17.0.45 - '@types/react-dom': ^17.0.16 - '@types/react-redux': ^7.1.24 - '@types/react-router': ^5.1.18 + '@types/node': ^16.11.41 + '@types/react': ^18.0.14 + '@types/react-dom': ^18.0.5 '@types/redux-logger': ^3.0.9 '@types/styled-components': ^5.1.25 - '@types/webpack-env': ^1.16.4 - '@typescript-eslint/eslint-plugin': ^5.22.0 - '@typescript-eslint/parser': ^5.22.0 + '@types/webpack-env': ^1.17.0 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 babel-loader: ^8.2.5 - connected-react-router: ^6.9.2 cross-env: ^7.0.3 css-loader: ^6.7.1 - eslint: ^8.15.0 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-react: ~7.28.0 - eslint-plugin-react-hooks: ^4.5.0 + eslint-plugin-react: ^7.30.1 + eslint-plugin-react-hooks: ^4.6.0 fork-ts-checker-webpack-plugin: ^7.2.11 - history: ^4.10.1 html-webpack-plugin: ^5.5.0 - immutable: ^4.0.0 + immutable: ^4.1.0 lodash.shuffle: ^4.2.0 - react: ^17.0.2 - react-dom: ^17.0.2 - react-is: ^17.0.2 - react-redux: ^7.2.8 - react-router: ^5.3.1 + react: ^18.2.0 + react-dom: ^18.2.0 + react-is: ^18.2.0 + react-redux: ^8.0.2 + react-router-dom: ^6.3.0 redux: ^4.2.0 redux-logger: ^3.0.6 style-loader: ^3.3.1 styled-components: ^5.3.5 - ts-node: ^10.7.0 - typescript: ~4.6.4 - webpack: ^5.72.0 - webpack-cli: ^4.9.2 - webpack-dev-server: ^4.9.0 + ts-node: ^10.8.1 + typescript: ~4.7.4 + webpack: ^5.73.0 + webpack-cli: ^4.10.0 + webpack-dev-server: ^4.9.2 dependencies: '@redux-devtools/core': link:../../redux-devtools '@redux-devtools/dock-monitor': link:../../redux-devtools-dock-monitor '@redux-devtools/inspector-monitor': link:../../redux-devtools-inspector-monitor '@redux-devtools/inspector-monitor-test-tab': link:.. '@redux-devtools/ui': link:../../redux-devtools-ui - connected-react-router: 6.9.2_00712eb8f791d7f1c28c0ddcca5e8608 - history: 4.10.1 - immutable: 4.0.0 + immutable: 4.1.0 lodash.shuffle: 4.2.0 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - react-is: 17.0.2 - react-redux: 7.2.8_react-dom@17.0.2+react@17.0.2 - react-router: 5.3.1_react@17.0.2 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + react-is: 18.2.0 + react-redux: 8.0.2_jcbkrypqxz3emsprsw5dchskju + react-router-dom: 6.3.0_biqbaboplfbrettd7655fr4n2y redux: 4.2.0 redux-logger: 3.0.6 - styled-components: 5.3.5_281a4fa50a045c9112baf635f3bc27a7 + styled-components: 5.3.5_7i5myeigehqah43i5u7wbekgba devDependencies: - '@babel/core': 7.17.10 - '@babel/preset-env': 7.17.10_@babel+core@7.17.10 - '@babel/preset-react': 7.16.7_@babel+core@7.17.10 - '@babel/preset-typescript': 7.16.7_@babel+core@7.17.10 - '@types/history': 4.7.11 + '@babel/core': 7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-react': 7.17.12_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 '@types/lodash.shuffle': 4.2.7 - '@types/node': 16.11.33 - '@types/react': 17.0.45 - '@types/react-dom': 17.0.16 - '@types/react-redux': 7.1.24 - '@types/react-router': 5.1.18 + '@types/node': 16.11.41 + '@types/react': 18.0.14 + '@types/react-dom': 18.0.5 '@types/redux-logger': 3.0.9 '@types/styled-components': 5.1.25 - '@types/webpack-env': 1.16.4 - '@typescript-eslint/eslint-plugin': 5.22.0_9817cbad956b8aa5d1e3d9ec99e4a1e4 - '@typescript-eslint/parser': 5.22.0_eslint@8.15.0+typescript@4.6.4 - babel-loader: 8.2.5_887a5110397f957d9e06dd05497793db + '@types/webpack-env': 1.17.0 + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e + babel-loader: 8.2.5_te6ollfzjcco6mbxjl755ucqke cross-env: 7.0.3 - css-loader: 6.7.1_webpack@5.72.0 - eslint: 8.15.0 - eslint-config-prettier: 8.5.0_eslint@8.15.0 - eslint-plugin-react: 7.28.0_eslint@8.15.0 - eslint-plugin-react-hooks: 4.5.0_eslint@8.15.0 - fork-ts-checker-webpack-plugin: 7.2.11_typescript@4.6.4+webpack@5.72.0 - html-webpack-plugin: 5.5.0_webpack@5.72.0 - style-loader: 3.3.1_webpack@5.72.0 - ts-node: 10.7.0_fd4b5ff48b408bf425abfec4a641da13 - typescript: 4.6.4 - webpack: 5.72.0_webpack-cli@4.9.2 - webpack-cli: 4.9.2_e12b136d9a821d211692f1ec9717cf12 - webpack-dev-server: 4.9.0_webpack-cli@4.9.2+webpack@5.72.0 + css-loader: 6.7.1_webpack@5.73.0 + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 + eslint-plugin-react: 7.30.1_eslint@8.18.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 + fork-ts-checker-webpack-plugin: 7.2.11_3o2jfq6vfqxns3sz6wn2nnc3ei + html-webpack-plugin: 5.5.0_webpack@5.73.0 + style-loader: 3.3.1_webpack@5.73.0 + ts-node: 10.8.1_qqpsu5gwjto2muvbbvmj4ndcmu + typescript: 4.7.4 + webpack: 5.73.0_webpack-cli@4.10.0 + webpack-cli: 4.10.0_hnfkmnck6ti4dm6ulhhz44v2ju + webpack-dev-server: 4.9.2_77l47gmqkrqiei5z7sbwz5iaj4 packages/redux-devtools-inspector-monitor-trace-tab: specifiers: '@babel/cli': ^7.17.10 '@babel/code-frame': ^7.16.7 - '@babel/core': ^7.17.10 - '@babel/eslint-parser': ^7.17.0 - '@babel/plugin-transform-runtime': ^7.17.10 - '@babel/preset-env': ^7.17.10 - '@babel/preset-react': ^7.16.7 - '@babel/preset-typescript': ^7.16.7 - '@babel/runtime': ^7.17.9 - '@redux-devtools/core': ^3.12.0 - '@redux-devtools/inspector-monitor': ^2.1.2 - '@testing-library/react': ^12.1.5 + '@babel/core': ^7.18.5 + '@babel/eslint-parser': ^7.18.2 + '@babel/plugin-transform-runtime': ^7.18.5 + '@babel/preset-env': ^7.18.2 + '@babel/preset-react': ^7.17.12 + '@babel/preset-typescript': ^7.17.12 + '@babel/runtime': ^7.18.3 + '@redux-devtools/core': ^3.13.0 + '@redux-devtools/inspector-monitor': ^3.0.0 + '@testing-library/react': ^13.3.0 '@types/babel__code-frame': ^7.0.3 - '@types/chrome': ^0.0.184 + '@types/chrome': ^0.0.191 '@types/html-entities': ^1.3.4 - '@types/jest': ^27.5.0 - '@types/node': ^16.11.33 + '@types/jest': ^27.5.2 + '@types/node': ^16.11.41 '@types/path-browserify': ^1.0.0 - '@types/react': ^17.0.45 + '@types/react': ^18.0.14 '@types/redux-devtools-themes': ^1.0.0 '@types/source-map': 0.5.2 - '@typescript-eslint/eslint-plugin': ^5.22.0 - '@typescript-eslint/parser': ^5.22.0 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 anser: ^2.1.1 - eslint: ^8.15.0 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-jest: ^26.1.5 - eslint-plugin-react: ~7.28.0 - eslint-plugin-react-hooks: ^4.5.0 + eslint-plugin-jest: ^26.5.3 + eslint-plugin-react: ^7.30.1 + eslint-plugin-react-hooks: ^4.6.0 html-entities: ^2.3.3 jest: ^27.5.1 path-browserify: ^1.0.1 - react: ^17.0.2 - react-dom: ^17.0.2 - react-test-renderer: ^17.0.2 + react: ^18.2.0 + react-dom: ^18.2.0 + react-test-renderer: ^18.2.0 redux: ^4.2.0 redux-devtools-themes: ^1.0.0 rimraf: ^3.0.2 source-map: ^0.5.7 - ts-jest: ^27.1.4 - typescript: ~4.6.4 + ts-jest: ^27.1.5 + typescript: ~4.7.4 dependencies: '@babel/code-frame': 7.16.7 - '@babel/runtime': 7.17.9 - '@types/chrome': 0.0.184 + '@babel/runtime': 7.18.3 + '@types/chrome': 0.0.191 anser: 2.1.1 html-entities: 2.3.3 path-browserify: 1.0.1 redux-devtools-themes: 1.0.0 source-map: 0.5.7 devDependencies: - '@babel/cli': 7.17.10_@babel+core@7.17.10 - '@babel/core': 7.17.10 - '@babel/eslint-parser': 7.17.0_035b3d23fd8620ffc8b252e0ab28a400 - '@babel/plugin-transform-runtime': 7.17.10_@babel+core@7.17.10 - '@babel/preset-env': 7.17.10_@babel+core@7.17.10 - '@babel/preset-react': 7.16.7_@babel+core@7.17.10 - '@babel/preset-typescript': 7.16.7_@babel+core@7.17.10 + '@babel/cli': 7.17.10_@babel+core@7.18.5 + '@babel/core': 7.18.5 + '@babel/eslint-parser': 7.18.2_cz6e4qppzra6gosrrzcvbsxiom + '@babel/plugin-transform-runtime': 7.18.5_@babel+core@7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-react': 7.17.12_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 '@redux-devtools/core': link:../redux-devtools '@redux-devtools/inspector-monitor': link:../redux-devtools-inspector-monitor - '@testing-library/react': 12.1.5_react-dom@17.0.2+react@17.0.2 + '@testing-library/react': 13.3.0_biqbaboplfbrettd7655fr4n2y '@types/babel__code-frame': 7.0.3 '@types/html-entities': 1.3.4 - '@types/jest': 27.5.0 - '@types/node': 16.11.33 + '@types/jest': 27.5.2 + '@types/node': 16.11.41 '@types/path-browserify': 1.0.0 - '@types/react': 17.0.45 + '@types/react': 18.0.14 '@types/redux-devtools-themes': 1.0.0 '@types/source-map': 0.5.2 - '@typescript-eslint/eslint-plugin': 5.22.0_9817cbad956b8aa5d1e3d9ec99e4a1e4 - '@typescript-eslint/parser': 5.22.0_eslint@8.15.0+typescript@4.6.4 - eslint: 8.15.0 - eslint-config-prettier: 8.5.0_eslint@8.15.0 - eslint-plugin-jest: 26.1.5_a9d133e1b4f50468488a2a18eed99ada - eslint-plugin-react: 7.28.0_eslint@8.15.0 - eslint-plugin-react-hooks: 4.5.0_eslint@8.15.0 + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 + eslint-plugin-jest: 26.5.3_hkaktba3mic4t6mktu5mmyzyhi + eslint-plugin-react: 7.30.1_eslint@8.18.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 jest: 27.5.1 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - react-test-renderer: 17.0.2_react@17.0.2 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + react-test-renderer: 18.2.0_react@18.2.0 redux: 4.2.0 rimraf: 3.0.2 - ts-jest: 27.1.4_6b62438663b23957550c965172b78733 - typescript: 4.6.4 + ts-jest: 27.1.5_7giygfzd3xe4pjz4ngu3nwlqbm + typescript: 4.7.4 packages/redux-devtools-inspector-monitor/demo: specifiers: - '@babel/core': ^7.17.10 - '@babel/preset-env': ^7.17.10 - '@babel/preset-react': ^7.16.7 - '@babel/preset-typescript': ^7.16.7 - '@redux-devtools/core': ^3.12.0 - '@redux-devtools/dock-monitor': ^2.1.1 - '@redux-devtools/inspector-monitor': ^2.1.2 + '@babel/core': ^7.18.5 + '@babel/preset-env': ^7.18.2 + '@babel/preset-react': ^7.17.12 + '@babel/preset-typescript': ^7.17.12 + '@redux-devtools/core': ^3.13.0 + '@redux-devtools/dock-monitor': ^3.0.0 + '@redux-devtools/inspector-monitor': ^3.0.0 '@types/base16': ^1.0.2 - '@types/history': ^4.7.11 '@types/lodash.shuffle': ^4.2.7 - '@types/node': ^16.11.33 - '@types/react': ^17.0.45 - '@types/react-dom': ^17.0.16 - '@types/react-redux': ^7.1.24 - '@types/react-router': ^5.1.18 + '@types/node': ^16.11.41 + '@types/react': ^18.0.14 + '@types/react-dom': ^18.0.5 '@types/redux-logger': ^3.0.9 - '@types/webpack-env': ^1.16.4 - '@typescript-eslint/eslint-plugin': ^5.22.0 - '@typescript-eslint/parser': ^5.22.0 + '@types/webpack-env': ^1.17.0 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 babel-loader: ^8.2.5 base16: ^1.0.0 - connected-react-router: ^6.9.2 cross-env: ^7.0.3 - eslint: ^8.15.0 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-react: ~7.28.0 - eslint-plugin-react-hooks: ^4.5.0 + eslint-plugin-react: ^7.30.1 + eslint-plugin-react-hooks: ^4.6.0 fork-ts-checker-webpack-plugin: ^7.2.11 - history: ^4.10.1 html-webpack-plugin: ^5.5.0 - immutable: ^4.0.0 + immutable: ^4.1.0 lodash.shuffle: ^4.2.0 - react: ^17.0.2 - react-bootstrap: ^2.3.1 - react-dom: ^17.0.2 - react-redux: ^7.2.8 - react-router: ^5.3.1 + react: ^18.2.0 + react-bootstrap: ^2.4.0 + react-dom: ^18.2.0 + react-redux: ^8.0.2 + react-router-dom: ^6.3.0 redux: ^4.2.0 redux-logger: ^3.0.6 - ts-node: ^10.7.0 - typescript: ~4.6.4 - webpack: ^5.72.0 - webpack-cli: ^4.9.2 - webpack-dev-server: ^4.9.0 + ts-node: ^10.8.1 + typescript: ~4.7.4 + webpack: ^5.73.0 + webpack-cli: ^4.10.0 + webpack-dev-server: ^4.9.2 dependencies: '@redux-devtools/core': link:../../redux-devtools '@redux-devtools/dock-monitor': link:../../redux-devtools-dock-monitor '@redux-devtools/inspector-monitor': link:.. base16: 1.0.0 - connected-react-router: 6.9.2_00712eb8f791d7f1c28c0ddcca5e8608 - history: 4.10.1 - immutable: 4.0.0 + immutable: 4.1.0 lodash.shuffle: 4.2.0 - react: 17.0.2 - react-bootstrap: 2.3.1_569957a51d469c962fcce166a59b9f78 - react-dom: 17.0.2_react@17.0.2 - react-redux: 7.2.8_react-dom@17.0.2+react@17.0.2 - react-router: 5.3.1_react@17.0.2 + react: 18.2.0 + react-bootstrap: 2.4.0_twyhzqqpkwvvgrmyeapdo6i4my + react-dom: 18.2.0_react@18.2.0 + react-redux: 8.0.2_jcbkrypqxz3emsprsw5dchskju + react-router-dom: 6.3.0_biqbaboplfbrettd7655fr4n2y redux: 4.2.0 redux-logger: 3.0.6 devDependencies: - '@babel/core': 7.17.10 - '@babel/preset-env': 7.17.10_@babel+core@7.17.10 - '@babel/preset-react': 7.16.7_@babel+core@7.17.10 - '@babel/preset-typescript': 7.16.7_@babel+core@7.17.10 + '@babel/core': 7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-react': 7.17.12_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 '@types/base16': 1.0.2 - '@types/history': 4.7.11 '@types/lodash.shuffle': 4.2.7 - '@types/node': 16.11.33 - '@types/react': 17.0.45 - '@types/react-dom': 17.0.16 - '@types/react-redux': 7.1.24 - '@types/react-router': 5.1.18 + '@types/node': 16.11.41 + '@types/react': 18.0.14 + '@types/react-dom': 18.0.5 '@types/redux-logger': 3.0.9 - '@types/webpack-env': 1.16.4 - '@typescript-eslint/eslint-plugin': 5.22.0_9817cbad956b8aa5d1e3d9ec99e4a1e4 - '@typescript-eslint/parser': 5.22.0_eslint@8.15.0+typescript@4.6.4 - babel-loader: 8.2.5_887a5110397f957d9e06dd05497793db + '@types/webpack-env': 1.17.0 + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e + babel-loader: 8.2.5_te6ollfzjcco6mbxjl755ucqke cross-env: 7.0.3 - eslint: 8.15.0 - eslint-config-prettier: 8.5.0_eslint@8.15.0 - eslint-plugin-react: 7.28.0_eslint@8.15.0 - eslint-plugin-react-hooks: 4.5.0_eslint@8.15.0 - fork-ts-checker-webpack-plugin: 7.2.11_typescript@4.6.4+webpack@5.72.0 - html-webpack-plugin: 5.5.0_webpack@5.72.0 - ts-node: 10.7.0_fd4b5ff48b408bf425abfec4a641da13 - typescript: 4.6.4 - webpack: 5.72.0_webpack-cli@4.9.2 - webpack-cli: 4.9.2_e12b136d9a821d211692f1ec9717cf12 - webpack-dev-server: 4.9.0_webpack-cli@4.9.2+webpack@5.72.0 + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 + eslint-plugin-react: 7.30.1_eslint@8.18.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 + fork-ts-checker-webpack-plugin: 7.2.11_3o2jfq6vfqxns3sz6wn2nnc3ei + html-webpack-plugin: 5.5.0_webpack@5.73.0 + ts-node: 10.8.1_qqpsu5gwjto2muvbbvmj4ndcmu + typescript: 4.7.4 + webpack: 5.73.0_webpack-cli@4.10.0 + webpack-cli: 4.10.0_hnfkmnck6ti4dm6ulhhz44v2ju + webpack-dev-server: 4.9.2_77l47gmqkrqiei5z7sbwz5iaj4 packages/redux-devtools-instrument: specifiers: '@babel/cli': ^7.17.10 - '@babel/core': ^7.17.10 - '@babel/eslint-parser': ^7.17.0 - '@babel/plugin-transform-runtime': ^7.17.10 - '@babel/preset-env': ^7.17.10 - '@babel/preset-typescript': ^7.16.7 - '@babel/runtime': ^7.17.9 - '@types/jest': ^27.5.0 + '@babel/core': ^7.18.5 + '@babel/eslint-parser': ^7.18.2 + '@babel/plugin-transform-runtime': ^7.18.5 + '@babel/preset-env': ^7.18.2 + '@babel/preset-typescript': ^7.17.12 + '@babel/runtime': ^7.18.3 + '@types/jest': ^27.5.2 '@types/lodash': ^4.14.182 - '@types/node': ^16.11.33 - '@typescript-eslint/eslint-plugin': ^5.22.0 - '@typescript-eslint/parser': ^5.22.0 - eslint: ^8.15.0 + '@types/node': ^16.11.41 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-jest: ^26.1.5 + eslint-plugin-jest: ^26.5.3 jest: ^27.5.1 lodash: ^4.17.21 redux: ^4.2.0 rimraf: ^3.0.2 rxjs: ^7.5.5 - ts-jest: ^27.1.4 - typescript: ~4.6.4 + ts-jest: ^27.1.5 + typescript: ~4.7.4 dependencies: - '@babel/runtime': 7.17.9 + '@babel/runtime': 7.18.3 lodash: 4.17.21 devDependencies: - '@babel/cli': 7.17.10_@babel+core@7.17.10 - '@babel/core': 7.17.10 - '@babel/eslint-parser': 7.17.0_035b3d23fd8620ffc8b252e0ab28a400 - '@babel/plugin-transform-runtime': 7.17.10_@babel+core@7.17.10 - '@babel/preset-env': 7.17.10_@babel+core@7.17.10 - '@babel/preset-typescript': 7.16.7_@babel+core@7.17.10 - '@types/jest': 27.5.0 + '@babel/cli': 7.17.10_@babel+core@7.18.5 + '@babel/core': 7.18.5 + '@babel/eslint-parser': 7.18.2_cz6e4qppzra6gosrrzcvbsxiom + '@babel/plugin-transform-runtime': 7.18.5_@babel+core@7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 + '@types/jest': 27.5.2 '@types/lodash': 4.14.182 - '@types/node': 16.11.33 - '@typescript-eslint/eslint-plugin': 5.22.0_9817cbad956b8aa5d1e3d9ec99e4a1e4 - '@typescript-eslint/parser': 5.22.0_eslint@8.15.0+typescript@4.6.4 - eslint: 8.15.0 - eslint-config-prettier: 8.5.0_eslint@8.15.0 - eslint-plugin-jest: 26.1.5_a9d133e1b4f50468488a2a18eed99ada + '@types/node': 16.11.41 + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 + eslint-plugin-jest: 26.5.3_hkaktba3mic4t6mktu5mmyzyhi jest: 27.5.1 redux: 4.2.0 rimraf: 3.0.2 rxjs: 7.5.5 - ts-jest: 27.1.4_6b62438663b23957550c965172b78733 - typescript: 4.6.4 + ts-jest: 27.1.5_7giygfzd3xe4pjz4ngu3nwlqbm + typescript: 4.7.4 packages/redux-devtools-log-monitor: specifiers: '@babel/cli': ^7.17.10 - '@babel/core': ^7.17.10 - '@babel/eslint-parser': ^7.17.0 - '@babel/plugin-transform-runtime': ^7.17.10 - '@babel/preset-env': ^7.17.10 - '@babel/preset-react': ^7.16.7 - '@babel/preset-typescript': ^7.16.7 - '@babel/runtime': ^7.17.9 - '@redux-devtools/core': ^3.12.0 + '@babel/core': ^7.18.5 + '@babel/eslint-parser': ^7.18.2 + '@babel/plugin-transform-runtime': ^7.18.5 + '@babel/preset-env': ^7.18.2 + '@babel/preset-react': ^7.17.12 + '@babel/preset-typescript': ^7.17.12 + '@babel/runtime': ^7.18.3 + '@redux-devtools/core': ^3.13.1 '@types/lodash.debounce': ^4.0.7 '@types/prop-types': ^15.7.5 - '@types/react': ^17.0.45 + '@types/react': ^18.0.14 '@types/redux-devtools-themes': ^1.0.0 - '@typescript-eslint/eslint-plugin': ^5.22.0 - '@typescript-eslint/parser': ^5.22.0 - eslint: ^8.15.0 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-react: ~7.28.0 - eslint-plugin-react-hooks: ^4.5.0 + eslint-plugin-react: ^7.30.1 + eslint-plugin-react-hooks: ^4.6.0 lodash.debounce: ^4.0.8 prop-types: ^15.8.1 - react: ^17.0.2 - react-json-tree: ^0.16.1 + react: ^18.2.0 + react-json-tree: ^0.17.0 redux: ^4.2.0 redux-devtools-themes: ^1.0.0 rimraf: ^3.0.2 - typescript: ~4.6.4 + typescript: ~4.7.4 dependencies: - '@babel/runtime': 7.17.9 + '@babel/runtime': 7.18.3 '@types/lodash.debounce': 4.0.7 '@types/prop-types': 15.7.5 '@types/redux-devtools-themes': 1.0.0 @@ -1722,125 +1702,125 @@ importers: react-json-tree: link:../react-json-tree redux-devtools-themes: 1.0.0 devDependencies: - '@babel/cli': 7.17.10_@babel+core@7.17.10 - '@babel/core': 7.17.10 - '@babel/eslint-parser': 7.17.0_035b3d23fd8620ffc8b252e0ab28a400 - '@babel/plugin-transform-runtime': 7.17.10_@babel+core@7.17.10 - '@babel/preset-env': 7.17.10_@babel+core@7.17.10 - '@babel/preset-react': 7.16.7_@babel+core@7.17.10 - '@babel/preset-typescript': 7.16.7_@babel+core@7.17.10 + '@babel/cli': 7.17.10_@babel+core@7.18.5 + '@babel/core': 7.18.5 + '@babel/eslint-parser': 7.18.2_cz6e4qppzra6gosrrzcvbsxiom + '@babel/plugin-transform-runtime': 7.18.5_@babel+core@7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-react': 7.17.12_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 '@redux-devtools/core': link:../redux-devtools - '@types/react': 17.0.45 - '@typescript-eslint/eslint-plugin': 5.22.0_9817cbad956b8aa5d1e3d9ec99e4a1e4 - '@typescript-eslint/parser': 5.22.0_eslint@8.15.0+typescript@4.6.4 - eslint: 8.15.0 - eslint-config-prettier: 8.5.0_eslint@8.15.0 - eslint-plugin-react: 7.28.0_eslint@8.15.0 - eslint-plugin-react-hooks: 4.5.0_eslint@8.15.0 - react: 17.0.2 + '@types/react': 18.0.14 + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 + eslint-plugin-react: 7.30.1_eslint@8.18.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 + react: 18.2.0 redux: 4.2.0 rimraf: 3.0.2 - typescript: 4.6.4 + typescript: 4.7.4 packages/redux-devtools-remote: specifiers: '@babel/cli': ^7.17.10 - '@babel/core': ^7.17.10 - '@babel/eslint-parser': ^7.17.0 - '@babel/plugin-transform-runtime': ^7.17.10 - '@babel/preset-env': ^7.17.10 - '@babel/preset-typescript': ^7.16.7 - '@babel/runtime': ^7.17.9 + '@babel/core': ^7.18.5 + '@babel/eslint-parser': ^7.18.2 + '@babel/plugin-transform-runtime': ^7.18.5 + '@babel/preset-env': ^7.18.2 + '@babel/preset-typescript': ^7.17.12 + '@babel/runtime': ^7.18.3 '@redux-devtools/instrument': ^2.1.0 - '@redux-devtools/utils': ^1.2.1 + '@redux-devtools/utils': ^2.0.0 '@types/jsan': ^3.1.2 - '@types/node': ^16.11.33 + '@types/node': ^16.11.41 '@types/rn-host-detect': ^1.2.0 - '@types/socketcluster-client': ^13.0.5 - '@typescript-eslint/eslint-plugin': ^5.22.0 - '@typescript-eslint/parser': ^5.22.0 - eslint: ^8.15.0 + '@types/socketcluster-client': ^16.0.0 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 jsan: ^3.1.14 querystring: ^0.2.1 redux: ^4.2.0 rimraf: ^3.0.2 rn-host-detect: ^1.2.0 - socketcluster-client: ^14.3.2 - typescript: ~4.6.4 + socketcluster-client: ^16.1.1 + typescript: ~4.7.4 dependencies: - '@babel/runtime': 7.17.9 + '@babel/runtime': 7.18.3 '@redux-devtools/instrument': link:../redux-devtools-instrument '@redux-devtools/utils': link:../redux-devtools-utils jsan: 3.1.14 querystring: 0.2.1 rn-host-detect: 1.2.0 - socketcluster-client: 14.3.2 + socketcluster-client: 16.1.1 devDependencies: - '@babel/cli': 7.17.10_@babel+core@7.17.10 - '@babel/core': 7.17.10 - '@babel/eslint-parser': 7.17.0_035b3d23fd8620ffc8b252e0ab28a400 - '@babel/plugin-transform-runtime': 7.17.10_@babel+core@7.17.10 - '@babel/preset-env': 7.17.10_@babel+core@7.17.10 - '@babel/preset-typescript': 7.16.7_@babel+core@7.17.10 + '@babel/cli': 7.17.10_@babel+core@7.18.5 + '@babel/core': 7.18.5 + '@babel/eslint-parser': 7.18.2_cz6e4qppzra6gosrrzcvbsxiom + '@babel/plugin-transform-runtime': 7.18.5_@babel+core@7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 '@types/jsan': 3.1.2 - '@types/node': 16.11.33 + '@types/node': 16.11.41 '@types/rn-host-detect': 1.2.0 - '@types/socketcluster-client': 13.0.5 - '@typescript-eslint/eslint-plugin': 5.22.0_9817cbad956b8aa5d1e3d9ec99e4a1e4 - '@typescript-eslint/parser': 5.22.0_eslint@8.15.0+typescript@4.6.4 - eslint: 8.15.0 - eslint-config-prettier: 8.5.0_eslint@8.15.0 + '@types/socketcluster-client': 16.0.0 + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 redux: 4.2.0 rimraf: 3.0.2 - typescript: 4.6.4 + typescript: 4.7.4 packages/redux-devtools-rtk-query-monitor: specifiers: '@babel/cli': ^7.17.10 - '@babel/core': ^7.17.10 - '@babel/eslint-parser': ^7.17.0 - '@babel/plugin-transform-runtime': ^7.17.10 - '@babel/preset-env': ^7.17.10 - '@babel/preset-react': ^7.16.7 - '@babel/preset-typescript': ^7.16.7 - '@babel/runtime': ^7.17.9 - '@redux-devtools/core': ^3.12.0 - '@redux-devtools/ui': ^1.2.1 - '@reduxjs/toolkit': ^1.8.1 + '@babel/core': ^7.18.5 + '@babel/eslint-parser': ^7.18.2 + '@babel/plugin-transform-runtime': ^7.18.5 + '@babel/preset-env': ^7.18.2 + '@babel/preset-react': ^7.17.12 + '@babel/preset-typescript': ^7.17.12 + '@babel/runtime': ^7.18.3 + '@redux-devtools/core': ^3.13.1 + '@redux-devtools/ui': ^1.3.0 + '@reduxjs/toolkit': ^1.8.2 '@types/hex-rgba': ^1.0.1 '@types/lodash': ^4.14.182 '@types/lodash.debounce': ^4.0.7 '@types/prop-types': ^15.7.5 - '@types/react': ^17.0.45 + '@types/react': ^18.0.14 '@types/redux-devtools-themes': ^1.0.0 - '@typescript-eslint/eslint-plugin': ^5.22.0 - '@typescript-eslint/parser': ^5.22.0 - eslint: ^8.15.0 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-react: ~7.28.0 - eslint-plugin-react-hooks: ^4.5.0 + eslint-plugin-react: ^7.30.1 + eslint-plugin-react-hooks: ^4.6.0 hex-rgba: ^1.0.2 - immutable: ^4.0.0 + immutable: ^4.1.0 jss: ^10.9.0 jss-preset-default: ^10.9.0 lodash.debounce: ^4.0.8 prop-types: ^15.8.1 - react: ^17.0.2 + react: ^18.2.0 react-base16-styling: ^0.9.1 - react-json-tree: ^0.16.1 + react-json-tree: ^0.17.0 redux: ^4.2.0 redux-devtools-themes: ^1.0.0 rimraf: ^3.0.2 - typescript: ~4.6.4 + typescript: ~4.7.4 dependencies: - '@babel/runtime': 7.17.9 + '@babel/runtime': 7.18.3 '@redux-devtools/ui': link:../redux-devtools-ui '@types/lodash': 4.14.182 '@types/prop-types': 15.7.5 '@types/redux-devtools-themes': 1.0.0 hex-rgba: 1.0.2 - immutable: 4.0.0 + immutable: 4.1.0 jss: 10.9.0 jss-preset-default: 10.9.0 lodash.debounce: 4.0.8 @@ -1849,282 +1829,279 @@ importers: react-json-tree: link:../react-json-tree redux-devtools-themes: 1.0.0 devDependencies: - '@babel/cli': 7.17.10_@babel+core@7.17.10 - '@babel/core': 7.17.10 - '@babel/eslint-parser': 7.17.0_035b3d23fd8620ffc8b252e0ab28a400 - '@babel/plugin-transform-runtime': 7.17.10_@babel+core@7.17.10 - '@babel/preset-env': 7.17.10_@babel+core@7.17.10 - '@babel/preset-react': 7.16.7_@babel+core@7.17.10 - '@babel/preset-typescript': 7.16.7_@babel+core@7.17.10 + '@babel/cli': 7.17.10_@babel+core@7.18.5 + '@babel/core': 7.18.5 + '@babel/eslint-parser': 7.18.2_cz6e4qppzra6gosrrzcvbsxiom + '@babel/plugin-transform-runtime': 7.18.5_@babel+core@7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-react': 7.17.12_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 '@redux-devtools/core': link:../redux-devtools - '@reduxjs/toolkit': 1.8.1_react@17.0.2 + '@reduxjs/toolkit': 1.8.2_react@18.2.0 '@types/hex-rgba': 1.0.1 '@types/lodash.debounce': 4.0.7 - '@types/react': 17.0.45 - '@typescript-eslint/eslint-plugin': 5.22.0_9817cbad956b8aa5d1e3d9ec99e4a1e4 - '@typescript-eslint/parser': 5.22.0_eslint@8.15.0+typescript@4.6.4 - eslint: 8.15.0 - eslint-config-prettier: 8.5.0_eslint@8.15.0 - eslint-plugin-react: 7.28.0_eslint@8.15.0 - eslint-plugin-react-hooks: 4.5.0_eslint@8.15.0 - react: 17.0.2 + '@types/react': 18.0.14 + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 + eslint-plugin-react: 7.30.1_eslint@8.18.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 + react: 18.2.0 redux: 4.2.0 rimraf: 3.0.2 - typescript: 4.6.4 + typescript: 4.7.4 packages/redux-devtools-rtk-query-monitor/demo: specifiers: - '@babel/core': ^7.17.10 - '@babel/plugin-transform-runtime': ^7.17.10 - '@babel/preset-env': ^7.17.10 - '@babel/preset-react': ^7.16.7 - '@babel/preset-typescript': ^7.16.7 - '@babel/runtime': ^7.17.9 - '@chakra-ui/react': ^1.8.8 - '@emotion/react': ^11.9.0 - '@emotion/styled': ^11.8.1 - '@mswjs/data': ^0.10.0 - '@redux-devtools/core': ^3.12.0 - '@redux-devtools/dock-monitor': ^2.1.1 - '@redux-devtools/rtk-query-monitor': ^2.1.2 - '@reduxjs/toolkit': ^1.8.1 + '@babel/core': ^7.18.5 + '@babel/plugin-transform-runtime': ^7.18.5 + '@babel/preset-env': ^7.18.2 + '@babel/preset-react': ^7.17.12 + '@babel/preset-typescript': ^7.17.12 + '@babel/runtime': ^7.18.3 + '@chakra-ui/react': ^2.2.1 + '@emotion/react': ^11.9.3 + '@emotion/styled': ^11.9.3 + '@mswjs/data': ^0.10.1 + '@redux-devtools/core': ^3.13.0 + '@redux-devtools/dock-monitor': ^3.0.0 + '@redux-devtools/rtk-query-monitor': ^3.0.0 + '@reduxjs/toolkit': ^1.8.2 '@types/copy-webpack-plugin': ^8.0.1 - '@types/node': ^16.11.33 - '@types/react': ^17.0.45 - '@types/react-dom': ^17.0.16 - '@types/react-redux': ^7.1.24 - '@types/react-router-dom': ^5.3.3 + '@types/node': ^16.11.41 + '@types/react': ^18.0.14 + '@types/react-dom': ^18.0.5 '@types/styled-components': ^5.1.25 - '@typescript-eslint/eslint-plugin': ^5.22.0 - '@typescript-eslint/parser': ^5.22.0 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 babel-loader: ^8.2.5 - copy-webpack-plugin: ^9.1.0 + copy-webpack-plugin: ^11.0.0 cross-env: ^7.0.3 css-loader: ^6.7.1 - eslint: ^8.15.0 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-react: ~7.28.0 - eslint-plugin-react-hooks: ^4.5.0 + eslint-plugin-react: ^7.30.1 + eslint-plugin-react-hooks: ^4.6.0 fork-ts-checker-webpack-plugin: ^7.2.11 - framer-motion: ^6.3.3 + framer-motion: ^6.3.15 html-webpack-plugin: ^5.5.0 - msw: ^0.39.2 - react: ^17.0.2 - react-dom: ^17.0.2 - react-icons: ^4.3.1 - react-is: ^17.0.2 - react-redux: ^7.2.8 - react-router-dom: ^5.3.1 + msw: ^0.42.3 + react: ^18.2.0 + react-dom: ^18.2.0 + react-icons: ^4.4.0 + react-is: ^18.2.0 + react-redux: ^8.0.2 + react-router-dom: ^6.3.0 style-loader: ^3.3.1 styled-components: ^5.3.5 - ts-node: ^10.7.0 - typescript: ~4.6.4 - webpack: ^5.72.0 - webpack-cli: ^4.9.2 - webpack-dev-server: ^4.9.0 + ts-node: ^10.8.1 + typescript: ~4.7.4 + webpack: ^5.73.0 + webpack-cli: ^4.10.0 + webpack-dev-server: ^4.9.2 dependencies: - '@babel/runtime': 7.17.9 - '@chakra-ui/react': 1.8.8_8021b84ec8ff18477d479d84cde0245c - '@emotion/react': 11.9.0_0191d4f7d13d8e58ed45c49e4813c090 - '@emotion/styled': 11.8.1_71bb32ec948927cf157f054242616721 - '@mswjs/data': 0.10.0 + '@babel/runtime': 7.18.3 + '@chakra-ui/react': 2.2.1_5z4lybafbsej23lhe66gvmikba + '@emotion/react': 11.9.3_7eu627umq2cbnjxmysy5yb5jqq + '@emotion/styled': 11.9.3_qbwmrvb6ojitbfrbjtglmejmbm + '@mswjs/data': 0.10.1_typescript@4.7.4 '@redux-devtools/core': link:../../redux-devtools '@redux-devtools/dock-monitor': link:../../redux-devtools-dock-monitor '@redux-devtools/rtk-query-monitor': link:.. - '@reduxjs/toolkit': 1.8.1_react-redux@7.2.8+react@17.0.2 - framer-motion: 6.3.3_react-dom@17.0.2+react@17.0.2 - msw: 0.39.2 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - react-icons: 4.3.1_react@17.0.2 - react-is: 17.0.2 - react-redux: 7.2.8_react-dom@17.0.2+react@17.0.2 - react-router-dom: 5.3.1_react@17.0.2 - styled-components: 5.3.5_281a4fa50a045c9112baf635f3bc27a7 + '@reduxjs/toolkit': 1.8.2_kkwg4cbsojnjnupd3btipussee + framer-motion: 6.3.15_biqbaboplfbrettd7655fr4n2y + msw: 0.42.3_typescript@4.7.4 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + react-icons: 4.4.0_react@18.2.0 + react-is: 18.2.0 + react-redux: 8.0.2_fzknh3pugl53jp7xsetxkg5ani + react-router-dom: 6.3.0_biqbaboplfbrettd7655fr4n2y + styled-components: 5.3.5_7i5myeigehqah43i5u7wbekgba devDependencies: - '@babel/core': 7.17.10 - '@babel/plugin-transform-runtime': 7.17.10_@babel+core@7.17.10 - '@babel/preset-env': 7.17.10_@babel+core@7.17.10 - '@babel/preset-react': 7.16.7_@babel+core@7.17.10 - '@babel/preset-typescript': 7.16.7_@babel+core@7.17.10 - '@types/copy-webpack-plugin': 8.0.1_webpack-cli@4.9.2 - '@types/node': 16.11.33 - '@types/react': 17.0.45 - '@types/react-dom': 17.0.16 - '@types/react-redux': 7.1.24 - '@types/react-router-dom': 5.3.3 + '@babel/core': 7.18.5 + '@babel/plugin-transform-runtime': 7.18.5_@babel+core@7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-react': 7.17.12_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 + '@types/copy-webpack-plugin': 8.0.1_webpack-cli@4.10.0 + '@types/node': 16.11.41 + '@types/react': 18.0.14 + '@types/react-dom': 18.0.5 '@types/styled-components': 5.1.25 - '@typescript-eslint/eslint-plugin': 5.22.0_9817cbad956b8aa5d1e3d9ec99e4a1e4 - '@typescript-eslint/parser': 5.22.0_eslint@8.15.0+typescript@4.6.4 - babel-loader: 8.2.5_887a5110397f957d9e06dd05497793db - copy-webpack-plugin: 9.1.0_webpack@5.72.0 + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e + babel-loader: 8.2.5_te6ollfzjcco6mbxjl755ucqke + copy-webpack-plugin: 11.0.0_webpack@5.73.0 cross-env: 7.0.3 - css-loader: 6.7.1_webpack@5.72.0 - eslint: 8.15.0 - eslint-config-prettier: 8.5.0_eslint@8.15.0 - eslint-plugin-react: 7.28.0_eslint@8.15.0 - eslint-plugin-react-hooks: 4.5.0_eslint@8.15.0 - fork-ts-checker-webpack-plugin: 7.2.11_typescript@4.6.4+webpack@5.72.0 - html-webpack-plugin: 5.5.0_webpack@5.72.0 - style-loader: 3.3.1_webpack@5.72.0 - ts-node: 10.7.0_fd4b5ff48b408bf425abfec4a641da13 - typescript: 4.6.4 - webpack: 5.72.0_webpack-cli@4.9.2 - webpack-cli: 4.9.2_e12b136d9a821d211692f1ec9717cf12 - webpack-dev-server: 4.9.0_webpack-cli@4.9.2+webpack@5.72.0 + css-loader: 6.7.1_webpack@5.73.0 + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 + eslint-plugin-react: 7.30.1_eslint@8.18.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 + fork-ts-checker-webpack-plugin: 7.2.11_3o2jfq6vfqxns3sz6wn2nnc3ei + html-webpack-plugin: 5.5.0_webpack@5.73.0 + style-loader: 3.3.1_webpack@5.73.0 + ts-node: 10.8.1_qqpsu5gwjto2muvbbvmj4ndcmu + typescript: 4.7.4 + webpack: 5.73.0_webpack-cli@4.10.0 + webpack-cli: 4.10.0_hnfkmnck6ti4dm6ulhhz44v2ju + webpack-dev-server: 4.9.2_77l47gmqkrqiei5z7sbwz5iaj4 packages/redux-devtools-serialize: specifiers: '@babel/cli': ^7.17.10 - '@babel/core': ^7.17.10 - '@babel/eslint-parser': ^7.17.0 - '@babel/plugin-transform-runtime': ^7.17.10 - '@babel/preset-env': ^7.17.10 - '@babel/preset-typescript': ^7.16.7 - '@babel/runtime': ^7.17.9 - '@types/jest': ^27.5.0 + '@babel/core': ^7.18.5 + '@babel/eslint-parser': ^7.18.2 + '@babel/plugin-transform-runtime': ^7.18.5 + '@babel/preset-env': ^7.18.2 + '@babel/preset-typescript': ^7.17.12 + '@babel/runtime': ^7.18.3 + '@types/jest': ^27.5.2 '@types/jsan': ^3.1.2 - '@typescript-eslint/eslint-plugin': ^5.22.0 - '@typescript-eslint/parser': ^5.22.0 - eslint: ^8.15.0 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-jest: ^26.1.5 - immutable: ^4.0.0 + eslint-plugin-jest: ^26.5.3 + immutable: ^4.1.0 jest: ^27.5.1 jsan: ^3.1.14 rimraf: ^3.0.2 - ts-jest: ^27.1.4 - typescript: ~4.6.4 + ts-jest: ^27.1.5 + typescript: ~4.7.4 dependencies: - '@babel/runtime': 7.17.9 + '@babel/runtime': 7.18.3 jsan: 3.1.14 devDependencies: - '@babel/cli': 7.17.10_@babel+core@7.17.10 - '@babel/core': 7.17.10 - '@babel/eslint-parser': 7.17.0_035b3d23fd8620ffc8b252e0ab28a400 - '@babel/plugin-transform-runtime': 7.17.10_@babel+core@7.17.10 - '@babel/preset-env': 7.17.10_@babel+core@7.17.10 - '@babel/preset-typescript': 7.16.7_@babel+core@7.17.10 - '@types/jest': 27.5.0 + '@babel/cli': 7.17.10_@babel+core@7.18.5 + '@babel/core': 7.18.5 + '@babel/eslint-parser': 7.18.2_cz6e4qppzra6gosrrzcvbsxiom + '@babel/plugin-transform-runtime': 7.18.5_@babel+core@7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 + '@types/jest': 27.5.2 '@types/jsan': 3.1.2 - '@typescript-eslint/eslint-plugin': 5.22.0_9817cbad956b8aa5d1e3d9ec99e4a1e4 - '@typescript-eslint/parser': 5.22.0_eslint@8.15.0+typescript@4.6.4 - eslint: 8.15.0 - eslint-config-prettier: 8.5.0_eslint@8.15.0 - eslint-plugin-jest: 26.1.5_a9d133e1b4f50468488a2a18eed99ada - immutable: 4.0.0 + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 + eslint-plugin-jest: 26.5.3_hkaktba3mic4t6mktu5mmyzyhi + immutable: 4.1.0 jest: 27.5.1 rimraf: 3.0.2 - ts-jest: 27.1.4_6b62438663b23957550c965172b78733 - typescript: 4.6.4 + ts-jest: 27.1.5_7giygfzd3xe4pjz4ngu3nwlqbm + typescript: 4.7.4 packages/redux-devtools-slider-monitor: specifiers: '@babel/cli': ^7.17.10 - '@babel/core': ^7.17.10 - '@babel/eslint-parser': ^7.17.0 - '@babel/plugin-transform-runtime': ^7.17.10 - '@babel/preset-env': ^7.17.10 - '@babel/preset-react': ^7.16.7 - '@babel/preset-typescript': ^7.16.7 - '@babel/runtime': ^7.17.9 - '@redux-devtools/core': ^3.12.0 - '@redux-devtools/ui': ^1.2.1 + '@babel/core': ^7.18.5 + '@babel/eslint-parser': ^7.18.2 + '@babel/plugin-transform-runtime': ^7.18.5 + '@babel/preset-env': ^7.18.2 + '@babel/preset-react': ^7.17.12 + '@babel/preset-typescript': ^7.17.12 + '@babel/runtime': ^7.18.3 + '@redux-devtools/core': ^3.13.1 + '@redux-devtools/ui': ^1.3.0 '@rollup/plugin-babel': ^5.3.1 + '@types/node': ^16.11.41 '@types/prop-types': ^15.7.5 - '@types/react': ^17.0.45 + '@types/react': ^18.0.14 '@types/redux-devtools-themes': ^1.0.0 - '@typescript-eslint/eslint-plugin': ^5.22.0 - '@typescript-eslint/parser': ^5.22.0 - eslint: ^8.15.0 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-react: ~7.28.0 - eslint-plugin-react-hooks: ^4.5.0 + eslint-plugin-react: ^7.30.1 + eslint-plugin-react-hooks: ^4.6.0 prop-types: ^15.8.1 - react: ^17.0.2 + react: ^18.2.0 redux: ^4.2.0 redux-devtools-themes: ^1.0.0 rimraf: ^3.0.2 - rollup: ^2.72.1 - rollup-plugin-typescript2: ^0.31.2 + rollup: ^2.75.7 + rollup-plugin-typescript2: ^0.32.1 tslib: ^2.4.0 - typescript: ~4.6.4 + typescript: ~4.7.4 dependencies: - '@babel/runtime': 7.17.9 + '@babel/runtime': 7.18.3 '@redux-devtools/ui': link:../redux-devtools-ui '@types/prop-types': 15.7.5 '@types/redux-devtools-themes': 1.0.0 prop-types: 15.8.1 redux-devtools-themes: 1.0.0 devDependencies: - '@babel/cli': 7.17.10_@babel+core@7.17.10 - '@babel/core': 7.17.10 - '@babel/eslint-parser': 7.17.0_035b3d23fd8620ffc8b252e0ab28a400 - '@babel/plugin-transform-runtime': 7.17.10_@babel+core@7.17.10 - '@babel/preset-env': 7.17.10_@babel+core@7.17.10 - '@babel/preset-react': 7.16.7_@babel+core@7.17.10 - '@babel/preset-typescript': 7.16.7_@babel+core@7.17.10 + '@babel/cli': 7.17.10_@babel+core@7.18.5 + '@babel/core': 7.18.5 + '@babel/eslint-parser': 7.18.2_cz6e4qppzra6gosrrzcvbsxiom + '@babel/plugin-transform-runtime': 7.18.5_@babel+core@7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-react': 7.17.12_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 '@redux-devtools/core': link:../redux-devtools - '@rollup/plugin-babel': 5.3.1_18dfcb1ca7050ba6f445f613f30091b1 - '@types/react': 17.0.45 - '@typescript-eslint/eslint-plugin': 5.22.0_9817cbad956b8aa5d1e3d9ec99e4a1e4 - '@typescript-eslint/parser': 5.22.0_eslint@8.15.0+typescript@4.6.4 - eslint: 8.15.0 - eslint-config-prettier: 8.5.0_eslint@8.15.0 - eslint-plugin-react: 7.28.0_eslint@8.15.0 - eslint-plugin-react-hooks: 4.5.0_eslint@8.15.0 - react: 17.0.2 + '@rollup/plugin-babel': 5.3.1_za5spbk65gc2bmrclluhieacz4 + '@types/node': 16.11.41 + '@types/react': 18.0.14 + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 + eslint-plugin-react: 7.30.1_eslint@8.18.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 + react: 18.2.0 redux: 4.2.0 rimraf: 3.0.2 - rollup: 2.72.1 - rollup-plugin-typescript2: 0.31.2_rollup@2.72.1+typescript@4.6.4 + rollup: 2.75.7 + rollup-plugin-typescript2: 0.32.1_okefoyb4o5sittgqayreuhurei tslib: 2.4.0 - typescript: 4.6.4 + typescript: 4.7.4 packages/redux-devtools-slider-monitor/examples/todomvc: specifiers: - '@babel/core': ^7.17.10 - '@babel/preset-env': ^7.17.10 - '@babel/preset-react': ^7.16.7 - '@babel/preset-typescript': ^7.16.7 - '@redux-devtools/core': ^3.12.0 - '@redux-devtools/dock-monitor': ^2.1.1 - '@redux-devtools/log-monitor': ^3.1.1 - '@redux-devtools/slider-monitor': ^3.1.2 + '@babel/core': ^7.18.5 + '@babel/preset-env': ^7.18.2 + '@babel/preset-react': ^7.17.12 + '@babel/preset-typescript': ^7.17.12 + '@redux-devtools/core': ^3.13.0 + '@redux-devtools/dock-monitor': ^3.0.0 + '@redux-devtools/log-monitor': ^4.0.0 + '@redux-devtools/slider-monitor': ^4.0.0 '@types/classnames': ^2.3.1 - '@types/node': ^16.11.33 + '@types/node': ^16.11.41 '@types/prop-types': ^15.7.5 - '@types/react': ^17.0.45 - '@types/react-dom': ^17.0.16 - '@types/react-redux': ^7.1.24 + '@types/react': ^18.0.14 + '@types/react-dom': ^18.0.5 '@types/styled-components': ^5.1.25 - '@types/webpack-env': ^1.16.4 - '@typescript-eslint/eslint-plugin': ^5.22.0 - '@typescript-eslint/parser': ^5.22.0 + '@types/webpack-env': ^1.17.0 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 babel-loader: ^8.2.5 classnames: ^2.3.1 cross-env: ^7.0.3 css-loader: ^6.7.1 - eslint: ^8.15.0 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-react: ~7.28.0 - eslint-plugin-react-hooks: ^4.5.0 + eslint-plugin-react: ^7.30.1 + eslint-plugin-react-hooks: ^4.6.0 fork-ts-checker-webpack-plugin: ^7.2.11 html-webpack-plugin: ^5.5.0 prop-types: ^15.8.1 - react: ^17.0.2 - react-dom: ^17.0.2 - react-is: ^17.0.2 - react-redux: ^7.2.8 + react: ^18.2.0 + react-dom: ^18.2.0 + react-is: ^18.2.0 + react-redux: ^8.0.2 redux: ^4.2.0 style-loader: ^3.3.1 styled-components: ^5.3.5 todomvc-app-css: ^2.4.2 - ts-node: ^10.7.0 - typescript: ~4.6.4 - webpack: ^5.72.0 - webpack-cli: ^4.9.2 - webpack-dev-server: ^4.9.0 + ts-node: ^10.8.1 + typescript: ~4.7.4 + webpack: ^5.73.0 + webpack-cli: ^4.10.0 + webpack-dev-server: ^4.9.2 dependencies: '@redux-devtools/core': link:../../../redux-devtools '@redux-devtools/dock-monitor': link:../../../redux-devtools-dock-monitor @@ -2132,105 +2109,105 @@ importers: '@redux-devtools/slider-monitor': link:../.. classnames: 2.3.1 prop-types: 15.8.1 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - react-is: 17.0.2 - react-redux: 7.2.8_react-dom@17.0.2+react@17.0.2 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + react-is: 18.2.0 + react-redux: 8.0.2_jcbkrypqxz3emsprsw5dchskju redux: 4.2.0 - styled-components: 5.3.5_281a4fa50a045c9112baf635f3bc27a7 + styled-components: 5.3.5_7i5myeigehqah43i5u7wbekgba todomvc-app-css: 2.4.2 devDependencies: - '@babel/core': 7.17.10 - '@babel/preset-env': 7.17.10_@babel+core@7.17.10 - '@babel/preset-react': 7.16.7_@babel+core@7.17.10 - '@babel/preset-typescript': 7.16.7_@babel+core@7.17.10 + '@babel/core': 7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-react': 7.17.12_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 '@types/classnames': 2.3.1 - '@types/node': 16.11.33 + '@types/node': 16.11.41 '@types/prop-types': 15.7.5 - '@types/react': 17.0.45 - '@types/react-dom': 17.0.16 - '@types/react-redux': 7.1.24 + '@types/react': 18.0.14 + '@types/react-dom': 18.0.5 '@types/styled-components': 5.1.25 - '@types/webpack-env': 1.16.4 - '@typescript-eslint/eslint-plugin': 5.22.0_9817cbad956b8aa5d1e3d9ec99e4a1e4 - '@typescript-eslint/parser': 5.22.0_eslint@8.15.0+typescript@4.6.4 - babel-loader: 8.2.5_887a5110397f957d9e06dd05497793db + '@types/webpack-env': 1.17.0 + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e + babel-loader: 8.2.5_te6ollfzjcco6mbxjl755ucqke cross-env: 7.0.3 - css-loader: 6.7.1_webpack@5.72.0 - eslint: 8.15.0 - eslint-config-prettier: 8.5.0_eslint@8.15.0 - eslint-plugin-react: 7.28.0_eslint@8.15.0 - eslint-plugin-react-hooks: 4.5.0_eslint@8.15.0 - fork-ts-checker-webpack-plugin: 7.2.11_typescript@4.6.4+webpack@5.72.0 - html-webpack-plugin: 5.5.0_webpack@5.72.0 - style-loader: 3.3.1_webpack@5.72.0 - ts-node: 10.7.0_fd4b5ff48b408bf425abfec4a641da13 - typescript: 4.6.4 - webpack: 5.72.0_webpack-cli@4.9.2 - webpack-cli: 4.9.2_e12b136d9a821d211692f1ec9717cf12 - webpack-dev-server: 4.9.0_webpack-cli@4.9.2+webpack@5.72.0 + css-loader: 6.7.1_webpack@5.73.0 + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 + eslint-plugin-react: 7.30.1_eslint@8.18.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 + fork-ts-checker-webpack-plugin: 7.2.11_3o2jfq6vfqxns3sz6wn2nnc3ei + html-webpack-plugin: 5.5.0_webpack@5.73.0 + style-loader: 3.3.1_webpack@5.73.0 + ts-node: 10.8.1_qqpsu5gwjto2muvbbvmj4ndcmu + typescript: 4.7.4 + webpack: 5.73.0_webpack-cli@4.10.0 + webpack-cli: 4.10.0_hnfkmnck6ti4dm6ulhhz44v2ju + webpack-dev-server: 4.9.2_77l47gmqkrqiei5z7sbwz5iaj4 packages/redux-devtools-ui: specifiers: '@babel/cli': ^7.17.10 - '@babel/core': ^7.17.10 - '@babel/eslint-parser': ^7.17.0 - '@babel/plugin-transform-runtime': ^7.17.10 - '@babel/preset-env': ^7.17.10 - '@babel/preset-react': ^7.16.7 - '@babel/preset-typescript': ^7.16.7 - '@babel/runtime': ^7.17.9 + '@babel/core': ^7.18.5 + '@babel/eslint-parser': ^7.18.2 + '@babel/plugin-transform-runtime': ^7.18.5 + '@babel/preset-env': ^7.18.2 + '@babel/preset-react': ^7.17.12 + '@babel/preset-typescript': ^7.17.12 + '@babel/runtime': ^7.18.3 '@rjsf/core': ^4.2.0 - '@storybook/addon-essentials': ^6.4.22 - '@storybook/react': ^6.4.22 - '@testing-library/dom': ^8.13.0 - '@testing-library/react': ^12.1.5 - '@testing-library/user-event': ^13.5.0 + '@storybook/addon-essentials': ^6.5.9 + '@storybook/react': ^6.5.9 + '@testing-library/dom': ^8.14.0 + '@testing-library/react': ^13.3.0 + '@testing-library/user-event': ^14.2.1 '@types/base16': ^1.0.2 '@types/codemirror': ^5.60.5 '@types/color': ^3.0.3 - '@types/jest': ^27.5.0 + '@types/jest': ^27.5.2 '@types/json-schema': ^7.0.11 '@types/prop-types': ^15.7.5 - '@types/react': ^17.0.45 + '@types/react': ^18.0.14 '@types/redux-devtools-themes': ^1.0.0 '@types/simple-element-resize-detector': ^1.3.0 '@types/styled-components': ^5.1.25 - '@typescript-eslint/eslint-plugin': ^5.22.0 - '@typescript-eslint/parser': ^5.22.0 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 babel-loader: ^8.2.5 base16: ^1.0.0 - codemirror: ^5.65.3 + codemirror: ^5.65.6 color: ^4.2.3 - csstype: ^3.0.11 - eslint: ^8.15.0 + csstype: ^3.1.0 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-jest: ^26.1.5 - eslint-plugin-react: ~7.28.0 - eslint-plugin-react-hooks: ^4.5.0 + eslint-plugin-jest: ^26.5.3 + eslint-plugin-react: ^7.30.1 + eslint-plugin-react-hooks: ^4.6.0 jest: ^27.5.1 ncp: ^2.0.0 prop-types: ^15.8.1 - react: ^17.0.2 - react-dom: ^17.0.2 - react-icons: ^4.3.1 - react-is: ^17.0.2 + react: ^18.2.0 + react-dom: ^18.2.0 + react-icons: ^4.4.0 + react-is: ^18.2.0 react-select: ^5.3.2 redux-devtools-themes: ^1.0.0 + require-from-string: ^2.0.2 rimraf: ^3.0.2 simple-element-resize-detector: ^1.3.0 styled-components: ^5.3.5 - stylelint: ^14.8.2 + stylelint: ^14.9.1 stylelint-config-prettier: ^9.0.3 stylelint-config-standard: ^25.0.0 stylelint-config-styled-components: ^0.1.1 stylelint-processor-styled-components: ^1.10.0 - ts-jest: ^27.1.4 - typescript: ~4.6.4 - webpack: ^5.72.0 + ts-jest: ^27.1.5 + typescript: ~4.7.4 + webpack: ^5.73.0 dependencies: - '@babel/runtime': 7.17.9 - '@rjsf/core': 4.2.0_react@17.0.2 + '@babel/runtime': 7.18.3 + '@rjsf/core': 4.2.0_react@18.2.0 '@types/base16': 1.0.2 '@types/codemirror': 5.60.5 '@types/json-schema': 7.0.11 @@ -2238,263 +2215,260 @@ importers: '@types/redux-devtools-themes': 1.0.0 '@types/simple-element-resize-detector': 1.3.0 base16: 1.0.0 - codemirror: 5.65.3 + codemirror: 5.65.6 color: 4.2.3 prop-types: 15.8.1 - react-icons: 4.3.1_react@17.0.2 - react-select: 5.3.2_119827f31b0360eaa21c3c49ad2eba57 + react-icons: 4.4.0_react@18.2.0 + react-select: 5.3.2_sukxovx4mwg6d6626r5e3rv5k4 redux-devtools-themes: 1.0.0 simple-element-resize-detector: 1.3.0 devDependencies: - '@babel/cli': 7.17.10_@babel+core@7.17.10 - '@babel/core': 7.17.10 - '@babel/eslint-parser': 7.17.0_035b3d23fd8620ffc8b252e0ab28a400 - '@babel/plugin-transform-runtime': 7.17.10_@babel+core@7.17.10 - '@babel/preset-env': 7.17.10_@babel+core@7.17.10 - '@babel/preset-react': 7.16.7_@babel+core@7.17.10 - '@babel/preset-typescript': 7.16.7_@babel+core@7.17.10 - '@storybook/addon-essentials': 6.4.22_812f23d28fb76e4b6852d091bbbb7e31 - '@storybook/react': 6.4.22_4d22b00dd3d7f19624f22f7dc5573020 - '@testing-library/dom': 8.13.0 - '@testing-library/react': 12.1.5_react-dom@17.0.2+react@17.0.2 - '@testing-library/user-event': 13.5.0_@testing-library+dom@8.13.0 + '@babel/cli': 7.17.10_@babel+core@7.18.5 + '@babel/core': 7.18.5 + '@babel/eslint-parser': 7.18.2_cz6e4qppzra6gosrrzcvbsxiom + '@babel/plugin-transform-runtime': 7.18.5_@babel+core@7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-react': 7.17.12_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 + '@storybook/addon-essentials': 6.5.9_kegi444pbrxunz45jv6pd3z7ki + '@storybook/react': 6.5.9_qvaipyr63plem3mgv5krfvm7b4 + '@testing-library/dom': 8.14.0 + '@testing-library/react': 13.3.0_biqbaboplfbrettd7655fr4n2y + '@testing-library/user-event': 14.2.1_ihvo3xlg2d6kwqju3os3zitn3y '@types/color': 3.0.3 - '@types/jest': 27.5.0 - '@types/react': 17.0.45 + '@types/jest': 27.5.2 + '@types/react': 18.0.14 '@types/styled-components': 5.1.25 - '@typescript-eslint/eslint-plugin': 5.22.0_9817cbad956b8aa5d1e3d9ec99e4a1e4 - '@typescript-eslint/parser': 5.22.0_eslint@8.15.0+typescript@4.6.4 - babel-loader: 8.2.5_887a5110397f957d9e06dd05497793db - csstype: 3.0.11 - eslint: 8.15.0 - eslint-config-prettier: 8.5.0_eslint@8.15.0 - eslint-plugin-jest: 26.1.5_a9d133e1b4f50468488a2a18eed99ada - eslint-plugin-react: 7.28.0_eslint@8.15.0 - eslint-plugin-react-hooks: 4.5.0_eslint@8.15.0 + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e + babel-loader: 8.2.5_te6ollfzjcco6mbxjl755ucqke + csstype: 3.1.0 + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 + eslint-plugin-jest: 26.5.3_hkaktba3mic4t6mktu5mmyzyhi + eslint-plugin-react: 7.30.1_eslint@8.18.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 jest: 27.5.1 ncp: 2.0.0 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - react-is: 17.0.2 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + react-is: 18.2.0 + require-from-string: 2.0.2 rimraf: 3.0.2 - styled-components: 5.3.5_281a4fa50a045c9112baf635f3bc27a7 - stylelint: 14.8.2 - stylelint-config-prettier: 9.0.3_stylelint@14.8.2 - stylelint-config-standard: 25.0.0_stylelint@14.8.2 + styled-components: 5.3.5_7i5myeigehqah43i5u7wbekgba + stylelint: 14.9.1 + stylelint-config-prettier: 9.0.3_stylelint@14.9.1 + stylelint-config-standard: 25.0.0_stylelint@14.9.1 stylelint-config-styled-components: 0.1.1 stylelint-processor-styled-components: 1.10.0 - ts-jest: 27.1.4_6b62438663b23957550c965172b78733 - typescript: 4.6.4 - webpack: 5.72.0 + ts-jest: 27.1.5_7giygfzd3xe4pjz4ngu3nwlqbm + typescript: 4.7.4 + webpack: 5.73.0 packages/redux-devtools-utils: specifiers: '@babel/cli': ^7.17.10 - '@babel/core': ^7.17.10 - '@babel/eslint-parser': ^7.17.0 - '@babel/plugin-transform-runtime': ^7.17.10 - '@babel/preset-env': ^7.17.10 - '@babel/preset-typescript': ^7.16.7 - '@babel/runtime': ^7.17.9 - '@redux-devtools/core': ^3.12.0 + '@babel/core': ^7.18.5 + '@babel/eslint-parser': ^7.18.2 + '@babel/plugin-transform-runtime': ^7.18.5 + '@babel/preset-env': ^7.18.2 + '@babel/preset-typescript': ^7.17.12 + '@babel/runtime': ^7.18.3 + '@redux-devtools/core': ^3.13.1 '@redux-devtools/serialize': ^0.4.1 '@types/get-params': ^0.1.0 '@types/jsan': ^3.1.2 '@types/lodash': ^4.14.182 - '@types/node': ^16.11.33 - '@typescript-eslint/eslint-plugin': ^5.22.0 - '@typescript-eslint/parser': ^5.22.0 - eslint: ^8.15.0 + '@types/node': ^16.11.41 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 get-params: ^0.1.2 - immutable: ^4.0.0 + immutable: ^4.1.0 jsan: ^3.1.14 lodash: ^4.17.21 nanoid: ^3.3.4 redux: ^4.2.0 rimraf: ^3.0.2 - typescript: ~4.6.4 + typescript: ~4.7.4 dependencies: - '@babel/runtime': 7.17.9 + '@babel/runtime': 7.18.3 '@redux-devtools/core': link:../redux-devtools '@redux-devtools/serialize': link:../redux-devtools-serialize '@types/get-params': 0.1.0 get-params: 0.1.2 - immutable: 4.0.0 + immutable: 4.1.0 jsan: 3.1.14 lodash: 4.17.21 nanoid: 3.3.4 redux: 4.2.0 devDependencies: - '@babel/cli': 7.17.10_@babel+core@7.17.10 - '@babel/core': 7.17.10 - '@babel/eslint-parser': 7.17.0_035b3d23fd8620ffc8b252e0ab28a400 - '@babel/plugin-transform-runtime': 7.17.10_@babel+core@7.17.10 - '@babel/preset-env': 7.17.10_@babel+core@7.17.10 - '@babel/preset-typescript': 7.16.7_@babel+core@7.17.10 + '@babel/cli': 7.17.10_@babel+core@7.18.5 + '@babel/core': 7.18.5 + '@babel/eslint-parser': 7.18.2_cz6e4qppzra6gosrrzcvbsxiom + '@babel/plugin-transform-runtime': 7.18.5_@babel+core@7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 '@types/jsan': 3.1.2 '@types/lodash': 4.14.182 - '@types/node': 16.11.33 - '@typescript-eslint/eslint-plugin': 5.22.0_9817cbad956b8aa5d1e3d9ec99e4a1e4 - '@typescript-eslint/parser': 5.22.0_eslint@8.15.0+typescript@4.6.4 - eslint: 8.15.0 - eslint-config-prettier: 8.5.0_eslint@8.15.0 + '@types/node': 16.11.41 + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 rimraf: 3.0.2 - typescript: 4.6.4 + typescript: 4.7.4 packages/redux-devtools/examples/counter: specifiers: - '@babel/core': ^7.17.10 - '@babel/preset-env': ^7.17.10 - '@babel/preset-react': ^7.16.7 - '@babel/preset-typescript': ^7.16.7 - '@redux-devtools/core': ^3.12.0 - '@redux-devtools/dock-monitor': ^2.1.1 - '@redux-devtools/log-monitor': ^3.1.1 - '@types/node': ^16.11.33 + '@babel/core': ^7.18.5 + '@babel/preset-env': ^7.18.2 + '@babel/preset-react': ^7.17.12 + '@babel/preset-typescript': ^7.17.12 + '@redux-devtools/core': ^3.13.0 + '@redux-devtools/dock-monitor': ^3.0.0 + '@redux-devtools/log-monitor': ^4.0.0 + '@types/node': ^16.11.41 '@types/prop-types': ^15.7.5 - '@types/react': ^17.0.45 - '@types/react-dom': ^17.0.16 - '@types/react-redux': ^7.1.24 - '@types/webpack-env': ^1.16.4 - '@typescript-eslint/eslint-plugin': ^5.22.0 - '@typescript-eslint/parser': ^5.22.0 + '@types/react': ^18.0.14 + '@types/react-dom': ^18.0.5 + '@types/webpack-env': ^1.17.0 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 babel-loader: ^8.2.5 cross-env: ^7.0.3 - eslint: ^8.15.0 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-react: ~7.28.0 - eslint-plugin-react-hooks: ^4.5.0 + eslint-plugin-react: ^7.30.1 + eslint-plugin-react-hooks: ^4.6.0 fork-ts-checker-webpack-plugin: ^7.2.11 html-webpack-plugin: ^5.5.0 prop-types: ^15.8.1 - react: ^17.0.2 - react-dom: ^17.0.2 - react-redux: ^7.2.8 + react: ^18.2.0 + react-dom: ^18.2.0 + react-redux: ^8.0.2 redux: ^4.2.0 redux-thunk: ^2.4.1 - ts-node: ^10.7.0 - typescript: ~4.6.4 - webpack: ^5.72.0 - webpack-cli: ^4.9.2 - webpack-dev-server: ^4.9.0 + ts-node: ^10.8.1 + typescript: ~4.7.4 + webpack: ^5.73.0 + webpack-cli: ^4.10.0 + webpack-dev-server: ^4.9.2 dependencies: '@redux-devtools/core': link:../.. '@redux-devtools/dock-monitor': link:../../../redux-devtools-dock-monitor '@redux-devtools/log-monitor': link:../../../redux-devtools-log-monitor prop-types: 15.8.1 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - react-redux: 7.2.8_react-dom@17.0.2+react@17.0.2 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + react-redux: 8.0.2_jcbkrypqxz3emsprsw5dchskju redux: 4.2.0 redux-thunk: 2.4.1_redux@4.2.0 devDependencies: - '@babel/core': 7.17.10 - '@babel/preset-env': 7.17.10_@babel+core@7.17.10 - '@babel/preset-react': 7.16.7_@babel+core@7.17.10 - '@babel/preset-typescript': 7.16.7_@babel+core@7.17.10 - '@types/node': 16.11.33 + '@babel/core': 7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-react': 7.17.12_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 + '@types/node': 16.11.41 '@types/prop-types': 15.7.5 - '@types/react': 17.0.45 - '@types/react-dom': 17.0.16 - '@types/react-redux': 7.1.24 - '@types/webpack-env': 1.16.4 - '@typescript-eslint/eslint-plugin': 5.22.0_9817cbad956b8aa5d1e3d9ec99e4a1e4 - '@typescript-eslint/parser': 5.22.0_eslint@8.15.0+typescript@4.6.4 - babel-loader: 8.2.5_887a5110397f957d9e06dd05497793db + '@types/react': 18.0.14 + '@types/react-dom': 18.0.5 + '@types/webpack-env': 1.17.0 + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e + babel-loader: 8.2.5_te6ollfzjcco6mbxjl755ucqke cross-env: 7.0.3 - eslint: 8.15.0 - eslint-config-prettier: 8.5.0_eslint@8.15.0 - eslint-plugin-react: 7.28.0_eslint@8.15.0 - eslint-plugin-react-hooks: 4.5.0_eslint@8.15.0 - fork-ts-checker-webpack-plugin: 7.2.11_typescript@4.6.4+webpack@5.72.0 - html-webpack-plugin: 5.5.0_webpack@5.72.0 - ts-node: 10.7.0_fd4b5ff48b408bf425abfec4a641da13 - typescript: 4.6.4 - webpack: 5.72.0_webpack-cli@4.9.2 - webpack-cli: 4.9.2_e12b136d9a821d211692f1ec9717cf12 - webpack-dev-server: 4.9.0_webpack-cli@4.9.2+webpack@5.72.0 + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 + eslint-plugin-react: 7.30.1_eslint@8.18.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 + fork-ts-checker-webpack-plugin: 7.2.11_3o2jfq6vfqxns3sz6wn2nnc3ei + html-webpack-plugin: 5.5.0_webpack@5.73.0 + ts-node: 10.8.1_qqpsu5gwjto2muvbbvmj4ndcmu + typescript: 4.7.4 + webpack: 5.73.0_webpack-cli@4.10.0 + webpack-cli: 4.10.0_hnfkmnck6ti4dm6ulhhz44v2ju + webpack-dev-server: 4.9.2_77l47gmqkrqiei5z7sbwz5iaj4 packages/redux-devtools/examples/todomvc: specifiers: - '@babel/core': ^7.17.10 - '@babel/preset-env': ^7.17.10 - '@babel/preset-react': ^7.16.7 - '@babel/preset-typescript': ^7.16.7 - '@redux-devtools/core': ^3.12.0 - '@redux-devtools/dock-monitor': ^2.1.1 - '@redux-devtools/log-monitor': ^3.1.1 + '@babel/core': ^7.18.5 + '@babel/preset-env': ^7.18.2 + '@babel/preset-react': ^7.17.12 + '@babel/preset-typescript': ^7.17.12 + '@redux-devtools/core': ^3.13.0 + '@redux-devtools/dock-monitor': ^3.0.0 + '@redux-devtools/log-monitor': ^4.0.0 '@types/classnames': ^2.3.1 - '@types/node': ^16.11.33 + '@types/node': ^16.11.41 '@types/prop-types': ^15.7.5 - '@types/react': ^17.0.45 - '@types/react-dom': ^17.0.16 - '@types/react-redux': ^7.1.24 - '@types/webpack-env': ^1.16.4 - '@typescript-eslint/eslint-plugin': ^5.22.0 - '@typescript-eslint/parser': ^5.22.0 + '@types/react': ^18.0.14 + '@types/react-dom': ^18.0.5 + '@types/webpack-env': ^1.17.0 + '@typescript-eslint/eslint-plugin': ^5.29.0 + '@typescript-eslint/parser': ^5.29.0 babel-loader: ^8.2.5 classnames: ^2.3.1 cross-env: ^7.0.3 css-loader: ^6.7.1 - eslint: ^8.15.0 + eslint: ^8.18.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-react: ~7.28.0 - eslint-plugin-react-hooks: ^4.5.0 + eslint-plugin-react: ^7.30.1 + eslint-plugin-react-hooks: ^4.6.0 fork-ts-checker-webpack-plugin: ^7.2.11 html-webpack-plugin: ^5.5.0 prop-types: ^15.8.1 - react: ^17.0.2 - react-dom: ^17.0.2 - react-redux: ^7.2.8 + react: ^18.2.0 + react-dom: ^18.2.0 + react-redux: ^8.0.2 redux: ^4.2.0 style-loader: ^3.3.1 todomvc-app-css: ^2.4.2 - ts-node: ^10.7.0 - typescript: ~4.6.4 - webpack: ^5.72.0 - webpack-cli: ^4.9.2 - webpack-dev-server: ^4.9.0 + ts-node: ^10.8.1 + typescript: ~4.7.4 + webpack: ^5.73.0 + webpack-cli: ^4.10.0 + webpack-dev-server: ^4.9.2 dependencies: '@redux-devtools/core': link:../.. '@redux-devtools/dock-monitor': link:../../../redux-devtools-dock-monitor '@redux-devtools/log-monitor': link:../../../redux-devtools-log-monitor classnames: 2.3.1 prop-types: 15.8.1 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - react-redux: 7.2.8_react-dom@17.0.2+react@17.0.2 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + react-redux: 8.0.2_jcbkrypqxz3emsprsw5dchskju redux: 4.2.0 todomvc-app-css: 2.4.2 devDependencies: - '@babel/core': 7.17.10 - '@babel/preset-env': 7.17.10_@babel+core@7.17.10 - '@babel/preset-react': 7.16.7_@babel+core@7.17.10 - '@babel/preset-typescript': 7.16.7_@babel+core@7.17.10 + '@babel/core': 7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-react': 7.17.12_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 '@types/classnames': 2.3.1 - '@types/node': 16.11.33 + '@types/node': 16.11.41 '@types/prop-types': 15.7.5 - '@types/react': 17.0.45 - '@types/react-dom': 17.0.16 - '@types/react-redux': 7.1.24 - '@types/webpack-env': 1.16.4 - '@typescript-eslint/eslint-plugin': 5.22.0_9817cbad956b8aa5d1e3d9ec99e4a1e4 - '@typescript-eslint/parser': 5.22.0_eslint@8.15.0+typescript@4.6.4 - babel-loader: 8.2.5_887a5110397f957d9e06dd05497793db + '@types/react': 18.0.14 + '@types/react-dom': 18.0.5 + '@types/webpack-env': 1.17.0 + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e + babel-loader: 8.2.5_te6ollfzjcco6mbxjl755ucqke cross-env: 7.0.3 - css-loader: 6.7.1_webpack@5.72.0 - eslint: 8.15.0 - eslint-config-prettier: 8.5.0_eslint@8.15.0 - eslint-plugin-react: 7.28.0_eslint@8.15.0 - eslint-plugin-react-hooks: 4.5.0_eslint@8.15.0 - fork-ts-checker-webpack-plugin: 7.2.11_typescript@4.6.4+webpack@5.72.0 - html-webpack-plugin: 5.5.0_webpack@5.72.0 - style-loader: 3.3.1_webpack@5.72.0 - ts-node: 10.7.0_fd4b5ff48b408bf425abfec4a641da13 - typescript: 4.6.4 - webpack: 5.72.0_webpack-cli@4.9.2 - webpack-cli: 4.9.2_e12b136d9a821d211692f1ec9717cf12 - webpack-dev-server: 4.9.0_webpack-cli@4.9.2+webpack@5.72.0 + css-loader: 6.7.1_webpack@5.73.0 + eslint: 8.18.0 + eslint-config-prettier: 8.5.0_eslint@8.18.0 + eslint-plugin-react: 7.30.1_eslint@8.18.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 + fork-ts-checker-webpack-plugin: 7.2.11_3o2jfq6vfqxns3sz6wn2nnc3ei + html-webpack-plugin: 5.5.0_webpack@5.73.0 + style-loader: 3.3.1_webpack@5.73.0 + ts-node: 10.8.1_qqpsu5gwjto2muvbbvmj4ndcmu + typescript: 4.7.4 + webpack: 5.73.0_webpack-cli@4.10.0 + webpack-cli: 4.10.0_hnfkmnck6ti4dm6ulhhz44v2ju + webpack-dev-server: 4.9.2_77l47gmqkrqiei5z7sbwz5iaj4 packages: @@ -2503,8 +2477,7 @@ packages: engines: {node: '>=6.0.0'} dependencies: '@jridgewell/gen-mapping': 0.1.1 - '@jridgewell/trace-mapping': 0.3.10 - dev: true + '@jridgewell/trace-mapping': 0.3.13 /@apollo/protobufjs/1.2.2: resolution: {integrity: sha512-vF+zxhPiLtkwxONs6YanSt1EpwpGilThpneExUN5K3tCymuxNnVq2yojTvnpRjv2QfsEIt/n7ozPIIzBLwGIDQ==} @@ -2526,38 +2499,106 @@ packages: long: 4.0.0 dev: false + /@apollo/utils.dropunuseddefinitions/1.1.0_graphql@16.5.0: + resolution: {integrity: sha512-jU1XjMr6ec9pPoL+BFWzEPW7VHHulVdGKMkPAMiCigpVIT11VmCbnij0bWob8uS3ODJ65tZLYKAh/55vLw2rbg==} + engines: {node: '>=12.13.0'} + peerDependencies: + graphql: 14.x || 15.x || 16.x + dependencies: + graphql: 16.5.0 + dev: false + + /@apollo/utils.keyvaluecache/1.0.1: + resolution: {integrity: sha512-nLgYLomqjVimEzQ4cdvVQkcryi970NDvcRVPfd0OPeXhBfda38WjBq+WhQFk+czSHrmrSp34YHBxpat0EtiowA==} + dependencies: + '@apollo/utils.logger': 1.0.0 + lru-cache: 7.10.1 + dev: false + /@apollo/utils.logger/1.0.0: resolution: {integrity: sha512-dx9XrjyisD2pOa+KsB5RcDbWIAdgC91gJfeyLCgy0ctJMjQe7yZK5kdWaWlaOoCeX0z6YI9iYlg7vMPyMpQF3Q==} dev: false - /@apollographql/apollo-tools/0.5.4_graphql@16.4.0: + /@apollo/utils.printwithreducedwhitespace/1.1.0_graphql@16.5.0: + resolution: {integrity: sha512-GfFSkAv3n1toDZ4V6u2d7L4xMwLA+lv+6hqXicMN9KELSJ9yy9RzuEXaX73c/Ry+GzRsBy/fdSUGayGqdHfT2Q==} + engines: {node: '>=12.13.0'} + peerDependencies: + graphql: 14.x || 15.x || 16.x + dependencies: + graphql: 16.5.0 + dev: false + + /@apollo/utils.removealiases/1.0.0_graphql@16.5.0: + resolution: {integrity: sha512-6cM8sEOJW2LaGjL/0vHV0GtRaSekrPQR4DiywaApQlL9EdROASZU5PsQibe2MWeZCOhNrPRuHh4wDMwPsWTn8A==} + engines: {node: '>=12.13.0'} + peerDependencies: + graphql: 14.x || 15.x || 16.x + dependencies: + graphql: 16.5.0 + dev: false + + /@apollo/utils.sortast/1.1.0_graphql@16.5.0: + resolution: {integrity: sha512-VPlTsmUnOwzPK5yGZENN069y6uUHgeiSlpEhRnLFYwYNoJHsuJq2vXVwIaSmts015WTPa2fpz1inkLYByeuRQA==} + engines: {node: '>=12.13.0'} + peerDependencies: + graphql: 14.x || 15.x || 16.x + dependencies: + graphql: 16.5.0 + lodash.sortby: 4.7.0 + dev: false + + /@apollo/utils.stripsensitiveliterals/1.2.0_graphql@16.5.0: + resolution: {integrity: sha512-E41rDUzkz/cdikM5147d8nfCFVKovXxKBcjvLEQ7bjZm/cg9zEcXvS6vFY8ugTubI3fn6zoqo0CyU8zT+BGP9w==} + engines: {node: '>=12.13.0'} + peerDependencies: + graphql: 14.x || 15.x || 16.x + dependencies: + graphql: 16.5.0 + dev: false + + /@apollo/utils.usagereporting/1.0.0_graphql@16.5.0: + resolution: {integrity: sha512-5PL7hJMkTPmdo3oxPtigRrIyPxDk/ddrUryHPDaezL1lSFExpNzsDd2f1j0XJoHOg350GRd3LyD64caLA2PU1w==} + engines: {node: '>=12.13.0'} + peerDependencies: + graphql: 14.x || 15.x || 16.x + dependencies: + '@apollo/utils.dropunuseddefinitions': 1.1.0_graphql@16.5.0 + '@apollo/utils.printwithreducedwhitespace': 1.1.0_graphql@16.5.0 + '@apollo/utils.removealiases': 1.0.0_graphql@16.5.0 + '@apollo/utils.sortast': 1.1.0_graphql@16.5.0 + '@apollo/utils.stripsensitiveliterals': 1.2.0_graphql@16.5.0 + apollo-reporting-protobuf: 3.3.1 + graphql: 16.5.0 + dev: false + + /@apollographql/apollo-tools/0.5.4_graphql@16.5.0: resolution: {integrity: sha512-shM3q7rUbNyXVVRkQJQseXv6bnYM3BUma/eZhwXR4xsuM+bqWnJKvW7SAfRjP7LuSCocrexa5AXhjjawNHrIlw==} engines: {node: '>=8', npm: '>=6'} peerDependencies: graphql: ^14.2.1 || ^15.0.0 || ^16.0.0 dependencies: - graphql: 16.4.0 + graphql: 16.5.0 dev: false /@apollographql/graphql-playground-html/1.6.29: resolution: {integrity: sha512-xCcXpoz52rI4ksJSdOCxeOCn2DLocxwHf9dVT/Q90Pte1LX+LY+91SFtJF3KXVHH8kEin+g1KKCQPKBjZJfWNA==} dependencies: - xss: 1.0.11 + xss: 1.0.13 dev: false - /@babel/cli/7.17.10_@babel+core@7.17.10: + /@babel/cli/7.17.10_@babel+core@7.18.5: resolution: {integrity: sha512-OygVO1M2J4yPMNOW9pb+I6kFGpQK77HmG44Oz3hg8xQIl5L/2zq+ZohwAdSaqYgVwM0SfmPHZHphH4wR8qzVYw==} engines: {node: '>=6.9.0'} hasBin: true peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@jridgewell/trace-mapping': 0.3.10 + '@babel/core': 7.18.5 + '@jridgewell/trace-mapping': 0.3.13 commander: 4.1.1 convert-source-map: 1.8.0 fs-readdir-recursive: 1.1.0 - glob: 7.2.0 + glob: 7.2.3 make-dir: 2.1.0 slash: 2.0.0 optionalDependencies: @@ -2569,51 +2610,50 @@ packages: resolution: {integrity: sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/highlight': 7.17.9 + '@babel/highlight': 7.17.12 - /@babel/compat-data/7.17.10: - resolution: {integrity: sha512-GZt/TCsG70Ms19gfZO1tM4CVnXsPgEPBCpJu+Qz3L0LUDsY5nZqFZglIoPC1kIYOtNBZlrnFT+klg12vFGZXrw==} + /@babel/compat-data/7.18.5: + resolution: {integrity: sha512-BxhE40PVCBxVEJsSBhB6UWyAuqJRxGsAw8BdHMJ3AKGydcwuWW4kOO3HmqBQAdcq/OP+/DlTVxLvsCzRTnZuGg==} engines: {node: '>=6.9.0'} - dev: true /@babel/core/7.12.9: resolution: {integrity: sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ==} engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.16.7 - '@babel/generator': 7.17.10 - '@babel/helper-module-transforms': 7.17.7 - '@babel/helpers': 7.17.9 - '@babel/parser': 7.17.10 + '@babel/generator': 7.18.2 + '@babel/helper-module-transforms': 7.18.0 + '@babel/helpers': 7.18.2 + '@babel/parser': 7.18.5 '@babel/template': 7.16.7 - '@babel/traverse': 7.17.10 - '@babel/types': 7.17.10 + '@babel/traverse': 7.18.5 + '@babel/types': 7.18.4 convert-source-map: 1.8.0 debug: 4.3.4 gensync: 1.0.0-beta.2 json5: 2.2.1 lodash: 4.17.21 - resolve: 1.22.0 + resolve: 1.22.1 semver: 5.7.1 source-map: 0.5.7 transitivePeerDependencies: - supports-color dev: true - /@babel/core/7.17.10: - resolution: {integrity: sha512-liKoppandF3ZcBnIYFjfSDHZLKdLHGJRkoWtG8zQyGJBQfIYobpnVGI5+pLBNtS6psFLDzyq8+h5HiVljW9PNA==} + /@babel/core/7.18.5: + resolution: {integrity: sha512-MGY8vg3DxMnctw0LdvSEojOsumc70g0t18gNyUdAZqB1Rpd1Bqo/svHGvt+UJ6JcGX+DIekGFDxxIWofBxLCnQ==} engines: {node: '>=6.9.0'} dependencies: '@ampproject/remapping': 2.2.0 '@babel/code-frame': 7.16.7 - '@babel/generator': 7.17.10 - '@babel/helper-compilation-targets': 7.17.10_@babel+core@7.17.10 - '@babel/helper-module-transforms': 7.17.7 - '@babel/helpers': 7.17.9 - '@babel/parser': 7.17.10 + '@babel/generator': 7.18.2 + '@babel/helper-compilation-targets': 7.18.2_@babel+core@7.18.5 + '@babel/helper-module-transforms': 7.18.0 + '@babel/helpers': 7.18.2 + '@babel/parser': 7.18.5 '@babel/template': 7.16.7 - '@babel/traverse': 7.17.10 - '@babel/types': 7.17.10 + '@babel/traverse': 7.18.5 + '@babel/types': 7.18.4 convert-source-map: 1.8.0 debug: 4.3.4 gensync: 1.0.0-beta.2 @@ -2621,133 +2661,129 @@ packages: semver: 6.3.0 transitivePeerDependencies: - supports-color - dev: true - /@babel/eslint-parser/7.17.0_035b3d23fd8620ffc8b252e0ab28a400: - resolution: {integrity: sha512-PUEJ7ZBXbRkbq3qqM/jZ2nIuakUBqCYc7Qf52Lj7dlZ6zERnqisdHioL0l4wwQZnmskMeasqUNzLBFKs3nylXA==} + /@babel/eslint-parser/7.18.2_cz6e4qppzra6gosrrzcvbsxiom: + resolution: {integrity: sha512-oFQYkE8SuH14+uR51JVAmdqwKYXGRjEXx7s+WiagVjqQ+HPE+nnwyF2qlVG8evUsUHmPcA+6YXMEDbIhEyQc5A==} engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0} peerDependencies: '@babel/core': '>=7.11.0' eslint: ^7.5.0 || ^8.0.0 dependencies: - '@babel/core': 7.17.10 - eslint: 8.15.0 + '@babel/core': 7.18.5 + eslint: 8.18.0 eslint-scope: 5.1.1 eslint-visitor-keys: 2.1.0 semver: 6.3.0 dev: true - /@babel/generator/7.17.10: - resolution: {integrity: sha512-46MJZZo9y3o4kmhBVc7zW7i8dtR1oIK/sdO5NcfcZRhTGYi+KKJRtHNgsU6c4VUcJmUNV/LQdebD/9Dlv4K+Tg==} + /@babel/generator/7.18.2: + resolution: {integrity: sha512-W1lG5vUwFvfMd8HVXqdfbuG7RuaSrTCCD8cl8fP8wOivdbtbIg2Db3IWUcgvfxKbbn6ZBGYRW/Zk1MIwK49mgw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.17.10 - '@jridgewell/gen-mapping': 0.1.1 + '@babel/types': 7.18.4 + '@jridgewell/gen-mapping': 0.3.1 jsesc: 2.5.2 /@babel/helper-annotate-as-pure/7.16.7: resolution: {integrity: sha512-s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.17.10 + '@babel/types': 7.18.4 /@babel/helper-builder-binary-assignment-operator-visitor/7.16.7: resolution: {integrity: sha512-C6FdbRaxYjwVu/geKW4ZeQ0Q31AftgRcdSnZ5/jsH6BzCJbtvXvhpfkbkThYSuutZA7nCXpPR6AD9zd1dprMkA==} engines: {node: '>=6.9.0'} dependencies: '@babel/helper-explode-assignable-expression': 7.16.7 - '@babel/types': 7.17.10 + '@babel/types': 7.18.4 dev: true - /@babel/helper-compilation-targets/7.17.10_@babel+core@7.17.10: - resolution: {integrity: sha512-gh3RxjWbauw/dFiU/7whjd0qN9K6nPJMqe6+Er7rOavFh0CQUSwhAE3IcTho2rywPJFxej6TUUHDkWcYI6gGqQ==} + /@babel/helper-compilation-targets/7.18.2_@babel+core@7.18.5: + resolution: {integrity: sha512-s1jnPotJS9uQnzFtiZVBUxe67CuBa679oWFHpxYYnTpRL/1ffhyX44R9uYiXoa/pLXcY9H2moJta0iaanlk/rQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/compat-data': 7.17.10 - '@babel/core': 7.17.10 + '@babel/compat-data': 7.18.5 + '@babel/core': 7.18.5 '@babel/helper-validator-option': 7.16.7 - browserslist: 4.20.3 + browserslist: 4.20.4 semver: 6.3.0 - dev: true - /@babel/helper-create-class-features-plugin/7.17.9_@babel+core@7.17.10: - resolution: {integrity: sha512-kUjip3gruz6AJKOq5i3nC6CoCEEF/oHH3cp6tOZhB+IyyyPyW0g1Gfsxn3mkk6S08pIA2y8GQh609v9G/5sHVQ==} + /@babel/helper-create-class-features-plugin/7.18.0_@babel+core@7.18.5: + resolution: {integrity: sha512-Kh8zTGR9de3J63e5nS0rQUdRs/kbtwoeQQ0sriS0lItjC96u8XXZN6lKpuyWd2coKSU13py/y+LTmThLuVX0Pg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.17.10 + '@babel/core': 7.18.5 '@babel/helper-annotate-as-pure': 7.16.7 - '@babel/helper-environment-visitor': 7.16.7 + '@babel/helper-environment-visitor': 7.18.2 '@babel/helper-function-name': 7.17.9 '@babel/helper-member-expression-to-functions': 7.17.7 '@babel/helper-optimise-call-expression': 7.16.7 - '@babel/helper-replace-supers': 7.16.7 + '@babel/helper-replace-supers': 7.18.2 '@babel/helper-split-export-declaration': 7.16.7 transitivePeerDependencies: - supports-color dev: true - /@babel/helper-create-regexp-features-plugin/7.17.0_@babel+core@7.17.10: - resolution: {integrity: sha512-awO2So99wG6KnlE+TPs6rn83gCz5WlEePJDTnLEqbchMVrBeAujURVphRdigsk094VhvZehFoNOihSlcBjwsXA==} + /@babel/helper-create-regexp-features-plugin/7.17.12_@babel+core@7.18.5: + resolution: {integrity: sha512-b2aZrV4zvutr9AIa6/gA3wsZKRwTKYoDxYiFKcESS3Ug2GTXzwBEvMuuFLhCQpEnRXs1zng4ISAXSUxxKBIcxw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.17.10 + '@babel/core': 7.18.5 '@babel/helper-annotate-as-pure': 7.16.7 regexpu-core: 5.0.1 dev: true - /@babel/helper-define-polyfill-provider/0.1.5_@babel+core@7.17.10: + /@babel/helper-define-polyfill-provider/0.1.5_@babel+core@7.18.5: resolution: {integrity: sha512-nXuzCSwlJ/WKr8qxzW816gwyT6VZgiJG17zR40fou70yfAcqjoNyTLl/DQ+FExw5Hx5KNqshmN8Ldl/r2N7cTg==} peerDependencies: '@babel/core': ^7.4.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-compilation-targets': 7.17.10_@babel+core@7.17.10 + '@babel/core': 7.18.5 + '@babel/helper-compilation-targets': 7.18.2_@babel+core@7.18.5 '@babel/helper-module-imports': 7.16.7 - '@babel/helper-plugin-utils': 7.16.7 - '@babel/traverse': 7.17.10 + '@babel/helper-plugin-utils': 7.17.12 + '@babel/traverse': 7.18.5 debug: 4.3.4 lodash.debounce: 4.0.8 - resolve: 1.22.0 + resolve: 1.22.1 semver: 6.3.0 transitivePeerDependencies: - supports-color dev: true - /@babel/helper-define-polyfill-provider/0.3.1_@babel+core@7.17.10: + /@babel/helper-define-polyfill-provider/0.3.1_@babel+core@7.18.5: resolution: {integrity: sha512-J9hGMpJQmtWmj46B3kBHmL38UhJGhYX7eqkcq+2gsstyYt341HmPeWspihX43yVRA0mS+8GGk2Gckc7bY/HCmA==} peerDependencies: '@babel/core': ^7.4.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-compilation-targets': 7.17.10_@babel+core@7.17.10 + '@babel/core': 7.18.5 + '@babel/helper-compilation-targets': 7.18.2_@babel+core@7.18.5 '@babel/helper-module-imports': 7.16.7 - '@babel/helper-plugin-utils': 7.16.7 - '@babel/traverse': 7.17.10 + '@babel/helper-plugin-utils': 7.17.12 + '@babel/traverse': 7.18.5 debug: 4.3.4 lodash.debounce: 4.0.8 - resolve: 1.22.0 + resolve: 1.22.1 semver: 6.3.0 transitivePeerDependencies: - supports-color dev: true - /@babel/helper-environment-visitor/7.16.7: - resolution: {integrity: sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag==} + /@babel/helper-environment-visitor/7.18.2: + resolution: {integrity: sha512-14GQKWkX9oJzPiQQ7/J36FTXcD4kSp8egKjO9nINlSKiHITRA9q/R74qu8S9xlc/b/yjsJItQUeeh3xnGN0voQ==} engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.17.10 /@babel/helper-explode-assignable-expression/7.16.7: resolution: {integrity: sha512-KyUenhWMC8VrxzkGP0Jizjo4/Zx+1nNZhgocs+gLzyZyB8SHidhoq9KK/8Ato4anhwsivfkBLftky7gvzbZMtQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.17.10 + '@babel/types': 7.18.4 dev: true /@babel/helper-function-name/7.17.9: @@ -2755,56 +2791,55 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/template': 7.16.7 - '@babel/types': 7.17.10 + '@babel/types': 7.18.4 /@babel/helper-hoist-variables/7.16.7: resolution: {integrity: sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.17.10 + '@babel/types': 7.18.4 /@babel/helper-member-expression-to-functions/7.17.7: resolution: {integrity: sha512-thxXgnQ8qQ11W2wVUObIqDL4p148VMxkt5T/qpN5k2fboRyzFGFmKsTGViquyM5QHKUy48OZoca8kw4ajaDPyw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.17.10 + '@babel/types': 7.18.4 dev: true /@babel/helper-module-imports/7.16.7: resolution: {integrity: sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.17.10 + '@babel/types': 7.18.4 - /@babel/helper-module-transforms/7.17.7: - resolution: {integrity: sha512-VmZD99F3gNTYB7fJRDTi+u6l/zxY0BE6OIxPSU7a50s6ZUQkHwSDmV92FfM+oCG0pZRVojGYhkR8I0OGeCVREw==} + /@babel/helper-module-transforms/7.18.0: + resolution: {integrity: sha512-kclUYSUBIjlvnzN2++K9f2qzYKFgjmnmjwL4zlmU5f8ZtzgWe8s0rUPSTGy2HmK4P8T52MQsS+HTQAgZd3dMEA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-environment-visitor': 7.16.7 + '@babel/helper-environment-visitor': 7.18.2 '@babel/helper-module-imports': 7.16.7 - '@babel/helper-simple-access': 7.17.7 + '@babel/helper-simple-access': 7.18.2 '@babel/helper-split-export-declaration': 7.16.7 '@babel/helper-validator-identifier': 7.16.7 '@babel/template': 7.16.7 - '@babel/traverse': 7.17.10 - '@babel/types': 7.17.10 + '@babel/traverse': 7.18.5 + '@babel/types': 7.18.4 transitivePeerDependencies: - supports-color - dev: true /@babel/helper-optimise-call-expression/7.16.7: resolution: {integrity: sha512-EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z+1w==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.17.10 + '@babel/types': 7.18.4 dev: true /@babel/helper-plugin-utils/7.10.4: resolution: {integrity: sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==} dev: true - /@babel/helper-plugin-utils/7.16.7: - resolution: {integrity: sha512-Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA==} + /@babel/helper-plugin-utils/7.17.12: + resolution: {integrity: sha512-JDkf04mqtN3y4iAbO1hv9U2ARpPyPL1zqyWs/2WG1pgSq9llHFjStX5jdxb84himgJm+8Ng+x0oiWF/nw/XQKA==} engines: {node: '>=6.9.0'} /@babel/helper-remap-async-to-generator/7.16.8: @@ -2813,43 +2848,42 @@ packages: dependencies: '@babel/helper-annotate-as-pure': 7.16.7 '@babel/helper-wrap-function': 7.16.8 - '@babel/types': 7.17.10 + '@babel/types': 7.18.4 transitivePeerDependencies: - supports-color dev: true - /@babel/helper-replace-supers/7.16.7: - resolution: {integrity: sha512-y9vsWilTNaVnVh6xiJfABzsNpgDPKev9HnAgz6Gb1p6UUwf9NepdlsV7VXGCftJM+jqD5f7JIEubcpLjZj5dBw==} + /@babel/helper-replace-supers/7.18.2: + resolution: {integrity: sha512-XzAIyxx+vFnrOxiQrToSUOzUOn0e1J2Li40ntddek1Y69AXUTXoDJ40/D5RdjFu7s7qHiaeoTiempZcbuVXh2Q==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-environment-visitor': 7.16.7 + '@babel/helper-environment-visitor': 7.18.2 '@babel/helper-member-expression-to-functions': 7.17.7 '@babel/helper-optimise-call-expression': 7.16.7 - '@babel/traverse': 7.17.10 - '@babel/types': 7.17.10 + '@babel/traverse': 7.18.5 + '@babel/types': 7.18.4 transitivePeerDependencies: - supports-color dev: true - /@babel/helper-simple-access/7.17.7: - resolution: {integrity: sha512-txyMCGroZ96i+Pxr3Je3lzEJjqwaRC9buMUgtomcrLe5Nd0+fk1h0LLA+ixUF5OW7AhHuQ7Es1WcQJZmZsz2XA==} + /@babel/helper-simple-access/7.18.2: + resolution: {integrity: sha512-7LIrjYzndorDY88MycupkpQLKS1AFfsVRm2k/9PtKScSy5tZq0McZTj+DiMRynboZfIqOKvo03pmhTaUgiD6fQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.17.10 - dev: true + '@babel/types': 7.18.4 /@babel/helper-skip-transparent-expression-wrappers/7.16.0: resolution: {integrity: sha512-+il1gTy0oHwUsBQZyJvukbB4vPMdcYBrFHa0Uc4AizLxbq6BOYC51Rv4tWocX9BLBDLZ4kc6qUFpQ6HRgL+3zw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.17.10 + '@babel/types': 7.18.4 dev: true /@babel/helper-split-export-declaration/7.16.7: resolution: {integrity: sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.17.10 + '@babel/types': 7.18.4 /@babel/helper-validator-identifier/7.16.7: resolution: {integrity: sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==} @@ -2858,7 +2892,6 @@ packages: /@babel/helper-validator-option/7.16.7: resolution: {integrity: sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ==} engines: {node: '>=6.9.0'} - dev: true /@babel/helper-wrap-function/7.16.8: resolution: {integrity: sha512-8RpyRVIAW1RcDDGTA+GpPAwV22wXCfKOoM9bet6TLkGIFTkRQSkH1nMQ5Yet4MpoXe1ZwHPVtNasc2w0uZMqnw==} @@ -2866,193 +2899,192 @@ packages: dependencies: '@babel/helper-function-name': 7.17.9 '@babel/template': 7.16.7 - '@babel/traverse': 7.17.10 - '@babel/types': 7.17.10 + '@babel/traverse': 7.18.5 + '@babel/types': 7.18.4 transitivePeerDependencies: - supports-color dev: true - /@babel/helpers/7.17.9: - resolution: {integrity: sha512-cPCt915ShDWUEzEp3+UNRktO2n6v49l5RSnG9M5pS24hA+2FAc5si+Pn1i4VVbQQ+jh+bIZhPFQOJOzbrOYY1Q==} + /@babel/helpers/7.18.2: + resolution: {integrity: sha512-j+d+u5xT5utcQSzrh9p+PaJX94h++KN+ng9b9WEJq7pkUPAd61FGqhjuUEdfknb3E/uDBb7ruwEeKkIxNJPIrg==} engines: {node: '>=6.9.0'} dependencies: '@babel/template': 7.16.7 - '@babel/traverse': 7.17.10 - '@babel/types': 7.17.10 + '@babel/traverse': 7.18.5 + '@babel/types': 7.18.4 transitivePeerDependencies: - supports-color - dev: true - /@babel/highlight/7.17.9: - resolution: {integrity: sha512-J9PfEKCbFIv2X5bjTMiZu6Vf341N05QIY+d6FvVKynkG1S7G0j3I0QoRtWIrXhZ+/Nlb5Q0MzqL7TokEJ5BNHg==} + /@babel/highlight/7.17.12: + resolution: {integrity: sha512-7yykMVF3hfZY2jsHZEEgLc+3x4o1O+fYyULu11GynEUQNwB6lua+IIQn1FiJxNucd5UlyJryrwsOh8PL9Sn8Qg==} engines: {node: '>=6.9.0'} dependencies: '@babel/helper-validator-identifier': 7.16.7 chalk: github.com/Methuselah96/chalk/7e66d0ff681fc10462ce327f1c4f82bfa13193e2 js-tokens: 4.0.0 - /@babel/parser/7.17.10: - resolution: {integrity: sha512-n2Q6i+fnJqzOaq2VkdXxy2TCPCWQZHiCo0XqmrCvDWcZQKRyZzYi4Z0yxlBuN0w+r2ZHmre+Q087DSrw3pbJDQ==} + /@babel/parser/7.18.5: + resolution: {integrity: sha512-YZWVaglMiplo7v8f1oMQ5ZPQr0vn7HPeZXxXWsxXJRjGVrzUFn9OxFQl1sb5wzfootjA/yChhW84BV+383FSOw==} engines: {node: '>=6.0.0'} hasBin: true dependencies: - '@babel/types': 7.17.10 + '@babel/types': 7.18.4 - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.16.7_@babel+core@7.17.10: - resolution: {integrity: sha512-anv/DObl7waiGEnC24O9zqL0pSuI9hljihqiDuFHC8d7/bjr/4RLGPWuc8rYOff/QPzbEPSkzG8wGG9aDuhHRg==} + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.17.12_@babel+core@7.18.5: + resolution: {integrity: sha512-xCJQXl4EeQ3J9C4yOmpTrtVGmzpm2iSzyxbkZHw7UCnZBftHpF/hpII80uWVyVrc40ytIClHjgWGTG1g/yB+aw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.16.7_@babel+core@7.17.10: - resolution: {integrity: sha512-di8vUHRdf+4aJ7ltXhaDbPoszdkh59AQtJM5soLsuHpQJdFQZOA4uGj0V2u/CZ8bJ/u8ULDL5yq6FO/bCXnKHw==} + /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/7.17.12_@babel+core@7.18.5: + resolution: {integrity: sha512-/vt0hpIw0x4b6BLKUkwlvEoiGZYYLNZ96CzyHYPbtG2jZGz6LBe7/V+drYrc/d+ovrF9NBi0pmtvmNb/FsWtRQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.13.0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.17.12 '@babel/helper-skip-transparent-expression-wrappers': 7.16.0 - '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-proposal-optional-chaining': 7.17.12_@babel+core@7.18.5 dev: true - /@babel/plugin-proposal-async-generator-functions/7.16.8_@babel+core@7.17.10: - resolution: {integrity: sha512-71YHIvMuiuqWJQkebWJtdhQTfd4Q4mF76q2IX37uZPkG9+olBxsX+rH1vkhFto4UeJZ9dPY2s+mDvhDm1u2BGQ==} + /@babel/plugin-proposal-async-generator-functions/7.17.12_@babel+core@7.18.5: + resolution: {integrity: sha512-RWVvqD1ooLKP6IqWTA5GyFVX2isGEgC5iFxKzfYOIy/QEFdxYyCybBDtIGjipHpb9bDWHzcqGqFakf+mVmBTdQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.17.12 '@babel/helper-remap-async-to-generator': 7.16.8 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.17.10 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.5 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-class-properties/7.16.7_@babel+core@7.17.10: - resolution: {integrity: sha512-IobU0Xme31ewjYOShSIqd/ZGM/r/cuOz2z0MDbNrhF5FW+ZVgi0f2lyeoj9KFPDOAqsYxmLWZte1WOwlvY9aww==} + /@babel/plugin-proposal-class-properties/7.17.12_@babel+core@7.18.5: + resolution: {integrity: sha512-U0mI9q8pW5Q9EaTHFPwSVusPMV/DV9Mm8p7csqROFLtIE9rBF5piLqyrBGigftALrBcsBGu4m38JneAe7ZDLXw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-create-class-features-plugin': 7.17.9_@babel+core@7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.5 + '@babel/helper-create-class-features-plugin': 7.18.0_@babel+core@7.18.5 + '@babel/helper-plugin-utils': 7.17.12 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-class-static-block/7.17.6_@babel+core@7.17.10: - resolution: {integrity: sha512-X/tididvL2zbs7jZCeeRJ8167U/+Ac135AM6jCAx6gYXDUviZV5Ku9UDvWS2NCuWlFjIRXklYhwo6HhAC7ETnA==} + /@babel/plugin-proposal-class-static-block/7.18.0_@babel+core@7.18.5: + resolution: {integrity: sha512-t+8LsRMMDE74c6sV7KShIw13sqbqd58tlqNrsWoWBTIMw7SVQ0cZ905wLNS/FBCy/3PyooRHLFFlfrUNyyz5lA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.12.0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-create-class-features-plugin': 7.17.9_@babel+core@7.17.10 - '@babel/helper-plugin-utils': 7.16.7 - '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.17.10 + '@babel/core': 7.18.5 + '@babel/helper-create-class-features-plugin': 7.18.0_@babel+core@7.18.5 + '@babel/helper-plugin-utils': 7.17.12 + '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.18.5 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-decorators/7.17.9_@babel+core@7.17.10: - resolution: {integrity: sha512-EfH2LZ/vPa2wuPwJ26j+kYRkaubf89UlwxKXtxqEm57HrgSEYDB8t4swFP+p8LcI9yiP9ZRJJjo/58hS6BnaDA==} + /@babel/plugin-proposal-decorators/7.18.2_@babel+core@7.18.5: + resolution: {integrity: sha512-kbDISufFOxeczi0v4NQP3p5kIeW6izn/6klfWBrIIdGZZe4UpHR+QU03FAoWjGGd9SUXAwbw2pup1kaL4OQsJQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-create-class-features-plugin': 7.17.9_@babel+core@7.17.10 - '@babel/helper-plugin-utils': 7.16.7 - '@babel/helper-replace-supers': 7.16.7 + '@babel/core': 7.18.5 + '@babel/helper-create-class-features-plugin': 7.18.0_@babel+core@7.18.5 + '@babel/helper-plugin-utils': 7.17.12 + '@babel/helper-replace-supers': 7.18.2 '@babel/helper-split-export-declaration': 7.16.7 - '@babel/plugin-syntax-decorators': 7.17.0_@babel+core@7.17.10 + '@babel/plugin-syntax-decorators': 7.17.12_@babel+core@7.18.5 charcodes: 0.2.0 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-dynamic-import/7.16.7_@babel+core@7.17.10: + /@babel/plugin-proposal-dynamic-import/7.16.7_@babel+core@7.18.5: resolution: {integrity: sha512-I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH+d60iG7dUfi0KkYwSvoalHzzdRzpWHTg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.17.10 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.17.12 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.5 dev: true - /@babel/plugin-proposal-export-default-from/7.16.7_@babel+core@7.17.10: - resolution: {integrity: sha512-+cENpW1rgIjExn+o5c8Jw/4BuH4eGKKYvkMB8/0ZxFQ9mC0t4z09VsPIwNg6waF69QYC81zxGeAsREGuqQoKeg==} + /@babel/plugin-proposal-export-default-from/7.17.12_@babel+core@7.18.5: + resolution: {integrity: sha512-LpsTRw725eBAXXKUOnJJct+SEaOzwR78zahcLuripD2+dKc2Sj+8Q2DzA+GC/jOpOu/KlDXuxrzG214o1zTauQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 - '@babel/plugin-syntax-export-default-from': 7.16.7_@babel+core@7.17.10 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.17.12 + '@babel/plugin-syntax-export-default-from': 7.16.7_@babel+core@7.18.5 dev: true - /@babel/plugin-proposal-export-namespace-from/7.16.7_@babel+core@7.17.10: - resolution: {integrity: sha512-ZxdtqDXLRGBL64ocZcs7ovt71L3jhC1RGSyR996svrCi3PYqHNkb3SwPJCs8RIzD86s+WPpt2S73+EHCGO+NUA==} + /@babel/plugin-proposal-export-namespace-from/7.17.12_@babel+core@7.18.5: + resolution: {integrity: sha512-j7Ye5EWdwoXOpRmo5QmRyHPsDIe6+u70ZYZrd7uz+ebPYFKfRcLcNu3Ro0vOlJ5zuv8rU7xa+GttNiRzX56snQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.17.10 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.17.12 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.18.5 dev: true - /@babel/plugin-proposal-json-strings/7.16.7_@babel+core@7.17.10: - resolution: {integrity: sha512-lNZ3EEggsGY78JavgbHsK9u5P3pQaW7k4axlgFLYkMd7UBsiNahCITShLjNQschPyjtO6dADrL24757IdhBrsQ==} + /@babel/plugin-proposal-json-strings/7.17.12_@babel+core@7.18.5: + resolution: {integrity: sha512-rKJ+rKBoXwLnIn7n6o6fulViHMrOThz99ybH+hKHcOZbnN14VuMnH9fo2eHE69C8pO4uX1Q7t2HYYIDmv8VYkg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.17.10 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.17.12 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.5 dev: true - /@babel/plugin-proposal-logical-assignment-operators/7.16.7_@babel+core@7.17.10: - resolution: {integrity: sha512-K3XzyZJGQCr00+EtYtrDjmwX7o7PLK6U9bi1nCwkQioRFVUv6dJoxbQjtWVtP+bCPy82bONBKG8NPyQ4+i6yjg==} + /@babel/plugin-proposal-logical-assignment-operators/7.17.12_@babel+core@7.18.5: + resolution: {integrity: sha512-EqFo2s1Z5yy+JeJu7SFfbIUtToJTVlC61/C7WLKDntSw4Sz6JNAIfL7zQ74VvirxpjB5kz/kIx0gCcb+5OEo2Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.17.10 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.17.12 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.5 dev: true - /@babel/plugin-proposal-nullish-coalescing-operator/7.16.7_@babel+core@7.17.10: - resolution: {integrity: sha512-aUOrYU3EVtjf62jQrCj63pYZ7k6vns2h/DQvHPWGmsJRYzWXZ6/AsfgpiRy6XiuIDADhJzP2Q9MwSMKauBQ+UQ==} + /@babel/plugin-proposal-nullish-coalescing-operator/7.17.12_@babel+core@7.18.5: + resolution: {integrity: sha512-ws/g3FSGVzv+VH86+QvgtuJL/kR67xaEIF2x0iPqdDfYW6ra6JF3lKVBkWynRLcNtIC1oCTfDRVxmm2mKzy+ag==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.17.10 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.17.12 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.5 dev: true - /@babel/plugin-proposal-numeric-separator/7.16.7_@babel+core@7.17.10: + /@babel/plugin-proposal-numeric-separator/7.16.7_@babel+core@7.18.5: resolution: {integrity: sha512-vQgPMknOIgiuVqbokToyXbkY/OmmjAzr/0lhSIbG/KmnzXPGwW/AdhdKpi+O4X/VkWiWjnkKOBiqJrTaC98VKw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.17.10 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.17.12 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.5 dev: true /@babel/plugin-proposal-object-rest-spread/7.12.1_@babel+core@7.12.9: @@ -3063,186 +3095,196 @@ packages: '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.10.4 '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.12.9 - '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.12.9 + '@babel/plugin-transform-parameters': 7.17.12_@babel+core@7.12.9 dev: true - /@babel/plugin-proposal-object-rest-spread/7.17.3_@babel+core@7.17.10: - resolution: {integrity: sha512-yuL5iQA/TbZn+RGAfxQXfi7CNLmKi1f8zInn4IgobuCWcAb7i+zj4TYzQ9l8cEzVyJ89PDGuqxK1xZpUDISesw==} + /@babel/plugin-proposal-object-rest-spread/7.18.0_@babel+core@7.18.5: + resolution: {integrity: sha512-nbTv371eTrFabDfHLElkn9oyf9VG+VKK6WMzhY2o4eHKaG19BToD9947zzGMO6I/Irstx9d8CwX6njPNIAR/yw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.17.10 - '@babel/core': 7.17.10 - '@babel/helper-compilation-targets': 7.17.10_@babel+core@7.17.10 - '@babel/helper-plugin-utils': 7.16.7 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.17.10 - '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.17.10 + '@babel/compat-data': 7.18.5 + '@babel/core': 7.18.5 + '@babel/helper-compilation-targets': 7.18.2_@babel+core@7.18.5 + '@babel/helper-plugin-utils': 7.17.12 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.5 + '@babel/plugin-transform-parameters': 7.17.12_@babel+core@7.18.5 dev: true - /@babel/plugin-proposal-optional-catch-binding/7.16.7_@babel+core@7.17.10: + /@babel/plugin-proposal-optional-catch-binding/7.16.7_@babel+core@7.18.5: resolution: {integrity: sha512-eMOH/L4OvWSZAE1VkHbr1vckLG1WUcHGJSLqqQwl2GaUqG6QjddvrOaTUMNYiv77H5IKPMZ9U9P7EaHwvAShfA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.17.10 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.17.12 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.5 dev: true - /@babel/plugin-proposal-optional-chaining/7.16.7_@babel+core@7.17.10: - resolution: {integrity: sha512-eC3xy+ZrUcBtP7x+sq62Q/HYd674pPTb/77XZMb5wbDPGWIdUbSr4Agr052+zaUPSb+gGRnjxXfKFvx5iMJ+DA==} + /@babel/plugin-proposal-optional-chaining/7.17.12_@babel+core@7.18.5: + resolution: {integrity: sha512-7wigcOs/Z4YWlK7xxjkvaIw84vGhDv/P1dFGQap0nHkc8gFKY/r+hXc8Qzf5k1gY7CvGIcHqAnOagVKJJ1wVOQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.17.12 '@babel/helper-skip-transparent-expression-wrappers': 7.16.0 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.17.10 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.5 dev: true - /@babel/plugin-proposal-private-methods/7.16.11_@babel+core@7.17.10: - resolution: {integrity: sha512-F/2uAkPlXDr8+BHpZvo19w3hLFKge+k75XUprE6jaqKxjGkSYcK+4c+bup5PdW/7W/Rpjwql7FTVEDW+fRAQsw==} + /@babel/plugin-proposal-private-methods/7.17.12_@babel+core@7.18.5: + resolution: {integrity: sha512-SllXoxo19HmxhDWm3luPz+cPhtoTSKLJE9PXshsfrOzBqs60QP0r8OaJItrPhAj0d7mZMnNF0Y1UUggCDgMz1A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-create-class-features-plugin': 7.17.9_@babel+core@7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.5 + '@babel/helper-create-class-features-plugin': 7.18.0_@babel+core@7.18.5 + '@babel/helper-plugin-utils': 7.17.12 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-private-property-in-object/7.16.7_@babel+core@7.17.10: - resolution: {integrity: sha512-rMQkjcOFbm+ufe3bTZLyOfsOUOxyvLXZJCTARhJr+8UMSoZmqTe1K1BgkFcrW37rAchWg57yI69ORxiWvUINuQ==} + /@babel/plugin-proposal-private-property-in-object/7.17.12_@babel+core@7.18.5: + resolution: {integrity: sha512-/6BtVi57CJfrtDNKfK5b66ydK2J5pXUKBKSPD2G1whamMuEnZWgoOIfO8Vf9F/DoD4izBLD/Au4NMQfruzzykg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 + '@babel/core': 7.18.5 '@babel/helper-annotate-as-pure': 7.16.7 - '@babel/helper-create-class-features-plugin': 7.17.9_@babel+core@7.17.10 - '@babel/helper-plugin-utils': 7.16.7 - '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.17.10 + '@babel/helper-create-class-features-plugin': 7.18.0_@babel+core@7.18.5 + '@babel/helper-plugin-utils': 7.17.12 + '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.18.5 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-proposal-unicode-property-regex/7.16.7_@babel+core@7.17.10: - resolution: {integrity: sha512-QRK0YI/40VLhNVGIjRNAAQkEHws0cswSdFFjpFyt943YmJIU1da9uW63Iu6NFV6CxTZW5eTDCrwZUstBWgp/Rg==} + /@babel/plugin-proposal-unicode-property-regex/7.17.12_@babel+core@7.18.5: + resolution: {integrity: sha512-Wb9qLjXf3ZazqXA7IvI7ozqRIXIGPtSo+L5coFmEkhTQK18ao4UDDD0zdTGAarmbLj2urpRwrc6893cu5Bfh0A==} engines: {node: '>=4'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-create-regexp-features-plugin': 7.17.0_@babel+core@7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.5 + '@babel/helper-create-regexp-features-plugin': 7.17.12_@babel+core@7.18.5 + '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.17.10: + /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.18.5: resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.17.10: + /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.18.5: resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.17.10: + /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.18.5: resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.17.10: + /@babel/plugin-syntax-class-static-block/7.14.5_@babel+core@7.18.5: resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-syntax-decorators/7.17.0_@babel+core@7.17.10: - resolution: {integrity: sha512-qWe85yCXsvDEluNP0OyeQjH63DlhAR3W7K9BxxU1MvbDb48tgBG+Ao6IJJ6smPDrrVzSQZrbF6donpkFBMcs3A==} + /@babel/plugin-syntax-decorators/7.17.12_@babel+core@7.18.5: + resolution: {integrity: sha512-D1Hz0qtGTza8K2xGyEdVNCYLdVHukAcbQr4K3/s6r/esadyEriZovpJimQOpu8ju4/jV8dW/1xdaE0UpDroidw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.17.10: + /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.18.5: resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-syntax-export-default-from/7.16.7_@babel+core@7.17.10: + /@babel/plugin-syntax-export-default-from/7.16.7_@babel+core@7.18.5: resolution: {integrity: sha512-4C3E4NsrLOgftKaTYTULhHsuQrGv3FHrBzOMDiS7UYKIpgGBkAdawg4h+EI8zPeK9M0fiIIh72hIwsI24K7MbA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.17.10: + /@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.18.5: resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-syntax-flow/7.16.7_@babel+core@7.17.10: - resolution: {integrity: sha512-UDo3YGQO0jH6ytzVwgSLv9i/CzMcUjbKenL67dTrAZPPv6GFAtDhe6jqnvmoKzC/7htNTohhos+onPtDMqJwaQ==} + /@babel/plugin-syntax-flow/7.17.12_@babel+core@7.18.5: + resolution: {integrity: sha512-B8QIgBvkIG6G2jgsOHQUist7Sm0EBLDCx8sen072IwqNuzMegZNXrYnSv77cYzA8mLDZAfQYqsLIhimiP1s2HQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.17.10: + /@babel/plugin-syntax-import-assertions/7.17.12_@babel+core@7.18.5: + resolution: {integrity: sha512-n/loy2zkq9ZEM8tEOwON9wTQSTNDTDEz6NujPtJGLU7qObzT1N4c4YZZf8E6ATB2AjNQg/Ib2AIpO03EZaCehw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.17.12 + dev: true + + /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.18.5: resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.17.10: + /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.18.5: resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.17.12 dev: true /@babel/plugin-syntax-jsx/7.12.1_@babel+core@7.12.9: @@ -3251,43 +3293,43 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-syntax-jsx/7.16.7_@babel+core@7.17.10: - resolution: {integrity: sha512-Esxmk7YjA8QysKeT3VhTXvF6y77f/a91SIs4pWb4H2eWGQkCKFgQaG6hdoEVZtGsrAcb2K5BW66XsOErD4WU3Q==} + /@babel/plugin-syntax-jsx/7.17.12_@babel+core@7.18.5: + resolution: {integrity: sha512-spyY3E3AURfxh/RHtjx5j6hs8am5NbUBGfcZ2vB3uShSpZdQyXSf5rR5Mk76vbtlAZOelyVQ71Fg0x9SG4fsog==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.17.12 - /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.17.10: + /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.18.5: resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.17.10: + /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.18.5: resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.17.10: + /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.18.5: resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.17.12 dev: true /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.12.9: @@ -3296,521 +3338,523 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.17.10: + /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.18.5: resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.17.10: + /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.18.5: resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.17.10: + /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.18.5: resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.17.10: + /@babel/plugin-syntax-private-property-in-object/7.14.5_@babel+core@7.18.5: resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.17.10: + /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.18.5: resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-syntax-typescript/7.17.10_@babel+core@7.17.10: - resolution: {integrity: sha512-xJefea1DWXW09pW4Tm9bjwVlPDyYA2it3fWlmEjpYz6alPvTUjL0EOzNzI/FEOyI3r4/J7uVH5UqKgl1TQ5hqQ==} + /@babel/plugin-syntax-typescript/7.17.12_@babel+core@7.18.5: + resolution: {integrity: sha512-TYY0SXFiO31YXtNg3HtFwNJHjLsAyIIhAhNWkQ5whPPS7HWUFlg9z0Ta4qAQNjQbP1wsSt/oKkmZ/4/WWdMUpw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-transform-arrow-functions/7.16.7_@babel+core@7.17.10: - resolution: {integrity: sha512-9ffkFFMbvzTvv+7dTp/66xvZAWASuPD5Tl9LK3Z9vhOmANo6j94rik+5YMBt4CwHVMWLWpMsriIc2zsa3WW3xQ==} + /@babel/plugin-transform-arrow-functions/7.17.12_@babel+core@7.18.5: + resolution: {integrity: sha512-PHln3CNi/49V+mza4xMwrg+WGYevSF1oaiXaC2EQfdp4HWlSjRsrDXWJiQBKpP7749u6vQ9mcry2uuFOv5CXvA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-transform-async-to-generator/7.16.8_@babel+core@7.17.10: - resolution: {integrity: sha512-MtmUmTJQHCnyJVrScNzNlofQJ3dLFuobYn3mwOTKHnSCMtbNsqvF71GQmJfFjdrXSsAA7iysFmYWw4bXZ20hOg==} + /@babel/plugin-transform-async-to-generator/7.17.12_@babel+core@7.18.5: + resolution: {integrity: sha512-J8dbrWIOO3orDzir57NRsjg4uxucvhby0L/KZuGsWDj0g7twWK3g7JhJhOrXtuXiw8MeiSdJ3E0OW9H8LYEzLQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 + '@babel/core': 7.18.5 '@babel/helper-module-imports': 7.16.7 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-plugin-utils': 7.17.12 '@babel/helper-remap-async-to-generator': 7.16.8 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-block-scoped-functions/7.16.7_@babel+core@7.17.10: + /@babel/plugin-transform-block-scoped-functions/7.16.7_@babel+core@7.18.5: resolution: {integrity: sha512-JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-transform-block-scoping/7.16.7_@babel+core@7.17.10: - resolution: {integrity: sha512-ObZev2nxVAYA4bhyusELdo9hb3H+A56bxH3FZMbEImZFiEDYVHXQSJ1hQKFlDnlt8G9bBrCZ5ZpURZUrV4G5qQ==} + /@babel/plugin-transform-block-scoping/7.18.4_@babel+core@7.18.5: + resolution: {integrity: sha512-+Hq10ye+jlvLEogSOtq4mKvtk7qwcUQ1f0Mrueai866C82f844Yom2cttfJdMdqRLTxWpsbfbkIkOIfovyUQXw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-transform-classes/7.16.7_@babel+core@7.17.10: - resolution: {integrity: sha512-WY7og38SFAGYRe64BrjKf8OrE6ulEHtr5jEYaZMwox9KebgqPi67Zqz8K53EKk1fFEJgm96r32rkKZ3qA2nCWQ==} + /@babel/plugin-transform-classes/7.18.4_@babel+core@7.18.5: + resolution: {integrity: sha512-e42NSG2mlKWgxKUAD9EJJSkZxR67+wZqzNxLSpc51T8tRU5SLFHsPmgYR5yr7sdgX4u+iHA1C5VafJ6AyImV3A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 + '@babel/core': 7.18.5 '@babel/helper-annotate-as-pure': 7.16.7 - '@babel/helper-environment-visitor': 7.16.7 + '@babel/helper-environment-visitor': 7.18.2 '@babel/helper-function-name': 7.17.9 '@babel/helper-optimise-call-expression': 7.16.7 - '@babel/helper-plugin-utils': 7.16.7 - '@babel/helper-replace-supers': 7.16.7 + '@babel/helper-plugin-utils': 7.17.12 + '@babel/helper-replace-supers': 7.18.2 '@babel/helper-split-export-declaration': 7.16.7 globals: 11.12.0 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-computed-properties/7.16.7_@babel+core@7.17.10: - resolution: {integrity: sha512-gN72G9bcmenVILj//sv1zLNaPyYcOzUho2lIJBMh/iakJ9ygCo/hEF9cpGb61SCMEDxbbyBoVQxrt+bWKu5KGw==} + /@babel/plugin-transform-computed-properties/7.17.12_@babel+core@7.18.5: + resolution: {integrity: sha512-a7XINeplB5cQUWMg1E/GI1tFz3LfK021IjV1rj1ypE+R7jHm+pIHmHl25VNkZxtx9uuYp7ThGk8fur1HHG7PgQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-transform-destructuring/7.17.7_@babel+core@7.17.10: - resolution: {integrity: sha512-XVh0r5yq9sLR4vZ6eVZe8FKfIcSgaTBxVBRSYokRj2qksf6QerYnTxz9/GTuKTH/n/HwLP7t6gtlybHetJ/6hQ==} + /@babel/plugin-transform-destructuring/7.18.0_@babel+core@7.18.5: + resolution: {integrity: sha512-Mo69klS79z6KEfrLg/1WkmVnB8javh75HX4pi2btjvlIoasuxilEyjtsQW6XPrubNd7AQy0MMaNIaQE4e7+PQw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-transform-dotall-regex/7.16.7_@babel+core@7.17.10: + /@babel/plugin-transform-dotall-regex/7.16.7_@babel+core@7.18.5: resolution: {integrity: sha512-Lyttaao2SjZF6Pf4vk1dVKv8YypMpomAbygW+mU5cYP3S5cWTfCJjG8xV6CFdzGFlfWK81IjL9viiTvpb6G7gQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-create-regexp-features-plugin': 7.17.0_@babel+core@7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.5 + '@babel/helper-create-regexp-features-plugin': 7.17.12_@babel+core@7.18.5 + '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-transform-duplicate-keys/7.16.7_@babel+core@7.17.10: - resolution: {integrity: sha512-03DvpbRfvWIXyK0/6QiR1KMTWeT6OcQ7tbhjrXyFS02kjuX/mu5Bvnh5SDSWHxyawit2g5aWhKwI86EE7GUnTw==} + /@babel/plugin-transform-duplicate-keys/7.17.12_@babel+core@7.18.5: + resolution: {integrity: sha512-EA5eYFUG6xeerdabina/xIoB95jJ17mAkR8ivx6ZSu9frKShBjpOGZPn511MTDTkiCO+zXnzNczvUM69YSf3Zw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-transform-exponentiation-operator/7.16.7_@babel+core@7.17.10: + /@babel/plugin-transform-exponentiation-operator/7.16.7_@babel+core@7.18.5: resolution: {integrity: sha512-8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 + '@babel/core': 7.18.5 '@babel/helper-builder-binary-assignment-operator-visitor': 7.16.7 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-transform-flow-strip-types/7.16.7_@babel+core@7.17.10: - resolution: {integrity: sha512-mzmCq3cNsDpZZu9FADYYyfZJIOrSONmHcop2XEKPdBNMa4PDC4eEvcOvzZaCNcjKu72v0XQlA5y1g58aLRXdYg==} + /@babel/plugin-transform-flow-strip-types/7.17.12_@babel+core@7.18.5: + resolution: {integrity: sha512-g8cSNt+cHCpG/uunPQELdq/TeV3eg1OLJYwxypwHtAWo9+nErH3lQx9CSO2uI9lF74A0mR0t4KoMjs1snSgnTw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 - '@babel/plugin-syntax-flow': 7.16.7_@babel+core@7.17.10 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.17.12 + '@babel/plugin-syntax-flow': 7.17.12_@babel+core@7.18.5 dev: true - /@babel/plugin-transform-for-of/7.16.7_@babel+core@7.17.10: - resolution: {integrity: sha512-/QZm9W92Ptpw7sjI9Nx1mbcsWz33+l8kuMIQnDwgQBG5s3fAfQvkRjQ7NqXhtNcKOnPkdICmUHyCaWW06HCsqg==} + /@babel/plugin-transform-for-of/7.18.1_@babel+core@7.18.5: + resolution: {integrity: sha512-+TTB5XwvJ5hZbO8xvl2H4XaMDOAK57zF4miuC9qQJgysPNEAZZ9Z69rdF5LJkozGdZrjBIUAIyKUWRMmebI7vg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-transform-function-name/7.16.7_@babel+core@7.17.10: + /@babel/plugin-transform-function-name/7.16.7_@babel+core@7.18.5: resolution: {integrity: sha512-SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-compilation-targets': 7.17.10_@babel+core@7.17.10 + '@babel/core': 7.18.5 + '@babel/helper-compilation-targets': 7.18.2_@babel+core@7.18.5 '@babel/helper-function-name': 7.17.9 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-transform-literals/7.16.7_@babel+core@7.17.10: - resolution: {integrity: sha512-6tH8RTpTWI0s2sV6uq3e/C9wPo4PTqqZps4uF0kzQ9/xPLFQtipynvmT1g/dOfEJ+0EQsHhkQ/zyRId8J2b8zQ==} + /@babel/plugin-transform-literals/7.17.12_@babel+core@7.18.5: + resolution: {integrity: sha512-8iRkvaTjJciWycPIZ9k9duu663FT7VrBdNqNgxnVXEFwOIp55JWcZd23VBRySYbnS3PwQ3rGiabJBBBGj5APmQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-transform-member-expression-literals/7.16.7_@babel+core@7.17.10: + /@babel/plugin-transform-member-expression-literals/7.16.7_@babel+core@7.18.5: resolution: {integrity: sha512-mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-transform-modules-amd/7.16.7_@babel+core@7.17.10: - resolution: {integrity: sha512-KaaEtgBL7FKYwjJ/teH63oAmE3lP34N3kshz8mm4VMAw7U3PxjVwwUmxEFksbgsNUaO3wId9R2AVQYSEGRa2+g==} + /@babel/plugin-transform-modules-amd/7.18.0_@babel+core@7.18.5: + resolution: {integrity: sha512-h8FjOlYmdZwl7Xm2Ug4iX2j7Qy63NANI+NQVWQzv6r25fqgg7k2dZl03p95kvqNclglHs4FZ+isv4p1uXMA+QA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-module-transforms': 7.17.7 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.5 + '@babel/helper-module-transforms': 7.18.0 + '@babel/helper-plugin-utils': 7.17.12 babel-plugin-dynamic-import-node: 2.3.3 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-modules-commonjs/7.17.9_@babel+core@7.17.10: - resolution: {integrity: sha512-2TBFd/r2I6VlYn0YRTz2JdazS+FoUuQ2rIFHoAxtyP/0G3D82SBLaRq9rnUkpqlLg03Byfl/+M32mpxjO6KaPw==} + /@babel/plugin-transform-modules-commonjs/7.18.2_@babel+core@7.18.5: + resolution: {integrity: sha512-f5A865gFPAJAEE0K7F/+nm5CmAE3y8AWlMBG9unu5j9+tk50UQVK0QS8RNxSp7MJf0wh97uYyLWt3Zvu71zyOQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-module-transforms': 7.17.7 - '@babel/helper-plugin-utils': 7.16.7 - '@babel/helper-simple-access': 7.17.7 + '@babel/core': 7.18.5 + '@babel/helper-module-transforms': 7.18.0 + '@babel/helper-plugin-utils': 7.17.12 + '@babel/helper-simple-access': 7.18.2 babel-plugin-dynamic-import-node: 2.3.3 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-modules-systemjs/7.17.8_@babel+core@7.17.10: - resolution: {integrity: sha512-39reIkMTUVagzgA5x88zDYXPCMT6lcaRKs1+S9K6NKBPErbgO/w/kP8GlNQTC87b412ZTlmNgr3k2JrWgHH+Bw==} + /@babel/plugin-transform-modules-systemjs/7.18.5_@babel+core@7.18.5: + resolution: {integrity: sha512-SEewrhPpcqMF1V7DhnEbhVJLrC+nnYfe1E0piZMZXBpxi9WvZqWGwpsk7JYP7wPWeqaBh4gyKlBhHJu3uz5g4Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 + '@babel/core': 7.18.5 '@babel/helper-hoist-variables': 7.16.7 - '@babel/helper-module-transforms': 7.17.7 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-module-transforms': 7.18.0 + '@babel/helper-plugin-utils': 7.17.12 '@babel/helper-validator-identifier': 7.16.7 babel-plugin-dynamic-import-node: 2.3.3 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-modules-umd/7.16.7_@babel+core@7.17.10: - resolution: {integrity: sha512-EMh7uolsC8O4xhudF2F6wedbSHm1HHZ0C6aJ7K67zcDNidMzVcxWdGr+htW9n21klm+bOn+Rx4CBsAntZd3rEQ==} + /@babel/plugin-transform-modules-umd/7.18.0_@babel+core@7.18.5: + resolution: {integrity: sha512-d/zZ8I3BWli1tmROLxXLc9A6YXvGK8egMxHp+E/rRwMh1Kip0AP77VwZae3snEJ33iiWwvNv2+UIIhfalqhzZA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-module-transforms': 7.17.7 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.5 + '@babel/helper-module-transforms': 7.18.0 + '@babel/helper-plugin-utils': 7.17.12 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-named-capturing-groups-regex/7.17.10_@babel+core@7.17.10: - resolution: {integrity: sha512-v54O6yLaJySCs6mGzaVOUw9T967GnH38T6CQSAtnzdNPwu84l2qAjssKzo/WSO8Yi7NF+7ekm5cVbF/5qiIgNA==} + /@babel/plugin-transform-named-capturing-groups-regex/7.17.12_@babel+core@7.18.5: + resolution: {integrity: sha512-vWoWFM5CKaTeHrdUJ/3SIOTRV+MBVGybOC9mhJkaprGNt5demMymDW24yC74avb915/mIRe3TgNb/d8idvnCRA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-create-regexp-features-plugin': 7.17.0_@babel+core@7.17.10 + '@babel/core': 7.18.5 + '@babel/helper-create-regexp-features-plugin': 7.17.12_@babel+core@7.18.5 + '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-transform-new-target/7.16.7_@babel+core@7.17.10: - resolution: {integrity: sha512-xiLDzWNMfKoGOpc6t3U+etCE2yRnn3SM09BXqWPIZOBpL2gvVrBWUKnsJx0K/ADi5F5YC5f8APFfWrz25TdlGg==} + /@babel/plugin-transform-new-target/7.18.5_@babel+core@7.18.5: + resolution: {integrity: sha512-TuRL5uGW4KXU6OsRj+mLp9BM7pO8e7SGNTEokQRRxHFkXYMFiy2jlKSZPFtI/mKORDzciH+hneskcSOp0gU8hg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-transform-object-super/7.16.7_@babel+core@7.17.10: + /@babel/plugin-transform-object-super/7.16.7_@babel+core@7.18.5: resolution: {integrity: sha512-14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 - '@babel/helper-replace-supers': 7.16.7 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.17.12 + '@babel/helper-replace-supers': 7.18.2 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-parameters/7.16.7_@babel+core@7.12.9: - resolution: {integrity: sha512-AT3MufQ7zZEhU2hwOA11axBnExW0Lszu4RL/tAlUJBuNoRak+wehQW8h6KcXOcgjY42fHtDxswuMhMjFEuv/aw==} + /@babel/plugin-transform-parameters/7.17.12_@babel+core@7.12.9: + resolution: {integrity: sha512-6qW4rWo1cyCdq1FkYri7AHpauchbGLXpdwnYsfxFb+KtddHENfsY5JZb35xUwkK5opOLcJ3BNd2l7PhRYGlwIA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-transform-parameters/7.16.7_@babel+core@7.17.10: - resolution: {integrity: sha512-AT3MufQ7zZEhU2hwOA11axBnExW0Lszu4RL/tAlUJBuNoRak+wehQW8h6KcXOcgjY42fHtDxswuMhMjFEuv/aw==} + /@babel/plugin-transform-parameters/7.17.12_@babel+core@7.18.5: + resolution: {integrity: sha512-6qW4rWo1cyCdq1FkYri7AHpauchbGLXpdwnYsfxFb+KtddHENfsY5JZb35xUwkK5opOLcJ3BNd2l7PhRYGlwIA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-transform-property-literals/7.16.7_@babel+core@7.17.10: + /@babel/plugin-transform-property-literals/7.16.7_@babel+core@7.18.5: resolution: {integrity: sha512-z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-transform-react-display-name/7.16.7_@babel+core@7.17.10: + /@babel/plugin-transform-react-display-name/7.16.7_@babel+core@7.18.5: resolution: {integrity: sha512-qgIg8BcZgd0G/Cz916D5+9kqX0c7nPZyXaP8R2tLNN5tkyIZdG5fEwBrxwplzSnjC1jvQmyMNVwUCZPcbGY7Pg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-transform-react-jsx-development/7.16.7_@babel+core@7.17.10: + /@babel/plugin-transform-react-jsx-development/7.16.7_@babel+core@7.18.5: resolution: {integrity: sha512-RMvQWvpla+xy6MlBpPlrKZCMRs2AGiHOGHY3xRwl0pEeim348dDyxeH4xBsMPbIMhujeq7ihE702eM2Ew0Wo+A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/plugin-transform-react-jsx': 7.17.3_@babel+core@7.17.10 + '@babel/core': 7.18.5 + '@babel/plugin-transform-react-jsx': 7.17.12_@babel+core@7.18.5 dev: true - /@babel/plugin-transform-react-jsx/7.17.3_@babel+core@7.17.10: - resolution: {integrity: sha512-9tjBm4O07f7mzKSIlEmPdiE6ub7kfIe6Cd+w+oQebpATfTQMAgW+YOuWxogbKVTulA+MEO7byMeIUtQ1z+z+ZQ==} + /@babel/plugin-transform-react-jsx/7.17.12_@babel+core@7.18.5: + resolution: {integrity: sha512-Lcaw8bxd1DKht3thfD4A12dqo1X16he1Lm8rIv8sTwjAYNInRS1qHa9aJoqvzpscItXvftKDCfaEQzwoVyXpEQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 + '@babel/core': 7.18.5 '@babel/helper-annotate-as-pure': 7.16.7 '@babel/helper-module-imports': 7.16.7 - '@babel/helper-plugin-utils': 7.16.7 - '@babel/plugin-syntax-jsx': 7.16.7_@babel+core@7.17.10 - '@babel/types': 7.17.10 + '@babel/helper-plugin-utils': 7.17.12 + '@babel/plugin-syntax-jsx': 7.17.12_@babel+core@7.18.5 + '@babel/types': 7.18.4 dev: true - /@babel/plugin-transform-react-pure-annotations/7.16.7_@babel+core@7.17.10: - resolution: {integrity: sha512-hs71ToC97k3QWxswh2ElzMFABXHvGiJ01IB1TbYQDGeWRKWz/MPUTh5jGExdHvosYKpnJW5Pm3S4+TA3FyX+GA==} + /@babel/plugin-transform-react-pure-annotations/7.18.0_@babel+core@7.18.5: + resolution: {integrity: sha512-6+0IK6ouvqDn9bmEG7mEyF/pwlJXVj5lwydybpyyH3D0A7Hftk+NCTdYjnLNZksn261xaOV5ksmp20pQEmc2RQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 + '@babel/core': 7.18.5 '@babel/helper-annotate-as-pure': 7.16.7 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-transform-regenerator/7.17.9_@babel+core@7.17.10: - resolution: {integrity: sha512-Lc2TfbxR1HOyn/c6b4Y/b6NHoTb67n/IoWLxTu4kC7h4KQnWlhCq2S8Tx0t2SVvv5Uu87Hs+6JEJ5kt2tYGylQ==} + /@babel/plugin-transform-regenerator/7.18.0_@babel+core@7.18.5: + resolution: {integrity: sha512-C8YdRw9uzx25HSIzwA7EM7YP0FhCe5wNvJbZzjVNHHPGVcDJ3Aie+qGYYdS1oVQgn+B3eAIJbWFLrJ4Jipv7nw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.17.12 regenerator-transform: 0.15.0 dev: true - /@babel/plugin-transform-reserved-words/7.16.7_@babel+core@7.17.10: - resolution: {integrity: sha512-KQzzDnZ9hWQBjwi5lpY5v9shmm6IVG0U9pB18zvMu2i4H90xpT4gmqwPYsn8rObiadYe2M0gmgsiOIF5A/2rtg==} + /@babel/plugin-transform-reserved-words/7.17.12_@babel+core@7.18.5: + resolution: {integrity: sha512-1KYqwbJV3Co03NIi14uEHW8P50Md6KqFgt0FfpHdK6oyAHQVTosgPuPSiWud1HX0oYJ1hGRRlk0fP87jFpqXZA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-transform-runtime/7.17.10_@babel+core@7.17.10: - resolution: {integrity: sha512-6jrMilUAJhktTr56kACL8LnWC5hx3Lf27BS0R0DSyW/OoJfb/iTHeE96V3b1dgKG3FSFdd/0culnYWMkjcKCig==} + /@babel/plugin-transform-runtime/7.18.5_@babel+core@7.18.5: + resolution: {integrity: sha512-Q17hHxXr2fplrE+5BSC1j1Fo5cOA8YeP8XW3/1paI8MzF/faZGh0MaH1KC4jLAvqLPamQWHB5/B7KqSLY1kuHA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 + '@babel/core': 7.18.5 '@babel/helper-module-imports': 7.16.7 - '@babel/helper-plugin-utils': 7.16.7 - babel-plugin-polyfill-corejs2: 0.3.1_@babel+core@7.17.10 - babel-plugin-polyfill-corejs3: 0.5.2_@babel+core@7.17.10 - babel-plugin-polyfill-regenerator: 0.3.1_@babel+core@7.17.10 + '@babel/helper-plugin-utils': 7.17.12 + babel-plugin-polyfill-corejs2: 0.3.1_@babel+core@7.18.5 + babel-plugin-polyfill-corejs3: 0.5.2_@babel+core@7.18.5 + babel-plugin-polyfill-regenerator: 0.3.1_@babel+core@7.18.5 semver: 6.3.0 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-shorthand-properties/7.16.7_@babel+core@7.17.10: + /@babel/plugin-transform-shorthand-properties/7.16.7_@babel+core@7.18.5: resolution: {integrity: sha512-hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-transform-spread/7.16.7_@babel+core@7.17.10: - resolution: {integrity: sha512-+pjJpgAngb53L0iaA5gU/1MLXJIfXcYepLgXB3esVRf4fqmj8f2cxM3/FKaHsZms08hFQJkFccEWuIpm429TXg==} + /@babel/plugin-transform-spread/7.17.12_@babel+core@7.18.5: + resolution: {integrity: sha512-9pgmuQAtFi3lpNUstvG9nGfk9DkrdmWNp9KeKPFmuZCpEnxRzYlS8JgwPjYj+1AWDOSvoGN0H30p1cBOmT/Svg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.17.12 '@babel/helper-skip-transparent-expression-wrappers': 7.16.0 dev: true - /@babel/plugin-transform-sticky-regex/7.16.7_@babel+core@7.17.10: + /@babel/plugin-transform-sticky-regex/7.16.7_@babel+core@7.18.5: resolution: {integrity: sha512-NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-transform-template-literals/7.16.7_@babel+core@7.17.10: - resolution: {integrity: sha512-VwbkDDUeenlIjmfNeDX/V0aWrQH2QiVyJtwymVQSzItFDTpxfyJh3EVaQiS0rIN/CqbLGr0VcGmuwyTdZtdIsA==} + /@babel/plugin-transform-template-literals/7.18.2_@babel+core@7.18.5: + resolution: {integrity: sha512-/cmuBVw9sZBGZVOMkpAEaVLwm4JmK2GZ1dFKOGGpMzEHWFmyZZ59lUU0PdRr8YNYeQdNzTDwuxP2X2gzydTc9g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-transform-typeof-symbol/7.16.7_@babel+core@7.17.10: - resolution: {integrity: sha512-p2rOixCKRJzpg9JB4gjnG4gjWkWa89ZoYUnl9snJ1cWIcTH/hvxZqfO+WjG6T8DRBpctEol5jw1O5rA8gkCokQ==} + /@babel/plugin-transform-typeof-symbol/7.17.12_@babel+core@7.18.5: + resolution: {integrity: sha512-Q8y+Jp7ZdtSPXCThB6zjQ74N3lj0f6TDh1Hnf5B+sYlzQ8i5Pjp8gW0My79iekSpT4WnI06blqP6DT0OmaXXmw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-transform-typescript/7.16.8_@babel+core@7.17.10: - resolution: {integrity: sha512-bHdQ9k7YpBDO2d0NVfkj51DpQcvwIzIusJ7mEUaMlbZq3Kt/U47j24inXZHQ5MDiYpCs+oZiwnXyKedE8+q7AQ==} + /@babel/plugin-transform-typescript/7.18.4_@babel+core@7.18.5: + resolution: {integrity: sha512-l4vHuSLUajptpHNEOUDEGsnpl9pfRLsN1XUoDQDD/YBuXTM+v37SHGS+c6n4jdcZy96QtuUuSvZYMLSSsjH8Mw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-create-class-features-plugin': 7.17.9_@babel+core@7.17.10 - '@babel/helper-plugin-utils': 7.16.7 - '@babel/plugin-syntax-typescript': 7.17.10_@babel+core@7.17.10 + '@babel/core': 7.18.5 + '@babel/helper-create-class-features-plugin': 7.18.0_@babel+core@7.18.5 + '@babel/helper-plugin-utils': 7.17.12 + '@babel/plugin-syntax-typescript': 7.17.12_@babel+core@7.18.5 transitivePeerDependencies: - supports-color dev: true - /@babel/plugin-transform-unicode-escapes/7.16.7_@babel+core@7.17.10: + /@babel/plugin-transform-unicode-escapes/7.16.7_@babel+core@7.18.5: resolution: {integrity: sha512-TAV5IGahIz3yZ9/Hfv35TV2xEm+kaBDaZQCn2S/hG9/CZ0DktxJv9eKfPc7yYCvOYR4JGx1h8C+jcSOvgaaI/Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.17.12 dev: true - /@babel/plugin-transform-unicode-regex/7.16.7_@babel+core@7.17.10: + /@babel/plugin-transform-unicode-regex/7.16.7_@babel+core@7.18.5: resolution: {integrity: sha512-oC5tYYKw56HO75KZVLQ+R/Nl3Hro9kf8iG0hXoaHP7tjAyCpvqBiSNe6vGrZni1Z6MggmUOC6A7VP7AVmw225Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-create-regexp-features-plugin': 7.17.0_@babel+core@7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.5 + '@babel/helper-create-regexp-features-plugin': 7.17.12_@babel+core@7.18.5 + '@babel/helper-plugin-utils': 7.17.12 dev: true /@babel/polyfill/7.12.1: @@ -3821,152 +3865,153 @@ packages: regenerator-runtime: 0.13.9 dev: false - /@babel/preset-env/7.17.10_@babel+core@7.17.10: - resolution: {integrity: sha512-YNgyBHZQpeoBSRBg0xixsZzfT58Ze1iZrajvv0lJc70qDDGuGfonEnMGfWeSY0mQ3JTuCWFbMkzFRVafOyJx4g==} + /@babel/preset-env/7.18.2_@babel+core@7.18.5: + resolution: {integrity: sha512-PfpdxotV6afmXMU47S08F9ZKIm2bJIQ0YbAAtDfIENX7G1NUAXigLREh69CWDjtgUy7dYn7bsMzkgdtAlmS68Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.17.10 - '@babel/core': 7.17.10 - '@babel/helper-compilation-targets': 7.17.10_@babel+core@7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/compat-data': 7.18.5 + '@babel/core': 7.18.5 + '@babel/helper-compilation-targets': 7.18.2_@babel+core@7.18.5 + '@babel/helper-plugin-utils': 7.17.12 '@babel/helper-validator-option': 7.16.7 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-proposal-async-generator-functions': 7.16.8_@babel+core@7.17.10 - '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-proposal-class-static-block': 7.17.6_@babel+core@7.17.10 - '@babel/plugin-proposal-dynamic-import': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-proposal-export-namespace-from': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-proposal-json-strings': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-proposal-logical-assignment-operators': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-proposal-numeric-separator': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-proposal-object-rest-spread': 7.17.3_@babel+core@7.17.10 - '@babel/plugin-proposal-optional-catch-binding': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-proposal-private-methods': 7.16.11_@babel+core@7.17.10 - '@babel/plugin-proposal-private-property-in-object': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-proposal-unicode-property-regex': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.17.10 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.17.10 - '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.17.10 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.17.10 - '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.17.10 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.17.10 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.17.10 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.17.10 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.17.10 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.17.10 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.17.10 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.17.10 - '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.17.10 - '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.17.10 - '@babel/plugin-transform-arrow-functions': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-transform-async-to-generator': 7.16.8_@babel+core@7.17.10 - '@babel/plugin-transform-block-scoped-functions': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-transform-block-scoping': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-transform-classes': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-transform-computed-properties': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-transform-destructuring': 7.17.7_@babel+core@7.17.10 - '@babel/plugin-transform-dotall-regex': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-transform-duplicate-keys': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-transform-exponentiation-operator': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-transform-for-of': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-transform-function-name': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-transform-literals': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-transform-member-expression-literals': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-transform-modules-amd': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-transform-modules-commonjs': 7.17.9_@babel+core@7.17.10 - '@babel/plugin-transform-modules-systemjs': 7.17.8_@babel+core@7.17.10 - '@babel/plugin-transform-modules-umd': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-transform-named-capturing-groups-regex': 7.17.10_@babel+core@7.17.10 - '@babel/plugin-transform-new-target': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-transform-object-super': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-transform-property-literals': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-transform-regenerator': 7.17.9_@babel+core@7.17.10 - '@babel/plugin-transform-reserved-words': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-transform-spread': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-transform-sticky-regex': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-transform-typeof-symbol': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-transform-unicode-escapes': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-transform-unicode-regex': 7.16.7_@babel+core@7.17.10 - '@babel/preset-modules': 0.1.5_@babel+core@7.17.10 - '@babel/types': 7.17.10 - babel-plugin-polyfill-corejs2: 0.3.1_@babel+core@7.17.10 - babel-plugin-polyfill-corejs3: 0.5.2_@babel+core@7.17.10 - babel-plugin-polyfill-regenerator: 0.3.1_@babel+core@7.17.10 - core-js-compat: 3.22.4 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-proposal-async-generator-functions': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-proposal-class-properties': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-proposal-class-static-block': 7.18.0_@babel+core@7.18.5 + '@babel/plugin-proposal-dynamic-import': 7.16.7_@babel+core@7.18.5 + '@babel/plugin-proposal-export-namespace-from': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-proposal-json-strings': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-proposal-logical-assignment-operators': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-proposal-numeric-separator': 7.16.7_@babel+core@7.18.5 + '@babel/plugin-proposal-object-rest-spread': 7.18.0_@babel+core@7.18.5 + '@babel/plugin-proposal-optional-catch-binding': 7.16.7_@babel+core@7.18.5 + '@babel/plugin-proposal-optional-chaining': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-proposal-private-methods': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-proposal-private-property-in-object': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-proposal-unicode-property-regex': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.5 + '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.18.5 + '@babel/plugin-syntax-class-static-block': 7.14.5_@babel+core@7.18.5 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.5 + '@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.18.5 + '@babel/plugin-syntax-import-assertions': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.5 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.5 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.5 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.5 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.5 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.5 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.5 + '@babel/plugin-syntax-private-property-in-object': 7.14.5_@babel+core@7.18.5 + '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.18.5 + '@babel/plugin-transform-arrow-functions': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-transform-async-to-generator': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-transform-block-scoped-functions': 7.16.7_@babel+core@7.18.5 + '@babel/plugin-transform-block-scoping': 7.18.4_@babel+core@7.18.5 + '@babel/plugin-transform-classes': 7.18.4_@babel+core@7.18.5 + '@babel/plugin-transform-computed-properties': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-transform-destructuring': 7.18.0_@babel+core@7.18.5 + '@babel/plugin-transform-dotall-regex': 7.16.7_@babel+core@7.18.5 + '@babel/plugin-transform-duplicate-keys': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-transform-exponentiation-operator': 7.16.7_@babel+core@7.18.5 + '@babel/plugin-transform-for-of': 7.18.1_@babel+core@7.18.5 + '@babel/plugin-transform-function-name': 7.16.7_@babel+core@7.18.5 + '@babel/plugin-transform-literals': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-transform-member-expression-literals': 7.16.7_@babel+core@7.18.5 + '@babel/plugin-transform-modules-amd': 7.18.0_@babel+core@7.18.5 + '@babel/plugin-transform-modules-commonjs': 7.18.2_@babel+core@7.18.5 + '@babel/plugin-transform-modules-systemjs': 7.18.5_@babel+core@7.18.5 + '@babel/plugin-transform-modules-umd': 7.18.0_@babel+core@7.18.5 + '@babel/plugin-transform-named-capturing-groups-regex': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-transform-new-target': 7.18.5_@babel+core@7.18.5 + '@babel/plugin-transform-object-super': 7.16.7_@babel+core@7.18.5 + '@babel/plugin-transform-parameters': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-transform-property-literals': 7.16.7_@babel+core@7.18.5 + '@babel/plugin-transform-regenerator': 7.18.0_@babel+core@7.18.5 + '@babel/plugin-transform-reserved-words': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.18.5 + '@babel/plugin-transform-spread': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-transform-sticky-regex': 7.16.7_@babel+core@7.18.5 + '@babel/plugin-transform-template-literals': 7.18.2_@babel+core@7.18.5 + '@babel/plugin-transform-typeof-symbol': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-transform-unicode-escapes': 7.16.7_@babel+core@7.18.5 + '@babel/plugin-transform-unicode-regex': 7.16.7_@babel+core@7.18.5 + '@babel/preset-modules': 0.1.5_@babel+core@7.18.5 + '@babel/types': 7.18.4 + babel-plugin-polyfill-corejs2: 0.3.1_@babel+core@7.18.5 + babel-plugin-polyfill-corejs3: 0.5.2_@babel+core@7.18.5 + babel-plugin-polyfill-regenerator: 0.3.1_@babel+core@7.18.5 + core-js-compat: 3.23.1 semver: 6.3.0 transitivePeerDependencies: - supports-color dev: true - /@babel/preset-flow/7.16.7_@babel+core@7.17.10: - resolution: {integrity: sha512-6ceP7IyZdUYQ3wUVqyRSQXztd1YmFHWI4Xv11MIqAlE4WqxBSd/FZ61V9k+TS5Gd4mkHOtQtPp9ymRpxH4y1Ug==} + /@babel/preset-flow/7.17.12_@babel+core@7.18.5: + resolution: {integrity: sha512-7QDz7k4uiaBdu7N89VKjUn807pJRXmdirQu0KyR9LXnQrr5Jt41eIMKTS7ljej+H29erwmMrwq9Io9mJHLI3Lw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.17.12 '@babel/helper-validator-option': 7.16.7 - '@babel/plugin-transform-flow-strip-types': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-transform-flow-strip-types': 7.17.12_@babel+core@7.18.5 dev: true - /@babel/preset-modules/0.1.5_@babel+core@7.17.10: + /@babel/preset-modules/0.1.5_@babel+core@7.18.5: resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 - '@babel/plugin-proposal-unicode-property-regex': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-transform-dotall-regex': 7.16.7_@babel+core@7.17.10 - '@babel/types': 7.17.10 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.17.12 + '@babel/plugin-proposal-unicode-property-regex': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-transform-dotall-regex': 7.16.7_@babel+core@7.18.5 + '@babel/types': 7.18.4 esutils: 2.0.3 dev: true - /@babel/preset-react/7.16.7_@babel+core@7.17.10: - resolution: {integrity: sha512-fWpyI8UM/HE6DfPBzD8LnhQ/OcH8AgTaqcqP2nGOXEUV+VKBR5JRN9hCk9ai+zQQ57vtm9oWeXguBCPNUjytgA==} + /@babel/preset-react/7.17.12_@babel+core@7.18.5: + resolution: {integrity: sha512-h5U+rwreXtZaRBEQhW1hOJLMq8XNJBQ/9oymXiCXTuT/0uOwpbT0gUt+sXeOqoXBgNuUKI7TaObVwoEyWkpFgA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.17.12 '@babel/helper-validator-option': 7.16.7 - '@babel/plugin-transform-react-display-name': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-transform-react-jsx': 7.17.3_@babel+core@7.17.10 - '@babel/plugin-transform-react-jsx-development': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-transform-react-pure-annotations': 7.16.7_@babel+core@7.17.10 + '@babel/plugin-transform-react-display-name': 7.16.7_@babel+core@7.18.5 + '@babel/plugin-transform-react-jsx': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-transform-react-jsx-development': 7.16.7_@babel+core@7.18.5 + '@babel/plugin-transform-react-pure-annotations': 7.18.0_@babel+core@7.18.5 dev: true - /@babel/preset-typescript/7.16.7_@babel+core@7.17.10: - resolution: {integrity: sha512-WbVEmgXdIyvzB77AQjGBEyYPZx+8tTsO50XtfozQrkW8QB2rLJpH2lgx0TRw5EJrBxOZQ+wCcyPVQvS8tjEHpQ==} + /@babel/preset-typescript/7.17.12_@babel+core@7.18.5: + resolution: {integrity: sha512-S1ViF8W2QwAKUGJXxP9NAfNaqGDdEBJKpYkxHf5Yy2C4NPPzXGeR3Lhk7G8xJaaLcFTRfNjVbtbVtm8Gb0mqvg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-plugin-utils': 7.16.7 + '@babel/core': 7.18.5 + '@babel/helper-plugin-utils': 7.17.12 '@babel/helper-validator-option': 7.16.7 - '@babel/plugin-transform-typescript': 7.16.8_@babel+core@7.17.10 + '@babel/plugin-transform-typescript': 7.18.4_@babel+core@7.18.5 transitivePeerDependencies: - supports-color dev: true - /@babel/register/7.17.7_@babel+core@7.17.10: + /@babel/register/7.17.7_@babel+core@7.18.5: resolution: {integrity: sha512-fg56SwvXRifootQEDQAu1mKdjh5uthPzdO0N6t358FktfL4XjAVXuH58ULoiW8mesxiOgNIrxiImqEwv0+hRRA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 + '@babel/core': 7.18.5 clone-deep: 4.0.1 find-cache-dir: 2.1.0 make-dir: 2.1.0 @@ -3974,16 +4019,16 @@ packages: source-map-support: 0.5.21 dev: true - /@babel/runtime-corejs3/7.17.9: - resolution: {integrity: sha512-WxYHHUWF2uZ7Hp1K+D1xQgbgkGUfA+5UPOegEXGt2Y5SMog/rYCVaifLZDbw8UkNXozEqqrZTy6bglL7xTaCOw==} + /@babel/runtime-corejs3/7.18.3: + resolution: {integrity: sha512-l4ddFwrc9rnR+EJsHsh+TJ4A35YqQz/UqcjtlX2ov53hlJYG5CxtQmNZxyajwDVmCxwy++rtvGU5HazCK4W41Q==} engines: {node: '>=6.9.0'} dependencies: - core-js-pure: 3.22.4 + core-js-pure: 3.23.1 regenerator-runtime: 0.13.9 dev: true - /@babel/runtime/7.17.9: - resolution: {integrity: sha512-lSiBBvodq29uShpWGNbgFdKYNiFDo5/HIYsaCEY9ff4sb10x9jizo2+pRrSyF4jKZCXqgzuqBOQKbUm90gQwJg==} + /@babel/runtime/7.18.3: + resolution: {integrity: sha512-38Y8f7YUhce/K7RMwTp7m0uCumpv9hZkitCbBClqQIow1qSbCvGkcegKOXpEWCQLfWmevgRiWokZ1GkpfhbZug==} engines: {node: '>=6.9.0'} dependencies: regenerator-runtime: 0.13.9 @@ -3993,46 +4038,45 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.16.7 - '@babel/parser': 7.17.10 - '@babel/types': 7.17.10 + '@babel/parser': 7.18.5 + '@babel/types': 7.18.4 - /@babel/traverse/7.17.10: - resolution: {integrity: sha512-VmbrTHQteIdUUQNTb+zE12SHS/xQVIShmBPhlNP12hD5poF2pbITW1Z4172d03HegaQWhLffdkRJYtAzp0AGcw==} + /@babel/traverse/7.18.5: + resolution: {integrity: sha512-aKXj1KT66sBj0vVzk6rEeAO6Z9aiiQ68wfDgge3nHhA/my6xMM/7HGQUNumKZaoa2qUPQ5whJG9aAifsxUKfLA==} engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.16.7 - '@babel/generator': 7.17.10 - '@babel/helper-environment-visitor': 7.16.7 + '@babel/generator': 7.18.2 + '@babel/helper-environment-visitor': 7.18.2 '@babel/helper-function-name': 7.17.9 '@babel/helper-hoist-variables': 7.16.7 '@babel/helper-split-export-declaration': 7.16.7 - '@babel/parser': 7.17.10 - '@babel/types': 7.17.10 + '@babel/parser': 7.18.5 + '@babel/types': 7.18.4 debug: 4.3.4 globals: 11.12.0 transitivePeerDependencies: - supports-color - dev: true - /@babel/traverse/7.17.10_supports-color@5.5.0: - resolution: {integrity: sha512-VmbrTHQteIdUUQNTb+zE12SHS/xQVIShmBPhlNP12hD5poF2pbITW1Z4172d03HegaQWhLffdkRJYtAzp0AGcw==} + /@babel/traverse/7.18.5_supports-color@5.5.0: + resolution: {integrity: sha512-aKXj1KT66sBj0vVzk6rEeAO6Z9aiiQ68wfDgge3nHhA/my6xMM/7HGQUNumKZaoa2qUPQ5whJG9aAifsxUKfLA==} engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.16.7 - '@babel/generator': 7.17.10 - '@babel/helper-environment-visitor': 7.16.7 + '@babel/generator': 7.18.2 + '@babel/helper-environment-visitor': 7.18.2 '@babel/helper-function-name': 7.17.9 '@babel/helper-hoist-variables': 7.16.7 '@babel/helper-split-export-declaration': 7.16.7 - '@babel/parser': 7.17.10 - '@babel/types': 7.17.10 + '@babel/parser': 7.18.5 + '@babel/types': 7.18.4 debug: 4.3.4_supports-color@5.5.0 globals: 11.12.0 transitivePeerDependencies: - supports-color - /@babel/types/7.17.10: - resolution: {integrity: sha512-9O26jG0mBYfGkUYCYZRnBwbVLd1UZOICEr2Em6InB6jVfsAv1GKgwXHmrSg+WFWDmeKTA6vyTZiN8tCSM5Oo3A==} + /@babel/types/7.18.4: + resolution: {integrity: sha512-ThN1mBcMq5pG/Vm2IcBmPPfyPXbd8S02rS+OBIDENdufvqC7Z/jHPCv9IcP01277aKtDI8g/2XysBN4hA8niiw==} engines: {node: '>=6.9.0'} dependencies: '@babel/helper-validator-identifier': 7.16.7 @@ -4046,773 +4090,776 @@ packages: resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} dev: true - /@chakra-ui/accordion/1.4.11_434493a850c3cc256e243ee9a5bbfb37: - resolution: {integrity: sha512-d/gvSgGwcZaJXxXqGmecpAgko/tUYb5vR0E0B2/V/z9AVbS8ei//fbiO9+8Ouyl/K46oWHWYj5vt8iTadlZleg==} + /@chakra-ui/accordion/2.0.3_vtyuavm5aokxji6drgmjpa5nda: + resolution: {integrity: sha512-3fu5q6I6QtYVfpBHK+xxIkZ3b/spHgDongXuKuLEJZswcSU8+X5B9YmNfv73ZMRKO3PboYtyHAmZZo4pYqzbbA==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - framer-motion: 3.x || 4.x || 5.x || 6.x - react: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + framer-motion: '>=4.0.0' + react: '>=18 || 18' dependencies: - '@chakra-ui/descendant': 2.1.3_react@17.0.2 - '@chakra-ui/hooks': 1.9.1_react@17.0.2 - '@chakra-ui/icon': 2.0.5_ec02b824bed6ab9ca8725186341c5110 - '@chakra-ui/react-utils': 1.2.3_react@17.0.2 - '@chakra-ui/system': 1.12.1_09a0c9559c3e7c8c898f158921333fde - '@chakra-ui/transition': 1.4.8_framer-motion@6.3.3+react@17.0.2 - '@chakra-ui/utils': 1.10.4 - framer-motion: 6.3.3_react-dom@17.0.2+react@17.0.2 - react: 17.0.2 + '@chakra-ui/descendant': 3.0.2_react@18.2.0 + '@chakra-ui/hooks': 2.0.2_react@18.2.0 + '@chakra-ui/icon': 3.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/react-utils': 2.0.1_react@18.2.0 + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/transition': 2.0.2_rz5u7j3atdl3v3dzr2ouz3vbga + '@chakra-ui/utils': 2.0.2 + framer-motion: 6.3.15_biqbaboplfbrettd7655fr4n2y + react: 18.2.0 dev: false - /@chakra-ui/alert/1.3.7_ec02b824bed6ab9ca8725186341c5110: - resolution: {integrity: sha512-fFpJYBpHOIK/BX4BVl/xafYiDBUW+Bq/gUYDOo4iAiO4vHgxo74oa+yOwSRNlNjAgIX7pi2ridsYQALKyWyxxQ==} + /@chakra-ui/alert/2.0.2_smtw3k2wuexenqj33awaujbhle: + resolution: {integrity: sha512-QqXFYeX74mHSVp5Peqc+0CkYGQlvKQzpvOKkn00M3ZczsgVxoDNrUv0PI2V3fuZDwo1ziLBGJsjgMFbJ+JrYgA==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - react: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + react: '>=18 || 18' dependencies: - '@chakra-ui/icon': 2.0.5_ec02b824bed6ab9ca8725186341c5110 - '@chakra-ui/react-utils': 1.2.3_react@17.0.2 - '@chakra-ui/system': 1.12.1_09a0c9559c3e7c8c898f158921333fde - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/icon': 3.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/react-utils': 2.0.1_react@18.2.0 + '@chakra-ui/spinner': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/utils': 2.0.2 + react: 18.2.0 dev: false - /@chakra-ui/anatomy/1.3.0_@chakra-ui+system@1.12.1: - resolution: {integrity: sha512-vj/lcHkCuq/dtbl69DkNsftZTnrGEegB90ODs1B6rxw8iVMdDSYkthPPFAkqzNs4ppv1y2IBjELuVzpeta1OHA==} + /@chakra-ui/anatomy/2.0.1_@chakra-ui+system@2.1.3: + resolution: {integrity: sha512-lbOUfPmCtgIe0G7Iu6C2MaFP3FKOHgKWxDrYc3498TQ7/z5N1r7AO6jB+gFRGDbxJNLjRGOLG7tV0bufagGTUw==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' + '@chakra-ui/system': '>=2.0.0-next.0' dependencies: - '@chakra-ui/system': 1.12.1_09a0c9559c3e7c8c898f158921333fde - '@chakra-ui/theme-tools': 1.3.6_@chakra-ui+system@1.12.1 + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/theme-tools': 2.0.2_@chakra-ui+system@2.1.3 dev: false - /@chakra-ui/avatar/1.3.11_ec02b824bed6ab9ca8725186341c5110: - resolution: {integrity: sha512-/eRRK48Er92/QWAfWhxsJIN0gZBBvk+ew4Hglo+pxt3/NDnfTF2yPE7ZN29Dl6daPNbyTOpoksMwaU2mZIqLgA==} + /@chakra-ui/avatar/2.0.3_smtw3k2wuexenqj33awaujbhle: + resolution: {integrity: sha512-LbCQBJzDLkx2jqOjuEG5zOWA5njEAhUlQ3GnSkqOGaiDQWgM6eSLxWkgpI5fKhBlZ2OvMxjSSFaCCpf8wvU+YQ==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - react: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + react: '>=18 || 18' dependencies: - '@chakra-ui/image': 1.1.10_ec02b824bed6ab9ca8725186341c5110 - '@chakra-ui/react-utils': 1.2.3_react@17.0.2 - '@chakra-ui/system': 1.12.1_09a0c9559c3e7c8c898f158921333fde - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/image': 2.0.3_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/react-utils': 2.0.1_react@18.2.0 + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/utils': 2.0.2 + react: 18.2.0 dev: false - /@chakra-ui/breadcrumb/1.3.6_ec02b824bed6ab9ca8725186341c5110: - resolution: {integrity: sha512-iXxienBO6RUnJEcDvyDWyRt+mzPyl7/b6N8i0vrjGKGLpgtayJFvIdo33tFcvx6TCy7V9hiE3HTtZnNomWdR6A==} + /@chakra-ui/breadcrumb/2.0.2_smtw3k2wuexenqj33awaujbhle: + resolution: {integrity: sha512-rJOkgaWqtxaPfISNXjhl9J4efD96FBnQnAKQJZtlG3WpWmIse/BPv1Pg4OCexPTBQQSwFkbTBgBD0lWD/i2UUw==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - react: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + react: '>=18 || 18' dependencies: - '@chakra-ui/react-utils': 1.2.3_react@17.0.2 - '@chakra-ui/system': 1.12.1_09a0c9559c3e7c8c898f158921333fde - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/react-utils': 2.0.1_react@18.2.0 + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/utils': 2.0.2 + react: 18.2.0 dev: false - /@chakra-ui/button/1.5.10_ec02b824bed6ab9ca8725186341c5110: - resolution: {integrity: sha512-IVEOrleI378CckAa3b3CTUHMPZRfpy6LPwn1Mx3sMpHEkDTKu8zJcjgEvCE8HYzNC1KbwBsa1PfTgk40ui6EtA==} + /@chakra-ui/button/2.0.2_smtw3k2wuexenqj33awaujbhle: + resolution: {integrity: sha512-l2RE1031HR+vVqNQhfrJCuC1OzKTTLmyA8+ScGZhjV6G4LWGzU5LfsyGAXq53l1lFcx6O9XJzfgnxAvnGGKJsw==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - react: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + react: '>=18 || 18' dependencies: - '@chakra-ui/hooks': 1.9.1_react@17.0.2 - '@chakra-ui/react-utils': 1.2.3_react@17.0.2 - '@chakra-ui/spinner': 1.2.6_ec02b824bed6ab9ca8725186341c5110 - '@chakra-ui/system': 1.12.1_09a0c9559c3e7c8c898f158921333fde - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/hooks': 2.0.2_react@18.2.0 + '@chakra-ui/react-utils': 2.0.1_react@18.2.0 + '@chakra-ui/spinner': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/utils': 2.0.2 + react: 18.2.0 dev: false - /@chakra-ui/checkbox/1.7.1_434493a850c3cc256e243ee9a5bbfb37: - resolution: {integrity: sha512-9Io97yn8OrdaIynCj+3Z/neJV7lTT1MtcdYh3BKMd7WnoJDkRY/GlBM8zsdgC5Wvm+ZQ1M83t0YvRPKLLzusyA==} + /@chakra-ui/checkbox/2.1.0_vtyuavm5aokxji6drgmjpa5nda: + resolution: {integrity: sha512-LPKhJM/IMp8LKdr52PVfSGAnmqcgwTMPcjyWT8jXQ3OhEXRUKc5rSUORmPtJmffNLjLq1nPCcSMWQsVHhJ9MXw==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - framer-motion: 3.x || 4.x || 5.x || 6.x - react: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + framer-motion: '>=4.0.0' + react: '>=18 || 18' dependencies: - '@chakra-ui/form-control': 1.6.0_ec02b824bed6ab9ca8725186341c5110 - '@chakra-ui/hooks': 1.9.1_react@17.0.2 - '@chakra-ui/react-utils': 1.2.3_react@17.0.2 - '@chakra-ui/system': 1.12.1_09a0c9559c3e7c8c898f158921333fde - '@chakra-ui/utils': 1.10.4 - '@chakra-ui/visually-hidden': 1.1.6_ec02b824bed6ab9ca8725186341c5110 - framer-motion: 6.3.3_react-dom@17.0.2+react@17.0.2 - react: 17.0.2 + '@chakra-ui/form-control': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/hooks': 2.0.2_react@18.2.0 + '@chakra-ui/react-utils': 2.0.1_react@18.2.0 + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/utils': 2.0.2 + '@chakra-ui/visually-hidden': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@zag-js/focus-visible': 0.1.0 + framer-motion: 6.3.15_biqbaboplfbrettd7655fr4n2y + react: 18.2.0 dev: false - /@chakra-ui/clickable/1.2.6_react@17.0.2: - resolution: {integrity: sha512-89SsrQwwwAadcl/bN8nZqqaaVhVNFdBXqQnxVy1t07DL5ezubmNb5SgFh9LDznkm9YYPQhaGr3W6HFro7iAHMg==} + /@chakra-ui/clickable/2.0.2_react@18.2.0: + resolution: {integrity: sha512-Zn0Hd9BCGVNMOXerUlfmOdCeVAyl6XYo5WC/Skm/REAQygk22/WjV42sLeT+1+bpOLpSvO4ZnheXfD5sIuDdfA==} peerDependencies: - react: '>=16.8.6' + react: '>=18 || 18' dependencies: - '@chakra-ui/react-utils': 1.2.3_react@17.0.2 - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/react-utils': 2.0.1_react@18.2.0 + '@chakra-ui/utils': 2.0.2 + react: 18.2.0 dev: false - /@chakra-ui/close-button/1.2.7_ec02b824bed6ab9ca8725186341c5110: - resolution: {integrity: sha512-cYTxfgrIlPU4IZm1sehZXxx/TNQBk9c3LBPvTpywEM8GVRGINh4YLq8WiMaPtO+TDNBnKoWS/jS4IHnR+abADw==} + /@chakra-ui/close-button/2.0.2_smtw3k2wuexenqj33awaujbhle: + resolution: {integrity: sha512-aIpkIQdmbuKTiM1IuZRI4iUPzcaWla8mXysKIL+M6g0QbpaO/Xw3eucnAS0qO24djCzkcCZSLnHsEimBOBJdgA==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - react: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + react: '>=18 || 18' dependencies: - '@chakra-ui/icon': 2.0.5_ec02b824bed6ab9ca8725186341c5110 - '@chakra-ui/system': 1.12.1_09a0c9559c3e7c8c898f158921333fde - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/icon': 3.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/utils': 2.0.2 + react: 18.2.0 dev: false - /@chakra-ui/color-mode/1.4.8_react@17.0.2: - resolution: {integrity: sha512-iD4126DVQi06c6ARr3uf3R2rtEu8aBVjW8rhZ+lOsV26Z15iCJA7OAut13Xu06fcZvgjSB/ChDy6Sx9sV9UjHA==} + /@chakra-ui/color-mode/2.0.4_react@18.2.0: + resolution: {integrity: sha512-DIR6CSPlkmi92LDR3IhjIediLk7GFWttlTUvJQP06ZUvN+iCpd5TjgchxOYzqlP4T9W0L62eZXsluOxmRF/JSQ==} peerDependencies: - react: '>=16.8.6' + react: '>=18 || 18' dependencies: - '@chakra-ui/hooks': 1.9.1_react@17.0.2 - '@chakra-ui/react-env': 1.1.6_react@17.0.2 - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/hooks': 2.0.2_react@18.2.0 + '@chakra-ui/utils': 2.0.2 + react: 18.2.0 dev: false - /@chakra-ui/control-box/1.1.6_ec02b824bed6ab9ca8725186341c5110: - resolution: {integrity: sha512-EUcq5f854puG6ZA6wAWl4107OPl8+bj4MMHJCa48BB0qec0U8HCEtxQGnFwJmaYLalIAjMfHuY3OwO2A3Hi9hA==} + /@chakra-ui/control-box/2.0.2_smtw3k2wuexenqj33awaujbhle: + resolution: {integrity: sha512-D3vQoyCRjAwCmB39jFvTv+fAXmALLhScXe6s/S7rdgSYxuSEksuGlNjvBUYAVwDXeE2sjDoeWMvrHydRGv44Bw==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - react: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + react: '>=18 || 18' dependencies: - '@chakra-ui/system': 1.12.1_09a0c9559c3e7c8c898f158921333fde - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/utils': 2.0.2 + react: 18.2.0 dev: false - /@chakra-ui/counter/1.2.10_react@17.0.2: - resolution: {integrity: sha512-HQd09IuJ4z8M8vWajH+99jBWWSHDesQZmnN95jUg3HKOuNleLaipf2JFdrqbO1uWQyHobn2PM6u+B+JCAh2nig==} + /@chakra-ui/counter/2.0.2_react@18.2.0: + resolution: {integrity: sha512-mRYrnu1924spsPU5GaHSbaoX28Gbzf8PDkO6Y1R6r6MQKTLjpdbkFmyG0QyEixD8aoaSaCO7iVbJRnUJ+dhlww==} peerDependencies: - react: '>=16.8.6' + react: '>=18 || 18' dependencies: - '@chakra-ui/hooks': 1.9.1_react@17.0.2 - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/hooks': 2.0.2_react@18.2.0 + '@chakra-ui/utils': 2.0.2 + react: 18.2.0 dev: false - /@chakra-ui/css-reset/1.1.3_8636826388a0e7ae99fbe5db0e5dc817: - resolution: {integrity: sha512-AgfrE7bRTJvNi/4zIfacI/kBHmHmHEIeQtHwCvk/0qM9V2gK1VM3ctYlnibf7BTh17F/UszweOGRb1lHSPfWjw==} + /@chakra-ui/css-reset/2.0.1_jhgplt4fmhans76oq3ok5iox2u: + resolution: {integrity: sha512-8RhAC7l5RHp9hNDN2M2feZ2wPaoSrgxzqx6VqLTIul2lwucpp1LTlrDlPCBMJe8fp51Q83IOCW4882ktsXxktA==} peerDependencies: '@emotion/react': '>=10.0.35' - react: '>=16.8.6' + react: '>=18 || 18' dependencies: - '@emotion/react': 11.9.0_0191d4f7d13d8e58ed45c49e4813c090 - react: 17.0.2 + '@emotion/react': 11.9.3_7eu627umq2cbnjxmysy5yb5jqq + react: 18.2.0 dev: false - /@chakra-ui/descendant/2.1.3_react@17.0.2: - resolution: {integrity: sha512-aNYNv99gEPENCdw2N5y3FvL5wgBVcLiOzJ2TxSwb4EVYszbgBZ8Ry1pf7lkoSfysdxD0scgy2cVyxO8TsYTU4g==} + /@chakra-ui/descendant/3.0.2_react@18.2.0: + resolution: {integrity: sha512-BV4IpONYr52V7rJnEYj5Ej946HD2BTOgOQpSB/LMeITfkp51/O9pOayNoVghYW7cFts+Opy4YmvLcuxFhWrD3Q==} peerDependencies: - react: '>=16.8.6' + react: '>=18 || 18' dependencies: - '@chakra-ui/react-utils': 1.2.3_react@17.0.2 - react: 17.0.2 + '@chakra-ui/react-utils': 2.0.1_react@18.2.0 + react: 18.2.0 dev: false - /@chakra-ui/editable/1.4.2_ec02b824bed6ab9ca8725186341c5110: - resolution: {integrity: sha512-a5zKghA/IvG7yNkmFl7Z9c2KSsf0FgyijsNPTg/4S5jxyz13QJtoTg40tdpyaxHHCT25y25iUcV4FYCj6Jd01w==} + /@chakra-ui/editable/2.0.2_smtw3k2wuexenqj33awaujbhle: + resolution: {integrity: sha512-hZBD4K1i3a8+RnW5jaoVfHeEm0zDKcyZ7yZCNGmmM7sz2LAw/LdE6+IKBoEbXc5Gf8KnEs9eH/TBcPDhS9KUQg==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - react: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + react: '>=18 || 18' dependencies: - '@chakra-ui/hooks': 1.9.1_react@17.0.2 - '@chakra-ui/react-utils': 1.2.3_react@17.0.2 - '@chakra-ui/system': 1.12.1_09a0c9559c3e7c8c898f158921333fde - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/hooks': 2.0.2_react@18.2.0 + '@chakra-ui/react-utils': 2.0.1_react@18.2.0 + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/utils': 2.0.2 + react: 18.2.0 dev: false - /@chakra-ui/focus-lock/1.2.6_3df41e700a554c2356b362be396a0af4: - resolution: {integrity: sha512-ZJNE1oNdUM1aGWuCJ+bxFa/d3EwxzfMWzTKzSvKDK50GWoUQQ10xFTT9nY/yFpkcwhBvx1KavxKf44mIhIbSog==} + /@chakra-ui/focus-lock/2.0.3_luyos4mouogwq6z3wafb3re4ce: + resolution: {integrity: sha512-QcKUy0n26T1qOEoqk9rDmr9tumZs/+VXh9gIhWYKlmScm8Dy87qCMfOJ2M8/sUCQcqypl8SwlONQdiCZ99FUFQ==} peerDependencies: - react: '>=16.8.6' + react: '>=18 || 18' dependencies: - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 - react-focus-lock: 2.5.2_3df41e700a554c2356b362be396a0af4 + '@chakra-ui/utils': 2.0.2 + react: 18.2.0 + react-focus-lock: 2.9.1_luyos4mouogwq6z3wafb3re4ce transitivePeerDependencies: - '@types/react' dev: false - /@chakra-ui/form-control/1.6.0_ec02b824bed6ab9ca8725186341c5110: - resolution: {integrity: sha512-MtUE98aocP2QTgvyyJ/ABuG33mhT3Ox56phKreG3HzbUKByMwrbQSm1QcAgyYdqSZ9eKB2tXx+qgGNh+avAfDA==} + /@chakra-ui/form-control/2.0.2_smtw3k2wuexenqj33awaujbhle: + resolution: {integrity: sha512-uelLKIZgrcahvodEAd2WjdCJUus9q9Wq++KliN+8VIhPti89s8eewyDh3xWvurbgby+oGkHyjDMmxHrkfa3YYQ==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - react: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + react: '>=18 || 18' dependencies: - '@chakra-ui/hooks': 1.9.1_react@17.0.2 - '@chakra-ui/icon': 2.0.5_ec02b824bed6ab9ca8725186341c5110 - '@chakra-ui/react-utils': 1.2.3_react@17.0.2 - '@chakra-ui/system': 1.12.1_09a0c9559c3e7c8c898f158921333fde - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/hooks': 2.0.2_react@18.2.0 + '@chakra-ui/icon': 3.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/react-utils': 2.0.1_react@18.2.0 + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/utils': 2.0.2 + react: 18.2.0 dev: false - /@chakra-ui/hooks/1.9.1_react@17.0.2: - resolution: {integrity: sha512-SEeh1alDKzrP9gMLWMnXOUDBQDKF/URL6iTmkumTn6vhawWNla6sPrcMyoCzWdMzwUhZp3QNtCKbUm7dxBXvPw==} + /@chakra-ui/hooks/2.0.2_react@18.2.0: + resolution: {integrity: sha512-3B4zsl51tevmO6T6xUKcclwxf4FClKtScaNvb8jMmVczTGRL7WhZ6LxXeYUJMms11C8W9uZczE5yXSP0qweeAw==} peerDependencies: - react: '>=16.8.6' + react: '>=18 || 18' dependencies: - '@chakra-ui/react-utils': 1.2.3_react@17.0.2 - '@chakra-ui/utils': 1.10.4 + '@chakra-ui/react-utils': 2.0.1_react@18.2.0 + '@chakra-ui/utils': 2.0.2 compute-scroll-into-view: 1.0.14 copy-to-clipboard: 3.3.1 - react: 17.0.2 + react: 18.2.0 dev: false - /@chakra-ui/icon/2.0.5_ec02b824bed6ab9ca8725186341c5110: - resolution: {integrity: sha512-ZrqRvCCIxGr4qFd/r1pmtd9tobRmv8KAxV7ygFoc/t4vOSKTcVIjhE12gsI3FzgvXM15ZFVwsxa1zodwgo5neQ==} + /@chakra-ui/icon/3.0.2_smtw3k2wuexenqj33awaujbhle: + resolution: {integrity: sha512-sas37byldn5O/TTIKHzxHBujEYqVPXegisoMqutLtF60fpXnb62aG1JTyorXSG3zJxJWQW7+AvjbOGyWKHXc0Q==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - react: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + react: '>=18 || 18' dependencies: - '@chakra-ui/system': 1.12.1_09a0c9559c3e7c8c898f158921333fde - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/utils': 2.0.2 + react: 18.2.0 dev: false - /@chakra-ui/image/1.1.10_ec02b824bed6ab9ca8725186341c5110: - resolution: {integrity: sha512-PJZmhQ/R1PgdMyCRjALfoyq1FNh/WzMAw70sliHLtLcb9hBXniwQZuckYfUshCkUoFBj/ow9d4byn9Culdpk7Q==} + /@chakra-ui/image/2.0.3_smtw3k2wuexenqj33awaujbhle: + resolution: {integrity: sha512-GLMJXLdR0y7CCZ0hKHf6YZLb8dlPpx4vdXWTbtLnIU5EfGIOSiCU4N3+0KcjvMtDB69hBr5W4h1XMJNpetP1EA==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - react: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + react: '>=18 || 18' dependencies: - '@chakra-ui/hooks': 1.9.1_react@17.0.2 - '@chakra-ui/system': 1.12.1_09a0c9559c3e7c8c898f158921333fde - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/hooks': 2.0.2_react@18.2.0 + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/utils': 2.0.2 + react: 18.2.0 dev: false - /@chakra-ui/input/1.4.6_ec02b824bed6ab9ca8725186341c5110: - resolution: {integrity: sha512-Ljy/NbOhh9cNQxKTWQRsT4aQiXs2vVya+Cj5NpMAz08NFFjPZovsTawhI7m6ejT5Vsh76QYjh2rOLLI3fWqQQw==} + /@chakra-ui/input/2.0.2_smtw3k2wuexenqj33awaujbhle: + resolution: {integrity: sha512-ODwdlsLha+EBPFSnCEqWjlndeXaL4cXvCk4rrKuvs9vexhOBr+X9V6KNn5Rmn/bXah+Wsrn+5g6T9V7BvRES3Q==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - react: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + react: '>=18 || 18' dependencies: - '@chakra-ui/form-control': 1.6.0_ec02b824bed6ab9ca8725186341c5110 - '@chakra-ui/react-utils': 1.2.3_react@17.0.2 - '@chakra-ui/system': 1.12.1_09a0c9559c3e7c8c898f158921333fde - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/form-control': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/react-utils': 2.0.1_react@18.2.0 + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/utils': 2.0.2 + react: 18.2.0 dev: false - /@chakra-ui/layout/1.8.0_ec02b824bed6ab9ca8725186341c5110: - resolution: {integrity: sha512-GJtEKez5AZu0XQTxI6a6jwA/hMDD36pP0HBxBOGuHP1hWCebDzMjraiMfWiP9w7hKERFE4j19kocHxIXyocfJA==} + /@chakra-ui/layout/2.0.2_smtw3k2wuexenqj33awaujbhle: + resolution: {integrity: sha512-iElUGxj8YmVGcaCQlQovJJC4APHMh5vwlZU37IC6W3FdJzv+orVhzbuB98tuzfWHxjKQZeGhcz7+npIkN87D5w==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - react: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + react: '>=18 || 18' dependencies: - '@chakra-ui/icon': 2.0.5_ec02b824bed6ab9ca8725186341c5110 - '@chakra-ui/react-utils': 1.2.3_react@17.0.2 - '@chakra-ui/system': 1.12.1_09a0c9559c3e7c8c898f158921333fde - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/icon': 3.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/react-utils': 2.0.1_react@18.2.0 + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/utils': 2.0.2 + react: 18.2.0 dev: false - /@chakra-ui/live-region/1.1.6_react@17.0.2: - resolution: {integrity: sha512-9gPQHXf7oW0jXyT5R/JzyDMfJ3hF70TqhN8bRH4fMyfNr2Se+SjztMBqCrv5FS5rPjcCeua+e0eArpoB3ROuWQ==} + /@chakra-ui/live-region/2.0.2_react@18.2.0: + resolution: {integrity: sha512-aRJRaJInqNkFRRIjW57SPNhj7ngxh0xkdQZeOohvOcd7VbjvHNgXO1glKjIXRzSRHyteCdGUzb/jo68NizE3bQ==} peerDependencies: - react: '>=16.8.6' + react: '>=18 || 18' dependencies: - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/utils': 2.0.2 + react: 18.2.0 dev: false - /@chakra-ui/media-query/2.0.4_95e3ae800e8ec2b9db829252af6af6dc: - resolution: {integrity: sha512-kn6g/L0IFFUHz2v4yiCsBnhg9jUeA7525Z+AWl+BPtvryi7i9J+AJ27y/QAge7vUGy4dwDeFyxOZTs2oZ9/BsA==} + /@chakra-ui/media-query/3.1.0_swpbf3sk2xubz3bowba44eqanu: + resolution: {integrity: sha512-E05PUom+izNILJff0Yje8OMWHVN5C2H2A/F0aaptIJ+600YNWn5CuGvdlSMb/VWHziHT7u5xyrtv0mdbxMlYBA==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - '@chakra-ui/theme': '>=1.0.0' - react: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + '@chakra-ui/theme': '>=2.0.0-next.0' + react: '>=18 || 18' dependencies: - '@chakra-ui/react-env': 1.1.6_react@17.0.2 - '@chakra-ui/system': 1.12.1_09a0c9559c3e7c8c898f158921333fde - '@chakra-ui/theme': 1.14.1_@chakra-ui+system@1.12.1 - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/react-env': 2.0.2_react@18.2.0 + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/theme': 2.1.0_@chakra-ui+system@2.1.3 + '@chakra-ui/utils': 2.0.2 + react: 18.2.0 dev: false - /@chakra-ui/menu/1.8.11_434493a850c3cc256e243ee9a5bbfb37: - resolution: {integrity: sha512-8K65xItPsdMvSfuGWYIGigOF/QMcy7+D48UIEO/Hu0u0ckd11/JXbpSIFPddH5fYedclJ18PGRohTne487OVjQ==} + /@chakra-ui/menu/2.0.3_vtyuavm5aokxji6drgmjpa5nda: + resolution: {integrity: sha512-hW1XBK0ZOEvnrwurqZiQ7+CFW8Olfk82BilNOulQ7LxQ2hQAAg4JBQxs755jVEtqhSAP+oe/yuWEabWtCWLGQw==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - framer-motion: 3.x || 4.x || 5.x || 6.x - react: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + framer-motion: '>=4.0.0' + react: '>=18 || 18' dependencies: - '@chakra-ui/clickable': 1.2.6_react@17.0.2 - '@chakra-ui/descendant': 2.1.3_react@17.0.2 - '@chakra-ui/hooks': 1.9.1_react@17.0.2 - '@chakra-ui/popper': 2.4.3_react@17.0.2 - '@chakra-ui/react-utils': 1.2.3_react@17.0.2 - '@chakra-ui/system': 1.12.1_09a0c9559c3e7c8c898f158921333fde - '@chakra-ui/transition': 1.4.8_framer-motion@6.3.3+react@17.0.2 - '@chakra-ui/utils': 1.10.4 - framer-motion: 6.3.3_react-dom@17.0.2+react@17.0.2 - react: 17.0.2 + '@chakra-ui/clickable': 2.0.2_react@18.2.0 + '@chakra-ui/descendant': 3.0.2_react@18.2.0 + '@chakra-ui/hooks': 2.0.2_react@18.2.0 + '@chakra-ui/popper': 3.0.2_react@18.2.0 + '@chakra-ui/react-utils': 2.0.1_react@18.2.0 + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/transition': 2.0.2_rz5u7j3atdl3v3dzr2ouz3vbga + '@chakra-ui/utils': 2.0.2 + framer-motion: 6.3.15_biqbaboplfbrettd7655fr4n2y + react: 18.2.0 dev: false - /@chakra-ui/modal/1.11.1_910cd055a60a3b8209715fe43aacef0c: - resolution: {integrity: sha512-B2BBDonHb04vbPLAWgko1JYBwgW8ZNSLyhTJK+rbrCsRSgazuLTcwq4hdyJqrYNWtaQEfSwpAXqJ7joMZdv59A==} + /@chakra-ui/modal/2.0.3_fyzxmzue2kafzgbnbtznxaoljq: + resolution: {integrity: sha512-GS1Apvrsr8scM1d/awVgJdcheITja4fMKTKwWljstw7SfAMOPc4skKIg+MzriLvtIialm1WFxOWYfiQ5MKAAcQ==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - framer-motion: 3.x || 4.x || 5.x || 6.x - react: '>=16.8.6' - react-dom: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + framer-motion: '>=4.0.0' + react: '>=18 || 18' + react-dom: '>=18 || 18' dependencies: - '@chakra-ui/close-button': 1.2.7_ec02b824bed6ab9ca8725186341c5110 - '@chakra-ui/focus-lock': 1.2.6_3df41e700a554c2356b362be396a0af4 - '@chakra-ui/hooks': 1.9.1_react@17.0.2 - '@chakra-ui/portal': 1.3.10_react-dom@17.0.2+react@17.0.2 - '@chakra-ui/react-utils': 1.2.3_react@17.0.2 - '@chakra-ui/system': 1.12.1_09a0c9559c3e7c8c898f158921333fde - '@chakra-ui/transition': 1.4.8_framer-motion@6.3.3+react@17.0.2 - '@chakra-ui/utils': 1.10.4 + '@chakra-ui/close-button': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/focus-lock': 2.0.3_luyos4mouogwq6z3wafb3re4ce + '@chakra-ui/hooks': 2.0.2_react@18.2.0 + '@chakra-ui/portal': 2.0.2_biqbaboplfbrettd7655fr4n2y + '@chakra-ui/react-utils': 2.0.1_react@18.2.0 + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/transition': 2.0.2_rz5u7j3atdl3v3dzr2ouz3vbga + '@chakra-ui/utils': 2.0.2 aria-hidden: 1.1.3 - framer-motion: 6.3.3_react-dom@17.0.2+react@17.0.2 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - react-remove-scroll: 2.4.1_3df41e700a554c2356b362be396a0af4 + framer-motion: 6.3.15_biqbaboplfbrettd7655fr4n2y + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + react-remove-scroll: 2.5.4_luyos4mouogwq6z3wafb3re4ce transitivePeerDependencies: - '@types/react' dev: false - /@chakra-ui/number-input/1.4.7_ec02b824bed6ab9ca8725186341c5110: - resolution: {integrity: sha512-LorGRZFMipom8vCUEbLi2s7bTHF2Fgiu766W0jTbzMje+8Z1ZoRQunH9OZWQnxnWQTUfUM2KBW8KwToYh1ojfQ==} + /@chakra-ui/number-input/2.0.2_smtw3k2wuexenqj33awaujbhle: + resolution: {integrity: sha512-7RT5TMCSPtghX7M2Uy2cruLwO0uYCzIa49tQFDzQ2YCGMuRimzma9i0nuOqQz2yGHxa3C8WJJoO91jPKzCjIbg==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - react: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + react: '>=18 || 18' dependencies: - '@chakra-ui/counter': 1.2.10_react@17.0.2 - '@chakra-ui/form-control': 1.6.0_ec02b824bed6ab9ca8725186341c5110 - '@chakra-ui/hooks': 1.9.1_react@17.0.2 - '@chakra-ui/icon': 2.0.5_ec02b824bed6ab9ca8725186341c5110 - '@chakra-ui/react-utils': 1.2.3_react@17.0.2 - '@chakra-ui/system': 1.12.1_09a0c9559c3e7c8c898f158921333fde - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/counter': 2.0.2_react@18.2.0 + '@chakra-ui/form-control': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/hooks': 2.0.2_react@18.2.0 + '@chakra-ui/icon': 3.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/react-utils': 2.0.1_react@18.2.0 + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/utils': 2.0.2 + react: 18.2.0 dev: false - /@chakra-ui/pin-input/1.7.10_ec02b824bed6ab9ca8725186341c5110: - resolution: {integrity: sha512-Uz5vFK+ZevQtdYHBkddSFCrY44bweXLanpSv9X/D0pWpdML09qfPiKX4ydGzfRoS2u4L8NUtN86IcvdOQLhHQg==} + /@chakra-ui/pin-input/2.0.3_smtw3k2wuexenqj33awaujbhle: + resolution: {integrity: sha512-tnISIFno2Nqmh5ZjXyRnUiyuw94xLpFWoVK9tTo/yoR5Llbh58BqRyybOZZpu3DIjuK9qy9M67KBhRdqkOLUFQ==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - react: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + react: '>=18 || 18' dependencies: - '@chakra-ui/descendant': 2.1.3_react@17.0.2 - '@chakra-ui/hooks': 1.9.1_react@17.0.2 - '@chakra-ui/react-utils': 1.2.3_react@17.0.2 - '@chakra-ui/system': 1.12.1_09a0c9559c3e7c8c898f158921333fde - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/descendant': 3.0.2_react@18.2.0 + '@chakra-ui/hooks': 2.0.2_react@18.2.0 + '@chakra-ui/react-utils': 2.0.1_react@18.2.0 + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/utils': 2.0.2 + react: 18.2.0 dev: false - /@chakra-ui/popover/1.11.9_434493a850c3cc256e243ee9a5bbfb37: - resolution: {integrity: sha512-hJ1/Lwukox3ryTN7W1wnj+nE44utfLwQYvfUSdatt5dznnh8k0P6Wx7Hmjm1cYffRavBhqzwua/QZDWjJN9N0g==} + /@chakra-ui/popover/2.0.2_vtyuavm5aokxji6drgmjpa5nda: + resolution: {integrity: sha512-i9Tsx+gpN470V7eLPng+lVK25DfUdQ44OAzWMUavIiutCtVJknZEPYbSr72JnT4NHBnr7b8rqUBEYq9+36LmlQ==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - framer-motion: 3.x || 4.x || 5.x || 6.x - react: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + framer-motion: '>=4.0.0' + react: '>=18 || 18' dependencies: - '@chakra-ui/close-button': 1.2.7_ec02b824bed6ab9ca8725186341c5110 - '@chakra-ui/hooks': 1.9.1_react@17.0.2 - '@chakra-ui/popper': 2.4.3_react@17.0.2 - '@chakra-ui/react-utils': 1.2.3_react@17.0.2 - '@chakra-ui/system': 1.12.1_09a0c9559c3e7c8c898f158921333fde - '@chakra-ui/utils': 1.10.4 - framer-motion: 6.3.3_react-dom@17.0.2+react@17.0.2 - react: 17.0.2 + '@chakra-ui/close-button': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/hooks': 2.0.2_react@18.2.0 + '@chakra-ui/popper': 3.0.2_react@18.2.0 + '@chakra-ui/react-utils': 2.0.1_react@18.2.0 + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/utils': 2.0.2 + framer-motion: 6.3.15_biqbaboplfbrettd7655fr4n2y + react: 18.2.0 dev: false - /@chakra-ui/popper/2.4.3_react@17.0.2: - resolution: {integrity: sha512-TGzFnYt3mtIVkIejtYIAu4Ka9DaYLzMR4NgcqI6EtaTvgK7Xep+6RTiY/Nq+ZT3l/eaNUwqHRFoNrDUg1XYasA==} + /@chakra-ui/popper/3.0.2_react@18.2.0: + resolution: {integrity: sha512-oEUsaFR4EPY3CvhEVeZNoa+mA/w+TvLlG3xlicIwv/3Fcfl6LD2Jhr6utnqAvHFxE/qRcUcXLX20ovy0Zrgm/Q==} peerDependencies: - react: '>=16.8.6' + react: '>=18 || 18' dependencies: - '@chakra-ui/react-utils': 1.2.3_react@17.0.2 + '@chakra-ui/react-utils': 2.0.1_react@18.2.0 '@popperjs/core': 2.11.5 - react: 17.0.2 + react: 18.2.0 dev: false - /@chakra-ui/portal/1.3.10_react-dom@17.0.2+react@17.0.2: - resolution: {integrity: sha512-t2KQ6MXbyf1qFYxWw/bs//CnwD+Clq7mbsP1Y7g+THCz2FvlLlMj45BWocLB30NoNyA8WCS2zyMBszW2/qvDiA==} + /@chakra-ui/portal/2.0.2_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-bk8P/hxvGbKhEZSI2LAFwk98W7ivff3NwpFOHjsna0uuBPG772mEOXnxsHBsr2moGroMXdBOS++czHn1T3cHhw==} peerDependencies: - react: '>=16.8.6' - react-dom: '>=16.8.6' + react: '>=18 || 18' + react-dom: '>=18 || 18' dependencies: - '@chakra-ui/hooks': 1.9.1_react@17.0.2 - '@chakra-ui/react-utils': 1.2.3_react@17.0.2 - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + '@chakra-ui/hooks': 2.0.2_react@18.2.0 + '@chakra-ui/react-utils': 2.0.1_react@18.2.0 + '@chakra-ui/utils': 2.0.2 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 dev: false - /@chakra-ui/progress/1.2.6_ec02b824bed6ab9ca8725186341c5110: - resolution: {integrity: sha512-thaHRIYTVktgV78vJMNwzfCX+ickhSpn2bun6FtGVUphFx4tjV+ggz+IGohm6AH2hapskoR1mQU2iNZb6BK0hQ==} + /@chakra-ui/progress/2.0.2_smtw3k2wuexenqj33awaujbhle: + resolution: {integrity: sha512-nx/aDZGEAnRx6jC4RLbfoXTTEeHoHGVlwBTUx7OKPus+hopBVvXHpA/UH+H8OJ5nq0PJ6XaDPCHc1FTrK+j0aw==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - react: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + react: '>=18 || 18' dependencies: - '@chakra-ui/system': 1.12.1_09a0c9559c3e7c8c898f158921333fde - '@chakra-ui/theme-tools': 1.3.6_@chakra-ui+system@1.12.1 - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/theme-tools': 2.0.2_@chakra-ui+system@2.1.3 + '@chakra-ui/utils': 2.0.2 + react: 18.2.0 dev: false - /@chakra-ui/provider/1.7.14_8a1592cdd44bb6265a8be2c927d84cf2: - resolution: {integrity: sha512-FCA33CZy/jFzExglKMioeri8sr9NtDTcNVPnx95ZJiA7WpfFo0xuZ6/fMC4DwIQPkJKbSIZBXYLZ3U10Ntylrw==} + /@chakra-ui/provider/2.0.6_qsuhhlyfbpdicstla2jcf7xfmy: + resolution: {integrity: sha512-EwwFF8ib9L5OYTRJq450Uvk7DqQJA/W6TyBo2f7mUE0j56GmV8ZRdsaXGqqag/aopCS/1n+ZfpQvQr/qNhAQBQ==} peerDependencies: '@emotion/react': ^11.0.0 '@emotion/styled': ^11.0.0 - react: '>=16.8.6' - react-dom: '>=16.8.6' + react: '>=18 || 18' + react-dom: '>=18 || 18' dependencies: - '@chakra-ui/css-reset': 1.1.3_8636826388a0e7ae99fbe5db0e5dc817 - '@chakra-ui/hooks': 1.9.1_react@17.0.2 - '@chakra-ui/portal': 1.3.10_react-dom@17.0.2+react@17.0.2 - '@chakra-ui/react-env': 1.1.6_react@17.0.2 - '@chakra-ui/system': 1.12.1_09a0c9559c3e7c8c898f158921333fde - '@chakra-ui/utils': 1.10.4 - '@emotion/react': 11.9.0_0191d4f7d13d8e58ed45c49e4813c090 - '@emotion/styled': 11.8.1_71bb32ec948927cf157f054242616721 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + '@chakra-ui/css-reset': 2.0.1_jhgplt4fmhans76oq3ok5iox2u + '@chakra-ui/portal': 2.0.2_biqbaboplfbrettd7655fr4n2y + '@chakra-ui/react-env': 2.0.2_react@18.2.0 + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/utils': 2.0.2 + '@emotion/react': 11.9.3_7eu627umq2cbnjxmysy5yb5jqq + '@emotion/styled': 11.9.3_qbwmrvb6ojitbfrbjtglmejmbm + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 dev: false - /@chakra-ui/radio/1.5.1_ec02b824bed6ab9ca8725186341c5110: - resolution: {integrity: sha512-zO5eShz+j68A7935jJ2q5u3brX/bjPEGh9Pj2+bnKbmC9Vva6jEzBSJsAx9n4WbkAzR3xDMGWsbpivFp8X1tJw==} + /@chakra-ui/radio/2.0.2_smtw3k2wuexenqj33awaujbhle: + resolution: {integrity: sha512-f3YF7sL13qpbiqlFF8eGcL8lZeAmY3ZwqJk8m2v3Ofi0M7Et/CV00E1TxY5kK3tvDtmMXC5lILf5QlHHNgH6wQ==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - react: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + react: '>=18 || 18' dependencies: - '@chakra-ui/form-control': 1.6.0_ec02b824bed6ab9ca8725186341c5110 - '@chakra-ui/hooks': 1.9.1_react@17.0.2 - '@chakra-ui/react-utils': 1.2.3_react@17.0.2 - '@chakra-ui/system': 1.12.1_09a0c9559c3e7c8c898f158921333fde - '@chakra-ui/utils': 1.10.4 - '@chakra-ui/visually-hidden': 1.1.6_ec02b824bed6ab9ca8725186341c5110 - react: 17.0.2 + '@chakra-ui/form-control': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/hooks': 2.0.2_react@18.2.0 + '@chakra-ui/react-utils': 2.0.1_react@18.2.0 + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/utils': 2.0.2 + '@chakra-ui/visually-hidden': 2.0.2_smtw3k2wuexenqj33awaujbhle + react: 18.2.0 dev: false - /@chakra-ui/react-env/1.1.6_react@17.0.2: - resolution: {integrity: sha512-L90LNvCfe04FTkN9OPok/o2e60zLJNBH8Im/5dUHvqy7dXLXok8ZDad5vEL46XmGbhe7O8fbxhG6FmAYdcCHrQ==} + /@chakra-ui/react-env/2.0.2_react@18.2.0: + resolution: {integrity: sha512-iQdc58d1HjfkPi+CEoZNqY77oX94bsWpMie30UYIaTonc9OOH6r1WCGQc8cyQa3jKiX2m9v9IbnxZa9Z0rYrHw==} peerDependencies: - react: '>=16.8.6' + react: '>=18 || 18' dependencies: - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/utils': 2.0.2 + react: 18.2.0 dev: false - /@chakra-ui/react-utils/1.2.3_react@17.0.2: - resolution: {integrity: sha512-r8pUwCVVB7UPhb0AiRa9ZzSp4xkMz64yIeJ4O4aGy4WMw7TRH4j4QkbkE1YC9tQitrXrliOlvx4WWJR4VyiGpw==} + /@chakra-ui/react-utils/2.0.1_react@18.2.0: + resolution: {integrity: sha512-xLiTn7WeUo2e3zvo8zUGpICgIGsLCPpkVbjEKhr1jAV41urqEtwlLc6uGir595OYqAC8zFDqs4HXhHouqNEtiw==} peerDependencies: - react: '>=16.8.6' + react: '>=18 || 18' dependencies: - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/utils': 2.0.2 + react: 18.2.0 dev: false - /@chakra-ui/react/1.8.8_8021b84ec8ff18477d479d84cde0245c: - resolution: {integrity: sha512-/XqL25J0i0h+usAXBngn/RTG2u1oQRzbhHe9tNHwFyNbx/izIADhQW/6ji06QU0KtaRIU77XvgSAyTtMJY1KmA==} + /@chakra-ui/react/2.2.1_5z4lybafbsej23lhe66gvmikba: + resolution: {integrity: sha512-m2vFICTUO3GivTkJROnTTJT+w8otcYMraKqOSdrAGmsjqtZAp8/FaGS+1bxzeZnZTszMn65LoLvlgBUDrTHhQA==} peerDependencies: '@emotion/react': ^11.0.0 '@emotion/styled': ^11.0.0 - framer-motion: 3.x || 4.x || 5.x || 6.x - react: '>=16.8.6' - react-dom: '>=16.8.6' + framer-motion: '>=4.0.0' + react: '>=18 || 18' + react-dom: '>=18 || 18' dependencies: - '@chakra-ui/accordion': 1.4.11_434493a850c3cc256e243ee9a5bbfb37 - '@chakra-ui/alert': 1.3.7_ec02b824bed6ab9ca8725186341c5110 - '@chakra-ui/avatar': 1.3.11_ec02b824bed6ab9ca8725186341c5110 - '@chakra-ui/breadcrumb': 1.3.6_ec02b824bed6ab9ca8725186341c5110 - '@chakra-ui/button': 1.5.10_ec02b824bed6ab9ca8725186341c5110 - '@chakra-ui/checkbox': 1.7.1_434493a850c3cc256e243ee9a5bbfb37 - '@chakra-ui/close-button': 1.2.7_ec02b824bed6ab9ca8725186341c5110 - '@chakra-ui/control-box': 1.1.6_ec02b824bed6ab9ca8725186341c5110 - '@chakra-ui/counter': 1.2.10_react@17.0.2 - '@chakra-ui/css-reset': 1.1.3_8636826388a0e7ae99fbe5db0e5dc817 - '@chakra-ui/editable': 1.4.2_ec02b824bed6ab9ca8725186341c5110 - '@chakra-ui/form-control': 1.6.0_ec02b824bed6ab9ca8725186341c5110 - '@chakra-ui/hooks': 1.9.1_react@17.0.2 - '@chakra-ui/icon': 2.0.5_ec02b824bed6ab9ca8725186341c5110 - '@chakra-ui/image': 1.1.10_ec02b824bed6ab9ca8725186341c5110 - '@chakra-ui/input': 1.4.6_ec02b824bed6ab9ca8725186341c5110 - '@chakra-ui/layout': 1.8.0_ec02b824bed6ab9ca8725186341c5110 - '@chakra-ui/live-region': 1.1.6_react@17.0.2 - '@chakra-ui/media-query': 2.0.4_95e3ae800e8ec2b9db829252af6af6dc - '@chakra-ui/menu': 1.8.11_434493a850c3cc256e243ee9a5bbfb37 - '@chakra-ui/modal': 1.11.1_910cd055a60a3b8209715fe43aacef0c - '@chakra-ui/number-input': 1.4.7_ec02b824bed6ab9ca8725186341c5110 - '@chakra-ui/pin-input': 1.7.10_ec02b824bed6ab9ca8725186341c5110 - '@chakra-ui/popover': 1.11.9_434493a850c3cc256e243ee9a5bbfb37 - '@chakra-ui/popper': 2.4.3_react@17.0.2 - '@chakra-ui/portal': 1.3.10_react-dom@17.0.2+react@17.0.2 - '@chakra-ui/progress': 1.2.6_ec02b824bed6ab9ca8725186341c5110 - '@chakra-ui/provider': 1.7.14_8a1592cdd44bb6265a8be2c927d84cf2 - '@chakra-ui/radio': 1.5.1_ec02b824bed6ab9ca8725186341c5110 - '@chakra-ui/react-env': 1.1.6_react@17.0.2 - '@chakra-ui/select': 1.2.11_ec02b824bed6ab9ca8725186341c5110 - '@chakra-ui/skeleton': 1.2.14_e0e94c2cfe212b901fb78a5373cc4f3e - '@chakra-ui/slider': 1.5.11_ec02b824bed6ab9ca8725186341c5110 - '@chakra-ui/spinner': 1.2.6_ec02b824bed6ab9ca8725186341c5110 - '@chakra-ui/stat': 1.2.7_ec02b824bed6ab9ca8725186341c5110 - '@chakra-ui/switch': 1.3.10_434493a850c3cc256e243ee9a5bbfb37 - '@chakra-ui/system': 1.12.1_09a0c9559c3e7c8c898f158921333fde - '@chakra-ui/table': 1.3.6_ec02b824bed6ab9ca8725186341c5110 - '@chakra-ui/tabs': 1.6.10_ec02b824bed6ab9ca8725186341c5110 - '@chakra-ui/tag': 1.2.7_ec02b824bed6ab9ca8725186341c5110 - '@chakra-ui/textarea': 1.2.11_ec02b824bed6ab9ca8725186341c5110 - '@chakra-ui/theme': 1.14.1_@chakra-ui+system@1.12.1 - '@chakra-ui/toast': 1.5.9_e94a2d45d90c1726bc649ba12baab901 - '@chakra-ui/tooltip': 1.5.1_e94a2d45d90c1726bc649ba12baab901 - '@chakra-ui/transition': 1.4.8_framer-motion@6.3.3+react@17.0.2 - '@chakra-ui/utils': 1.10.4 - '@chakra-ui/visually-hidden': 1.1.6_ec02b824bed6ab9ca8725186341c5110 - '@emotion/react': 11.9.0_0191d4f7d13d8e58ed45c49e4813c090 - '@emotion/styled': 11.8.1_71bb32ec948927cf157f054242616721 - framer-motion: 6.3.3_react-dom@17.0.2+react@17.0.2 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + '@chakra-ui/accordion': 2.0.3_vtyuavm5aokxji6drgmjpa5nda + '@chakra-ui/alert': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/avatar': 2.0.3_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/breadcrumb': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/button': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/checkbox': 2.1.0_vtyuavm5aokxji6drgmjpa5nda + '@chakra-ui/close-button': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/control-box': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/counter': 2.0.2_react@18.2.0 + '@chakra-ui/css-reset': 2.0.1_jhgplt4fmhans76oq3ok5iox2u + '@chakra-ui/editable': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/form-control': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/hooks': 2.0.2_react@18.2.0 + '@chakra-ui/icon': 3.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/image': 2.0.3_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/input': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/layout': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/live-region': 2.0.2_react@18.2.0 + '@chakra-ui/media-query': 3.1.0_swpbf3sk2xubz3bowba44eqanu + '@chakra-ui/menu': 2.0.3_vtyuavm5aokxji6drgmjpa5nda + '@chakra-ui/modal': 2.0.3_fyzxmzue2kafzgbnbtznxaoljq + '@chakra-ui/number-input': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/pin-input': 2.0.3_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/popover': 2.0.2_vtyuavm5aokxji6drgmjpa5nda + '@chakra-ui/popper': 3.0.2_react@18.2.0 + '@chakra-ui/portal': 2.0.2_biqbaboplfbrettd7655fr4n2y + '@chakra-ui/progress': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/provider': 2.0.6_qsuhhlyfbpdicstla2jcf7xfmy + '@chakra-ui/radio': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/react-env': 2.0.2_react@18.2.0 + '@chakra-ui/select': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/skeleton': 2.0.6_axawpjz3tjxiksmpos7ajkx4lu + '@chakra-ui/slider': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/spinner': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/stat': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/switch': 2.0.3_vtyuavm5aokxji6drgmjpa5nda + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/table': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/tabs': 2.0.3_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/tag': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/textarea': 2.0.3_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/theme': 2.1.0_@chakra-ui+system@2.1.3 + '@chakra-ui/toast': 2.1.0_65wlen2m7s2gqkmujk2syargwy + '@chakra-ui/tooltip': 2.0.2_zpzruzl5qtrb2u52xbwuohvqyi + '@chakra-ui/transition': 2.0.2_rz5u7j3atdl3v3dzr2ouz3vbga + '@chakra-ui/utils': 2.0.2 + '@chakra-ui/visually-hidden': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@emotion/react': 11.9.3_7eu627umq2cbnjxmysy5yb5jqq + '@emotion/styled': 11.9.3_qbwmrvb6ojitbfrbjtglmejmbm + framer-motion: 6.3.15_biqbaboplfbrettd7655fr4n2y + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 transitivePeerDependencies: - '@types/react' dev: false - /@chakra-ui/select/1.2.11_ec02b824bed6ab9ca8725186341c5110: - resolution: {integrity: sha512-6Tis1+ZrRjQeWhQfziQn3ZdPphV5ccafpZOhiPdTcM2J1XcXOlII+9rHxvaW+jx7zQ5ly5o8kd7iXzalDgl5wA==} + /@chakra-ui/select/2.0.2_smtw3k2wuexenqj33awaujbhle: + resolution: {integrity: sha512-aXYRJFsi3xrcacPI+FDZ1fxRQc9PMFnYXvqTug4I7wIwZUE467vD4G90c6/b/tUzrerDkVcPhHbqFy8ENbrvdA==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - react: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + react: '>=18 || 18' dependencies: - '@chakra-ui/form-control': 1.6.0_ec02b824bed6ab9ca8725186341c5110 - '@chakra-ui/system': 1.12.1_09a0c9559c3e7c8c898f158921333fde - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/form-control': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/utils': 2.0.2 + react: 18.2.0 dev: false - /@chakra-ui/skeleton/1.2.14_e0e94c2cfe212b901fb78a5373cc4f3e: - resolution: {integrity: sha512-R0v4DfQ2yjXCJf9SzhTmDb2PLx5//LxsRbjjgRa8qJCR4MZaGswPrekp4dP8YjY8aEYzuZbvHU12T3vqZBk2GA==} + /@chakra-ui/skeleton/2.0.6_axawpjz3tjxiksmpos7ajkx4lu: + resolution: {integrity: sha512-nbZEfA7vSxJ8qXM0sb+e/Dh8t2ZcAkjWUzScMvO8FWfblk3wkoeUT0ocTwJ4eDyTzEVBu+ym7Uc+ACZmBheabQ==} peerDependencies: - '@chakra-ui/theme': '>=1.0.0' + '@chakra-ui/theme': '>=2.0.0-next.0' '@emotion/react': ^11.0.0 '@emotion/styled': ^11.0.0 - react: '>=16.8.6' + react: '>=18 || 18' dependencies: - '@chakra-ui/hooks': 1.9.1_react@17.0.2 - '@chakra-ui/media-query': 2.0.4_95e3ae800e8ec2b9db829252af6af6dc - '@chakra-ui/system': 1.12.1_09a0c9559c3e7c8c898f158921333fde - '@chakra-ui/theme': 1.14.1_@chakra-ui+system@1.12.1 - '@chakra-ui/utils': 1.10.4 - '@emotion/react': 11.9.0_0191d4f7d13d8e58ed45c49e4813c090 - '@emotion/styled': 11.8.1_71bb32ec948927cf157f054242616721 - react: 17.0.2 + '@chakra-ui/hooks': 2.0.2_react@18.2.0 + '@chakra-ui/media-query': 3.1.0_swpbf3sk2xubz3bowba44eqanu + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/theme': 2.1.0_@chakra-ui+system@2.1.3 + '@chakra-ui/utils': 2.0.2 + '@emotion/react': 11.9.3_7eu627umq2cbnjxmysy5yb5jqq + '@emotion/styled': 11.9.3_qbwmrvb6ojitbfrbjtglmejmbm + react: 18.2.0 dev: false - /@chakra-ui/slider/1.5.11_ec02b824bed6ab9ca8725186341c5110: - resolution: {integrity: sha512-THkGU2BsA6XMosXcEVQkWVRftqUIAKCb+y4iEpR3C2ztqL7Fl/CbIGwyr5majhPhKc275rb8dfxwp8R0L0ZIiQ==} + /@chakra-ui/slider/2.0.2_smtw3k2wuexenqj33awaujbhle: + resolution: {integrity: sha512-aWpjqFGN61fv3dKyBrP6c68MXmkYtZ6jeDWIKkgzc7ntb6Nnf6KDK8seZM0SmQR2F3GIejLt8AgnuIW/UBUa/Q==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - react: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + react: '>=18 || 18' dependencies: - '@chakra-ui/hooks': 1.9.1_react@17.0.2 - '@chakra-ui/react-utils': 1.2.3_react@17.0.2 - '@chakra-ui/system': 1.12.1_09a0c9559c3e7c8c898f158921333fde - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/hooks': 2.0.2_react@18.2.0 + '@chakra-ui/react-utils': 2.0.1_react@18.2.0 + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/utils': 2.0.2 + react: 18.2.0 dev: false - /@chakra-ui/spinner/1.2.6_ec02b824bed6ab9ca8725186341c5110: - resolution: {integrity: sha512-GoUCccN120fGRVgUtfuwcEjeoaxffB+XsgpxX7jhWloXf8b6lkqm68bsxX4Ybb2vGN1fANI98/45JmrnddZO/A==} + /@chakra-ui/spinner/2.0.2_smtw3k2wuexenqj33awaujbhle: + resolution: {integrity: sha512-jC6+pwkCQb5vfGsS/55EhH2UzsToeCvpfXLQ6TPWDPA2NHMTRskilHwKQT/i0nAgRcCq400FvcfIr5uAPs+Igg==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - react: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + react: '>=18 || 18' dependencies: - '@chakra-ui/system': 1.12.1_09a0c9559c3e7c8c898f158921333fde - '@chakra-ui/utils': 1.10.4 - '@chakra-ui/visually-hidden': 1.1.6_ec02b824bed6ab9ca8725186341c5110 - react: 17.0.2 + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/utils': 2.0.2 + '@chakra-ui/visually-hidden': 2.0.2_smtw3k2wuexenqj33awaujbhle + react: 18.2.0 dev: false - /@chakra-ui/stat/1.2.7_ec02b824bed6ab9ca8725186341c5110: - resolution: {integrity: sha512-m76jumFW1N+mCG4ytrUz9Mh09nZtS4OQcADEvOslfdI5StwwuzasTA1tueaelPzdhBioMwFUWL05Fr1fXbPJ/Q==} + /@chakra-ui/stat/2.0.2_smtw3k2wuexenqj33awaujbhle: + resolution: {integrity: sha512-GrQgiof8olOEVFAUtq5GA2cCUJqcSLMpS/6StBFR4fesrg5MAblfVYYY7uayqX/RnJU1BNElLOl/JAQ965LGXw==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - react: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + react: '>=18 || 18' dependencies: - '@chakra-ui/icon': 2.0.5_ec02b824bed6ab9ca8725186341c5110 - '@chakra-ui/system': 1.12.1_09a0c9559c3e7c8c898f158921333fde - '@chakra-ui/utils': 1.10.4 - '@chakra-ui/visually-hidden': 1.1.6_ec02b824bed6ab9ca8725186341c5110 - react: 17.0.2 + '@chakra-ui/icon': 3.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/utils': 2.0.2 + '@chakra-ui/visually-hidden': 2.0.2_smtw3k2wuexenqj33awaujbhle + react: 18.2.0 dev: false - /@chakra-ui/styled-system/1.19.0: - resolution: {integrity: sha512-z+bMfWs6jQGkpgarge1kmk78DuDhJIXRUMyRqZ3+CiIkze88bIIsww6mV2i8tEfUfTAvALeMnlYZ1DYsHsTTJw==} + /@chakra-ui/styled-system/2.2.0: + resolution: {integrity: sha512-5THQlrMr6CsiulNtjzZV3DqYD85eQ+S8G6rsnjAKqFVJ1G29R392RKK/67R96WIRUJRtsHPq2REeTgAxGLDhOQ==} dependencies: - '@chakra-ui/utils': 1.10.4 - csstype: 3.0.9 + '@chakra-ui/utils': 2.0.2 + csstype: 3.1.0 dev: false - /@chakra-ui/switch/1.3.10_434493a850c3cc256e243ee9a5bbfb37: - resolution: {integrity: sha512-V6qDLY6oECCbPyu7alWWOAhSBI4+SAuT6XW/zEQbelkwuUOiGO1ax67rTXOmZ59A2AaV1gqQFxDh8AcbvwO5XQ==} + /@chakra-ui/switch/2.0.3_vtyuavm5aokxji6drgmjpa5nda: + resolution: {integrity: sha512-k7HLnKBM9GsY/RdqUWqe233QNFa2JtE+G4UyX8BsYLquWOkBfgJvI+f2gSUye1zLS8e1bFwz5BBIljTQMb/Smw==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - framer-motion: 3.x || 4.x || 5.x || 6.x - react: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + framer-motion: '>=4.0.0' + react: '>=18 || 18' dependencies: - '@chakra-ui/checkbox': 1.7.1_434493a850c3cc256e243ee9a5bbfb37 - '@chakra-ui/system': 1.12.1_09a0c9559c3e7c8c898f158921333fde - '@chakra-ui/utils': 1.10.4 - framer-motion: 6.3.3_react-dom@17.0.2+react@17.0.2 - react: 17.0.2 + '@chakra-ui/checkbox': 2.1.0_vtyuavm5aokxji6drgmjpa5nda + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/utils': 2.0.2 + framer-motion: 6.3.15_biqbaboplfbrettd7655fr4n2y + react: 18.2.0 dev: false - /@chakra-ui/system/1.12.1_09a0c9559c3e7c8c898f158921333fde: - resolution: {integrity: sha512-Rp09/rMuPA3hF38OJxeQciGO9N0Ie1GxwHRAw1AFA/TY3fVyK9pNI5oN+J/1cAxq7v9yKdIr1YfnruJTI9xfEg==} + /@chakra-ui/system/2.1.3_fdnqutfacy7v3gmlcm66flps3q: + resolution: {integrity: sha512-f9GfJr7HGxxhyAbXmka/k/mPsLl8wl+5fZUWglfRg4iddmsuYQcJEYg8+ewCyr7MA1Ddw9bPVgsC5uf/KYlo3w==} peerDependencies: '@emotion/react': ^11.0.0 '@emotion/styled': ^11.0.0 - react: '>=16.8.6' + react: '>=18 || 18' dependencies: - '@chakra-ui/color-mode': 1.4.8_react@17.0.2 - '@chakra-ui/react-utils': 1.2.3_react@17.0.2 - '@chakra-ui/styled-system': 1.19.0 - '@chakra-ui/utils': 1.10.4 - '@emotion/react': 11.9.0_0191d4f7d13d8e58ed45c49e4813c090 - '@emotion/styled': 11.8.1_71bb32ec948927cf157f054242616721 - react: 17.0.2 + '@chakra-ui/color-mode': 2.0.4_react@18.2.0 + '@chakra-ui/react-utils': 2.0.1_react@18.2.0 + '@chakra-ui/styled-system': 2.2.0 + '@chakra-ui/utils': 2.0.2 + '@emotion/react': 11.9.3_7eu627umq2cbnjxmysy5yb5jqq + '@emotion/styled': 11.9.3_qbwmrvb6ojitbfrbjtglmejmbm + react: 18.2.0 react-fast-compare: 3.2.0 dev: false - /@chakra-ui/table/1.3.6_ec02b824bed6ab9ca8725186341c5110: - resolution: {integrity: sha512-7agZAgAeDFKviqStvixqnLAH54+setzhx67EztioZTr5Xu+6hQ4rotfJbu8L4i587pcbNg98kCEXEkidjw0XRQ==} + /@chakra-ui/table/2.0.2_smtw3k2wuexenqj33awaujbhle: + resolution: {integrity: sha512-VkcXAmvNlhWXZ5qPUAVqW4DKARSNdCN4Ib8ViiX8lXqBUHK+IBAe2s6iB70FwzdaPqwrw2LndqRrLg/4w4FE3w==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - react: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + react: '>=18 || 18' dependencies: - '@chakra-ui/system': 1.12.1_09a0c9559c3e7c8c898f158921333fde - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/utils': 2.0.2 + react: 18.2.0 dev: false - /@chakra-ui/tabs/1.6.10_ec02b824bed6ab9ca8725186341c5110: - resolution: {integrity: sha512-ClOOHT3Wnf3l9X4F2S6ysPsHMDgKSTgkXpB9Qe0odwpT49ZXNjSAYYaXzO16l+Eq/m2u1HzLkXVsL42HIeOiNQ==} + /@chakra-ui/tabs/2.0.3_smtw3k2wuexenqj33awaujbhle: + resolution: {integrity: sha512-iBi7hSiNv7y9Zu0eR0b4SCBdKoY/5aOKhToZIm0iv5qJPunN3ap3zVAHL36ucPAIv19rC0GaOwqLsNQErMkMYQ==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - react: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + react: '>=18 || 18' dependencies: - '@chakra-ui/clickable': 1.2.6_react@17.0.2 - '@chakra-ui/descendant': 2.1.3_react@17.0.2 - '@chakra-ui/hooks': 1.9.1_react@17.0.2 - '@chakra-ui/react-utils': 1.2.3_react@17.0.2 - '@chakra-ui/system': 1.12.1_09a0c9559c3e7c8c898f158921333fde - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/clickable': 2.0.2_react@18.2.0 + '@chakra-ui/descendant': 3.0.2_react@18.2.0 + '@chakra-ui/hooks': 2.0.2_react@18.2.0 + '@chakra-ui/react-utils': 2.0.1_react@18.2.0 + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/utils': 2.0.2 + react: 18.2.0 dev: false - /@chakra-ui/tag/1.2.7_ec02b824bed6ab9ca8725186341c5110: - resolution: {integrity: sha512-RKrKOol4i/CnpFfo3T9LMm1abaqM+5Bs0soQLbo1iJBbBACY09sWXrQYvveQ2GYzU/OrAUloHqqmKjyVGOlNtg==} + /@chakra-ui/tag/2.0.2_smtw3k2wuexenqj33awaujbhle: + resolution: {integrity: sha512-/TqjwPNTUjDofvTEulrNELS6/ls1n54YMFXMwGNwrEbNlJPgoE555t1N3jpdoNKH4kLhvkFcC6lfkDdWwnZ1BA==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - react: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + react: '>=18 || 18' dependencies: - '@chakra-ui/icon': 2.0.5_ec02b824bed6ab9ca8725186341c5110 - '@chakra-ui/system': 1.12.1_09a0c9559c3e7c8c898f158921333fde - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/icon': 3.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/utils': 2.0.2 + react: 18.2.0 dev: false - /@chakra-ui/textarea/1.2.11_ec02b824bed6ab9ca8725186341c5110: - resolution: {integrity: sha512-RDWbMyC87/AFRX98EnVum5eig/7hhcvS1BrqW5lvmTgrpr7KVr80Dfa8hUj58Iq37Z7AqZijDPkBn/zg7bPdIg==} + /@chakra-ui/textarea/2.0.3_smtw3k2wuexenqj33awaujbhle: + resolution: {integrity: sha512-esOJa0vSrSsgDJGjPAbnPNPvemN1QUKYFYLFTOM/LR6BzI21EL8PX4Bh3AJM6aJK0GjeR0+SeKMuuuLL4oFnmw==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - react: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + react: '>=18 || 18' dependencies: - '@chakra-ui/form-control': 1.6.0_ec02b824bed6ab9ca8725186341c5110 - '@chakra-ui/system': 1.12.1_09a0c9559c3e7c8c898f158921333fde - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/form-control': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/utils': 2.0.2 + react: 18.2.0 dev: false - /@chakra-ui/theme-tools/1.3.6_@chakra-ui+system@1.12.1: - resolution: {integrity: sha512-Wxz3XSJhPCU6OwCHEyH44EegEDQHwvlsx+KDkUDGevOjUU88YuNqOVkKtgTpgMLNQcsrYZ93oPWZUJqqCVNRew==} + /@chakra-ui/theme-tools/2.0.2_@chakra-ui+system@2.1.3: + resolution: {integrity: sha512-E01ZJZB4XVqkvn2hOXKQ/uVkvaPLQN1SyxAYXjFZGyZ1ppBLl362EWfY9IgWNzDITgq9MCJyQFfm2mXwQDUNzA==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' + '@chakra-ui/system': '>=2.0.0-next.0' dependencies: - '@chakra-ui/system': 1.12.1_09a0c9559c3e7c8c898f158921333fde - '@chakra-ui/utils': 1.10.4 + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/utils': 2.0.2 '@ctrl/tinycolor': 3.4.1 dev: false - /@chakra-ui/theme/1.14.1_@chakra-ui+system@1.12.1: - resolution: {integrity: sha512-VeNZi+zD3yDwzvZm234Cy3vnalCzQ+dhAgpHdIYzGO1CYO8DPa+ROcQ70rUueL7dSvUz15KOiGTw6DAl7LXlGA==} + /@chakra-ui/theme/2.1.0_@chakra-ui+system@2.1.3: + resolution: {integrity: sha512-OHvKCQ/QUHc3ZVgKKshYkvholiDhPf7vEPZcNOi5rnaFSP4PzWd00d1i7HOXYSyv/TGDOBRzs1IcodKfG6FzgA==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' + '@chakra-ui/system': '>=2.0.0-next.0' dependencies: - '@chakra-ui/anatomy': 1.3.0_@chakra-ui+system@1.12.1 - '@chakra-ui/system': 1.12.1_09a0c9559c3e7c8c898f158921333fde - '@chakra-ui/theme-tools': 1.3.6_@chakra-ui+system@1.12.1 - '@chakra-ui/utils': 1.10.4 + '@chakra-ui/anatomy': 2.0.1_@chakra-ui+system@2.1.3 + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/theme-tools': 2.0.2_@chakra-ui+system@2.1.3 + '@chakra-ui/utils': 2.0.2 dev: false - /@chakra-ui/toast/1.5.9_e94a2d45d90c1726bc649ba12baab901: - resolution: {integrity: sha512-rns04bGdMcG7Ijg45L+PfuEW4rCd0Ycraix4EJQhcl9RXI18G9sphmlp9feidhZAkI6Ukafq1YvyvkBfkKnIzQ==} + /@chakra-ui/toast/2.1.0_65wlen2m7s2gqkmujk2syargwy: + resolution: {integrity: sha512-xXgwzff/gtNrq2HGGG3fuqcfRQEIObluHzHhqgS3gesf8KYut/5ZJoLdgV4RKE+NYgJIi77BFUcQDiLJttxxPA==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - framer-motion: 3.x || 4.x || 5.x || 6.x - react: '>=16.8.6' - react-dom: '>=16.8.6' + framer-motion: '>=4.0.0' + react: '>=18 || 18' + react-dom: '>=18 || 18' dependencies: - '@chakra-ui/alert': 1.3.7_ec02b824bed6ab9ca8725186341c5110 - '@chakra-ui/close-button': 1.2.7_ec02b824bed6ab9ca8725186341c5110 - '@chakra-ui/hooks': 1.9.1_react@17.0.2 - '@chakra-ui/system': 1.12.1_09a0c9559c3e7c8c898f158921333fde - '@chakra-ui/theme': 1.14.1_@chakra-ui+system@1.12.1 - '@chakra-ui/transition': 1.4.8_framer-motion@6.3.3+react@17.0.2 - '@chakra-ui/utils': 1.10.4 - '@reach/alert': 0.13.2_react-dom@17.0.2+react@17.0.2 - framer-motion: 6.3.3_react-dom@17.0.2+react@17.0.2 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + '@chakra-ui/alert': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/close-button': 2.0.2_smtw3k2wuexenqj33awaujbhle + '@chakra-ui/hooks': 2.0.2_react@18.2.0 + '@chakra-ui/portal': 2.0.2_biqbaboplfbrettd7655fr4n2y + '@chakra-ui/react-utils': 2.0.1_react@18.2.0 + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/theme': 2.1.0_@chakra-ui+system@2.1.3 + '@chakra-ui/transition': 2.0.2_rz5u7j3atdl3v3dzr2ouz3vbga + '@chakra-ui/utils': 2.0.2 + framer-motion: 6.3.15_biqbaboplfbrettd7655fr4n2y + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + transitivePeerDependencies: + - '@emotion/react' + - '@emotion/styled' dev: false - /@chakra-ui/tooltip/1.5.1_e94a2d45d90c1726bc649ba12baab901: - resolution: {integrity: sha512-EUAlDdlCBt63VpEVtj/RkFjHQVN/xA9gEAumngQdi1Sp+OXPYCBM9GwSY0NwrM1RfKBnhPSH9wz7FwredJWeaw==} + /@chakra-ui/tooltip/2.0.2_zpzruzl5qtrb2u52xbwuohvqyi: + resolution: {integrity: sha512-oK6gXybFe/MmHBXbd9w3XgNChVHQ9BeLW0IAtFeDyeHn5gJg0iKul/SNmJkD73Iyv/j+BsmBMn98mbNYQkeMQA==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - framer-motion: 3.x || 4.x || 5.x || 6.x - react: '>=16.8.6' - react-dom: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + framer-motion: '>=4.0.0' + react: '>=18 || 18' + react-dom: '>=18 || 18' dependencies: - '@chakra-ui/hooks': 1.9.1_react@17.0.2 - '@chakra-ui/popper': 2.4.3_react@17.0.2 - '@chakra-ui/portal': 1.3.10_react-dom@17.0.2+react@17.0.2 - '@chakra-ui/react-utils': 1.2.3_react@17.0.2 - '@chakra-ui/system': 1.12.1_09a0c9559c3e7c8c898f158921333fde - '@chakra-ui/utils': 1.10.4 - '@chakra-ui/visually-hidden': 1.1.6_ec02b824bed6ab9ca8725186341c5110 - framer-motion: 6.3.3_react-dom@17.0.2+react@17.0.2 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + '@chakra-ui/hooks': 2.0.2_react@18.2.0 + '@chakra-ui/popper': 3.0.2_react@18.2.0 + '@chakra-ui/portal': 2.0.2_biqbaboplfbrettd7655fr4n2y + '@chakra-ui/react-utils': 2.0.1_react@18.2.0 + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/utils': 2.0.2 + '@chakra-ui/visually-hidden': 2.0.2_smtw3k2wuexenqj33awaujbhle + framer-motion: 6.3.15_biqbaboplfbrettd7655fr4n2y + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 dev: false - /@chakra-ui/transition/1.4.8_framer-motion@6.3.3+react@17.0.2: - resolution: {integrity: sha512-5uc8LEuCH7+0h++wqAav/EktTHOjbLDSTXQlU9fzPIlNNgyf2eXrHVN2AGMGKiMR9Z4gS7umQjZ54r0w/mZ/Fw==} + /@chakra-ui/transition/2.0.2_rz5u7j3atdl3v3dzr2ouz3vbga: + resolution: {integrity: sha512-s98gDFIGbv60WMyniVjy381NXxgS1Y/6RACR1Z1pReC5XZLY5GyMqeRYyFCAeE78qKkqon77Y8EDPQXl6X78dw==} peerDependencies: - framer-motion: 3.x || 4.x || 5.x || 6.x - react: '>=16.8.6' + framer-motion: '>=4.0.0' + react: '>=18 || 18' dependencies: - '@chakra-ui/utils': 1.10.4 - framer-motion: 6.3.3_react-dom@17.0.2+react@17.0.2 - react: 17.0.2 + '@chakra-ui/utils': 2.0.2 + framer-motion: 6.3.15_biqbaboplfbrettd7655fr4n2y + react: 18.2.0 dev: false - /@chakra-ui/utils/1.10.4: - resolution: {integrity: sha512-AM91VQQxw8F4F1WDA28mqKY6NFIOuzc2Ekkna88imy2OiqqmYH0xkq8J16L2qj4cLiLozpYqba3C79pWioy6FA==} + /@chakra-ui/utils/2.0.2: + resolution: {integrity: sha512-9AC/ir9zm0shgFG7kdzOKUH2Wx5VB71M3uRMEsMZf75YlhhiU7AvBNtWXnJu+CBiTi41rKa5A+2ImMOsuPfGbA==} dependencies: '@types/lodash.mergewith': 4.6.6 css-box-model: 1.2.1 @@ -4820,21 +4867,21 @@ packages: lodash.mergewith: 4.6.2 dev: false - /@chakra-ui/visually-hidden/1.1.6_ec02b824bed6ab9ca8725186341c5110: - resolution: {integrity: sha512-Xzy5bA0UA+IyMgwJizQYSEdgz8cC/tHdmFB3CniXzmpKTSK8mJddeEBl+cGbXHBzxEUhH7xF1eaS41O+0ezWEQ==} + /@chakra-ui/visually-hidden/2.0.2_smtw3k2wuexenqj33awaujbhle: + resolution: {integrity: sha512-zYeLzaeouPbBBPDBAdRwj+jyxLJbtU6vW6r4kSQKfHoQPxJ+1A1HxRmDrj4FZJXk0CnBc4m7HF6Zuy7A5eCokg==} peerDependencies: - '@chakra-ui/system': '>=1.0.0' - react: '>=16.8.6' + '@chakra-ui/system': '>=2.0.0-next.0' + react: '>=18 || 18' dependencies: - '@chakra-ui/system': 1.12.1_09a0c9559c3e7c8c898f158921333fde - '@chakra-ui/utils': 1.10.4 - react: 17.0.2 + '@chakra-ui/system': 2.1.3_fdnqutfacy7v3gmlcm66flps3q + '@chakra-ui/utils': 2.0.2 + react: 18.2.0 dev: false /@changesets/apply-release-plan/6.0.0: resolution: {integrity: sha512-gp6nIdVdfYdwKww2+f8whckKmvfE4JEm4jJgBhTmooi0uzHWhnxvk6JIzQi89qEAMINN0SeVNnXiAtbFY0Mj3w==} dependencies: - '@babel/runtime': 7.17.9 + '@babel/runtime': 7.18.3 '@changesets/config': 2.0.0 '@changesets/get-version-range-type': 0.3.2 '@changesets/git': 1.3.2 @@ -4849,10 +4896,10 @@ packages: semver: 5.7.1 dev: true - /@changesets/assemble-release-plan/5.1.2: - resolution: {integrity: sha512-nOFyDw4APSkY/vh5WNwGEtThPgEjVShp03PKVdId6wZTJALVcAALCSLmDRfeqjE2z9EsGJb7hZdDlziKlnqZgw==} + /@changesets/assemble-release-plan/5.1.3: + resolution: {integrity: sha512-I+TTkUoqvxBEuDLoJfJYKDXIJ+nyiTbVJ8KGhpXEsLq4N/ms/AStSbouJwF2d/p3cB+RCPr5+gXh31GSN4kA7w==} dependencies: - '@babel/runtime': 7.17.9 + '@babel/runtime': 7.18.3 '@changesets/errors': 0.1.4 '@changesets/get-dependents-graph': 1.3.2 '@changesets/types': 5.0.0 @@ -4866,18 +4913,18 @@ packages: '@changesets/types': 5.0.0 dev: true - /@changesets/cli/2.22.0: - resolution: {integrity: sha512-4bA3YoBkd5cm5WUxmrR2N9WYE7EeQcM+R3bVYMUj2NvffkQVpU3ckAI+z8UICoojq+HRl2OEwtz+S5UBmYY4zw==} + /@changesets/cli/2.23.0: + resolution: {integrity: sha512-Gi3tMi0Vr6eNd8GX6q73tbOm9XOzGfuLEm4PYVeWG2neg5DlRGNOjYwrFULJ/An3N9MHtHn4r5h1Qvnju9Ijug==} hasBin: true dependencies: - '@babel/runtime': 7.17.9 + '@babel/runtime': 7.18.3 '@changesets/apply-release-plan': 6.0.0 - '@changesets/assemble-release-plan': 5.1.2 + '@changesets/assemble-release-plan': 5.1.3 '@changesets/changelog-git': 0.1.11 '@changesets/config': 2.0.0 '@changesets/errors': 0.1.4 '@changesets/get-dependents-graph': 1.3.2 - '@changesets/get-release-plan': 3.0.8 + '@changesets/get-release-plan': 3.0.9 '@changesets/git': 1.3.2 '@changesets/logger': 0.0.5 '@changesets/pre': 1.0.11 @@ -4887,6 +4934,7 @@ packages: '@manypkg/get-packages': 1.1.3 '@types/is-ci': 3.0.0 '@types/semver': 6.2.3 + ansi-colors: 4.1.3 chalk: 2.4.2 enquirer: 2.3.6 external-editor: 3.1.0 @@ -4901,7 +4949,7 @@ packages: semver: 5.7.1 spawndamnit: 2.0.0 term-size: 2.2.1 - tty-table: 2.8.13 + tty-table: 4.1.6 dev: true /@changesets/config/2.0.0: @@ -4932,11 +4980,11 @@ packages: semver: 5.7.1 dev: true - /@changesets/get-release-plan/3.0.8: - resolution: {integrity: sha512-TJYiWNuP0Lzu2dL/KHuk75w7TkiE5HqoYirrXF7SJIxkhlgH9toQf2C7IapiFTObtuF1qDN8HJAX1CuIOwXldg==} + /@changesets/get-release-plan/3.0.9: + resolution: {integrity: sha512-5C1r4DcOjVxcCvPmXpymeyT6mdSTLCNiB2L+5uf19BRkDKndJdIQorH5Fe2XBR2nHUcZQFT+2TXDzCepat969w==} dependencies: - '@babel/runtime': 7.17.9 - '@changesets/assemble-release-plan': 5.1.2 + '@babel/runtime': 7.18.3 + '@changesets/assemble-release-plan': 5.1.3 '@changesets/config': 2.0.0 '@changesets/pre': 1.0.11 '@changesets/read': 0.5.5 @@ -4951,7 +4999,7 @@ packages: /@changesets/git/1.3.2: resolution: {integrity: sha512-p5UL+urAg0Nnpt70DLiBe2iSsMcDubTo9fTOD/61krmcJ466MGh71OHwdAwu1xG5+NKzeysdy1joRTg8CXcEXA==} dependencies: - '@babel/runtime': 7.17.9 + '@babel/runtime': 7.18.3 '@changesets/errors': 0.1.4 '@changesets/types': 5.0.0 '@manypkg/get-packages': 1.1.3 @@ -4975,7 +5023,7 @@ packages: /@changesets/pre/1.0.11: resolution: {integrity: sha512-CXZnt4SV9waaC9cPLm7818+SxvLKIDHUxaiTXnJYDp1c56xIexx1BNfC1yMuOdzO2a3rAIcZua5Odxr3dwSKfg==} dependencies: - '@babel/runtime': 7.17.9 + '@babel/runtime': 7.18.3 '@changesets/errors': 0.1.4 '@changesets/types': 5.0.0 '@manypkg/get-packages': 1.1.3 @@ -4985,7 +5033,7 @@ packages: /@changesets/read/0.5.5: resolution: {integrity: sha512-bzonrPWc29Tsjvgh+8CqJ0apQOwWim0zheeD4ZK44ApSa/GudnZJTODtA3yNOOuQzeZmL0NUebVoHIurtIkA7w==} dependencies: - '@babel/runtime': 7.17.9 + '@babel/runtime': 7.18.3 '@changesets/git': 1.3.2 '@changesets/logger': 0.0.5 '@changesets/parse': 0.3.13 @@ -5006,7 +5054,7 @@ packages: /@changesets/write/0.1.8: resolution: {integrity: sha512-oIHeFVMuP6jf0TPnKPpaFpvvAf3JBc+s2pmVChbeEgQTBTALoF51Z9kqxQfG4XONZPHZnqkmy564c7qohhhhTQ==} dependencies: - '@babel/runtime': 7.17.9 + '@babel/runtime': 7.18.3 '@changesets/types': 5.0.0 fs-extra: 7.0.1 human-id: 1.0.2 @@ -5029,16 +5077,22 @@ packages: dev: true optional: true - /@cspotcode/source-map-consumer/0.8.0: - resolution: {integrity: sha512-41qniHzTU8yAGbCp04ohlmSrZf8bkf/iJsl3V0dRGsQN/5GFfx+LbCSsCpp2gqrqjTVg/K6O8ycoV35JIwAzAg==} - engines: {node: '>= 12'} - dev: true - - /@cspotcode/source-map-support/0.7.0: - resolution: {integrity: sha512-X4xqRHqN8ACt2aHVe51OxeA2HjbcL4MqFqXkrmQszJ1NOUuUu5u6Vqx/0lZSVNku7velL5FC/s5uEAj1lsBMhA==} + /@cspotcode/source-map-support/0.8.1: + resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==} engines: {node: '>=12'} dependencies: - '@cspotcode/source-map-consumer': 0.8.0 + '@jridgewell/trace-mapping': 0.3.9 + dev: true + + /@csstools/selector-specificity/2.0.1_444rcjjorr3kpoqtvoodsr46pu: + resolution: {integrity: sha512-aG20vknL4/YjQF9BSV7ts4EWm/yrjagAN7OWBNmlbEOUiu0llj4OGrFoOKK3g2vey4/p2omKCoHrWtPxSwV3HA==} + engines: {node: ^12 || ^14 || >=16} + peerDependencies: + postcss: ^8.3 + postcss-selector-parser: ^6.0.10 + dependencies: + postcss: 8.4.14 + postcss-selector-parser: 6.0.10 dev: true /@ctrl/tinycolor/3.4.1: @@ -5068,18 +5122,18 @@ packages: transitivePeerDependencies: - supports-color - /@emotion/babel-plugin/11.9.2_@babel+core@7.17.10: + /@emotion/babel-plugin/11.9.2_@babel+core@7.18.5: resolution: {integrity: sha512-Pr/7HGH6H6yKgnVFNEj2MVlreu3ADqftqjqwUvDy/OJzKFgxKeTQ+eeUf20FOTuHVkDON2iNa25rAXVYtWJCjw==} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.17.10 + '@babel/core': 7.18.5 '@babel/helper-module-imports': 7.16.7 - '@babel/plugin-syntax-jsx': 7.16.7_@babel+core@7.17.10 - '@babel/runtime': 7.17.9 + '@babel/plugin-syntax-jsx': 7.17.12_@babel+core@7.18.5 + '@babel/runtime': 7.18.3 '@emotion/hash': 0.8.0 '@emotion/memoize': 0.7.5 - '@emotion/serialize': 1.0.3 + '@emotion/serialize': 1.0.4 babel-plugin-macros: 2.8.0 convert-source-map: 1.8.0 escape-string-regexp: 4.0.0 @@ -5088,166 +5142,101 @@ packages: stylis: 4.0.13 dev: false - /@emotion/cache/10.0.29: - resolution: {integrity: sha512-fU2VtSVlHiF27empSbxi1O2JFdNWZO+2NFHfwO0pxgTep6Xa3uGb+3pVKfLww2l/IBGLNEZl5Xf/++A4wAYDYQ==} - dependencies: - '@emotion/sheet': 0.9.4 - '@emotion/stylis': 0.8.5 - '@emotion/utils': 0.11.3 - '@emotion/weak-memoize': 0.2.5 - dev: true - - /@emotion/cache/11.7.1: - resolution: {integrity: sha512-r65Zy4Iljb8oyjtLeCuBH8Qjiy107dOYC6SJq7g7GV5UCQWMObY4SJDPGFjiiVpPrOJ2hmJOoBiYTC7hwx9E2A==} + /@emotion/cache/11.9.3: + resolution: {integrity: sha512-0dgkI/JKlCXa+lEXviaMtGBL0ynpx4osh7rjOXE71q9bIF8G+XhJgvi+wDu0B0IdCVx37BffiwXlN9I3UuzFvg==} dependencies: '@emotion/memoize': 0.7.5 - '@emotion/sheet': 1.1.0 + '@emotion/sheet': 1.1.1 '@emotion/utils': 1.1.0 '@emotion/weak-memoize': 0.2.5 stylis: 4.0.13 dev: false - /@emotion/core/10.3.1_react@17.0.2: - resolution: {integrity: sha512-447aUEjPIm0MnE6QYIaFz9VQOHSXf4Iu6EWOIqq11EAPqinkSZmfymPTmlOE3QjLv846lH4JVZBUOtwGbuQoww==} - peerDependencies: - react: '>=16.3.0' - dependencies: - '@babel/runtime': 7.17.9 - '@emotion/cache': 10.0.29 - '@emotion/css': 10.0.27 - '@emotion/serialize': 0.11.16 - '@emotion/sheet': 0.9.4 - '@emotion/utils': 0.11.3 - react: 17.0.2 - dev: true - - /@emotion/css/10.0.27: - resolution: {integrity: sha512-6wZjsvYeBhyZQYNrGoR5yPMYbMBNEnanDrqmsqS1mzDm1cOTu12shvl2j4QHNS36UaTE0USIJawCH9C8oW34Zw==} - dependencies: - '@emotion/serialize': 0.11.16 - '@emotion/utils': 0.11.3 - babel-plugin-emotion: 10.2.2 - dev: true - /@emotion/hash/0.8.0: resolution: {integrity: sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==} + dev: false /@emotion/is-prop-valid/0.8.8: resolution: {integrity: sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==} + requiresBuild: true dependencies: '@emotion/memoize': 0.7.4 + dev: false + optional: true - /@emotion/is-prop-valid/1.1.2: - resolution: {integrity: sha512-3QnhqeL+WW88YjYbQL5gUIkthuMw7a0NGbZ7wfFVk2kg/CK5w8w5FFa0RzWjyY1+sujN0NWbtSHH6OJmWHtJpQ==} + /@emotion/is-prop-valid/1.1.3: + resolution: {integrity: sha512-RFg04p6C+1uO19uG8N+vqanzKqiM9eeV1LDOG3bmkYmuOj7NbKNlFC/4EZq5gnwAIlcC/jOT24f8Td0iax2SXA==} dependencies: '@emotion/memoize': 0.7.5 /@emotion/memoize/0.7.4: resolution: {integrity: sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==} + dev: false + optional: true /@emotion/memoize/0.7.5: resolution: {integrity: sha512-igX9a37DR2ZPGYtV6suZ6whr8pTFtyHL3K/oLUotxpSVO2ASaprmAe2Dkq7tBo7CRY7MMDrAa9nuQP9/YG8FxQ==} - /@emotion/react/11.9.0_0191d4f7d13d8e58ed45c49e4813c090: - resolution: {integrity: sha512-lBVSF5d0ceKtfKCDQJveNAtkC7ayxpVlgOohLgXqRwqWr9bOf4TZAFFyIcNngnV6xK6X4x2ZeXq7vliHkoVkxQ==} + /@emotion/react/11.9.3_7eu627umq2cbnjxmysy5yb5jqq: + resolution: {integrity: sha512-g9Q1GcTOlzOEjqwuLF/Zd9LC+4FljjPjDfxSM7KmEakm+hsHXk+bYZ2q+/hTJzr0OUNkujo72pXLQvXj6H+GJQ==} peerDependencies: '@babel/core': ^7.0.0 '@types/react': '*' - react: '>=16.8.0' + react: '>=16.8.0 || 18' peerDependenciesMeta: '@babel/core': optional: true '@types/react': optional: true dependencies: - '@babel/core': 7.17.10 - '@babel/runtime': 7.17.9 - '@emotion/babel-plugin': 11.9.2_@babel+core@7.17.10 - '@emotion/cache': 11.7.1 - '@emotion/serialize': 1.0.3 + '@babel/core': 7.18.5 + '@babel/runtime': 7.18.3 + '@emotion/babel-plugin': 11.9.2_@babel+core@7.18.5 + '@emotion/cache': 11.9.3 + '@emotion/serialize': 1.0.4 '@emotion/utils': 1.1.0 '@emotion/weak-memoize': 0.2.5 - '@types/react': 17.0.45 + '@types/react': 18.0.14 hoist-non-react-statics: 3.3.2 - react: 17.0.2 + react: 18.2.0 dev: false - /@emotion/serialize/0.11.16: - resolution: {integrity: sha512-G3J4o8by0VRrO+PFeSc3js2myYNOXVJ3Ya+RGVxnshRYgsvErfAOglKAiy1Eo1vhzxqtUvjCyS5gtewzkmvSSg==} - dependencies: - '@emotion/hash': 0.8.0 - '@emotion/memoize': 0.7.4 - '@emotion/unitless': 0.7.5 - '@emotion/utils': 0.11.3 - csstype: 2.6.20 - dev: true - - /@emotion/serialize/1.0.3: - resolution: {integrity: sha512-2mSSvgLfyV3q+iVh3YWgNlUc2a9ZlDU7DjuP5MjK3AXRR0dYigCrP99aeFtaB2L/hjfEZdSThn5dsZ0ufqbvsA==} + /@emotion/serialize/1.0.4: + resolution: {integrity: sha512-1JHamSpH8PIfFwAMryO2bNka+y8+KA5yga5Ocf2d7ZEiJjb7xlLW7aknBGZqJLajuLOvJ+72vN+IBSwPlXD1Pg==} dependencies: '@emotion/hash': 0.8.0 '@emotion/memoize': 0.7.5 '@emotion/unitless': 0.7.5 '@emotion/utils': 1.1.0 - csstype: 3.0.11 + csstype: 3.1.0 dev: false - /@emotion/sheet/0.9.4: - resolution: {integrity: sha512-zM9PFmgVSqBw4zL101Q0HrBVTGmpAxFZH/pYx/cjJT5advXguvcgjHFTCaIO3enL/xr89vK2bh0Mfyj9aa0ANA==} - dev: true - - /@emotion/sheet/1.1.0: - resolution: {integrity: sha512-u0AX4aSo25sMAygCuQTzS+HsImZFuS8llY8O7b9MDRzbJM0kVJlAz6KNDqcG7pOuQZJmj/8X/rAW+66kMnMW+g==} + /@emotion/sheet/1.1.1: + resolution: {integrity: sha512-J3YPccVRMiTZxYAY0IOq3kd+hUP8idY8Kz6B/Cyo+JuXq52Ek+zbPbSQUrVQp95aJ+lsAW7DPL1P2Z+U1jGkKA==} dev: false - /@emotion/styled-base/10.3.0_316248eb6686a2fd4fbadcfd00de37f3: - resolution: {integrity: sha512-PBRqsVKR7QRNkmfH78hTSSwHWcwDpecH9W6heujWAcyp2wdz/64PP73s7fWS1dIPm8/Exc8JAzYS8dEWXjv60w==} - peerDependencies: - '@emotion/core': ^10.0.28 - react: '>=16.3.0' - dependencies: - '@babel/runtime': 7.17.9 - '@emotion/core': 10.3.1_react@17.0.2 - '@emotion/is-prop-valid': 0.8.8 - '@emotion/serialize': 0.11.16 - '@emotion/utils': 0.11.3 - react: 17.0.2 - dev: true - - /@emotion/styled/10.3.0_316248eb6686a2fd4fbadcfd00de37f3: - resolution: {integrity: sha512-GgcUpXBBEU5ido+/p/mCT2/Xx+Oqmp9JzQRuC+a4lYM4i4LBBn/dWvc0rQ19N9ObA8/T4NWMrPNe79kMBDJqoQ==} - peerDependencies: - '@emotion/core': ^10.0.27 - react: '>=16.3.0' - dependencies: - '@emotion/core': 10.3.1_react@17.0.2 - '@emotion/styled-base': 10.3.0_316248eb6686a2fd4fbadcfd00de37f3 - babel-plugin-emotion: 10.2.2 - react: 17.0.2 - dev: true - - /@emotion/styled/11.8.1_71bb32ec948927cf157f054242616721: - resolution: {integrity: sha512-OghEVAYBZMpEquHZwuelXcRjRJQOVayvbmNR0zr174NHdmMgrNkLC6TljKC5h9lZLkN5WGrdUcrKlOJ4phhoTQ==} + /@emotion/styled/11.9.3_qbwmrvb6ojitbfrbjtglmejmbm: + resolution: {integrity: sha512-o3sBNwbtoVz9v7WB1/Y/AmXl69YHmei2mrVnK7JgyBJ//Rst5yqPZCecEJlMlJrFeWHp+ki/54uN265V2pEcXA==} peerDependencies: '@babel/core': ^7.0.0 '@emotion/react': ^11.0.0-rc.0 '@types/react': '*' - react: '>=16.8.0' + react: '>=16.8.0 || 18' peerDependenciesMeta: '@babel/core': optional: true '@types/react': optional: true dependencies: - '@babel/core': 7.17.10 - '@babel/runtime': 7.17.9 - '@emotion/babel-plugin': 11.9.2_@babel+core@7.17.10 - '@emotion/is-prop-valid': 1.1.2 - '@emotion/react': 11.9.0_0191d4f7d13d8e58ed45c49e4813c090 - '@emotion/serialize': 1.0.3 + '@babel/core': 7.18.5 + '@babel/runtime': 7.18.3 + '@emotion/babel-plugin': 11.9.2_@babel+core@7.18.5 + '@emotion/is-prop-valid': 1.1.3 + '@emotion/react': 11.9.3_7eu627umq2cbnjxmysy5yb5jqq + '@emotion/serialize': 1.0.4 '@emotion/utils': 1.1.0 - '@types/react': 17.0.45 - react: 17.0.2 + '@types/react': 18.0.14 + react: 18.2.0 dev: false /@emotion/stylis/0.8.5: @@ -5256,25 +5245,22 @@ packages: /@emotion/unitless/0.7.5: resolution: {integrity: sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==} - /@emotion/utils/0.11.3: - resolution: {integrity: sha512-0o4l6pZC+hI88+bzuaX/6BgOvQVhbt2PfmxauVaYOGgbsAw14wdKyvMCZXnsnsHys94iadcF+RG/wZyx6+ZZBw==} - dev: true - /@emotion/utils/1.1.0: resolution: {integrity: sha512-iRLa/Y4Rs5H/f2nimczYmS5kFJEbpiVvgN3XVfZ022IYhuNA1IRSHEizcof88LtCTXtl9S2Cxt32KgaXEu72JQ==} dev: false /@emotion/weak-memoize/0.2.5: resolution: {integrity: sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA==} + dev: false - /@eslint/eslintrc/1.2.3: - resolution: {integrity: sha512-uGo44hIwoLGNyduRpjdEpovcbMdd+Nv7amtmJxnKmI8xj6yd5LncmSwDa5NgX/41lIFJtkjD6YdVfgEzPfJ5UA==} + /@eslint/eslintrc/1.3.0: + resolution: {integrity: sha512-UWW0TMTmk2d7hLcWD1/e2g5HDM/HQ3csaLSqXCfqwh4uNDuNqlaKWXmEsL4Cs41Z0KnILNvwbHAah3C2yt06kw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: ajv: 6.12.6 debug: 4.3.4 espree: 9.3.2 - globals: 13.14.0 + globals: 13.15.0 ignore: 5.2.0 import-fresh: 3.3.0 js-yaml: 4.1.0 @@ -5287,47 +5273,47 @@ packages: /@gar/promisify/1.1.3: resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==} - /@graphql-tools/merge/8.2.10_graphql@16.4.0: - resolution: {integrity: sha512-wpg22seOTNfkIO8jFAgo8w1BsT3IS2OTMpkCNf+dvcKSP09SVidYCOliyWHgjDCmpCrvvSjOX855NUKDx/Biew==} + /@graphql-tools/merge/8.2.14_graphql@16.5.0: + resolution: {integrity: sha512-od6lTF732nwPX91G79eiJf+dyRBHxCaKe7QL4IYeH4d1k+NYqx/ihYpFJNjDaqxmpHH92Hr+TxsP9SYRK3/QKg==} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/utils': 8.6.9_graphql@16.4.0 - graphql: 16.4.0 - tslib: 2.3.1 + '@graphql-tools/utils': 8.6.13_graphql@16.5.0 + graphql: 16.5.0 + tslib: 2.4.0 dev: false - /@graphql-tools/mock/8.6.8_graphql@16.4.0: - resolution: {integrity: sha512-zBZApp8dDAovWKZ0rkZ4CwDT8Z+B35pIyRjeHkxvtKt5XyEAabEwkuSYMyFdsghDWwhMD/VAZ/6DXtA62Hnf+A==} + /@graphql-tools/mock/8.6.12_graphql@16.5.0: + resolution: {integrity: sha512-o4plehiIgwqIB3TJDlEx7s6CHucTnrYsv4LqBXfyiXN10E9x0Ab44UxXjePbAd9yJFYEUYp0thqb7WjI3/3cmQ==} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/schema': 8.3.10_graphql@16.4.0 - '@graphql-tools/utils': 8.6.9_graphql@16.4.0 + '@graphql-tools/schema': 8.3.14_graphql@16.5.0 + '@graphql-tools/utils': 8.6.13_graphql@16.5.0 fast-json-stable-stringify: 2.1.0 - graphql: 16.4.0 - tslib: 2.3.1 + graphql: 16.5.0 + tslib: 2.4.0 dev: false - /@graphql-tools/schema/8.3.10_graphql@16.4.0: - resolution: {integrity: sha512-tfhjSTi3OzheDrVzG7rkPZg2BbQjmZRLM2vvQoM2b1TnUwgUIbpAgcnf+AWDLRsoCOWlezeLgij1BLeAR0Q0jg==} + /@graphql-tools/schema/8.3.14_graphql@16.5.0: + resolution: {integrity: sha512-ntA4pKwyyPHFFKcIw17FfqGZAiTNZl0tHieQpPIkN5fPc4oHcXOfaj1vBjtIC/Qn6H7XBBu3l2kMA8FpobdxTQ==} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - '@graphql-tools/merge': 8.2.10_graphql@16.4.0 - '@graphql-tools/utils': 8.6.9_graphql@16.4.0 - graphql: 16.4.0 - tslib: 2.3.1 + '@graphql-tools/merge': 8.2.14_graphql@16.5.0 + '@graphql-tools/utils': 8.6.13_graphql@16.5.0 + graphql: 16.5.0 + tslib: 2.4.0 value-or-promise: 1.0.11 dev: false - /@graphql-tools/utils/8.6.9_graphql@16.4.0: - resolution: {integrity: sha512-Z1X4d4GCT81+8CSt6SgU4t1w1UAUsAIRb67mI90k/zAs+ArkB95iE3bWXuJCUmd1+r8DGGtmUNOArtd6wkt+OQ==} + /@graphql-tools/utils/8.6.13_graphql@16.5.0: + resolution: {integrity: sha512-FiVqrQzj4cgz0HcZ3CxUs8NtBGPZFpmsVyIgwmL6YCwIhjJQnT72h8G3/vk5zVfjfesht85YGp0inWWuoCKWzg==} peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 + graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 dependencies: - graphql: 16.4.0 - tslib: 2.3.1 + graphql: 16.5.0 + tslib: 2.4.0 dev: false /@humanwhocodes/config-array/0.9.5: @@ -5366,7 +5352,7 @@ packages: engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: '@jest/types': 27.5.1 - '@types/node': 17.0.31 + '@types/node': 16.11.41 chalk: 4.1.2 jest-message-util: 27.5.1 jest-util: 27.5.1 @@ -5387,7 +5373,7 @@ packages: '@jest/test-result': 27.5.1 '@jest/transform': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 17.0.31 + '@types/node': 16.11.41 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.8.1 @@ -5418,7 +5404,7 @@ packages: - utf-8-validate dev: true - /@jest/core/27.5.1_ts-node@10.7.0: + /@jest/core/27.5.1_ts-node@10.8.1: resolution: {integrity: sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} peerDependencies: @@ -5432,14 +5418,14 @@ packages: '@jest/test-result': 27.5.1 '@jest/transform': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 17.0.31 + '@types/node': 16.11.41 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.8.1 exit: 0.1.2 graceful-fs: 4.2.10 jest-changed-files: 27.5.1 - jest-config: 27.5.1_ts-node@10.7.0 + jest-config: 27.5.1_ts-node@10.8.1 jest-haste-map: 27.5.1 jest-message-util: 27.5.1 jest-regex-util: 27.5.1 @@ -5469,7 +5455,7 @@ packages: dependencies: '@jest/fake-timers': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 17.0.31 + '@types/node': 16.11.41 jest-mock: 27.5.1 dev: true @@ -5479,7 +5465,7 @@ packages: dependencies: '@jest/types': 27.5.1 '@sinonjs/fake-timers': 8.1.0 - '@types/node': 17.0.31 + '@types/node': 16.11.41 jest-message-util: 27.5.1 jest-mock: 27.5.1 jest-util: 27.5.1 @@ -5508,11 +5494,11 @@ packages: '@jest/test-result': 27.5.1 '@jest/transform': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 17.0.31 + '@types/node': 16.11.41 chalk: 4.1.2 collect-v8-coverage: 1.0.1 exit: 0.1.2 - glob: 7.2.0 + glob: 7.2.3 graceful-fs: 4.2.10 istanbul-lib-coverage: 3.2.0 istanbul-lib-instrument: 5.2.0 @@ -5567,7 +5553,7 @@ packages: resolution: {integrity: sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==} engines: {node: '>= 10.14.2'} dependencies: - '@babel/core': 7.17.10 + '@babel/core': 7.18.5 '@jest/types': 26.6.2 babel-plugin-istanbul: 6.1.1 chalk: 4.1.2 @@ -5590,7 +5576,7 @@ packages: resolution: {integrity: sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - '@babel/core': 7.17.10 + '@babel/core': 7.18.5 '@jest/types': 27.5.1 babel-plugin-istanbul: 6.1.1 chalk: 4.1.2 @@ -5615,7 +5601,7 @@ packages: dependencies: '@types/istanbul-lib-coverage': 2.0.4 '@types/istanbul-reports': 3.0.1 - '@types/node': 17.0.31 + '@types/node': 18.0.0 '@types/yargs': 15.0.14 chalk: 4.1.2 dev: true @@ -5626,7 +5612,7 @@ packages: dependencies: '@types/istanbul-lib-coverage': 2.0.4 '@types/istanbul-reports': 3.0.1 - '@types/node': 17.0.31 + '@types/node': 16.11.41 '@types/yargs': 16.0.4 chalk: 4.1.2 dev: true @@ -5642,34 +5628,54 @@ packages: '@jridgewell/set-array': 1.1.1 '@jridgewell/sourcemap-codec': 1.4.13 + /@jridgewell/gen-mapping/0.3.1: + resolution: {integrity: sha512-GcHwniMlA2z+WFPWuY8lp3fsza0I8xPFMWL5+n8LYyP6PSvPrXf4+n8stDHZY2DM0zy9sVkRDy1jDI4XGzYVqg==} + engines: {node: '>=6.0.0'} + dependencies: + '@jridgewell/set-array': 1.1.1 + '@jridgewell/sourcemap-codec': 1.4.13 + '@jridgewell/trace-mapping': 0.3.13 + /@jridgewell/resolve-uri/3.0.7: resolution: {integrity: sha512-8cXDaBBHOr2pQ7j77Y6Vp5VDT2sIqWyWQ56TjEq4ih/a4iST3dItRe8Q9fp0rrIl9DoKhWQtUQz/YpOxLkXbNA==} engines: {node: '>=6.0.0'} - dev: true /@jridgewell/set-array/1.1.1: resolution: {integrity: sha512-Ct5MqZkLGEXTVmQYbGtx9SVqD2fqwvdubdps5D3djjAkgkKwT918VNOz65pEHFaYTeWcukmJmH5SwsA9Tn2ObQ==} engines: {node: '>=6.0.0'} + /@jridgewell/source-map/0.3.2: + resolution: {integrity: sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==} + dependencies: + '@jridgewell/gen-mapping': 0.3.1 + '@jridgewell/trace-mapping': 0.3.13 + dev: true + /@jridgewell/sourcemap-codec/1.4.13: resolution: {integrity: sha512-GryiOJmNcWbovBxTfZSF71V/mXbgcV3MewDe3kIMCLyIh5e7SKAeUZs+rMnJ8jkMolZ/4/VsdBmMrw3l+VdZ3w==} - /@jridgewell/trace-mapping/0.3.10: - resolution: {integrity: sha512-Q0YbBd6OTsXm8Y21+YUSDXupHnodNC2M4O18jtd3iwJ3+vMZNdKGols0a9G6JOK0dcJ3IdUUHoh908ZI6qhk8Q==} + /@jridgewell/trace-mapping/0.3.13: + resolution: {integrity: sha512-o1xbKhp9qnIAoHJSWd6KlCZfqslL4valSF81H8ImioOAxluWYWOpWkpyktY2vnt4tbrX9XYaxovq6cgowaJp2w==} + dependencies: + '@jridgewell/resolve-uri': 3.0.7 + '@jridgewell/sourcemap-codec': 1.4.13 + + /@jridgewell/trace-mapping/0.3.9: + resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==} dependencies: '@jridgewell/resolve-uri': 3.0.7 '@jridgewell/sourcemap-codec': 1.4.13 dev: true - /@leichtgewicht/ip-codec/2.0.3: - resolution: {integrity: sha512-nkalE/f1RvRGChwBnEIoBfSEYOXnCRdleKuv6+lePbMDrMZXeDQnqak5XDOeBgrPPyPfAdcCu/B5z+v3VhplGg==} + /@leichtgewicht/ip-codec/2.0.4: + resolution: {integrity: sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==} dev: true /@manypkg/find-root/1.1.0: resolution: {integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==} dependencies: - '@babel/runtime': 7.17.9 - '@types/node': 12.20.50 + '@babel/runtime': 7.18.3 + '@types/node': 12.20.55 find-up: 4.1.0 fs-extra: 8.1.0 dev: true @@ -5677,7 +5683,7 @@ packages: /@manypkg/get-packages/1.1.3: resolution: {integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==} dependencies: - '@babel/runtime': 7.17.9 + '@babel/runtime': 7.18.3 '@changesets/types': 4.1.0 '@manypkg/find-root': 1.1.0 fs-extra: 8.1.0 @@ -5703,17 +5709,6 @@ packages: - supports-color dev: false - /@mdx-js/loader/1.6.22_react@17.0.2: - resolution: {integrity: sha512-9CjGwy595NaxAYp0hF9B/A0lH6C8Rms97e2JS9d3jVUtILn6pT5i5IV965ra3lIWc7Rs1GG1tBdVF7dCowYe6Q==} - dependencies: - '@mdx-js/mdx': 1.6.22 - '@mdx-js/react': 1.6.22_react@17.0.2 - loader-utils: 2.0.0 - transitivePeerDependencies: - - react - - supports-color - dev: true - /@mdx-js/mdx/1.6.22: resolution: {integrity: sha512-AMxuLxPz2j5/6TpF/XSdKpQP1NlG0z11dFOlq+2IP/lSgl11GY8ji6S/rgsViN/L0BDvHvUMruRb7ub+24LUYA==} dependencies: @@ -5740,12 +5735,12 @@ packages: - supports-color dev: true - /@mdx-js/react/1.6.22_react@17.0.2: + /@mdx-js/react/1.6.22_react@18.2.0: resolution: {integrity: sha512-TDoPum4SHdfPiGSAaRBw7ECyI8VaHpK8GJugbJIJuqyh6kzw9ZLJZW3HGL3NNrJGxcAixUvqROm+YuQOo5eXtg==} peerDependencies: - react: ^16.13.1 || ^17.0.0 + react: ^16.13.1 || ^17.0.0 || 18 dependencies: - react: 17.0.2 + react: 18.2.0 dev: true /@mdx-js/util/1.6.22: @@ -5760,16 +5755,16 @@ packages: glob-to-regexp: 0.3.0 dev: true - /@mswjs/cookies/0.2.0: - resolution: {integrity: sha512-GTKYnIfXVP8GL8HRWrse+ujqDXCLKvu7+JoL6pvZFzS/d2i9pziByoWD69cOe35JNoSrx2DPNqrhUF+vgV3qUA==} + /@mswjs/cookies/0.2.1: + resolution: {integrity: sha512-0tDfcPw5/s7QsNQqS3knAvAD5w5PF1nNPagRhKO/yECY+sMbJxoC2sLWnH7Lzmh52mTSVLKDhd1r92Q3kfljnQ==} engines: {node: '>=14'} dependencies: '@types/set-cookie-parser': 2.4.2 - set-cookie-parser: 2.4.8 + set-cookie-parser: 2.5.0 dev: false - /@mswjs/data/0.10.0: - resolution: {integrity: sha512-yL6tGJI7z7EUOqMfSPW4SO7TbsCbmMqFqs7YBR/90ZSVJA9a5g+QuaWczvf0cmsRwyfnYvGF4vDLSWMV9aOXSg==} + /@mswjs/data/0.10.1_typescript@4.7.4: + resolution: {integrity: sha512-ne1vRWjUK9W24mCvuTH0EGPYq1RM01NMF4UtjvrLuQYfCf2nKEoy+iw+/j5EzXxZv6G+VnKTtAlYm63cPWd+sw==} dependencies: '@types/lodash': 4.14.182 '@types/md5': 2.3.2 @@ -5785,14 +5780,15 @@ packages: strict-event-emitter: 0.2.4 uuid: 8.3.2 optionalDependencies: - msw: 0.39.2 + msw: 0.43.0_typescript@4.7.4 transitivePeerDependencies: - encoding - supports-color + - typescript dev: false - /@mswjs/interceptors/0.15.1: - resolution: {integrity: sha512-D5B+ZJNlfvBm6ZctAfRBdNJdCHYAe2Ix4My5qfbHV5WH+3lkt3mmsjiWJzEh5ZwGDauzY487TldI275If7DJVw==} + /@mswjs/interceptors/0.16.6: + resolution: {integrity: sha512-7ax1sRx5s4ZWl0KvVhhcPOUoPbCCkVh8M8hYaqOyvoAQOiqLVzy+Z6Mh2ywPhYw4zudr5Mo/E8UT/zJBO/Wxrw==} engines: {node: '>=14'} dependencies: '@open-draft/until': 1.0.3 @@ -5850,17 +5846,17 @@ packages: mkdirp: 1.0.4 rimraf: 3.0.2 - /@nrwl/cli/14.1.4_typescript@4.6.4: - resolution: {integrity: sha512-XjJe/bnOKDYvvY9IxKdETWTGekRu/cN9wThwwlo8xo4Tqy1VK0MfqpDDALrFYp739NG5Zyuhtbz5+Ko48RK75g==} + /@nrwl/cli/14.3.6: + resolution: {integrity: sha512-MNCBzM3ZDsujEc5crltH/kEyNBKx6DofLHdpzY1EoiY+yF57W7E1B6ERkVUGDc52sR4snEUKpQLXdVFjwP+z8A==} dependencies: - nx: 14.1.4_typescript@4.6.4 + nx: 14.3.6 transitivePeerDependencies: - - supports-color - - typescript + - '@swc-node/register' + - '@swc/core' dev: true - /@nrwl/nx-cloud/14.0.3: - resolution: {integrity: sha512-08t9vnRzA5SAkG6gp+NrAGauraepHH0v4IByO4NQ+7JJ7JMWw0nt6fp/70wofRmem7MGQ+Y/AIgIc5T0m89k+w==} + /@nrwl/nx-cloud/14.1.2: + resolution: {integrity: sha512-ZMxxx+NNp06IDPJ8cbQDPNMNRuH+pM/RoC7ZsCriotDG3kpzour41OGf0UpnXSXcTJPlDyHG6Xi0XuPdjmpNSw==} hasBin: true dependencies: axios: 0.21.4 @@ -5872,14 +5868,14 @@ packages: - debug dev: true - /@nrwl/tao/14.1.4_typescript@4.6.4: - resolution: {integrity: sha512-Dk8/CM1/GTCYBuA5RJ59Vz1OJGK3Tf4KVE3QS7UpEkR/iWTPDmTtrcQmTLSgtX+tYgca5dMWHV9WfiJjKW2/ow==} + /@nrwl/tao/14.3.6: + resolution: {integrity: sha512-g3y6VRq4wNtbFZIclJwRR/1hcTesx6h64g7h80VWtyRw0pVq/0zAjb8abeQSTDLM15uc1pQJYPEfsR/KgI3Sow==} hasBin: true dependencies: - nx: 14.1.4_typescript@4.6.4 + nx: 14.3.6 transitivePeerDependencies: - - supports-color - - typescript + - '@swc-node/register' + - '@swc/core' dev: true /@open-draft/until/1.0.3: @@ -5895,8 +5891,8 @@ packages: node-gyp-build: 4.4.0 dev: true - /@pmmmwh/react-refresh-webpack-plugin/0.5.5_06cd85ae30adde416cafc06517ba554d: - resolution: {integrity: sha512-RbG7h6TuP6nFFYKJwbcToA1rjC1FyPg25NR2noAZ0vKI+la01KTSRPkuVPE+U88jXv7javx2JHglUcL1MHcshQ==} + /@pmmmwh/react-refresh-webpack-plugin/0.5.7_aumhct55s6lhceplyc622fxoum: + resolution: {integrity: sha512-bcKCAzF0DV2IIROp9ZHkRJa6O4jy7NlnHdWL3GmcUxYWNjLXkK5kfELELwEfSP5hXPfVL/qOGMAROuMQb9GG8Q==} engines: {node: '>= 10.13'} peerDependencies: '@types/webpack': 4.x || 5.x @@ -5923,22 +5919,23 @@ packages: dependencies: ansi-html-community: 0.0.8 common-path-prefix: 3.0.0 - core-js-pure: 3.22.4 - error-stack-parser: 2.0.7 + core-js-pure: 3.23.1 + error-stack-parser: 2.1.4 find-up: 5.0.0 html-entities: 2.3.3 loader-utils: 2.0.2 react-refresh: 0.11.0 schema-utils: 3.1.1 - source-map: 0.7.3 - webpack: 4.46.0 + source-map: 0.7.4 + webpack: 5.73.0 dev: true /@popperjs/core/2.11.5: resolution: {integrity: sha512-9X2obfABZuDVLCgPK9aX0a/x4jaOEweTTWE2+9sr0Qqqevj2Uv5XorvusThmc9XGYpS9yI+fhh8RTafBtGposw==} + dev: false /@protobufjs/aspromise/1.1.2: - resolution: {integrity: sha1-m4sMxmPWaafY9vXQiToU00jzD78=} + resolution: {integrity: sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==} dev: false /@protobufjs/base64/1.1.2: @@ -5950,88 +5947,49 @@ packages: dev: false /@protobufjs/eventemitter/1.1.0: - resolution: {integrity: sha1-NVy8mLr61ZePntCV85diHx0Ga3A=} + resolution: {integrity: sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q==} dev: false /@protobufjs/fetch/1.1.0: - resolution: {integrity: sha1-upn7WYYUr2VwDBYZ/wbUVLDYTEU=} + resolution: {integrity: sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ==} dependencies: '@protobufjs/aspromise': 1.1.2 '@protobufjs/inquire': 1.1.0 dev: false /@protobufjs/float/1.0.2: - resolution: {integrity: sha1-Xp4avctz/Ap8uLKR33jIy9l7h9E=} + resolution: {integrity: sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==} dev: false /@protobufjs/inquire/1.1.0: - resolution: {integrity: sha1-/yAOPnzyQp4tyvwRQIKOjMY48Ik=} + resolution: {integrity: sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q==} dev: false /@protobufjs/path/1.1.2: - resolution: {integrity: sha1-bMKyDFya1q0NzP0hynZz2Nf79o0=} + resolution: {integrity: sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==} dev: false /@protobufjs/pool/1.1.0: - resolution: {integrity: sha1-Cf0V8tbTq/qbZbw2ZQbWrXhG/1Q=} + resolution: {integrity: sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==} dev: false /@protobufjs/utf8/1.1.0: - resolution: {integrity: sha1-p3c2C1s5oaLlEG+OhY8v0tBgxXA=} + resolution: {integrity: sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==} dev: false - /@reach/alert/0.13.2_react-dom@17.0.2+react@17.0.2: - resolution: {integrity: sha512-LDz83AXCrClyq/MWe+0vaZfHp1Ytqn+kgL5VxG7rirUvmluWaj/snxzfNPWn0Ma4K2YENmXXRC/iHt5X95SqIg==} + /@react-aria/ssr/3.2.0_react@18.2.0: + resolution: {integrity: sha512-wwJFdkl+Q8NU5yJ4NvdAOqx5LM3QtUVoSjuK7Ey8jZ4WS4bB0EqT3Kr3IInBs257HzZ5nXCiKXKE4NGXXuIRWA==} peerDependencies: - react: ^16.8.0 || 17.x - react-dom: ^16.8.0 || 17.x + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || 18 dependencies: - '@reach/utils': 0.13.2_react-dom@17.0.2+react@17.0.2 - '@reach/visually-hidden': 0.13.2_react-dom@17.0.2+react@17.0.2 - prop-types: 15.8.1 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - tslib: 2.4.0 + '@babel/runtime': 7.18.3 + react: 18.2.0 dev: false - /@reach/utils/0.13.2_react-dom@17.0.2+react@17.0.2: - resolution: {integrity: sha512-3ir6cN60zvUrwjOJu7C6jec/samqAeyAB12ZADK+qjnmQPdzSYldrFWwDVV5H0WkhbYXR3uh+eImu13hCetNPQ==} + /@reduxjs/toolkit/1.8.2_kkwg4cbsojnjnupd3btipussee: + resolution: {integrity: sha512-CtPw5TkN1pHRigMFCOS/0qg3b/yfPV5qGCsltVnIz7bx4PKTJlGHYfIxm97qskLknMzuGfjExaYdXJ77QTL0vg==} peerDependencies: - react: ^16.8.0 || 17.x - react-dom: ^16.8.0 || 17.x - dependencies: - '@types/warning': 3.0.0 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - tslib: 2.4.0 - warning: 4.0.3 - dev: false - - /@reach/visually-hidden/0.13.2_react-dom@17.0.2+react@17.0.2: - resolution: {integrity: sha512-sPZwNS0/duOuG0mYwE5DmgEAzW9VhgU3aIt1+mrfT/xiT9Cdncqke+kRBQgU708q/Ttm9tWsoHni03nn/SuPTQ==} - peerDependencies: - react: ^16.8.0 || 17.x - react-dom: ^16.8.0 || 17.x - dependencies: - prop-types: 15.8.1 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - tslib: 2.4.0 - dev: false - - /@react-aria/ssr/3.1.2_react@17.0.2: - resolution: {integrity: sha512-amXY11ImpokvkTMeKRHjsSsG7v1yzzs6yeqArCyBIk60J3Yhgxwx9Cah+Uu/804ATFwqzN22AXIo7SdtIaMP+g==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 - dependencies: - '@babel/runtime': 7.17.9 - react: 17.0.2 - dev: false - - /@reduxjs/toolkit/1.8.1_react-redux@7.2.8+react@17.0.2: - resolution: {integrity: sha512-Q6mzbTpO9nOYRnkwpDlFOAbQnd3g7zj7CtHAZWz5SzE5lcV97Tf8f3SzOO8BoPOMYBFgfZaqTUZqgGu+a0+Fng==} - peerDependencies: - react: ^16.9.0 || ^17.0.0 || ^18 + react: ^16.9.0 || ^17.0.0 || ^18 || 18 react-redux: ^7.2.1 || ^8.0.0-beta peerDependenciesMeta: react: @@ -6039,18 +5997,18 @@ packages: react-redux: optional: true dependencies: - immer: 9.0.12 - react: 17.0.2 - react-redux: 7.2.8_react-dom@17.0.2+react@17.0.2 + immer: 9.0.15 + react: 18.2.0 + react-redux: 8.0.2_fzknh3pugl53jp7xsetxkg5ani redux: 4.2.0 redux-thunk: 2.4.1_redux@4.2.0 - reselect: 4.1.5 + reselect: 4.1.6 dev: false - /@reduxjs/toolkit/1.8.1_react@17.0.2: - resolution: {integrity: sha512-Q6mzbTpO9nOYRnkwpDlFOAbQnd3g7zj7CtHAZWz5SzE5lcV97Tf8f3SzOO8BoPOMYBFgfZaqTUZqgGu+a0+Fng==} + /@reduxjs/toolkit/1.8.2_react@18.2.0: + resolution: {integrity: sha512-CtPw5TkN1pHRigMFCOS/0qg3b/yfPV5qGCsltVnIz7bx4PKTJlGHYfIxm97qskLknMzuGfjExaYdXJ77QTL0vg==} peerDependencies: - react: ^16.9.0 || ^17.0.0 || ^18 + react: ^16.9.0 || ^17.0.0 || ^18 || 18 react-redux: ^7.2.1 || ^8.0.0-beta peerDependenciesMeta: react: @@ -6058,59 +6016,59 @@ packages: react-redux: optional: true dependencies: - immer: 9.0.12 - react: 17.0.2 + immer: 9.0.15 + react: 18.2.0 redux: 4.2.0 redux-thunk: 2.4.1_redux@4.2.0 - reselect: 4.1.5 + reselect: 4.1.6 dev: true - /@restart/hooks/0.4.7_react@17.0.2: + /@restart/hooks/0.4.7_react@18.2.0: resolution: {integrity: sha512-ZbjlEHcG+FQtpDPHd7i4FzNNvJf2enAwZfJbpM8CW7BhmOAbsHpZe3tsHwfQUrBuyrxWqPYp2x5UMnilWcY22A==} peerDependencies: - react: '>=16.8.0' + react: '>=16.8.0 || 18' dependencies: dequal: 2.0.2 - react: 17.0.2 + react: 18.2.0 dev: false - /@restart/ui/1.2.0_react-dom@17.0.2+react@17.0.2: + /@restart/ui/1.2.0_biqbaboplfbrettd7655fr4n2y: resolution: {integrity: sha512-oIh2t3tG8drZtZ9SlaV5CY6wGsUViHk8ZajjhcI+74IQHyWy+AnxDv8rJR5wVgsgcgrPBUvGNkC1AEdcGNPaLQ==} peerDependencies: - react: '>=16.14.0' - react-dom: '>=16.14.0' + react: '>=16.14.0 || 18' + react-dom: '>=16.14.0 || 18' dependencies: - '@babel/runtime': 7.17.9 + '@babel/runtime': 7.18.3 '@popperjs/core': 2.11.5 - '@react-aria/ssr': 3.1.2_react@17.0.2 - '@restart/hooks': 0.4.7_react@17.0.2 + '@react-aria/ssr': 3.2.0_react@18.2.0 + '@restart/hooks': 0.4.7_react@18.2.0 '@types/warning': 3.0.0 dequal: 2.0.2 dom-helpers: 5.2.1 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - uncontrollable: 7.2.1_react@17.0.2 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + uncontrollable: 7.2.1_react@18.2.0 warning: 4.0.3 dev: false - /@rjsf/core/4.2.0_react@17.0.2: + /@rjsf/core/4.2.0_react@18.2.0: resolution: {integrity: sha512-bGWWCZjXHhBCkzag1Yh6F7a15/D6AqKRyks1szYWdCe+4jwWU3maC3apUxHJlHFRz3V1aBW6j6i/UB6zHmFXLQ==} engines: {node: '>=12'} peerDependencies: - react: '>=16 || >=17' + react: '>=16 || >=17 || 18' dependencies: '@types/json-schema': 7.0.11 ajv: 6.12.6 - core-js-pure: 3.22.4 + core-js-pure: 3.23.1 json-schema-merge-allof: 0.6.0 jsonpointer: 5.0.0 lodash: 4.17.21 nanoid: 3.3.4 prop-types: 15.8.1 - react: 17.0.2 + react: 18.2.0 react-is: 16.13.1 - /@rollup/plugin-babel/5.3.1_18dfcb1ca7050ba6f445f613f30091b1: + /@rollup/plugin-babel/5.3.1_za5spbk65gc2bmrclluhieacz4: resolution: {integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==} engines: {node: '>= 10.0.0'} peerDependencies: @@ -6121,44 +6079,44 @@ packages: '@types/babel__core': optional: true dependencies: - '@babel/core': 7.17.10 + '@babel/core': 7.18.5 '@babel/helper-module-imports': 7.16.7 - '@rollup/pluginutils': 3.1.0_rollup@2.72.1 - rollup: 2.72.1 + '@rollup/pluginutils': 3.1.0_rollup@2.75.7 + rollup: 2.75.7 dev: true - /@rollup/plugin-commonjs/22.0.0_rollup@2.72.1: - resolution: {integrity: sha512-Ktvf2j+bAO+30awhbYoCaXpBcyPmJbaEUYClQns/+6SNCYFURbvBiNbWgHITEsIgDDWCDUclWRKEuf8cwZCFoQ==} + /@rollup/plugin-commonjs/22.0.1_rollup@2.75.7: + resolution: {integrity: sha512-dGfEZvdjDHObBiP5IvwTKMVeq/tBZGMBHZFMdIV1ClMM/YoWS34xrHFGfag9SN2ZtMgNZRFruqvxZQEa70O6nQ==} engines: {node: '>= 12.0.0'} peerDependencies: rollup: ^2.68.0 dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.72.1 + '@rollup/pluginutils': 3.1.0_rollup@2.75.7 commondir: 1.0.1 estree-walker: 2.0.2 - glob: 7.2.0 + glob: 7.2.3 is-reference: 1.2.1 magic-string: 0.25.9 - resolve: 1.22.0 - rollup: 2.72.1 + resolve: 1.22.1 + rollup: 2.75.7 dev: true - /@rollup/plugin-node-resolve/13.3.0_rollup@2.72.1: + /@rollup/plugin-node-resolve/13.3.0_rollup@2.75.7: resolution: {integrity: sha512-Lus8rbUo1eEcnS4yTFKLZrVumLPY+YayBdWXgFSHYhTT2iJbMhoaaBL3xl5NCdeRytErGr8tZ0L71BMRmnlwSw==} engines: {node: '>= 10.0.0'} peerDependencies: rollup: ^2.42.0 dependencies: - '@rollup/pluginutils': 3.1.0_rollup@2.72.1 + '@rollup/pluginutils': 3.1.0_rollup@2.75.7 '@types/resolve': 1.17.1 deepmerge: 4.2.2 is-builtin-module: 3.1.0 is-module: 1.0.0 - resolve: 1.22.0 - rollup: 2.72.1 + resolve: 1.22.1 + rollup: 2.75.7 dev: true - /@rollup/pluginutils/3.1.0_rollup@2.72.1: + /@rollup/pluginutils/3.1.0_rollup@2.75.7: resolution: {integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==} engines: {node: '>= 8.0.0'} peerDependencies: @@ -6167,7 +6125,7 @@ packages: '@types/estree': 0.0.39 estree-walker: 1.0.1 picomatch: 2.3.1 - rollup: 2.72.1 + rollup: 2.75.7 dev: true /@rollup/pluginutils/4.2.1: @@ -6213,98 +6171,94 @@ packages: resolution: {integrity: sha512-+iTbntw2IZPb/anVDbypzfQa+ay64MW0Zo8aJ8gZPWMMK6/OubMVb6lUPMagqjOPnmtauXnFCACVl3O7ogjeqQ==} dev: true - /@storybook/addon-actions/6.4.22_569957a51d469c962fcce166a59b9f78: - resolution: {integrity: sha512-t2w3iLXFul+R/1ekYxIEzUOZZmvEa7EzUAVAuCHP4i6x0jBnTTZ7sAIUVRaxVREPguH5IqI/2OklYhKanty2Yw==} + /@storybook/addon-actions/6.5.9_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-wDYm3M1bN+zcYZV3Q24M03b/P8DDpvj1oSoY6VLlxDAi56h8qZB/voeIS2I6vWXOB79C5tbwljYNQO0GsufS0g==} peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 peerDependenciesMeta: react: optional: true react-dom: optional: true dependencies: - '@storybook/addons': 6.4.22_react-dom@17.0.2+react@17.0.2 - '@storybook/api': 6.4.22_react-dom@17.0.2+react@17.0.2 - '@storybook/components': 6.4.22_569957a51d469c962fcce166a59b9f78 - '@storybook/core-events': 6.4.22 - '@storybook/csf': 0.0.2--canary.87bc651.0 - '@storybook/theming': 6.4.22_react-dom@17.0.2+react@17.0.2 - core-js: 3.22.4 + '@storybook/addons': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/api': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/client-logger': 6.5.9 + '@storybook/components': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/core-events': 6.5.9 + '@storybook/csf': 0.0.2--canary.4566f4d.1 + '@storybook/theming': 6.5.9_biqbaboplfbrettd7655fr4n2y + core-js: 3.23.1 fast-deep-equal: 3.1.3 global: 4.4.0 lodash: 4.17.21 polished: 4.2.2 prop-types: 15.8.1 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - react-inspector: 5.1.1_react@17.0.2 + 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.9 - telejson: 5.3.3 + telejson: 6.0.8 ts-dedent: 2.2.0 util-deprecate: 1.0.2 uuid-browser: 3.1.0 - transitivePeerDependencies: - - '@types/react' dev: true - /@storybook/addon-backgrounds/6.4.22_569957a51d469c962fcce166a59b9f78: - resolution: {integrity: sha512-xQIV1SsjjRXP7P5tUoGKv+pul1EY8lsV7iBXQb5eGbp4AffBj3qoYBSZbX4uiazl21o0MQiQoeIhhaPVaFIIGg==} + /@storybook/addon-backgrounds/6.5.9_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-9k+GiY5aiANLOct34ar29jqgdi5ZpCqpZ86zPH0GsEC6ifH6nzP4trLU0vFUe260XDCvB4g8YaI7JZKPhozERg==} peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 peerDependenciesMeta: react: optional: true react-dom: optional: true dependencies: - '@storybook/addons': 6.4.22_react-dom@17.0.2+react@17.0.2 - '@storybook/api': 6.4.22_react-dom@17.0.2+react@17.0.2 - '@storybook/client-logger': 6.4.22 - '@storybook/components': 6.4.22_569957a51d469c962fcce166a59b9f78 - '@storybook/core-events': 6.4.22 - '@storybook/csf': 0.0.2--canary.87bc651.0 - '@storybook/theming': 6.4.22_react-dom@17.0.2+react@17.0.2 - core-js: 3.22.4 + '@storybook/addons': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/api': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/client-logger': 6.5.9 + '@storybook/components': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/core-events': 6.5.9 + '@storybook/csf': 0.0.2--canary.4566f4d.1 + '@storybook/theming': 6.5.9_biqbaboplfbrettd7655fr4n2y + core-js: 3.23.1 global: 4.4.0 memoizerific: 1.11.3 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 regenerator-runtime: 0.13.9 ts-dedent: 2.2.0 util-deprecate: 1.0.2 - transitivePeerDependencies: - - '@types/react' dev: true - /@storybook/addon-controls/6.4.22_e3b193a2302c1414cb37d95ea9e37661: - resolution: {integrity: sha512-f/M/W+7UTEUnr/L6scBMvksq+ZA8GTfh3bomE5FtWyOyaFppq9k8daKAvdYNlzXAOrUUsoZVJDgpb20Z2VBiSQ==} + /@storybook/addon-controls/6.5.9_scxhmbcwnay7fgl5u4mcdzbnsi: + resolution: {integrity: sha512-VvjkgK32bGURKyWU2No6Q2B0RQZjLZk8D3neVNCnrWxwrl1G82StegxjRPn/UZm9+MZVPvTvI46nj1VdgOktnw==} peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 peerDependenciesMeta: react: optional: true react-dom: optional: true dependencies: - '@storybook/addons': 6.4.22_react-dom@17.0.2+react@17.0.2 - '@storybook/api': 6.4.22_react-dom@17.0.2+react@17.0.2 - '@storybook/client-logger': 6.4.22 - '@storybook/components': 6.4.22_569957a51d469c962fcce166a59b9f78 - '@storybook/core-common': 6.4.22_c27d1a60c40a02d579a39cc014e61bbe - '@storybook/csf': 0.0.2--canary.87bc651.0 - '@storybook/node-logger': 6.4.22 - '@storybook/store': 6.4.22_react-dom@17.0.2+react@17.0.2 - '@storybook/theming': 6.4.22_react-dom@17.0.2+react@17.0.2 - core-js: 3.22.4 + '@storybook/addons': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/api': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/client-logger': 6.5.9 + '@storybook/components': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/core-common': 6.5.9_scxhmbcwnay7fgl5u4mcdzbnsi + '@storybook/csf': 0.0.2--canary.4566f4d.1 + '@storybook/node-logger': 6.5.9 + '@storybook/store': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/theming': 6.5.9_biqbaboplfbrettd7655fr4n2y + core-js: 3.23.1 lodash: 4.17.21 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 ts-dedent: 2.2.0 transitivePeerDependencies: - - '@types/react' - eslint - supports-color - typescript @@ -6313,29 +6267,94 @@ packages: - webpack-command dev: true - /@storybook/addon-docs/6.4.22_37217de2bafac215b2e1d31389760731: - resolution: {integrity: sha512-9j+i+W+BGHJuRe4jUrqk6ubCzP4fc1xgFS2o8pakRiZgPn5kUQPdkticmsyh1XeEJifwhqjKJvkEDrcsleytDA==} + /@storybook/addon-docs/6.5.9_kegi444pbrxunz45jv6pd3z7ki: + resolution: {integrity: sha512-9lwOZyiOJFUgGd9ADVfcgpels5o0XOXqGMeVLuzT1160nopbZjNjo/3+YLJ0pyHRPpMJ4rmq2+vxRQR6PVRgPg==} peerDependencies: - '@storybook/angular': 6.4.22 - '@storybook/html': 6.4.22 - '@storybook/react': 6.4.22 - '@storybook/vue': 6.4.22 - '@storybook/vue3': 6.4.22 - '@storybook/web-components': 6.4.22 - lit: ^2.0.0 - lit-html: ^1.4.1 || ^2.0.0 - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - svelte: ^3.31.2 - sveltedoc-parser: ^4.1.0 - vue: ^2.6.10 || ^3.0.0 + '@storybook/mdx2-csf': ^0.0.3 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 + peerDependenciesMeta: + '@storybook/mdx2-csf': + optional: true + react: + optional: true + react-dom: + optional: true + dependencies: + '@babel/plugin-transform-react-jsx': 7.17.12_@babel+core@7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@jest/transform': 26.6.2 + '@mdx-js/react': 1.6.22_react@18.2.0 + '@storybook/addons': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/api': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/components': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/core-common': 6.5.9_scxhmbcwnay7fgl5u4mcdzbnsi + '@storybook/core-events': 6.5.9 + '@storybook/csf': 0.0.2--canary.4566f4d.1 + '@storybook/docs-tools': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/mdx1-csf': 0.0.1_@babel+core@7.18.5 + '@storybook/node-logger': 6.5.9 + '@storybook/postinstall': 6.5.9 + '@storybook/preview-web': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/source-loader': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/store': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/theming': 6.5.9_biqbaboplfbrettd7655fr4n2y + babel-loader: 8.2.5_te6ollfzjcco6mbxjl755ucqke + core-js: 3.23.1 + fast-deep-equal: 3.1.3 + global: 4.4.0 + lodash: 4.17.21 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + regenerator-runtime: 0.13.9 + remark-external-links: 8.0.0 + remark-slug: 6.1.0 + ts-dedent: 2.2.0 + util-deprecate: 1.0.2 + transitivePeerDependencies: + - '@babel/core' + - eslint + - supports-color + - typescript + - vue-template-compiler + - webpack + - webpack-cli + - webpack-command + dev: true + + /@storybook/addon-essentials/6.5.9_kegi444pbrxunz45jv6pd3z7ki: + resolution: {integrity: sha512-V9ThjKQsde4A2Es20pLFBsn0MWx2KCJuoTcTsANP4JDcbvEmj8UjbDWbs8jAU+yzJT5r+CI6NoWmQudv12ZOgw==} + peerDependencies: + '@babel/core': ^7.9.6 + '@storybook/angular': '*' + '@storybook/builder-manager4': '*' + '@storybook/builder-manager5': '*' + '@storybook/builder-webpack4': '*' + '@storybook/builder-webpack5': '*' + '@storybook/html': '*' + '@storybook/vue': '*' + '@storybook/vue3': '*' + '@storybook/web-components': '*' + lit: '*' + lit-html: '*' + react: '*' + react-dom: '*' + svelte: '*' + sveltedoc-parser: '*' + vue: '*' webpack: '*' peerDependenciesMeta: '@storybook/angular': optional: true - '@storybook/html': + '@storybook/builder-manager4': optional: true - '@storybook/react': + '@storybook/builder-manager5': + optional: true + '@storybook/builder-webpack4': + optional: true + '@storybook/builder-webpack5': + optional: true + '@storybook/html': optional: true '@storybook/vue': optional: true @@ -6360,367 +6379,233 @@ packages: webpack: optional: true dependencies: - '@babel/core': 7.17.10 - '@babel/generator': 7.17.10 - '@babel/parser': 7.17.10 - '@babel/plugin-transform-react-jsx': 7.17.3_@babel+core@7.17.10 - '@babel/preset-env': 7.17.10_@babel+core@7.17.10 - '@jest/transform': 26.6.2 - '@mdx-js/loader': 1.6.22_react@17.0.2 - '@mdx-js/mdx': 1.6.22 - '@mdx-js/react': 1.6.22_react@17.0.2 - '@storybook/addons': 6.4.22_react-dom@17.0.2+react@17.0.2 - '@storybook/api': 6.4.22_react-dom@17.0.2+react@17.0.2 - '@storybook/builder-webpack4': 6.4.22_e3b193a2302c1414cb37d95ea9e37661 - '@storybook/client-logger': 6.4.22 - '@storybook/components': 6.4.22_569957a51d469c962fcce166a59b9f78 - '@storybook/core': 6.4.22_8fc0f0a5c8a2ee8a437f36426b340149 - '@storybook/core-events': 6.4.22 - '@storybook/csf': 0.0.2--canary.87bc651.0 - '@storybook/csf-tools': 6.4.22 - '@storybook/node-logger': 6.4.22 - '@storybook/postinstall': 6.4.22 - '@storybook/preview-web': 6.4.22_react-dom@17.0.2+react@17.0.2 - '@storybook/react': 6.4.22_4d22b00dd3d7f19624f22f7dc5573020 - '@storybook/source-loader': 6.4.22_react-dom@17.0.2+react@17.0.2 - '@storybook/store': 6.4.22_react-dom@17.0.2+react@17.0.2 - '@storybook/theming': 6.4.22_react-dom@17.0.2+react@17.0.2 - acorn: 7.4.1 - acorn-jsx: 5.3.2_acorn@7.4.1 - acorn-walk: 7.2.0 - core-js: 3.22.4 - doctrine: 3.0.0 - escodegen: 2.0.0 - fast-deep-equal: 3.1.3 - global: 4.4.0 - html-tags: 3.2.0 - js-string-escape: 1.0.1 - loader-utils: 2.0.2 - lodash: 4.17.21 - nanoid: 3.3.4 - p-limit: 3.1.0 - prettier: 2.3.0 - prop-types: 15.8.1 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - react-element-to-jsx-string: 14.3.4_react-dom@17.0.2+react@17.0.2 + '@babel/core': 7.18.5 + '@storybook/addon-actions': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/addon-backgrounds': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/addon-controls': 6.5.9_scxhmbcwnay7fgl5u4mcdzbnsi + '@storybook/addon-docs': 6.5.9_kegi444pbrxunz45jv6pd3z7ki + '@storybook/addon-measure': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/addon-outline': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/addon-toolbars': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/addon-viewport': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/addons': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/api': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/core-common': 6.5.9_scxhmbcwnay7fgl5u4mcdzbnsi + '@storybook/node-logger': 6.5.9 + core-js: 3.23.1 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 regenerator-runtime: 0.13.9 - remark-external-links: 8.0.0 - remark-slug: 6.1.0 ts-dedent: 2.2.0 - util-deprecate: 1.0.2 - webpack: 5.72.0 + webpack: 5.73.0 transitivePeerDependencies: - - '@storybook/builder-webpack5' - - '@storybook/manager-webpack5' - - '@types/react' - - bluebird - - bufferutil - - encoding + - '@storybook/mdx2-csf' - eslint - supports-color - typescript - - utf-8-validate - vue-template-compiler - webpack-cli - webpack-command dev: true - /@storybook/addon-essentials/6.4.22_812f23d28fb76e4b6852d091bbbb7e31: - resolution: {integrity: sha512-GTv291fqvWq2wzm7MruBvCGuWaCUiuf7Ca3kzbQ/WqWtve7Y/1PDsqRNQLGZrQxkXU0clXCqY1XtkTrtA3WGFQ==} + /@storybook/addon-measure/6.5.9_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-0aA22wD0CIEUccsEbWkckCOXOwr4VffofMH1ToVCOeqBoyLOMB0gxFubESeprqM54CWsYh2DN1uujgD6508cwA==} peerDependencies: - '@babel/core': ^7.9.6 - '@storybook/vue': 6.4.22 - '@storybook/web-components': 6.4.22 - babel-loader: ^8.0.0 - lit-html: ^1.4.1 || ^2.0.0-rc.3 - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - webpack: '*' + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 peerDependenciesMeta: - '@storybook/vue': - optional: true - '@storybook/web-components': - optional: true - lit-html: - optional: true react: optional: true react-dom: optional: true - webpack: + dependencies: + '@storybook/addons': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/api': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/client-logger': 6.5.9 + '@storybook/components': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/core-events': 6.5.9 + '@storybook/csf': 0.0.2--canary.4566f4d.1 + core-js: 3.23.1 + global: 4.4.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + dev: true + + /@storybook/addon-outline/6.5.9_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-oJ1DK3BDJr6aTlZc9axfOxV1oDkZO7hOohgUQDaKO1RZrSpyQsx2ViK2X6p/W7JhFJHKh7rv+nGCaVlLz3YIZA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 + peerDependenciesMeta: + react: + optional: true + react-dom: optional: true dependencies: - '@babel/core': 7.17.10 - '@storybook/addon-actions': 6.4.22_569957a51d469c962fcce166a59b9f78 - '@storybook/addon-backgrounds': 6.4.22_569957a51d469c962fcce166a59b9f78 - '@storybook/addon-controls': 6.4.22_e3b193a2302c1414cb37d95ea9e37661 - '@storybook/addon-docs': 6.4.22_37217de2bafac215b2e1d31389760731 - '@storybook/addon-measure': 6.4.22_569957a51d469c962fcce166a59b9f78 - '@storybook/addon-outline': 6.4.22_569957a51d469c962fcce166a59b9f78 - '@storybook/addon-toolbars': 6.4.22_569957a51d469c962fcce166a59b9f78 - '@storybook/addon-viewport': 6.4.22_569957a51d469c962fcce166a59b9f78 - '@storybook/addons': 6.4.22_react-dom@17.0.2+react@17.0.2 - '@storybook/api': 6.4.22_react-dom@17.0.2+react@17.0.2 - '@storybook/node-logger': 6.4.22 - babel-loader: 8.2.5_887a5110397f957d9e06dd05497793db - core-js: 3.22.4 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + '@storybook/addons': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/api': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/client-logger': 6.5.9 + '@storybook/components': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/core-events': 6.5.9 + '@storybook/csf': 0.0.2--canary.4566f4d.1 + core-js: 3.23.1 + global: 4.4.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 regenerator-runtime: 0.13.9 ts-dedent: 2.2.0 - webpack: 5.72.0 - transitivePeerDependencies: - - '@storybook/angular' - - '@storybook/builder-webpack5' - - '@storybook/html' - - '@storybook/manager-webpack5' - - '@storybook/react' - - '@storybook/vue3' - - '@types/react' - - bluebird - - bufferutil - - encoding - - eslint - - lit - - supports-color - - svelte - - sveltedoc-parser - - typescript - - utf-8-validate - - vue - - vue-template-compiler - - webpack-cli - - webpack-command dev: true - /@storybook/addon-measure/6.4.22_569957a51d469c962fcce166a59b9f78: - resolution: {integrity: sha512-CjDXoCNIXxNfXfgyJXPc0McjCcwN1scVNtHa9Ckr+zMjiQ8pPHY7wDZCQsG69KTqcWHiVfxKilI82456bcHYhQ==} + /@storybook/addon-toolbars/6.5.9_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-6JFQNHYVZUwp17p5rppc+iQJ2QOIWPTF+ni1GMMThjc84mzXs2+899Sf1aPFTvrFJTklmT+bPX6x4aUTouVa1w==} peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 peerDependenciesMeta: react: optional: true react-dom: optional: true dependencies: - '@storybook/addons': 6.4.22_react-dom@17.0.2+react@17.0.2 - '@storybook/api': 6.4.22_react-dom@17.0.2+react@17.0.2 - '@storybook/client-logger': 6.4.22 - '@storybook/components': 6.4.22_569957a51d469c962fcce166a59b9f78 - '@storybook/core-events': 6.4.22 - '@storybook/csf': 0.0.2--canary.87bc651.0 - core-js: 3.22.4 - global: 4.4.0 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - transitivePeerDependencies: - - '@types/react' - dev: true - - /@storybook/addon-outline/6.4.22_569957a51d469c962fcce166a59b9f78: - resolution: {integrity: sha512-VIMEzvBBRbNnupGU7NV0ahpFFb6nKVRGYWGREjtABdFn2fdKr1YicOHFe/3U7hRGjb5gd+VazSvyUvhaKX9T7Q==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - '@storybook/addons': 6.4.22_react-dom@17.0.2+react@17.0.2 - '@storybook/api': 6.4.22_react-dom@17.0.2+react@17.0.2 - '@storybook/client-logger': 6.4.22 - '@storybook/components': 6.4.22_569957a51d469c962fcce166a59b9f78 - '@storybook/core-events': 6.4.22 - '@storybook/csf': 0.0.2--canary.87bc651.0 - core-js: 3.22.4 - global: 4.4.0 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + '@storybook/addons': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/api': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/client-logger': 6.5.9 + '@storybook/components': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/theming': 6.5.9_biqbaboplfbrettd7655fr4n2y + core-js: 3.23.1 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 regenerator-runtime: 0.13.9 - ts-dedent: 2.2.0 - transitivePeerDependencies: - - '@types/react' dev: true - /@storybook/addon-toolbars/6.4.22_569957a51d469c962fcce166a59b9f78: - resolution: {integrity: sha512-FFyj6XDYpBBjcUu6Eyng7R805LUbVclEfydZjNiByAoDVyCde9Hb4sngFxn/T4fKAfBz/32HKVXd5iq4AHYtLg==} + /@storybook/addon-viewport/6.5.9_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-thKS+iw6M7ueDQQ7M66STZ5rgtJKliAcIX6UCopo0Ffh4RaRYmX6MCjqtvBKk8joyXUvm9SpWQemJD9uBQrjgw==} peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 peerDependenciesMeta: react: optional: true react-dom: optional: true dependencies: - '@storybook/addons': 6.4.22_react-dom@17.0.2+react@17.0.2 - '@storybook/api': 6.4.22_react-dom@17.0.2+react@17.0.2 - '@storybook/components': 6.4.22_569957a51d469c962fcce166a59b9f78 - '@storybook/theming': 6.4.22_react-dom@17.0.2+react@17.0.2 - core-js: 3.22.4 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - regenerator-runtime: 0.13.9 - transitivePeerDependencies: - - '@types/react' - dev: true - - /@storybook/addon-viewport/6.4.22_569957a51d469c962fcce166a59b9f78: - resolution: {integrity: sha512-6jk0z49LemeTblez5u2bYXYr6U+xIdLbywe3G283+PZCBbEDE6eNYy2d2HDL+LbCLbezJBLYPHPalElphjJIcw==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - dependencies: - '@storybook/addons': 6.4.22_react-dom@17.0.2+react@17.0.2 - '@storybook/api': 6.4.22_react-dom@17.0.2+react@17.0.2 - '@storybook/client-logger': 6.4.22 - '@storybook/components': 6.4.22_569957a51d469c962fcce166a59b9f78 - '@storybook/core-events': 6.4.22 - '@storybook/theming': 6.4.22_react-dom@17.0.2+react@17.0.2 - core-js: 3.22.4 + '@storybook/addons': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/api': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/client-logger': 6.5.9 + '@storybook/components': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/core-events': 6.5.9 + '@storybook/theming': 6.5.9_biqbaboplfbrettd7655fr4n2y + core-js: 3.23.1 global: 4.4.0 memoizerific: 1.11.3 prop-types: 15.8.1 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 regenerator-runtime: 0.13.9 - transitivePeerDependencies: - - '@types/react' dev: true - /@storybook/addons/6.4.22_react-dom@17.0.2+react@17.0.2: - resolution: {integrity: sha512-P/R+Jsxh7pawKLYo8MtE3QU/ilRFKbtCewV/T1o5U/gm8v7hKQdFz3YdRMAra4QuCY8bQIp7MKd2HrB5aH5a1A==} + /@storybook/addons/6.5.9_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-adwdiXg+mntfPocLc1KXjZXyLgGk7Aac699Fwe+OUYPEC5tW347Rm/kFatcE556d42o5czcRiq3ZSIGWnm9ieQ==} peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 dependencies: - '@storybook/api': 6.4.22_react-dom@17.0.2+react@17.0.2 - '@storybook/channels': 6.4.22 - '@storybook/client-logger': 6.4.22 - '@storybook/core-events': 6.4.22 - '@storybook/csf': 0.0.2--canary.87bc651.0 - '@storybook/router': 6.4.22_react-dom@17.0.2+react@17.0.2 - '@storybook/theming': 6.4.22_react-dom@17.0.2+react@17.0.2 - '@types/webpack-env': 1.16.4 - core-js: 3.22.4 + '@storybook/api': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/channels': 6.5.9 + '@storybook/client-logger': 6.5.9 + '@storybook/core-events': 6.5.9 + '@storybook/csf': 0.0.2--canary.4566f4d.1 + '@storybook/router': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/theming': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@types/webpack-env': 1.17.0 + core-js: 3.23.1 global: 4.4.0 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 regenerator-runtime: 0.13.9 dev: true - /@storybook/api/6.4.22_react-dom@17.0.2+react@17.0.2: - resolution: {integrity: sha512-lAVI3o2hKupYHXFTt+1nqFct942up5dHH6YD7SZZJGyW21dwKC3HK1IzCsTawq3fZAKkgWFgmOO649hKk60yKg==} + /@storybook/api/6.5.9_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-9ylztnty4Y+ALU/ehW3BML9czjCAFsWvrwuCi6UgcwNjswwjSX3VRLhfD1KT3pl16ho//95LgZ0LnSwROCcPOA==} peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 dependencies: - '@storybook/channels': 6.4.22 - '@storybook/client-logger': 6.4.22 - '@storybook/core-events': 6.4.22 - '@storybook/csf': 0.0.2--canary.87bc651.0 - '@storybook/router': 6.4.22_react-dom@17.0.2+react@17.0.2 + '@storybook/channels': 6.5.9 + '@storybook/client-logger': 6.5.9 + '@storybook/core-events': 6.5.9 + '@storybook/csf': 0.0.2--canary.4566f4d.1 + '@storybook/router': 6.5.9_biqbaboplfbrettd7655fr4n2y '@storybook/semver': 7.3.2 - '@storybook/theming': 6.4.22_react-dom@17.0.2+react@17.0.2 - core-js: 3.22.4 + '@storybook/theming': 6.5.9_biqbaboplfbrettd7655fr4n2y + core-js: 3.23.1 fast-deep-equal: 3.1.3 global: 4.4.0 lodash: 4.17.21 memoizerific: 1.11.3 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 regenerator-runtime: 0.13.9 store2: 2.13.2 - telejson: 5.3.3 + telejson: 6.0.8 ts-dedent: 2.2.0 util-deprecate: 1.0.2 dev: true - /@storybook/builder-webpack4/6.4.22_e3b193a2302c1414cb37d95ea9e37661: - resolution: {integrity: sha512-A+GgGtKGnBneRFSFkDarUIgUTI8pYFdLmUVKEAGdh2hL+vLXAz9A46sEY7C8LQ85XWa8TKy3OTDxqR4+4iWj3A==} + /@storybook/builder-webpack4/6.5.9_scxhmbcwnay7fgl5u4mcdzbnsi: + resolution: {integrity: sha512-YOeA4++9uRZ8Hog1wC60yjaxBOiI1FRQNtax7b9E7g+kP8UlSCPCGcv4gls9hFmzbzTOPfQTWnToA9Oa6jzRVw==} peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 typescript: '*' peerDependenciesMeta: typescript: optional: true dependencies: - '@babel/core': 7.17.10 - '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-proposal-decorators': 7.17.9_@babel+core@7.17.10 - '@babel/plugin-proposal-export-default-from': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-proposal-object-rest-spread': 7.17.3_@babel+core@7.17.10 - '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-proposal-private-methods': 7.16.11_@babel+core@7.17.10 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.17.10 - '@babel/plugin-transform-arrow-functions': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-transform-block-scoping': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-transform-classes': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-transform-destructuring': 7.17.7_@babel+core@7.17.10 - '@babel/plugin-transform-for-of': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-transform-spread': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.17.10 - '@babel/preset-env': 7.17.10_@babel+core@7.17.10 - '@babel/preset-react': 7.16.7_@babel+core@7.17.10 - '@babel/preset-typescript': 7.16.7_@babel+core@7.17.10 - '@storybook/addons': 6.4.22_react-dom@17.0.2+react@17.0.2 - '@storybook/api': 6.4.22_react-dom@17.0.2+react@17.0.2 - '@storybook/channel-postmessage': 6.4.22 - '@storybook/channels': 6.4.22 - '@storybook/client-api': 6.4.22_react-dom@17.0.2+react@17.0.2 - '@storybook/client-logger': 6.4.22 - '@storybook/components': 6.4.22_569957a51d469c962fcce166a59b9f78 - '@storybook/core-common': 6.4.22_c27d1a60c40a02d579a39cc014e61bbe - '@storybook/core-events': 6.4.22 - '@storybook/node-logger': 6.4.22 - '@storybook/preview-web': 6.4.22_react-dom@17.0.2+react@17.0.2 - '@storybook/router': 6.4.22_react-dom@17.0.2+react@17.0.2 + '@babel/core': 7.18.5 + '@storybook/addons': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/api': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/channel-postmessage': 6.5.9 + '@storybook/channels': 6.5.9 + '@storybook/client-api': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/client-logger': 6.5.9 + '@storybook/components': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/core-common': 6.5.9_scxhmbcwnay7fgl5u4mcdzbnsi + '@storybook/core-events': 6.5.9 + '@storybook/node-logger': 6.5.9 + '@storybook/preview-web': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/router': 6.5.9_biqbaboplfbrettd7655fr4n2y '@storybook/semver': 7.3.2 - '@storybook/store': 6.4.22_react-dom@17.0.2+react@17.0.2 - '@storybook/theming': 6.4.22_react-dom@17.0.2+react@17.0.2 - '@storybook/ui': 6.4.22_569957a51d469c962fcce166a59b9f78 - '@types/node': 14.18.16 + '@storybook/store': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/theming': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/ui': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@types/node': 16.11.41 '@types/webpack': 4.41.32 autoprefixer: 9.8.8 - babel-loader: 8.2.5_a48671a7a0b12e26689d4cec3e702e28 - babel-plugin-macros: 2.8.0 - babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.17.10 + babel-loader: 8.2.5_p4a4vpdmvzvrx3lnpkqvj5nmla case-sensitive-paths-webpack-plugin: 2.4.0 - core-js: 3.22.4 + core-js: 3.23.1 css-loader: 3.6.0_webpack@4.46.0 file-loader: 6.2.0_webpack@4.46.0 find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 4.1.6_fd9ac946626c89e3cf2883682b7adefb - glob: 7.2.0 - glob-promise: 3.4.0_glob@7.2.0 + fork-ts-checker-webpack-plugin: 4.1.6_nsapsdlf2mgloyd736rc2bk2vq + glob: 7.2.3 + glob-promise: 3.4.0_glob@7.2.3 global: 4.4.0 html-webpack-plugin: 4.5.2_webpack@4.46.0 - pnp-webpack-plugin: 1.6.4_typescript@4.6.4 + pnp-webpack-plugin: 1.6.4_typescript@4.7.4 postcss: 7.0.39 postcss-flexbugs-fixes: 4.2.1 - postcss-loader: 4.3.0_postcss@7.0.39+webpack@4.46.0 + postcss-loader: 4.3.0_gzaxsinx64nntyd3vmdqwl7coe raw-loader: 4.0.2_webpack@4.46.0 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 stable: 0.1.8 style-loader: 1.3.0_webpack@4.46.0 terser-webpack-plugin: 4.2.3_webpack@4.46.0 ts-dedent: 2.2.0 - typescript: 4.6.4 - url-loader: 4.1.1_file-loader@6.2.0+webpack@4.46.0 + typescript: 4.7.4 + url-loader: 4.1.1_lit45vopotvaqup7lrvlnvtxwy util-deprecate: 1.0.2 webpack: 4.46.0 webpack-dev-middleware: 3.7.3_webpack@4.46.0 @@ -6728,7 +6613,6 @@ packages: webpack-hot-middleware: 2.25.1 webpack-virtual-modules: 0.2.2 transitivePeerDependencies: - - '@types/react' - bluebird - eslint - supports-color @@ -6737,59 +6621,59 @@ packages: - webpack-command dev: true - /@storybook/channel-postmessage/6.4.22: - resolution: {integrity: sha512-gt+0VZLszt2XZyQMh8E94TqjHZ8ZFXZ+Lv/Mmzl0Yogsc2H+6VzTTQO4sv0IIx6xLbpgG72g5cr8VHsxW5kuDQ==} + /@storybook/channel-postmessage/6.5.9: + resolution: {integrity: sha512-pX/0R8UW7ezBhCrafRaL20OvMRcmESYvQQCDgjqSzJyHkcG51GOhsd6Ge93eJ6QvRMm9+w0Zs93N2VKjVtz0Qw==} dependencies: - '@storybook/channels': 6.4.22 - '@storybook/client-logger': 6.4.22 - '@storybook/core-events': 6.4.22 - core-js: 3.22.4 + '@storybook/channels': 6.5.9 + '@storybook/client-logger': 6.5.9 + '@storybook/core-events': 6.5.9 + core-js: 3.23.1 global: 4.4.0 - qs: 6.10.3 - telejson: 5.3.3 + qs: 6.10.5 + telejson: 6.0.8 dev: true - /@storybook/channel-websocket/6.4.22: - resolution: {integrity: sha512-Bm/FcZ4Su4SAK5DmhyKKfHkr7HiHBui6PNutmFkASJInrL9wBduBfN8YQYaV7ztr8ezoHqnYRx8sj28jpwa6NA==} + /@storybook/channel-websocket/6.5.9: + resolution: {integrity: sha512-xtHvSNwuOhkgALwVshKWsoFhDmuvcosdYfxcfFGEiYKXIu46tRS5ZXmpmgEC/0JAVkVoFj5nL8bV7IY5np6oaA==} dependencies: - '@storybook/channels': 6.4.22 - '@storybook/client-logger': 6.4.22 - core-js: 3.22.4 + '@storybook/channels': 6.5.9 + '@storybook/client-logger': 6.5.9 + core-js: 3.23.1 global: 4.4.0 - telejson: 5.3.3 + telejson: 6.0.8 dev: true - /@storybook/channels/6.4.22: - resolution: {integrity: sha512-cfR74tu7MLah1A8Rru5sak71I+kH2e/sY6gkpVmlvBj4hEmdZp4Puj9PTeaKcMXh9DgIDPNA5mb8yvQH6VcyxQ==} + /@storybook/channels/6.5.9: + resolution: {integrity: sha512-FvGA35nV38UPXWOl9ERapFTJaxwSTamQ339s2Ev7E9riyRG+GRkgTWzf5kECJgS1PAYKd/7m/RqKJT9BVv6A5g==} dependencies: - core-js: 3.22.4 + core-js: 3.23.1 ts-dedent: 2.2.0 util-deprecate: 1.0.2 dev: true - /@storybook/client-api/6.4.22_react-dom@17.0.2+react@17.0.2: - resolution: {integrity: sha512-sO6HJNtrrdit7dNXQcZMdlmmZG1k6TswH3gAyP/DoYajycrTwSJ6ovkarzkO+0QcJ+etgra4TEdTIXiGHBMe/A==} + /@storybook/client-api/6.5.9_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-pc7JKJoWLesixUKvG2nV36HukUuYoGRyAgD3PpIV7qSBS4JixqZ3VAHFUtqV1UzfOSQTovLSl4a0rIRnpie6gA==} peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 dependencies: - '@storybook/addons': 6.4.22_react-dom@17.0.2+react@17.0.2 - '@storybook/channel-postmessage': 6.4.22 - '@storybook/channels': 6.4.22 - '@storybook/client-logger': 6.4.22 - '@storybook/core-events': 6.4.22 - '@storybook/csf': 0.0.2--canary.87bc651.0 - '@storybook/store': 6.4.22_react-dom@17.0.2+react@17.0.2 + '@storybook/addons': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/channel-postmessage': 6.5.9 + '@storybook/channels': 6.5.9 + '@storybook/client-logger': 6.5.9 + '@storybook/core-events': 6.5.9 + '@storybook/csf': 0.0.2--canary.4566f4d.1 + '@storybook/store': 6.5.9_biqbaboplfbrettd7655fr4n2y '@types/qs': 6.9.7 - '@types/webpack-env': 1.16.4 - core-js: 3.22.4 + '@types/webpack-env': 1.17.0 + core-js: 3.23.1 fast-deep-equal: 3.1.3 global: 4.4.0 lodash: 4.17.21 memoizerific: 1.11.3 - qs: 6.10.3 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + qs: 6.10.5 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 regenerator-runtime: 0.13.9 store2: 2.13.2 synchronous-promise: 2.0.15 @@ -6797,173 +6681,154 @@ packages: util-deprecate: 1.0.2 dev: true - /@storybook/client-logger/6.4.22: - resolution: {integrity: sha512-LXhxh/lcDsdGnK8kimqfhu3C0+D2ylCSPPQNbU0IsLRmTfbpQYMdyl0XBjPdHiRVwlL7Gkw5OMjYemQgJ02zlw==} + /@storybook/client-logger/6.5.9: + resolution: {integrity: sha512-DOHL6p0uiDd3gV/Sb2FR+Vh6OiPrrf8BrA06uvXWsMRIIvEEvnparxv9EvPg7FlmUX0T3nq7d3juwjx4F8Wbcg==} dependencies: - core-js: 3.22.4 + core-js: 3.23.1 global: 4.4.0 dev: true - /@storybook/components/6.4.22_569957a51d469c962fcce166a59b9f78: - resolution: {integrity: sha512-dCbXIJF9orMvH72VtAfCQsYbe57OP7fAADtR6YTwfCw9Sm1jFuZr8JbblQ1HcrXEoJG21nOyad3Hm5EYVb/sBw==} + /@storybook/components/6.5.9_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-BhfX980O9zn/1J4FNMeDo8ZvL1m5Ml3T4HRpfYmEBnf8oW5b5BeF6S2K2cwFStZRjWqm1feUcwNpZxCBVMkQnQ==} peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 dependencies: - '@popperjs/core': 2.11.5 - '@storybook/client-logger': 6.4.22 - '@storybook/csf': 0.0.2--canary.87bc651.0 - '@storybook/theming': 6.4.22_react-dom@17.0.2+react@17.0.2 - '@types/color-convert': 2.0.0 - '@types/overlayscrollbars': 1.12.1 + '@storybook/client-logger': 6.5.9 + '@storybook/csf': 0.0.2--canary.4566f4d.1 + '@storybook/theming': 6.5.9_biqbaboplfbrettd7655fr4n2y '@types/react-syntax-highlighter': 11.0.5 - color-convert: 2.0.1 - core-js: 3.22.4 - fast-deep-equal: 3.1.3 - global: 4.4.0 - lodash: 4.17.21 - markdown-to-jsx: 7.1.7_react@17.0.2 + core-js: 3.23.1 memoizerific: 1.11.3 - overlayscrollbars: 1.13.1 - polished: 4.2.2 - prop-types: 15.8.1 - react: 17.0.2 - react-colorful: 5.5.1_react-dom@17.0.2+react@17.0.2 - react-dom: 17.0.2_react@17.0.2 - react-popper-tooltip: 3.1.1_react-dom@17.0.2+react@17.0.2 - react-syntax-highlighter: 13.5.3_react@17.0.2 - react-textarea-autosize: 8.3.3_3df41e700a554c2356b362be396a0af4 + qs: 6.10.5 + 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.9 - ts-dedent: 2.2.0 util-deprecate: 1.0.2 - transitivePeerDependencies: - - '@types/react' dev: true - /@storybook/core-client/6.4.22_28c0ae18e5760da64eee80e2ae80d77b: - resolution: {integrity: sha512-uHg4yfCBeM6eASSVxStWRVTZrAnb4FT6X6v/xDqr4uXCpCttZLlBzrSDwPBLNNLtCa7ntRicHM8eGKIOD5lMYQ==} + /@storybook/core-client/6.5.9_c3hoyc4loabfhtyuh36vjkyyai: + resolution: {integrity: sha512-LY0QbhShowO+PQx3gao3wdVjpKMH1AaSLmuI95FrcjoMmSXGf96jVLKQp9mJRGeHIsAa93EQBYuCihZycM3Kbg==} peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 typescript: '*' webpack: '*' peerDependenciesMeta: typescript: optional: true dependencies: - '@storybook/addons': 6.4.22_react-dom@17.0.2+react@17.0.2 - '@storybook/channel-postmessage': 6.4.22 - '@storybook/channel-websocket': 6.4.22 - '@storybook/client-api': 6.4.22_react-dom@17.0.2+react@17.0.2 - '@storybook/client-logger': 6.4.22 - '@storybook/core-events': 6.4.22 - '@storybook/csf': 0.0.2--canary.87bc651.0 - '@storybook/preview-web': 6.4.22_react-dom@17.0.2+react@17.0.2 - '@storybook/store': 6.4.22_react-dom@17.0.2+react@17.0.2 - '@storybook/ui': 6.4.22_569957a51d469c962fcce166a59b9f78 + '@storybook/addons': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/channel-postmessage': 6.5.9 + '@storybook/channel-websocket': 6.5.9 + '@storybook/client-api': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/client-logger': 6.5.9 + '@storybook/core-events': 6.5.9 + '@storybook/csf': 0.0.2--canary.4566f4d.1 + '@storybook/preview-web': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/store': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/ui': 6.5.9_biqbaboplfbrettd7655fr4n2y airbnb-js-shims: 2.2.1 ansi-to-html: 0.6.15 - core-js: 3.22.4 + core-js: 3.23.1 global: 4.4.0 lodash: 4.17.21 - qs: 6.10.3 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + qs: 6.10.5 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 regenerator-runtime: 0.13.9 ts-dedent: 2.2.0 - typescript: 4.6.4 + typescript: 4.7.4 unfetch: 4.2.0 util-deprecate: 1.0.2 webpack: 4.46.0 - transitivePeerDependencies: - - '@types/react' dev: true - /@storybook/core-client/6.4.22_5285b4b1e131b98753dd62b549ba33a0: - resolution: {integrity: sha512-uHg4yfCBeM6eASSVxStWRVTZrAnb4FT6X6v/xDqr4uXCpCttZLlBzrSDwPBLNNLtCa7ntRicHM8eGKIOD5lMYQ==} + /@storybook/core-client/6.5.9_fmoa52rat4euvvdoa5odwjikjm: + resolution: {integrity: sha512-LY0QbhShowO+PQx3gao3wdVjpKMH1AaSLmuI95FrcjoMmSXGf96jVLKQp9mJRGeHIsAa93EQBYuCihZycM3Kbg==} peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 typescript: '*' webpack: '*' peerDependenciesMeta: typescript: optional: true dependencies: - '@storybook/addons': 6.4.22_react-dom@17.0.2+react@17.0.2 - '@storybook/channel-postmessage': 6.4.22 - '@storybook/channel-websocket': 6.4.22 - '@storybook/client-api': 6.4.22_react-dom@17.0.2+react@17.0.2 - '@storybook/client-logger': 6.4.22 - '@storybook/core-events': 6.4.22 - '@storybook/csf': 0.0.2--canary.87bc651.0 - '@storybook/preview-web': 6.4.22_react-dom@17.0.2+react@17.0.2 - '@storybook/store': 6.4.22_react-dom@17.0.2+react@17.0.2 - '@storybook/ui': 6.4.22_569957a51d469c962fcce166a59b9f78 + '@storybook/addons': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/channel-postmessage': 6.5.9 + '@storybook/channel-websocket': 6.5.9 + '@storybook/client-api': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/client-logger': 6.5.9 + '@storybook/core-events': 6.5.9 + '@storybook/csf': 0.0.2--canary.4566f4d.1 + '@storybook/preview-web': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/store': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/ui': 6.5.9_biqbaboplfbrettd7655fr4n2y airbnb-js-shims: 2.2.1 ansi-to-html: 0.6.15 - core-js: 3.22.4 + core-js: 3.23.1 global: 4.4.0 lodash: 4.17.21 - qs: 6.10.3 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + qs: 6.10.5 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 regenerator-runtime: 0.13.9 ts-dedent: 2.2.0 - typescript: 4.6.4 + typescript: 4.7.4 unfetch: 4.2.0 util-deprecate: 1.0.2 - webpack: 5.72.0 - transitivePeerDependencies: - - '@types/react' + webpack: 5.73.0 dev: true - /@storybook/core-common/6.4.22_c27d1a60c40a02d579a39cc014e61bbe: - resolution: {integrity: sha512-PD3N/FJXPNRHeQS2zdgzYFtqPLdi3MLwAicbnw+U3SokcsspfsAuyYHZOYZgwO8IAEKy6iCc7TpBdiSJZ/vAKQ==} + /@storybook/core-common/6.5.9_scxhmbcwnay7fgl5u4mcdzbnsi: + resolution: {integrity: sha512-NxOK0mrOCo0TWZ7Npc5HU66EKoRHlrtg18/ZixblLDWQMIqY9XCck8K1kJ8QYpYCHla+aHIsYUArFe2vhlEfZA==} peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 typescript: '*' peerDependenciesMeta: typescript: optional: true dependencies: - '@babel/core': 7.17.10 - '@babel/plugin-proposal-class-properties': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-proposal-decorators': 7.17.9_@babel+core@7.17.10 - '@babel/plugin-proposal-export-default-from': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-proposal-nullish-coalescing-operator': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-proposal-object-rest-spread': 7.17.3_@babel+core@7.17.10 - '@babel/plugin-proposal-optional-chaining': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-proposal-private-methods': 7.16.11_@babel+core@7.17.10 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.17.10 - '@babel/plugin-transform-arrow-functions': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-transform-block-scoping': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-transform-classes': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-transform-destructuring': 7.17.7_@babel+core@7.17.10 - '@babel/plugin-transform-for-of': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-transform-parameters': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.17.10 - '@babel/plugin-transform-spread': 7.16.7_@babel+core@7.17.10 - '@babel/preset-env': 7.17.10_@babel+core@7.17.10 - '@babel/preset-react': 7.16.7_@babel+core@7.17.10 - '@babel/preset-typescript': 7.16.7_@babel+core@7.17.10 - '@babel/register': 7.17.7_@babel+core@7.17.10 - '@storybook/node-logger': 6.4.22 + '@babel/core': 7.18.5 + '@babel/plugin-proposal-class-properties': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-proposal-decorators': 7.18.2_@babel+core@7.18.5 + '@babel/plugin-proposal-export-default-from': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-proposal-object-rest-spread': 7.18.0_@babel+core@7.18.5 + '@babel/plugin-proposal-optional-chaining': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-proposal-private-methods': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-proposal-private-property-in-object': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.18.5 + '@babel/plugin-transform-arrow-functions': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-transform-block-scoping': 7.18.4_@babel+core@7.18.5 + '@babel/plugin-transform-classes': 7.18.4_@babel+core@7.18.5 + '@babel/plugin-transform-destructuring': 7.18.0_@babel+core@7.18.5 + '@babel/plugin-transform-for-of': 7.18.1_@babel+core@7.18.5 + '@babel/plugin-transform-parameters': 7.17.12_@babel+core@7.18.5 + '@babel/plugin-transform-shorthand-properties': 7.16.7_@babel+core@7.18.5 + '@babel/plugin-transform-spread': 7.17.12_@babel+core@7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/preset-react': 7.17.12_@babel+core@7.18.5 + '@babel/preset-typescript': 7.17.12_@babel+core@7.18.5 + '@babel/register': 7.17.7_@babel+core@7.18.5 + '@storybook/node-logger': 6.5.9 '@storybook/semver': 7.3.2 - '@types/node': 14.18.16 + '@types/node': 16.11.41 '@types/pretty-hrtime': 1.0.1 - babel-loader: 8.2.5_a48671a7a0b12e26689d4cec3e702e28 + babel-loader: 8.2.5_p4a4vpdmvzvrx3lnpkqvj5nmla babel-plugin-macros: 3.1.0 - babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.17.10 + babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.18.5 chalk: 4.1.2 - core-js: 3.22.4 + core-js: 3.23.1 express: 4.18.1 - file-system-cache: 1.0.5 + file-system-cache: 1.1.0 find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 6.5.2_fd9ac946626c89e3cf2883682b7adefb + fork-ts-checker-webpack-plugin: 6.5.2_nsapsdlf2mgloyd736rc2bk2vq fs-extra: 9.1.0 - glob: 7.2.0 + glob: 7.2.3 handlebars: 4.7.7 interpret: 2.2.0 json5: 2.2.1 @@ -6971,13 +6836,13 @@ packages: picomatch: 2.3.1 pkg-dir: 5.0.0 pretty-hrtime: 1.0.3 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 resolve-from: 5.0.0 slash: 3.0.0 - telejson: 5.3.3 + telejson: 6.0.8 ts-dedent: 2.2.0 - typescript: 4.6.4 + typescript: 4.7.4 util-deprecate: 1.0.2 webpack: 4.46.0 transitivePeerDependencies: @@ -6988,19 +6853,19 @@ packages: - webpack-command dev: true - /@storybook/core-events/6.4.22: - resolution: {integrity: sha512-5GYY5+1gd58Gxjqex27RVaX6qbfIQmJxcbzbNpXGNSqwqAuIIepcV1rdCVm6I4C3Yb7/AQ3cN5dVbf33QxRIwA==} + /@storybook/core-events/6.5.9: + resolution: {integrity: sha512-tXt7a3ZvJOCeEKpNa/B5rQM5VI7UJLlOh3IHOImWn4HqoBRrZvbourmac+PRZAtXpos0h3c6554Hjapj/Sny5Q==} dependencies: - core-js: 3.22.4 + core-js: 3.23.1 dev: true - /@storybook/core-server/6.4.22_e3b193a2302c1414cb37d95ea9e37661: - resolution: {integrity: sha512-wFh3e2fa0un1d4+BJP+nd3FVWUO7uHTqv3OGBfOmzQMKp4NU1zaBNdSQG7Hz6mw0fYPBPZgBjPfsJRwIYLLZyw==} + /@storybook/core-server/6.5.9_scxhmbcwnay7fgl5u4mcdzbnsi: + resolution: {integrity: sha512-YeePGUrd5fQPvGzMhowh124KrcZURFpFXg1VB0Op3ESqCIsInoMZeObci4Gc+binMXC7vcv7aw3EwSLU37qJzQ==} peerDependencies: - '@storybook/builder-webpack5': 6.4.22 - '@storybook/manager-webpack5': 6.4.22 - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 + '@storybook/builder-webpack5': '*' + '@storybook/manager-webpack5': '*' + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 typescript: '*' peerDependenciesMeta: '@storybook/builder-webpack5': @@ -7011,18 +6876,19 @@ packages: optional: true dependencies: '@discoveryjs/json-ext': 0.5.7 - '@storybook/builder-webpack4': 6.4.22_e3b193a2302c1414cb37d95ea9e37661 - '@storybook/core-client': 6.4.22_28c0ae18e5760da64eee80e2ae80d77b - '@storybook/core-common': 6.4.22_c27d1a60c40a02d579a39cc014e61bbe - '@storybook/core-events': 6.4.22 - '@storybook/csf': 0.0.2--canary.87bc651.0 - '@storybook/csf-tools': 6.4.22 - '@storybook/manager-webpack4': 6.4.22_e3b193a2302c1414cb37d95ea9e37661 - '@storybook/node-logger': 6.4.22 + '@storybook/builder-webpack4': 6.5.9_scxhmbcwnay7fgl5u4mcdzbnsi + '@storybook/core-client': 6.5.9_c3hoyc4loabfhtyuh36vjkyyai + '@storybook/core-common': 6.5.9_scxhmbcwnay7fgl5u4mcdzbnsi + '@storybook/core-events': 6.5.9 + '@storybook/csf': 0.0.2--canary.4566f4d.1 + '@storybook/csf-tools': 6.5.9 + '@storybook/manager-webpack4': 6.5.9_scxhmbcwnay7fgl5u4mcdzbnsi + '@storybook/node-logger': 6.5.9 '@storybook/semver': 7.3.2 - '@storybook/store': 6.4.22_react-dom@17.0.2+react@17.0.2 - '@types/node': 14.18.16 - '@types/node-fetch': 2.6.1 + '@storybook/store': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/telemetry': 6.5.9_scxhmbcwnay7fgl5u4mcdzbnsi + '@types/node': 16.11.41 + '@types/node-fetch': 2.6.2 '@types/pretty-hrtime': 1.0.1 '@types/webpack': 4.41.32 better-opn: 2.1.1 @@ -7031,32 +6897,34 @@ packages: cli-table3: 0.6.2 commander: 6.2.1 compression: 1.7.4 - core-js: 3.22.4 + core-js: 3.23.1 cpy: 8.1.2 detect-port: 1.3.0 express: 4.18.1 - file-system-cache: 1.0.5 fs-extra: 9.1.0 + global: 4.4.0 globby: 11.1.0 - ip: 1.1.5 + ip: 2.0.0 lodash: 4.17.21 node-fetch: 2.6.7 + open: 8.4.0 pretty-hrtime: 1.0.3 prompts: 2.4.2 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 regenerator-runtime: 0.13.9 serve-favicon: 2.5.0 slash: 3.0.0 - telejson: 5.3.3 + telejson: 6.0.8 ts-dedent: 2.2.0 - typescript: 4.6.4 + typescript: 4.7.4 util-deprecate: 1.0.2 - watchpack: 2.3.1 + watchpack: 2.4.0 webpack: 4.46.0 - ws: 8.6.0 + ws: 8.8.0 + x-default-browser: 0.4.0 transitivePeerDependencies: - - '@types/react' + - '@storybook/mdx2-csf' - bluebird - bufferutil - encoding @@ -7068,29 +6936,31 @@ packages: - webpack-command dev: true - /@storybook/core/6.4.22_8fc0f0a5c8a2ee8a437f36426b340149: - resolution: {integrity: sha512-KZYJt7GM5NgKFXbPRZZZPEONZ5u/tE/cRbMdkn/zWN3He8+VP+65/tz8hbriI/6m91AWVWkBKrODSkeq59NgRA==} + /@storybook/core/6.5.9_si3kj4bzaraynkiv47htceipy4: + resolution: {integrity: sha512-Mt3TTQnjQt2/pa60A+bqDsAOrYpohapdtt4DDZEbS8h0V6u11KyYYh3w7FCySlL+sPEyogj63l5Ec76Jah3l2w==} peerDependencies: - '@storybook/builder-webpack5': 6.4.22 - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 + '@storybook/builder-webpack5': '*' + '@storybook/manager-webpack5': '*' + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 typescript: '*' webpack: '*' peerDependenciesMeta: '@storybook/builder-webpack5': optional: true + '@storybook/manager-webpack5': + optional: true typescript: optional: true dependencies: - '@storybook/core-client': 6.4.22_5285b4b1e131b98753dd62b549ba33a0 - '@storybook/core-server': 6.4.22_e3b193a2302c1414cb37d95ea9e37661 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - typescript: 4.6.4 - webpack: 5.72.0 + '@storybook/core-client': 6.5.9_fmoa52rat4euvvdoa5odwjikjm + '@storybook/core-server': 6.5.9_scxhmbcwnay7fgl5u4mcdzbnsi + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + typescript: 4.7.4 + webpack: 5.73.0 transitivePeerDependencies: - - '@storybook/manager-webpack5' - - '@types/react' + - '@storybook/mdx2-csf' - bluebird - bufferutil - encoding @@ -7102,121 +6972,103 @@ packages: - webpack-command dev: true - /@storybook/core/6.4.22_d4a1264bcde9d1c4cd8b76af02182c80: - resolution: {integrity: sha512-KZYJt7GM5NgKFXbPRZZZPEONZ5u/tE/cRbMdkn/zWN3He8+VP+65/tz8hbriI/6m91AWVWkBKrODSkeq59NgRA==} + /@storybook/csf-tools/6.5.9: + resolution: {integrity: sha512-RAdhsO2XmEDyWy0qNQvdKMLeIZAuyfD+tYlUwBHRU6DbByDucvwgMOGy5dF97YNJFmyo93EUYJzXjUrJs3U1LQ==} peerDependencies: - '@storybook/builder-webpack5': 6.4.22 - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 - typescript: '*' - webpack: '*' + '@storybook/mdx2-csf': ^0.0.3 peerDependenciesMeta: - '@storybook/builder-webpack5': - optional: true - typescript: + '@storybook/mdx2-csf': optional: true dependencies: - '@storybook/core-client': 6.4.22_28c0ae18e5760da64eee80e2ae80d77b - '@storybook/core-server': 6.4.22_e3b193a2302c1414cb37d95ea9e37661 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - typescript: 4.6.4 - webpack: 4.46.0 - transitivePeerDependencies: - - '@storybook/manager-webpack5' - - '@types/react' - - bluebird - - bufferutil - - encoding - - eslint - - supports-color - - utf-8-validate - - vue-template-compiler - - webpack-cli - - webpack-command - dev: true - - /@storybook/csf-tools/6.4.22: - resolution: {integrity: sha512-LMu8MZAiQspJAtMBLU2zitsIkqQv7jOwX7ih5JrXlyaDticH7l2j6Q+1mCZNWUOiMTizj0ivulmUsSaYbpToSw==} - dependencies: - '@babel/core': 7.17.10 - '@babel/generator': 7.17.10 - '@babel/parser': 7.17.10 - '@babel/plugin-transform-react-jsx': 7.17.3_@babel+core@7.17.10 - '@babel/preset-env': 7.17.10_@babel+core@7.17.10 - '@babel/traverse': 7.17.10 - '@babel/types': 7.17.10 - '@mdx-js/mdx': 1.6.22 - '@storybook/csf': 0.0.2--canary.87bc651.0 - core-js: 3.22.4 + '@babel/core': 7.18.5 + '@babel/generator': 7.18.2 + '@babel/parser': 7.18.5 + '@babel/plugin-transform-react-jsx': 7.17.12_@babel+core@7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/traverse': 7.18.5 + '@babel/types': 7.18.4 + '@storybook/csf': 0.0.2--canary.4566f4d.1 + '@storybook/mdx1-csf': 0.0.1_@babel+core@7.18.5 + core-js: 3.23.1 fs-extra: 9.1.0 global: 4.4.0 - js-string-escape: 1.0.1 - lodash: 4.17.21 - prettier: 2.3.0 regenerator-runtime: 0.13.9 ts-dedent: 2.2.0 transitivePeerDependencies: - supports-color dev: true - /@storybook/csf/0.0.2--canary.87bc651.0: - resolution: {integrity: sha512-ajk1Uxa+rBpFQHKrCcTmJyQBXZ5slfwHVEaKlkuFaW77it8RgbPJp/ccna3sgoi8oZ7FkkOyvv1Ve4SmwFqRqw==} + /@storybook/csf/0.0.2--canary.4566f4d.1: + resolution: {integrity: sha512-9OVvMVh3t9znYZwb0Svf/YQoxX2gVOeQTGe2bses2yj+a3+OJnCrUF3/hGv6Em7KujtOdL2LL+JnG49oMVGFgQ==} dependencies: lodash: 4.17.21 dev: true - /@storybook/manager-webpack4/6.4.22_e3b193a2302c1414cb37d95ea9e37661: - resolution: {integrity: sha512-nzhDMJYg0vXdcG0ctwE6YFZBX71+5NYaTGkxg3xT7gbgnP1YFXn9gVODvgq3tPb3gcRapjyOIxUa20rV+r8edA==} + /@storybook/docs-tools/6.5.9_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-UoTaXLvec8x+q+4oYIk/t8DBju9C3ZTGklqOxDIt+0kS3TFAqEgI3JhKXqQOXgN5zDcvLVSxi8dbVAeSxk2ktA==} + dependencies: + '@babel/core': 7.18.5 + '@storybook/csf': 0.0.2--canary.4566f4d.1 + '@storybook/store': 6.5.9_biqbaboplfbrettd7655fr4n2y + core-js: 3.23.1 + doctrine: 3.0.0 + lodash: 4.17.21 + regenerator-runtime: 0.13.9 + transitivePeerDependencies: + - react + - react-dom + - supports-color + dev: true + + /@storybook/manager-webpack4/6.5.9_scxhmbcwnay7fgl5u4mcdzbnsi: + resolution: {integrity: sha512-49LZlHqWc7zj9tQfOOANixPYmLxqWTTZceA6DSXnKd9xDiO2Gl23Y+l/CSPXNZGDB8QFAwpimwqyKJj/NLH45A==} peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 typescript: '*' peerDependenciesMeta: typescript: optional: true dependencies: - '@babel/core': 7.17.10 - '@babel/plugin-transform-template-literals': 7.16.7_@babel+core@7.17.10 - '@babel/preset-react': 7.16.7_@babel+core@7.17.10 - '@storybook/addons': 6.4.22_react-dom@17.0.2+react@17.0.2 - '@storybook/core-client': 6.4.22_28c0ae18e5760da64eee80e2ae80d77b - '@storybook/core-common': 6.4.22_c27d1a60c40a02d579a39cc014e61bbe - '@storybook/node-logger': 6.4.22 - '@storybook/theming': 6.4.22_react-dom@17.0.2+react@17.0.2 - '@storybook/ui': 6.4.22_569957a51d469c962fcce166a59b9f78 - '@types/node': 14.18.16 + '@babel/core': 7.18.5 + '@babel/plugin-transform-template-literals': 7.18.2_@babel+core@7.18.5 + '@babel/preset-react': 7.17.12_@babel+core@7.18.5 + '@storybook/addons': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/core-client': 6.5.9_c3hoyc4loabfhtyuh36vjkyyai + '@storybook/core-common': 6.5.9_scxhmbcwnay7fgl5u4mcdzbnsi + '@storybook/node-logger': 6.5.9 + '@storybook/theming': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/ui': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@types/node': 16.11.41 '@types/webpack': 4.41.32 - babel-loader: 8.2.5_a48671a7a0b12e26689d4cec3e702e28 + babel-loader: 8.2.5_p4a4vpdmvzvrx3lnpkqvj5nmla case-sensitive-paths-webpack-plugin: 2.4.0 chalk: 4.1.2 - core-js: 3.22.4 + core-js: 3.23.1 css-loader: 3.6.0_webpack@4.46.0 express: 4.18.1 file-loader: 6.2.0_webpack@4.46.0 - file-system-cache: 1.0.5 find-up: 5.0.0 fs-extra: 9.1.0 html-webpack-plugin: 4.5.2_webpack@4.46.0 node-fetch: 2.6.7 - pnp-webpack-plugin: 1.6.4_typescript@4.6.4 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + pnp-webpack-plugin: 1.6.4_typescript@4.7.4 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 read-pkg-up: 7.0.1 regenerator-runtime: 0.13.9 resolve-from: 5.0.0 style-loader: 1.3.0_webpack@4.46.0 - telejson: 5.3.3 + telejson: 6.0.8 terser-webpack-plugin: 4.2.3_webpack@4.46.0 ts-dedent: 2.2.0 - typescript: 4.6.4 - url-loader: 4.1.1_file-loader@6.2.0+webpack@4.46.0 + typescript: 4.7.4 + url-loader: 4.1.1_lit45vopotvaqup7lrvlnvtxwy util-deprecate: 1.0.2 webpack: 4.46.0 webpack-dev-middleware: 3.7.3_webpack@4.46.0 webpack-virtual-modules: 0.2.2 transitivePeerDependencies: - - '@types/react' - bluebird - encoding - eslint @@ -7226,41 +7078,60 @@ packages: - webpack-command dev: true - /@storybook/node-logger/6.4.22: - resolution: {integrity: sha512-sUXYFqPxiqM7gGH7gBXvO89YEO42nA4gBicJKZjj9e+W4QQLrftjF9l+mAw2K0mVE10Bn7r4pfs5oEZ0aruyyA==} + /@storybook/mdx1-csf/0.0.1_@babel+core@7.18.5: + resolution: {integrity: sha512-4biZIWWzoWlCarMZmTpqcJNgo/RBesYZwGFbQeXiGYsswuvfWARZnW9RE9aUEMZ4XPn7B1N3EKkWcdcWe/K2tg==} + dependencies: + '@babel/generator': 7.18.2 + '@babel/parser': 7.18.5 + '@babel/preset-env': 7.18.2_@babel+core@7.18.5 + '@babel/types': 7.18.4 + '@mdx-js/mdx': 1.6.22 + '@types/lodash': 4.14.182 + js-string-escape: 1.0.1 + loader-utils: 2.0.2 + lodash: 4.17.21 + prettier: 2.3.0 + ts-dedent: 2.2.0 + transitivePeerDependencies: + - '@babel/core' + - supports-color + dev: true + + /@storybook/node-logger/6.5.9: + resolution: {integrity: sha512-nZZNZG2Wtwv6Trxi3FrnIqUmB55xO+X/WQGPT5iKlqNjdRIu/T72mE7addcp4rbuWCQfZUhcDDGpBOwKtBxaGg==} dependencies: '@types/npmlog': 4.1.4 chalk: 4.1.2 - core-js: 3.22.4 + core-js: 3.23.1 npmlog: 5.0.1 pretty-hrtime: 1.0.3 dev: true - /@storybook/postinstall/6.4.22: - resolution: {integrity: sha512-LdIvA+l70Mp5FSkawOC16uKocefc+MZLYRHqjTjgr7anubdi6y7W4n9A7/Yw4IstZHoknfL88qDj/uK5N+Ahzw==} + /@storybook/postinstall/6.5.9: + resolution: {integrity: sha512-KQBupK+FMRrtSt8IL0MzCZ/w9qbd25Yxxp/+ajfWgZTRgsWgVFOqcDyMhS16eNbBp5qKIBCBDXfEF+/mK8HwQQ==} dependencies: - core-js: 3.22.4 + core-js: 3.23.1 dev: true - /@storybook/preview-web/6.4.22_react-dom@17.0.2+react@17.0.2: - resolution: {integrity: sha512-sWS+sgvwSvcNY83hDtWUUL75O2l2LY/GTAS0Zp2dh3WkObhtuJ/UehftzPZlZmmv7PCwhb4Q3+tZDKzMlFxnKQ==} + /@storybook/preview-web/6.5.9_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-4eMrO2HJyZUYyL/j+gUaDvry6iGedshwT5MQqe7J9FaA+Q2pNARQRB1X53f410w7S4sObRmYIAIluWPYdWym9w==} peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 dependencies: - '@storybook/addons': 6.4.22_react-dom@17.0.2+react@17.0.2 - '@storybook/channel-postmessage': 6.4.22 - '@storybook/client-logger': 6.4.22 - '@storybook/core-events': 6.4.22 - '@storybook/csf': 0.0.2--canary.87bc651.0 - '@storybook/store': 6.4.22_react-dom@17.0.2+react@17.0.2 + '@storybook/addons': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/channel-postmessage': 6.5.9 + '@storybook/client-logger': 6.5.9 + '@storybook/core-events': 6.5.9 + '@storybook/csf': 0.0.2--canary.4566f4d.1 + '@storybook/store': 6.5.9_biqbaboplfbrettd7655fr4n2y ansi-to-html: 0.6.15 - core-js: 3.22.4 + core-js: 3.23.1 global: 4.4.0 lodash: 4.17.21 - qs: 6.10.3 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + qs: 6.10.5 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 regenerator-runtime: 0.13.9 synchronous-promise: 2.0.15 ts-dedent: 2.2.0 @@ -7268,8 +7139,8 @@ packages: util-deprecate: 1.0.2 dev: true - /@storybook/react-docgen-typescript-plugin/1.0.2-canary.253f8c1.0_typescript@4.6.4+webpack@4.46.0: - resolution: {integrity: sha512-mmoRG/rNzAiTbh+vGP8d57dfcR2aP+5/Ll03KKFyfy5FqWFm/Gh7u27ikx1I3LmVMI8n6jh5SdWMkMKon7/tDw==} + /@storybook/react-docgen-typescript-plugin/1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0_3o2jfq6vfqxns3sz6wn2nnc3ei: + resolution: {integrity: sha512-eVg3BxlOm2P+chijHBTByr90IZVUtgRW56qEOLX7xlww2NBuKrcavBlcmn+HH7GIUktquWkMPtvy6e0W0NgA5w==} peerDependencies: typescript: '>= 3.x' webpack: '>= 4' @@ -7279,69 +7150,95 @@ packages: find-cache-dir: 3.3.2 flat-cache: 3.0.4 micromatch: 4.0.5 - react-docgen-typescript: 2.2.2_typescript@4.6.4 + react-docgen-typescript: 2.2.2_typescript@4.7.4 tslib: 2.4.0 - typescript: 4.6.4 - webpack: 4.46.0 + typescript: 4.7.4 + webpack: 5.73.0 transitivePeerDependencies: - supports-color dev: true - /@storybook/react/6.4.22_4d22b00dd3d7f19624f22f7dc5573020: - resolution: {integrity: sha512-5BFxtiguOcePS5Ty/UoH7C6odmvBYIZutfiy4R3Ua6FYmtxac5vP9r5KjCz1IzZKT8mCf4X+PuK1YvDrPPROgQ==} + /@storybook/react/6.5.9_qvaipyr63plem3mgv5krfvm7b4: + resolution: {integrity: sha512-Rp+QaTQAzxJhwuzJXVd49mnIBLQRlF8llTxPT2YoGHdrGkku/zl/HblQ6H2yzEf15367VyzaAv/BpLsO9Jlfxg==} engines: {node: '>=10.13.0'} hasBin: true peerDependencies: '@babel/core': ^7.11.5 - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 + '@storybook/builder-webpack4': '*' + '@storybook/builder-webpack5': '*' + '@storybook/manager-webpack4': '*' + '@storybook/manager-webpack5': '*' + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 + require-from-string: ^2.0.2 typescript: '*' peerDependenciesMeta: '@babel/core': optional: true + '@storybook/builder-webpack4': + optional: true + '@storybook/builder-webpack5': + optional: true + '@storybook/manager-webpack4': + optional: true + '@storybook/manager-webpack5': + optional: true typescript: optional: true dependencies: - '@babel/core': 7.17.10 - '@babel/preset-flow': 7.16.7_@babel+core@7.17.10 - '@babel/preset-react': 7.16.7_@babel+core@7.17.10 - '@pmmmwh/react-refresh-webpack-plugin': 0.5.5_06cd85ae30adde416cafc06517ba554d - '@storybook/addons': 6.4.22_react-dom@17.0.2+react@17.0.2 - '@storybook/core': 6.4.22_d4a1264bcde9d1c4cd8b76af02182c80 - '@storybook/core-common': 6.4.22_c27d1a60c40a02d579a39cc014e61bbe - '@storybook/csf': 0.0.2--canary.87bc651.0 - '@storybook/node-logger': 6.4.22 - '@storybook/react-docgen-typescript-plugin': 1.0.2-canary.253f8c1.0_typescript@4.6.4+webpack@4.46.0 + '@babel/core': 7.18.5 + '@babel/preset-flow': 7.17.12_@babel+core@7.18.5 + '@babel/preset-react': 7.17.12_@babel+core@7.18.5 + '@pmmmwh/react-refresh-webpack-plugin': 0.5.7_aumhct55s6lhceplyc622fxoum + '@storybook/addons': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/client-logger': 6.5.9 + '@storybook/core': 6.5.9_si3kj4bzaraynkiv47htceipy4 + '@storybook/core-common': 6.5.9_scxhmbcwnay7fgl5u4mcdzbnsi + '@storybook/csf': 0.0.2--canary.4566f4d.1 + '@storybook/docs-tools': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/node-logger': 6.5.9 + '@storybook/react-docgen-typescript-plugin': 1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0_3o2jfq6vfqxns3sz6wn2nnc3ei '@storybook/semver': 7.3.2 - '@storybook/store': 6.4.22_react-dom@17.0.2+react@17.0.2 - '@types/webpack-env': 1.16.4 + '@storybook/store': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@types/estree': 0.0.51 + '@types/node': 16.11.41 + '@types/webpack-env': 1.17.0 + acorn: 7.4.1 + acorn-jsx: 5.3.2_acorn@7.4.1 + acorn-walk: 7.2.0 babel-plugin-add-react-displayname: 0.0.5 - babel-plugin-named-asset-import: 0.3.8_@babel+core@7.17.10 babel-plugin-react-docgen: 4.2.1 - core-js: 3.22.4 + core-js: 3.23.1 + escodegen: 2.0.0 + fs-extra: 9.1.0 global: 4.4.0 + html-tags: 3.2.0 lodash: 4.17.21 prop-types: 15.8.1 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + react-element-to-jsx-string: 14.3.4_biqbaboplfbrettd7655fr4n2y react-refresh: 0.11.0 read-pkg-up: 7.0.1 regenerator-runtime: 0.13.9 + require-from-string: 2.0.2 ts-dedent: 2.2.0 - typescript: 4.6.4 - webpack: 4.46.0 + typescript: 4.7.4 + util-deprecate: 1.0.2 + webpack: 5.73.0 transitivePeerDependencies: - - '@storybook/builder-webpack5' - - '@storybook/manager-webpack5' - - '@types/react' + - '@storybook/mdx2-csf' + - '@swc/core' - '@types/webpack' - bluebird - bufferutil - encoding + - esbuild - eslint - sockjs-client - supports-color - type-fest + - uglify-js - utf-8-validate - vue-template-compiler - webpack-cli @@ -7351,25 +7248,19 @@ packages: - webpack-plugin-serve dev: true - /@storybook/router/6.4.22_react-dom@17.0.2+react@17.0.2: - resolution: {integrity: sha512-zeuE8ZgFhNerQX8sICQYNYL65QEi3okyzw7ynF58Ud6nRw4fMxSOHcj2T+nZCIU5ufozRL4QWD/Rg9P2s/HtLw==} + /@storybook/router/6.5.9_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-G2Xp/2r8vU2O34eelE+G5VbEEVFDeHcCURrVJEROh6dq2asFJAPbzslVXSeCqgOTNLSpRDJ2NcN5BckkNqmqJg==} peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 dependencies: - '@storybook/client-logger': 6.4.22 - core-js: 3.22.4 - fast-deep-equal: 3.1.3 - global: 4.4.0 - history: 5.0.0 - lodash: 4.17.21 + '@storybook/client-logger': 6.5.9 + core-js: 3.23.1 memoizerific: 1.11.3 - qs: 6.10.3 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - react-router: 6.3.0_react@17.0.2 - react-router-dom: 6.3.0_react-dom@17.0.2+react@17.0.2 - ts-dedent: 2.2.0 + qs: 6.10.5 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + regenerator-runtime: 0.13.9 dev: true /@storybook/semver/7.3.2: @@ -7377,47 +7268,47 @@ packages: engines: {node: '>=10'} hasBin: true dependencies: - core-js: 3.22.4 + core-js: 3.23.1 find-up: 4.1.0 dev: true - /@storybook/source-loader/6.4.22_react-dom@17.0.2+react@17.0.2: - resolution: {integrity: sha512-O4RxqPgRyOgAhssS6q1Rtc8LiOvPBpC1EqhCYWRV3K+D2EjFarfQMpjgPj18hC+QzpUSfzoBZYqsMECewEuLNw==} + /@storybook/source-loader/6.5.9_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-H03nFKaP6borfWMTTa9igBA+Jm2ph+FoVJImWC/X+LAmLSJYYSXuqSgmiZ/DZvbjxS4k8vccE2HXogne1IvaRA==} peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 dependencies: - '@storybook/addons': 6.4.22_react-dom@17.0.2+react@17.0.2 - '@storybook/client-logger': 6.4.22 - '@storybook/csf': 0.0.2--canary.87bc651.0 - core-js: 3.22.4 + '@storybook/addons': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/client-logger': 6.5.9 + '@storybook/csf': 0.0.2--canary.4566f4d.1 + core-js: 3.23.1 estraverse: 5.3.0 global: 4.4.0 loader-utils: 2.0.2 lodash: 4.17.21 prettier: 2.3.0 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 regenerator-runtime: 0.13.9 dev: true - /@storybook/store/6.4.22_react-dom@17.0.2+react@17.0.2: - resolution: {integrity: sha512-lrmcZtYJLc2emO+1l6AG4Txm9445K6Pyv9cGAuhOJ9Kks0aYe0YtvMkZVVry0RNNAIv6Ypz72zyKc/QK+tZLAQ==} + /@storybook/store/6.5.9_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-80pcDTcCwK6wUA63aWOp13urI77jfipIVee9mpVvbNyfrNN8kGv1BS0z/JHDxuV6rC4g7LG1fb+BurR0yki7BA==} peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 dependencies: - '@storybook/addons': 6.4.22_react-dom@17.0.2+react@17.0.2 - '@storybook/client-logger': 6.4.22 - '@storybook/core-events': 6.4.22 - '@storybook/csf': 0.0.2--canary.87bc651.0 - core-js: 3.22.4 + '@storybook/addons': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/client-logger': 6.5.9 + '@storybook/core-events': 6.5.9 + '@storybook/csf': 0.0.2--canary.4566f4d.1 + core-js: 3.23.1 fast-deep-equal: 3.1.3 global: 4.4.0 lodash: 4.17.21 memoizerific: 1.11.3 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 regenerator-runtime: 0.13.9 slash: 3.0.0 stable: 0.1.8 @@ -7426,232 +7317,69 @@ packages: util-deprecate: 1.0.2 dev: true - /@storybook/theming/6.4.22_react-dom@17.0.2+react@17.0.2: - resolution: {integrity: sha512-NVMKH/jxSPtnMTO4VCN1k47uztq+u9fWv4GSnzq/eezxdGg9ceGL4/lCrNGoNajht9xbrsZ4QvsJ/V2sVGM8wA==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 + /@storybook/telemetry/6.5.9_scxhmbcwnay7fgl5u4mcdzbnsi: + resolution: {integrity: sha512-JluoHCRhHAr4X0eUNVBSBi1JIBA92404Tu1TPdbN7x6gCZxHXXPTSUTAnspXp/21cTdMhY2x+kfZQ8fmlGK4MQ==} dependencies: - '@emotion/core': 10.3.1_react@17.0.2 - '@emotion/is-prop-valid': 0.8.8 - '@emotion/styled': 10.3.0_316248eb6686a2fd4fbadcfd00de37f3 - '@storybook/client-logger': 6.4.22 - core-js: 3.22.4 - deep-object-diff: 1.1.7 - emotion-theming: 10.3.0_316248eb6686a2fd4fbadcfd00de37f3 + '@storybook/client-logger': 6.5.9 + '@storybook/core-common': 6.5.9_scxhmbcwnay7fgl5u4mcdzbnsi + chalk: 4.1.2 + core-js: 3.23.1 + detect-package-manager: 2.0.1 + fetch-retry: 5.0.2 + fs-extra: 9.1.0 global: 4.4.0 - memoizerific: 1.11.3 - polished: 4.2.2 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - resolve-from: 5.0.0 - ts-dedent: 2.2.0 + isomorphic-unfetch: 3.1.0 + nanoid: 3.3.4 + read-pkg-up: 7.0.1 + regenerator-runtime: 0.13.9 + transitivePeerDependencies: + - encoding + - eslint + - react + - react-dom + - supports-color + - typescript + - vue-template-compiler + - webpack-cli + - webpack-command dev: true - /@storybook/ui/6.4.22_569957a51d469c962fcce166a59b9f78: - resolution: {integrity: sha512-UVjMoyVsqPr+mkS1L7m30O/xrdIEgZ5SCWsvqhmyMUok3F3tRB+6M+OA5Yy+cIVfvObpA7MhxirUT1elCGXsWQ==} + /@storybook/theming/6.5.9_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-KM0AMP5jMQPAdaO8tlbFCYqx9uYM/hZXGSVUhznhLYu7bhNAIK7ZVmXxyE/z/khM++8eUHzRoZGiO/cwCkg9Xw==} peerDependencies: - react: ^16.8.0 || ^17.0.0 - react-dom: ^16.8.0 || ^17.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 dependencies: - '@emotion/core': 10.3.1_react@17.0.2 - '@storybook/addons': 6.4.22_react-dom@17.0.2+react@17.0.2 - '@storybook/api': 6.4.22_react-dom@17.0.2+react@17.0.2 - '@storybook/channels': 6.4.22 - '@storybook/client-logger': 6.4.22 - '@storybook/components': 6.4.22_569957a51d469c962fcce166a59b9f78 - '@storybook/core-events': 6.4.22 - '@storybook/router': 6.4.22_react-dom@17.0.2+react@17.0.2 - '@storybook/semver': 7.3.2 - '@storybook/theming': 6.4.22_react-dom@17.0.2+react@17.0.2 - copy-to-clipboard: 3.3.1 - core-js: 3.22.4 - core-js-pure: 3.22.4 - downshift: 6.1.7_react@17.0.2 - emotion-theming: 10.3.0_316248eb6686a2fd4fbadcfd00de37f3 - fuse.js: 3.6.1 - global: 4.4.0 - lodash: 4.17.21 - markdown-to-jsx: 7.1.7_react@17.0.2 + '@storybook/client-logger': 6.5.9 + core-js: 3.23.1 memoizerific: 1.11.3 - polished: 4.2.2 - qs: 6.10.3 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - react-draggable: 4.4.5_react-dom@17.0.2+react@17.0.2 - react-helmet-async: 1.3.0_react-dom@17.0.2+react@17.0.2 - react-sizeme: 3.0.2 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + regenerator-runtime: 0.13.9 + dev: true + + /@storybook/ui/6.5.9_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-ryuPxJgtbb0gPXKGgGAUC+Z185xGAd1IvQ0jM5fJ0SisHXI8jteG3RaWhntOehi9qCg+64Vv6eH/cj9QYNHt1Q==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 + dependencies: + '@storybook/addons': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/api': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/channels': 6.5.9 + '@storybook/client-logger': 6.5.9 + '@storybook/components': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/core-events': 6.5.9 + '@storybook/router': 6.5.9_biqbaboplfbrettd7655fr4n2y + '@storybook/semver': 7.3.2 + '@storybook/theming': 6.5.9_biqbaboplfbrettd7655fr4n2y + core-js: 3.23.1 + memoizerific: 1.11.3 + qs: 6.10.5 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 regenerator-runtime: 0.13.9 resolve-from: 5.0.0 - store2: 2.13.2 - transitivePeerDependencies: - - '@types/react' - dev: true - - /@swc-node/core/1.9.0: - resolution: {integrity: sha512-vRnvsMtL9OxybA/Wun1ZhlDvB6MNs4Zujnina0VKdGk+yI6s87KUhdTcbAY6dQMZhQTLFiC1Lnv/BuwCKcCEug==} - engines: {node: '>= 10'} - dependencies: - '@swc/core': 1.2.179 - dev: true - - /@swc-node/register/1.5.1_typescript@4.6.4: - resolution: {integrity: sha512-6IL5s4QShKGs08qAeNou3rDA3gbp2WHk6fo0XnJXQn/aC9k6FnVBbj/thGOIEDtgNhC/DKpZT8tCY1LpQnOZFg==} - peerDependencies: - typescript: '>= 4.3' - dependencies: - '@swc-node/core': 1.9.0 - '@swc-node/sourcemap-support': 0.2.0 - colorette: 2.0.16 - debug: 4.3.4 - pirates: 4.0.5 - tslib: 2.4.0 - typescript: 4.6.4 - transitivePeerDependencies: - - supports-color - dev: true - - /@swc-node/sourcemap-support/0.2.0: - resolution: {integrity: sha512-FNrxdI6XMYfoNt81L8eFKEm1d8P82I1nPwS3MrnBGzZoMWB+seQhQK+iN6M5RreJxXbfZw5lF86LRjHEQeGMqg==} - dependencies: - source-map-support: 0.5.21 - dev: true - - /@swc/core-android-arm-eabi/1.2.179: - resolution: {integrity: sha512-86a0zDxgT+9xwakvAo14YmPF2H34i3nG/Vfq4WLXV5JRNQgylMIFMVWPMmCp4pRFeFnM+XunkepADoc9cxd7cg==} - engines: {node: '>=10'} - cpu: [arm] - os: [android] - requiresBuild: true - dev: true - optional: true - - /@swc/core-android-arm64/1.2.179: - resolution: {integrity: sha512-Se+b84pXxQ9t+w5gAs+U8htxc/ry7xfGGpalo7+KSzH96rsQPcuBL2MIeOxrL/E68eVsUk5RF457FoAkCobI2A==} - engines: {node: '>=10'} - cpu: [arm64] - os: [android] - requiresBuild: true - dev: true - optional: true - - /@swc/core-darwin-arm64/1.2.179: - resolution: {integrity: sha512-Jj0ZoIXpgt+/9a6GD/L68uuoMG4Lnq4wAp/n9gQQPw5CwiLuhZELPBqsrjfKVz/I/Iz24IbAJcEEZ3iaODaxdA==} - engines: {node: '>=10'} - cpu: [arm64] - os: [darwin] - requiresBuild: true - dev: true - optional: true - - /@swc/core-darwin-x64/1.2.179: - resolution: {integrity: sha512-GBF4BPFn170l1oZDBsNaZpiyPdyIXQmDOXtg8LGVFHvFire4n2jgjw/i6Fh4sefi1B+lc1LP6KmfOuMhLaBukg==} - engines: {node: '>=10'} - cpu: [x64] - os: [darwin] - requiresBuild: true - dev: true - optional: true - - /@swc/core-freebsd-x64/1.2.179: - resolution: {integrity: sha512-2ooBzQ4iEyuXZLz6iTyu5YW4rKIOSxZbP6UbrFT8aX/FLypBktkeKyad+4WpXQNC5vRxks1VUKS9eNh2BvbWwA==} - engines: {node: '>=10'} - cpu: [x64] - os: [freebsd] - requiresBuild: true - dev: true - optional: true - - /@swc/core-linux-arm-gnueabihf/1.2.179: - resolution: {integrity: sha512-Pf0r7eUYViCWnlTOx8LjceA3r+XGa0GXXEUfwLjQ8wZQUEhNN02hsCz6F2d9Q3WYkzNJVYXu87I6BUY+L9GWAQ==} - engines: {node: '>=10'} - cpu: [arm] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@swc/core-linux-arm64-gnu/1.2.179: - resolution: {integrity: sha512-Dqx48DJvxI0r7yFCZkopOo8/AVNlep/05BYxXv7UzZSiJpiYS8pAGwuboeOJwF83aaW7hT4vx+HLUDvUTTfSWQ==} - engines: {node: '>=10'} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@swc/core-linux-arm64-musl/1.2.179: - resolution: {integrity: sha512-wHYvSsP/qTQwVJKBBK1duUvbySHYL7BL8ge+IcAEjTy62K38z0mPg9j2nSqeSldBi7y1foudbKqUA9qwoAC9oQ==} - engines: {node: '>=10'} - cpu: [arm64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@swc/core-linux-x64-gnu/1.2.179: - resolution: {integrity: sha512-orVaK4BIa4qIW298uxvsKaeQLHqjZpxbaCATOnFibUBx2nX+P/MTHZm3WB1qgdmeKto8SEyFGkV8PAMcbFu5Rg==} - engines: {node: '>=10'} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@swc/core-linux-x64-musl/1.2.179: - resolution: {integrity: sha512-UG2zrpg5C0iq0BwSJpoxMgraM2jt9CItCRVaiZki7kg0wuIIdjwjXTOuf7XJ939WefLVrB0fu9uVKLfZAzuuxA==} - engines: {node: '>=10'} - cpu: [x64] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@swc/core-win32-arm64-msvc/1.2.179: - resolution: {integrity: sha512-am0P4A/7gDrU/HlGthf2Ozxfm8/zduOdigMD/ynTgEv11+gwWVnmr+sVR1l83BnXp3H765/LoC2eu8UiAbjGHA==} - engines: {node: '>=10'} - cpu: [arm64] - os: [win32] - requiresBuild: true - dev: true - optional: true - - /@swc/core-win32-ia32-msvc/1.2.179: - resolution: {integrity: sha512-Do7Y+nMhF3+0rFl6pmtQJ6DqCbliAHpSIKx/eC3NzspS4qPSddWwcLgajWl22ueouAj/79rx+FYUSRCNOHpjTg==} - engines: {node: '>=10'} - cpu: [ia32] - os: [win32] - requiresBuild: true - dev: true - optional: true - - /@swc/core-win32-x64-msvc/1.2.179: - resolution: {integrity: sha512-xA/pd6ri0eJ1bqQRT8h0xVa1wclFvLddp5mUhTEfxhtajrPkdriEUCoFOo4ySJhz86cjpTIoa81iq3XLpGQsMQ==} - engines: {node: '>=10'} - cpu: [x64] - os: [win32] - requiresBuild: true - dev: true - optional: true - - /@swc/core/1.2.179: - resolution: {integrity: sha512-B1O4acip37cNfMxKYG9Ptrrmcc3mcklFnSuRT9UtHr92Nq26o7omuturK0HCoKqLVReU05psfhDzx+K6H1tbNQ==} - engines: {node: '>=10'} - hasBin: true - optionalDependencies: - '@swc/core-android-arm-eabi': 1.2.179 - '@swc/core-android-arm64': 1.2.179 - '@swc/core-darwin-arm64': 1.2.179 - '@swc/core-darwin-x64': 1.2.179 - '@swc/core-freebsd-x64': 1.2.179 - '@swc/core-linux-arm-gnueabihf': 1.2.179 - '@swc/core-linux-arm64-gnu': 1.2.179 - '@swc/core-linux-arm64-musl': 1.2.179 - '@swc/core-linux-x64-gnu': 1.2.179 - '@swc/core-linux-x64-musl': 1.2.179 - '@swc/core-win32-arm64-msvc': 1.2.179 - '@swc/core-win32-ia32-msvc': 1.2.179 - '@swc/core-win32-x64-msvc': 1.2.179 dev: true /@szmarczak/http-timer/1.1.2: @@ -7664,12 +7392,12 @@ packages: resolution: {integrity: sha512-1c4ZOETSRpI0iBfIFUqU4KqwBAB2lHUAlBjZz/YqOHqwM9dTTzjV6Km0ZkiEiSCx/tLr1BtESIKyWWMww+RUqw==} dev: true - /@testing-library/dom/8.13.0: - resolution: {integrity: sha512-9VHgfIatKNXQNaZTtLnalIy0jNZzY35a4S3oi08YAt9Hv1VsfZ/DfA45lM8D/UhtHBGJ4/lGwp0PZkVndRkoOQ==} + /@testing-library/dom/8.14.0: + resolution: {integrity: sha512-m8FOdUo77iMTwVRCyzWcqxlEIk+GnopbrRI15a0EaLbpZSCinIVI4kSQzWhkShK83GogvEFJSsHF3Ws0z1vrqA==} engines: {node: '>=12'} dependencies: '@babel/code-frame': 7.16.7 - '@babel/runtime': 7.17.9 + '@babel/runtime': 7.18.3 '@types/aria-query': 4.2.2 aria-query: 5.0.0 chalk: 4.1.2 @@ -7682,8 +7410,8 @@ packages: resolution: {integrity: sha512-Gy+IoFutbMQcky0k+bqqumXZ1cTGswLsFqmNLzNdSKkU9KGV2u9oXhukCbbJ9/LRPKiqwxEE8VpV/+YZlfkPUA==} engines: {node: '>=8', npm: '>=6', yarn: '>=1'} dependencies: - '@babel/runtime': 7.17.9 - '@types/testing-library__jest-dom': 5.14.3 + '@babel/runtime': 7.18.3 + '@types/testing-library__jest-dom': 5.14.5 aria-query: 5.0.0 chalk: 3.0.0 css: 3.0.0 @@ -7693,62 +7421,88 @@ packages: redent: 3.0.0 dev: true - /@testing-library/react/12.1.5_react-dom@17.0.2+react@17.0.2: - resolution: {integrity: sha512-OfTXCJUFgjd/digLUuPxa0+/3ZxsQmE7ub9kcbW/wi96Bh3o/p5vrETcBGfP17NWPGqeYYl5LTRpwyGoMC4ysg==} + /@testing-library/react/13.3.0_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-DB79aA426+deFgGSjnf5grczDPiL4taK3hFaa+M5q7q20Kcve9eQottOG5kZ74KEr55v0tU2CQormSSDK87zYQ==} engines: {node: '>=12'} peerDependencies: - react: <18.0.0 - react-dom: <18.0.0 + react: ^18.0.0 || 18 + react-dom: ^18.0.0 || 18 dependencies: - '@babel/runtime': 7.17.9 - '@testing-library/dom': 8.13.0 - '@types/react-dom': 17.0.16 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + '@babel/runtime': 7.18.3 + '@testing-library/dom': 8.14.0 + '@types/react-dom': 18.0.5 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 dev: true - /@testing-library/user-event/13.5.0_@testing-library+dom@8.13.0: - resolution: {integrity: sha512-5Kwtbo3Y/NowpkbRuSepbyMFkZmHgD+vPzYB/RJ4oxt5Gj/avFFBYjhw27cqSVPVw/3a67NK1PbiIr9k4Gwmdg==} - engines: {node: '>=10', npm: '>=6'} + /@testing-library/user-event/14.2.1_ihvo3xlg2d6kwqju3os3zitn3y: + resolution: {integrity: sha512-HOr1QiODrq+0j9lKU5i10y9TbhxMBMRMGimNx10asdmau9cb8Xb1Vyg0GvTwyIL2ziQyh2kAloOtAQFBQVuecA==} + engines: {node: '>=12', npm: '>=6'} peerDependencies: '@testing-library/dom': '>=7.21.4' dependencies: - '@babel/runtime': 7.17.9 - '@testing-library/dom': 8.13.0 + '@testing-library/dom': 8.14.0 dev: true /@tootallnate/once/1.1.2: resolution: {integrity: sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==} engines: {node: '>= 6'} - /@tsconfig/node10/1.0.8: - resolution: {integrity: sha512-6XFfSQmMgq0CFLY1MslA/CPUfhIL919M1rMsa5lP2P097N2Wd1sSX0tx1u4olM16fLNhtHZpRhedZJphNJqmZg==} + /@tsconfig/node10/1.0.9: + resolution: {integrity: sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==} dev: true - /@tsconfig/node12/1.0.9: - resolution: {integrity: sha512-/yBMcem+fbvhSREH+s14YJi18sp7J9jpuhYByADT2rypfajMZZN4WQ6zBGgBKp53NKmqI36wFYDb3yaMPurITw==} + /@tsconfig/node12/1.0.11: + resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==} dev: true - /@tsconfig/node14/1.0.1: - resolution: {integrity: sha512-509r2+yARFfHHE7T6Puu2jjkoycftovhXRqW328PDXTVGKihlb1P8Z9mMZH04ebyajfRY7dedfGynlrFHJUQCg==} + /@tsconfig/node14/1.0.3: + resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==} dev: true - /@tsconfig/node16/1.0.2: - resolution: {integrity: sha512-eZxlbI8GZscaGS7kkc/trHTT5xgrjH3/1n2JDwusC9iahPKWMRvRjJSAN5mCXviuTGQ/lHnhvv8Q1YTpnfz9gA==} + /@tsconfig/node16/1.0.3: + resolution: {integrity: sha512-yOlFc+7UtL/89t2ZhjPvvB/DeAr3r+Dq58IgzsFkOAvVC6NMJXmCGjbptdXdR9qsX7pKcTL+s87FtYREi2dEEQ==} dev: true /@types/accepts/1.3.5: resolution: {integrity: sha512-jOdnI/3qTpHABjM5cx1Hc0sKsPoYCp+DP/GJRGtDlPd7fiV9oXGGIcjW/ZOxLIvjGz8MA+uMZI9metHlgqbgwQ==} dependencies: - '@types/node': 16.11.33 + '@types/node': 16.11.41 dev: false + /@types/ag-auth/1.0.0: + resolution: {integrity: sha512-9Zri8Apx8al2ZfqcsJ5X39GoirGiVcP7sp1I4mOgsRwXeAwPGadE//44jMHTpCpVDwQ4geGzmD2KMlZspAAcdA==} + dependencies: + '@types/jsonwebtoken': 8.5.8 + dev: true + + /@types/ag-channel/5.0.0: + resolution: {integrity: sha512-ab4P2BWe61MFOGmeXX1yKmBh8UrOSUZv+SsauJreGc1WdHQKaCGtH6VVUkiYfYv73a7e9+LGG5LiF/lIGVqOxw==} + dependencies: + '@types/consumable-stream': 2.0.0 + '@types/stream-demux': 8.0.0 + '@types/writable-consumable-stream': 2.0.0 + dev: true + + /@types/ag-simple-broker/5.0.0: + resolution: {integrity: sha512-JE3GL2L4PPdbJl29N6K/bAR+peJgz/EUjsB+S/l3VwB7rzLsik2XPgrtRTor/b7ZjKP542jGjEPdRhbK2w9ePw==} + dependencies: + '@types/ag-channel': 5.0.0 + '@types/async-stream-emitter': 4.0.0 + '@types/consumable-stream': 2.0.0 + '@types/socketcluster-server': 16.1.0 + '@types/writable-consumable-stream': 2.0.0 + dev: true + /@types/aria-query/4.2.2: resolution: {integrity: sha512-HnYpAE1Y6kRyKM/XkEuiRQhTHvkzMBurTHnpFLYLBGPIylZNPs9jJcuOOYWxPLJCSEtmZT0Y8rHDokKN7rRTig==} dev: true - /@types/async/3.2.13: - resolution: {integrity: sha512-7Q3awrhnvm89OzfsmqeqRQh8mh+8Pxfgq1UvSAn2nWQ5y/F3+NrbIF0RbkWq8+5dY99ozgap2b3DNBNwjLVOxw==} + /@types/async-stream-emitter/4.0.0: + resolution: {integrity: sha512-13vdKrWE2navt87EPbk6VcUjQgAu/p/rRGdbcE+bYhbKg/fA7nsEgRkxIdlEpZTnGyixUO5+5yHKaIXgMmKL0A==} + dependencies: + '@types/consumable-stream': 2.0.0 + '@types/writable-consumable-stream': 2.0.0 dev: true /@types/babel-types/7.0.11: @@ -7762,8 +7516,8 @@ packages: /@types/babel__core/7.1.19: resolution: {integrity: sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw==} dependencies: - '@babel/parser': 7.17.10 - '@babel/types': 7.17.10 + '@babel/parser': 7.18.5 + '@babel/types': 7.18.4 '@types/babel__generator': 7.6.4 '@types/babel__template': 7.4.1 '@types/babel__traverse': 7.17.1 @@ -7772,20 +7526,20 @@ packages: /@types/babel__generator/7.6.4: resolution: {integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==} dependencies: - '@babel/types': 7.17.10 + '@babel/types': 7.18.4 dev: true /@types/babel__template/7.4.1: resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==} dependencies: - '@babel/parser': 7.17.10 - '@babel/types': 7.17.10 + '@babel/parser': 7.18.5 + '@babel/types': 7.18.4 dev: true /@types/babel__traverse/7.17.1: resolution: {integrity: sha512-kVzjari1s2YVi77D3w1yuvohV2idweYXMCDzqBiVNN63TcDWrIlTVOYpqVrvbbyOE/IyzBoTKF0fdnLPEORFxA==} dependencies: - '@babel/types': 7.17.10 + '@babel/types': 7.18.4 dev: true /@types/babylon/6.16.6: @@ -7801,16 +7555,16 @@ packages: resolution: {integrity: sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==} dependencies: '@types/connect': 3.4.35 - '@types/node': 16.11.33 + '@types/node': 16.11.41 /@types/bonjour/3.5.10: resolution: {integrity: sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==} dependencies: - '@types/node': 16.11.33 + '@types/node': 16.11.41 dev: true - /@types/chrome/0.0.184: - resolution: {integrity: sha512-Wvawa0L2jUyLd6RNd0mx/1z0R/RZXkGKDI77+twsbcmhLlsGA64xrXQYxFr/F7yu6yGLEqKpEmrrJ1tveuVkIQ==} + /@types/chrome/0.0.191: + resolution: {integrity: sha512-hXYHJJ1Y265xKCw0o2Kz4CnR8aUhOMdyxK1AinET4EDr3fhpEMvOFDwdqz9LUX4syfTVYWb8w7vfC12s112ehg==} dependencies: '@types/filesystem': 0.0.32 '@types/har-format': 1.2.8 @@ -7844,21 +7598,23 @@ packages: '@types/color-convert': 2.0.0 dev: true - /@types/component-emitter/1.2.11: - resolution: {integrity: sha512-SRXjM+tfsSlA9VuG8hGO2nft2p8zjXCK1VcC6N4NXbBbYbSia9kzCChYQajIjzIqOOOuh5Ock6MmV2oux4jDZQ==} - dev: true - /@types/connect-history-api-fallback/1.3.5: resolution: {integrity: sha512-h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw==} dependencies: - '@types/express-serve-static-core': 4.17.28 - '@types/node': 16.11.33 + '@types/express-serve-static-core': 4.17.29 + '@types/node': 16.11.41 dev: true /@types/connect/3.4.35: resolution: {integrity: sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==} dependencies: - '@types/node': 16.11.33 + '@types/node': 16.11.41 + + /@types/consumable-stream/2.0.0: + resolution: {integrity: sha512-RuXAZX3pQ2jGgETa1p4fTZb4Y1IxanZ8hafWewNoWW+Nqc4OcDw2VbAPzB1Wq7l5rtvmmCmHnpDX0CNRthqsAA==} + dependencies: + '@types/node': 16.11.41 + dev: true /@types/cookie/0.4.1: resolution: {integrity: sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q==} @@ -7868,12 +7624,12 @@ packages: resolution: {integrity: sha512-t73xJJrvdTjXrn4jLS9VSGRbz0nUY3cl2DMGDU48lKl+HR9dbbjW2A9r3g40VA++mQpy6uuHg33gy7du2BKpog==} dev: true - /@types/copy-webpack-plugin/8.0.1_webpack-cli@4.9.2: + /@types/copy-webpack-plugin/8.0.1_webpack-cli@4.10.0: resolution: {integrity: sha512-TwEeGse0/wq+t3SFW0DEwroMS/cDkwVZT+vj7tMAYTp7llt/yz6NuW2n04X2M5P/kSfBQOORhrHAN2mqZdmybg==} dependencies: - '@types/node': 16.11.33 + '@types/node': 16.11.41 tapable: 2.2.1 - webpack: 5.72.0_webpack-cli@4.9.2 + webpack: 5.73.0_webpack-cli@4.10.0 transitivePeerDependencies: - '@swc/core' - esbuild @@ -7887,7 +7643,7 @@ packages: /@types/cross-spawn/6.0.2: resolution: {integrity: sha512-KuwNhp3eza+Rhu8IFI5HUXRP0LIhqH5cAjubUvGXXthh4YYBuP2ntwEX+Cz8GJoZUHlKo247wPWOfA9LYEq4cw==} dependencies: - '@types/node': 16.11.33 + '@types/node': 16.11.41 dev: true /@types/d3/3.5.47: @@ -7907,12 +7663,12 @@ packages: /@types/eslint-scope/3.7.3: resolution: {integrity: sha512-PB3ldyrcnAicT35TWPs5IcwKD8S333HMaa2VVv4+wdvebJkjWuW/xESoB8IwRcog8HYVYamb1g/R31Qv5Bx03g==} dependencies: - '@types/eslint': 8.4.2 + '@types/eslint': 8.4.3 '@types/estree': 0.0.51 dev: true - /@types/eslint/8.4.2: - resolution: {integrity: sha512-Z1nseZON+GEnFjJc04sv4NSALGjhFwy6K0HXt7qsn5ArfAKtb63dXNJHf+1YW6IpOIYRBGUbu3GwJdj8DGnCjA==} + /@types/eslint/8.4.3: + resolution: {integrity: sha512-YP1S7YJRMPs+7KZKDb9G63n8YejIwW9BALq7a5j2+H4yl6iOv9CB29edho+cuFRrvmJbbaH2yiVChKLJVysDGw==} dependencies: '@types/estree': 0.0.51 '@types/json-schema': 7.0.11 @@ -7925,14 +7681,10 @@ packages: /@types/estree/0.0.51: resolution: {integrity: sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==} - /@types/expirymanager/0.9.0: - resolution: {integrity: sha512-xulG8b5SiBhpRE1Arfx3ji428mfhwQdas6/i+1IJhTLkyFifJ4rF+vve522ds2ZTiBKCUv9WHNuVF/V9PJCa2Q==} - dev: true - - /@types/express-serve-static-core/4.17.28: - resolution: {integrity: sha512-P1BJAEAW3E2DJUlkgq4tOL3RyMunoWXqbSCygWo5ZIWTjUgN1YnaXWW4VWl/oc8vs/XoYibEGBKP0uZyF4AHig==} + /@types/express-serve-static-core/4.17.29: + resolution: {integrity: sha512-uMd++6dMKS32EOuw1Uli3e3BPgdLIXmezcfHv7N4c1s3gkhikBplORPpMq3fuWkxncZN1reb16d5n8yhQ80x7Q==} dependencies: - '@types/node': 16.11.33 + '@types/node': 16.11.41 '@types/qs': 6.9.7 '@types/range-parser': 1.2.4 @@ -7940,7 +7692,7 @@ packages: resolution: {integrity: sha512-6bSZTPaTIACxn48l50SR+axgrqm6qXFIxrdAKaG6PaJk3+zuUr35hBlgT7vOmJcum+OEaIBLtHV/qloEAFITeA==} dependencies: '@types/body-parser': 1.19.2 - '@types/express-serve-static-core': 4.17.28 + '@types/express-serve-static-core': 4.17.29 '@types/qs': 6.9.7 '@types/serve-static': 1.13.10 @@ -7952,10 +7704,6 @@ packages: /@types/filewriter/0.0.29: resolution: {integrity: sha512-BsPXH/irW0ht0Ji6iw/jJaK8Lj3FJemon2gvEqHKpCdDCeemHa+rI3WBGq5z7cDMZgoLjY40oninGxqk+8NzNQ==} - /@types/fleximap/0.9.0: - resolution: {integrity: sha512-7VsHgMM7l3jY+MXptDgzvROcEoikVgIxu+8d/qT0WijDl6RXdwAbAQYxu5sBCwUvlf0cEQwiDC4rOvkcm3h+hw==} - dev: true - /@types/get-params/0.1.0: resolution: {integrity: sha512-dlrC7vGuNvUCD4UXLTPqNSdSFHDa+n6wHmyKWP2OJXwtgY1A3Lttn5Dx7gmo00fg/xuuLILTuzI/1isDV/1V2Q==} dev: false @@ -7964,13 +7712,13 @@ packages: resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==} dependencies: '@types/minimatch': 3.0.5 - '@types/node': 14.18.16 + '@types/node': 16.11.41 dev: true /@types/graceful-fs/4.1.5: resolution: {integrity: sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==} dependencies: - '@types/node': 17.0.31 + '@types/node': 16.11.41 dev: true /@types/har-format/1.2.8: @@ -7993,7 +7741,7 @@ packages: /@types/hoist-non-react-statics/3.3.1: resolution: {integrity: sha512-iMIqiko6ooLrTh1joXodJK5X9xeEALT1kM5G3ZLhD3hszxBdIEd5C75U834D9mLcINgD4OyZf5uQXjkuYydWvA==} dependencies: - '@types/react': 17.0.45 + '@types/react': 18.0.14 hoist-non-react-statics: 3.3.2 /@types/html-entities/1.3.4: @@ -8014,13 +7762,13 @@ packages: /@types/http-proxy/1.17.9: resolution: {integrity: sha512-QsbSjA/fSk7xB+UXlCT3wHBy5ai9wOcNDWwZAtud+jXhwOM3l+EYZh8Lng4+/6n8uar0J7xILzqftJdJ/Wdfkw==} dependencies: - '@types/node': 16.11.33 + '@types/node': 16.11.41 dev: true /@types/is-ci/3.0.0: resolution: {integrity: sha512-Q0Op0hdWbYd1iahB+IFNQcWXFq4O0Q5MwQP7uN0souuQ4rPg1vEYcnIOfr1gY+M+6rc8FGoRaBO1mOOvL29sEQ==} dependencies: - ci-info: 3.3.0 + ci-info: 3.3.2 dev: true /@types/is-function/1.0.1: @@ -8043,8 +7791,8 @@ packages: '@types/istanbul-lib-report': 3.0.0 dev: true - /@types/jest/27.5.0: - resolution: {integrity: sha512-9RBFx7r4k+msyj/arpfaa0WOOEcaAZNmN+j80KFbFCoSqCJGHTz7YMAMGQW9Xmqm5w6l5c25vbSjMwlikJi5+g==} + /@types/jest/27.5.2: + resolution: {integrity: sha512-mpT8LJJ4CMeeahobofYWIjFo0xonRS/HfxnVEPMPFSQdGUt1uHCnoPT7Zhb+sjDU2wz0oKV0OLUR0WzrHNgfeA==} dependencies: jest-matcher-utils: 27.5.1 pretty-format: 27.5.1 @@ -8061,19 +7809,19 @@ packages: resolution: {integrity: sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==} /@types/json5/0.0.29: - resolution: {integrity: sha1-7ihweulOEdK4J7y+UnC86n8+ce4=} + resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} dev: true /@types/jsonwebtoken/8.5.8: resolution: {integrity: sha512-zm6xBQpFDIDM6o9r6HSgDeIcLy82TKWctCXEPbJJcXb5AKmi5BNNdLXneixK4lplX3PqIVcwLBCGE/kAGnlD4A==} dependencies: - '@types/node': 16.11.33 + '@types/node': 16.11.41 dev: true /@types/keyv/3.1.4: resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==} dependencies: - '@types/node': 16.11.33 + '@types/node': 18.0.0 /@types/lodash.curry/4.1.7: resolution: {integrity: sha512-R+IkSvh7CI8klh7FkQuTAiAR+aPFqYrNEjw/hMxjCSO7TsAqBAxpR99PxxJN1lgE6YuvpHEoktqbh6V5VLzxZA==} @@ -8129,19 +7877,13 @@ packages: /@types/morgan/1.9.3: resolution: {integrity: sha512-BiLcfVqGBZCyNCnCH3F4o2GmDLrpy0HeBVnNlyZG4fo88ZiE9SoiBe3C+2ezuwbjlEyT+PDZ17//TAlRxAn75Q==} dependencies: - '@types/node': 16.11.33 + '@types/node': 16.11.41 dev: true - /@types/ncom/1.0.1: - resolution: {integrity: sha512-IH7sL3ojrxt451VWUF0iMdDyOwZp/VA3M5CC7NGYiSJCf524ePB25d4rM64E5giWgkFM8FWGthhu6QDf61UOXA==} + /@types/node-fetch/2.6.2: + resolution: {integrity: sha512-DHqhlq5jeESLy19TYhLakJ07kNumXWjcDdxXsLUMJZ6ue8VZJj4kLPQVE/2mdHh3xZziNF1xppu5lwmS53HR+A==} dependencies: - '@types/node': 16.11.33 - dev: true - - /@types/node-fetch/2.6.1: - resolution: {integrity: sha512-oMqjURCaxoSIsHSr1E47QHzbmzNR5rK8McHuNb11BOM9cHcIK3Avy0s/b2JlXHoQGTYS3NsvWzV1M0iK7l0wbA==} - dependencies: - '@types/node': 14.18.16 + '@types/node': 16.11.41 form-data: 3.0.1 dev: true @@ -8149,20 +7891,15 @@ packages: resolution: {integrity: sha512-F0KIgDJfy2nA3zMLmWGKxcH2ZVEtCZXHHdOQs2gSaQ27+lNeEfGxzkIw90aXswATX7AZ33tahPbzy6KAfUreVw==} dev: false - /@types/node/12.20.50: - resolution: {integrity: sha512-+9axpWx2b2JCVovr7Ilgt96uc6C1zBKOQMpGtRbWT9IoR/8ue32GGMfGA4woP8QyP2gBs6GQWEVM3tCybGCxDA==} + /@types/node/12.20.55: + resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==} dev: true - /@types/node/14.18.16: - resolution: {integrity: sha512-X3bUMdK/VmvrWdoTkz+VCn6nwKwrKCFTHtqwBIaQJNx4RUIBBUFXM00bqPz/DsDd+Icjmzm6/tyYZzeGVqb6/Q==} - dev: true + /@types/node/16.11.41: + resolution: {integrity: sha512-mqoYK2TnVjdkGk8qXAVGc/x9nSaTpSrFaGFm43BUH3IdoBV0nta6hYaGmdOvIMlbHJbUEVen3gvwpwovAZKNdQ==} - /@types/node/16.11.33: - resolution: {integrity: sha512-0PJ0vg+JyU0MIan58IOIFRtSvsb7Ri+7Wltx2qAg94eMOrpg4+uuP3aUHCpxXc1i0jCXiC+zIamSZh3l9AbcQA==} - - /@types/node/17.0.31: - resolution: {integrity: sha512-AR0x5HbXGqkEx9CadRH3EBYx/VkiUgZIhP4wvPn/+5KIsgpNoyFaRlVe0Zlx9gRtg8fA06a9tskE2MSN7TcG4Q==} - dev: true + /@types/node/18.0.0: + resolution: {integrity: sha512-cHlGmko4gWLVI27cGJntjs/Sj8th9aYwplmZFwmmgYQQvL5NUsgVJG7OddLvNfLqYS31KFN0s3qlaD9qCaxACA==} /@types/normalize-package-data/2.4.1: resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==} @@ -8176,10 +7913,6 @@ packages: resolution: {integrity: sha512-219LSCO9HPcoXcRTC6DbCs0FRhZgBnEMzf16RRqkT40WbkKx3mOeQuz3e2XqbfhOz/AHfbru0kzB1n1RCAsIIg==} dev: true - /@types/overlayscrollbars/1.12.1: - resolution: {integrity: sha512-V25YHbSoKQN35UasHf0EKD9U2vcmexRSp78qa8UglxFH8H3D+adEa9zGZwrqpH4TdvqeMrgMqVqsLB4woAryrQ==} - dev: true - /@types/parse-json/4.0.0: resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==} @@ -8199,8 +7932,8 @@ packages: resolution: {integrity: sha512-BYOID+l2Aco2nBik+iYS4SZX0Lf20KPILP5RGmM1IgzdwNdTs0eebiFriOPcej1sX9mLnSoiNte5zcFxssgpGA==} dev: false - /@types/prettier/2.6.0: - resolution: {integrity: sha512-G/AdOadiZhnJp0jXCaBQU449W2h716OW/EoXeYkCytxKL06X1WCXB4DZpp8TpZ8eyIJVS1cw4lrlkkSYU21cDw==} + /@types/prettier/2.6.3: + resolution: {integrity: sha512-ymZk3LEC/fsut+/Q5qejp6R9O1rMxz3XaRHDV6kX8MrGAhOSPqVARbDi+EZvInBpw+BnCX3TD240byVkOfQsHg==} dev: true /@types/pretty-hrtime/1.0.1: @@ -8213,8 +7946,8 @@ packages: /@types/qs/6.9.7: resolution: {integrity: sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==} - /@types/ramda/0.28.12: - resolution: {integrity: sha512-01lBa/nWJMmzc7uwvN4pzoePRWMURV1uRpchCpomAFW1MvMSyOtHjj8/WpaCFrrBQ8Mvpasm/CK3YpcWbVcZ3g==} + /@types/ramda/0.28.14: + resolution: {integrity: sha512-hLgAeKxS5MpIEROaIRHscFqWf+V04CB+A0Kq+OjnTs1fEGHXEs4aeOhXIRovAPe6PfWYKHEwEkVIYWf98OjxnA==} dependencies: ts-toolbelt: 6.15.5 dev: true @@ -8222,11 +7955,10 @@ packages: /@types/range-parser/1.2.4: resolution: {integrity: sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==} - /@types/react-dom/17.0.16: - resolution: {integrity: sha512-DWcXf8EbMrO/gWnQU7Z88Ws/p16qxGpPyjTKTpmBSFKeE+HveVubqGO1CVK7FrwlWD5MuOcvh8gtd0/XO38NdQ==} + /@types/react-dom/18.0.5: + resolution: {integrity: sha512-OWPWTUrY/NIrjsAPkAk1wW9LZeIjSvkXRhclsFO8CZcZGCOg2G0YZy4ft+rOyYxy8B7ui5iZzi9OkDebZ7/QSA==} dependencies: - '@types/react': 17.0.45 - dev: true + '@types/react': 18.0.14 /@types/react-dragula/1.1.0: resolution: {integrity: sha512-wgRIVV2jo/Gria1PK3K26II7gfRD3VTcMfPYhL0CuIApSeon7xjBTj8Xs8Ln+Vbb/FuRKWfUaJXmF4R3KUGntA==} @@ -8234,53 +7966,30 @@ packages: '@types/dragula': 3.7.1 dev: true - /@types/react-redux/7.1.24: - resolution: {integrity: sha512-7FkurKcS1k0FHZEtdbbgN8Oc6b+stGSfZYjQGicofJ0j4U0qIn/jaSvnP2pLwZKiai3/17xqqxkkrxTgN8UNbQ==} - dependencies: - '@types/hoist-non-react-statics': 3.3.1 - '@types/react': 17.0.45 - hoist-non-react-statics: 3.3.2 - redux: 4.2.0 - - /@types/react-router-dom/5.3.3: - resolution: {integrity: sha512-kpqnYK4wcdm5UaWI3fLcELopqLrHgLqNsdpHauzlQktfkHL3npOSwtj1Uz9oKBAzs7lFtVkV8j83voAz2D8fhw==} - dependencies: - '@types/history': 4.7.11 - '@types/react': 17.0.45 - '@types/react-router': 5.1.18 - dev: true - - /@types/react-router/5.1.18: - resolution: {integrity: sha512-YYknwy0D0iOwKQgz9v8nOzt2J6l4gouBmDnWqUUznltOTaon+r8US8ky8HvN0tXvc38U9m6z/t2RsVsnd1zM0g==} - dependencies: - '@types/history': 4.7.11 - '@types/react': 17.0.45 - dev: true - /@types/react-syntax-highlighter/11.0.5: resolution: {integrity: sha512-VIOi9i2Oj5XsmWWoB72p3KlZoEbdRAcechJa8Ztebw7bDl2YmR+odxIqhtJGp1q2EozHs02US+gzxJ9nuf56qg==} dependencies: - '@types/react': 17.0.45 + '@types/react': 18.0.14 dev: true - /@types/react-test-renderer/17.0.2: - resolution: {integrity: sha512-+F1KONQTBHDBBhbHuT2GNydeMpPuviduXIVJRB7Y4nma4NR5DrTJfMMZ+jbhEHbpwL+Uqhs1WXh4KHiyrtYTPg==} + /@types/react-test-renderer/18.0.0: + resolution: {integrity: sha512-C7/5FBJ3g3sqUahguGi03O79b8afNeSD6T8/GU50oQrJCU0bVCCGQHaGKUbg2Ce8VQEEqTw8/HiS6lXHHdgkdQ==} dependencies: - '@types/react': 17.0.45 + '@types/react': 18.0.14 dev: true /@types/react-transition-group/4.4.4: resolution: {integrity: sha512-7gAPz7anVK5xzbeQW9wFBDg7G++aPLAFY0QaSMOou9rJZpbuI58WAuJrgu+qR92l61grlnCUe7AFX8KGahAgug==} dependencies: - '@types/react': 17.0.45 + '@types/react': 18.0.14 dev: false - /@types/react/17.0.45: - resolution: {integrity: sha512-YfhQ22Lah2e3CHPsb93tRwIGNiSwkuz1/blk4e6QrWS0jQzCSNbGLtOEYhPg02W0yGTTmpajp7dCTbBAMN3qsg==} + /@types/react/18.0.14: + resolution: {integrity: sha512-x4gGuASSiWmo0xjDLpm5mPb52syZHJx02VKbqUKdLmKtAwIh63XClGsiTI1K6DO5q7ox4xAsQrU+Gl3+gGXF9Q==} dependencies: '@types/prop-types': 15.7.5 '@types/scheduler': 0.16.2 - csstype: 3.0.11 + csstype: 3.1.0 /@types/redux-devtools-themes/1.0.0: resolution: {integrity: sha512-ul3x0MYM5Nzj57Fh9wINyHFne8vZL04RC4nWAUWLYcL105vHoa/oJyopuKOrQmqVmhqmDiL4c9FfLbUmIB7TWQ==} @@ -8296,13 +8005,13 @@ packages: /@types/resolve/1.17.1: resolution: {integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw==} dependencies: - '@types/node': 17.0.31 + '@types/node': 16.11.41 dev: true /@types/responselike/1.0.0: resolution: {integrity: sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==} dependencies: - '@types/node': 16.11.33 + '@types/node': 18.0.0 /@types/retry/0.12.0: resolution: {integrity: sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==} @@ -8312,38 +8021,6 @@ packages: resolution: {integrity: sha512-i+RVNagU1zd7wynKXI4c6h5hYHP1jwau4ME9rHA60xJxhczRrqPpJoAiIZyTHfk0iDja/1PPZxtuMpfBhlYHVA==} dev: true - /@types/sc-auth/5.0.0: - resolution: {integrity: sha512-V+wuOweEJDrVCMduXmS7zc60O6HGyd5Xm3ClzEXKJfQdrSuhoqvhDjOwbtRZAXCjHll12lBXECb2sht5Glp/6A==} - dependencies: - '@types/jsonwebtoken': 8.5.8 - dev: true - - /@types/sc-broker-cluster/6.1.4: - resolution: {integrity: sha512-TnhkhVLse6lD07XmDDfHZGEM+BndSwxBK6sAzhxJCDvWvzN/10iR237D3UhYDKekMUsXKww25WOBlAtbs/1qQA==} - dependencies: - '@types/async': 3.2.13 - '@types/expirymanager': 0.9.0 - '@types/fleximap': 0.9.0 - '@types/sc-broker': 8.0.2 - '@types/sc-channel': 1.2.2 - '@types/socketcluster': 14.0.4 - '@types/socketcluster-server': 14.2.6 - dev: true - - /@types/sc-broker/8.0.2: - resolution: {integrity: sha512-Tpl9rTbIHGuRPtwcat7zHWG4Rj45tu9JHDglKeZPYUxtSd+jtT8NYCeJFsRCoUpBcMIXOlQwc5g5jlQ6yeqMVA==} - dependencies: - '@types/expirymanager': 0.9.0 - '@types/fleximap': 0.9.0 - '@types/ncom': 1.0.1 - dev: true - - /@types/sc-channel/1.2.2: - resolution: {integrity: sha512-TgTw0+SPnDbvhYXz1Ii70KYf/Uu1DkNQZ0sFv+RCMjNFkjdxP1imtQN46NA0Z6QqNbiOer1s+MNCSxaQ6Ug5ZQ==} - dependencies: - '@types/component-emitter': 1.2.11 - dev: true - /@types/sc-errors/1.4.1: resolution: {integrity: sha512-sulhioQgURtx4d1/t+nJYnLR98JapJVVayOy7e5IMDRpRt7Fu9aqMcA8NKx2L6ExQFMDQOtYpApNWFVTrjWxtQ==} dev: true @@ -8355,8 +8032,8 @@ packages: resolution: {integrity: sha512-KQf+QAMWKMrtBMsB8/24w53tEsxllMj6TuA80TT/5igJalLI/zm0L3oXRbIAl4Ohfc85gyHX/jhMwsVkmhLU4A==} dev: true - /@types/semver/7.3.9: - resolution: {integrity: sha512-L/TMpyURfBkf+o/526Zb6kd/tchUP3iBDEPjqjb+U2MAJhVRxxrmr2fwpe08E7QsV7YLcpq0tUaQ9O9x97ZIxQ==} + /@types/semver/7.3.10: + resolution: {integrity: sha512-zsv3fsC7S84NN6nPK06u79oWgrPVd0NvOyqgghV1haPaFcVxIrP4DLomRwGAXk0ui4HZA7mOcSFL98sMVW9viw==} dev: true /@types/serve-index/1.9.1: @@ -8369,12 +8046,12 @@ packages: resolution: {integrity: sha512-nCkHGI4w7ZgAdNkrEu0bv+4xNV/XDqW+DydknebMOQwkpDGx8G+HTlj7R7ABI8i8nKxVw0wtKPi1D+lPOkh4YQ==} dependencies: '@types/mime': 1.3.2 - '@types/node': 16.11.33 + '@types/node': 16.11.41 /@types/set-cookie-parser/2.4.2: resolution: {integrity: sha512-fBZgytwhYAUkj/jC/FAV4RQ5EerRup1YQsXQCh8rZfiHkc4UahC192oH0smGwsXol3cL3A5oETuAHeQHmhXM4w==} dependencies: - '@types/node': 16.11.33 + '@types/node': 18.0.0 dev: false /@types/simple-diff/1.6.1: @@ -8385,39 +8062,37 @@ packages: resolution: {integrity: sha512-z89ForrCNg+4uwTHjwBCM9LjcsXYC/4O8u3tSi+82v2LCbfiYFpkjH/qQVkDewFBK6FUG7RRV7jw78EGs2maoQ==} dev: false - /@types/socketcluster-client/13.0.5: - resolution: {integrity: sha512-HL0cpZdSx/RczgPRnHY2mCg4K8bSHmpv8Tra1qspb/BtZZQ73R9iAwIf3mX07+/npfBMlPGF6eMHsZP8WyMMAw==} + /@types/socketcluster-client/16.0.0: + resolution: {integrity: sha512-Re5rkp09jcvW95WRBN5q/FIVx9MJZJQPVBpxShLcUnUiMeqXGOO8Ag2RI7dmw4YqKkulpOrk5nl2iUiUC2hUEg==} dependencies: - '@types/component-emitter': 1.2.11 - '@types/sc-auth': 5.0.0 - '@types/sc-channel': 1.2.2 + '@types/ag-channel': 5.0.0 + '@types/async-stream-emitter': 4.0.0 + '@types/consumable-stream': 2.0.0 '@types/sc-errors': 1.4.1 - '@types/socketcluster-server': 14.2.6 + '@types/socketcluster-server': 16.1.0 + '@types/stream-demux': 8.0.0 + '@types/writable-consumable-stream': 2.0.0 '@types/ws': 8.5.3 dev: true - /@types/socketcluster-server/14.2.6: - resolution: {integrity: sha512-JPf/uI3vZcGIGWE0I280iMl+RAz8rT8QScx+ZApVvhOFd9aEAEWRnix/WJ7w84b0YJcLFzeVakGAFEDqjfezBA==} + /@types/socketcluster-server/16.1.0: + resolution: {integrity: sha512-GnCRP0mtS+BmOj7ccdUGNcDaWYg3x6RT0EUigG/rHeijtyE1aY+2PFFVRACF9BVUC8sUrQvHzxiCAJYDcUqOgw==} dependencies: - '@types/component-emitter': 1.2.11 + '@types/ag-auth': 1.0.0 + '@types/ag-simple-broker': 5.0.0 + '@types/async-stream-emitter': 4.0.0 + '@types/consumable-stream': 2.0.0 '@types/jsonwebtoken': 8.5.8 - '@types/sc-auth': 5.0.0 - '@types/sc-broker-cluster': 6.1.4 + '@types/sc-errors': 1.4.1 + '@types/stream-demux': 8.0.0 + '@types/writable-consumable-stream': 2.0.0 '@types/ws': 8.5.3 dev: true - /@types/socketcluster/14.0.4: - resolution: {integrity: sha512-/hggijnHOsaMbpqvB4kmavsC2jmYiuc19zNrY79b6y6TPvCgvLC2ObOj/GH7zacGj9b5qlXlhHA89z8/ET+56w==} - dependencies: - '@types/sc-auth': 5.0.0 - '@types/sc-broker-cluster': 6.1.4 - '@types/socketcluster-server': 14.2.6 - dev: true - /@types/sockjs/0.3.33: resolution: {integrity: sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==} dependencies: - '@types/node': 16.11.33 + '@types/node': 16.11.41 dev: true /@types/source-list-map/0.1.2: @@ -8432,19 +8107,26 @@ packages: resolution: {integrity: sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==} dev: true + /@types/stream-demux/8.0.0: + resolution: {integrity: sha512-4yiERxITSwLnSNrfWdSIKoW4nZe+AzwgwgtViVnySNTyPwiaW8a8o1sAjGCWL2PjUdyRaolidxoLH3s7dnvBMg==} + dependencies: + '@types/consumable-stream': 2.0.0 + '@types/writable-consumable-stream': 2.0.0 + dev: true + /@types/styled-components/5.1.25: resolution: {integrity: sha512-fgwl+0Pa8pdkwXRoVPP9JbqF0Ivo9llnmsm+7TCI330kbPIFd9qv1Lrhr37shf4tnxCOSu+/IgqM7uJXLWZZNQ==} dependencies: '@types/hoist-non-react-statics': 3.3.1 - '@types/react': 17.0.45 - csstype: 3.0.11 + '@types/react': 18.0.14 + csstype: 3.1.0 dev: true /@types/superagent/4.1.15: resolution: {integrity: sha512-mu/N4uvfDN2zVQQ5AYJI/g4qxn2bHB6521t1UuH09ShNWjebTqN0ZFuYK9uYjcgmI0dTQEs+Owi1EO6U0OkOZQ==} dependencies: '@types/cookiejar': 2.1.2 - '@types/node': 16.11.33 + '@types/node': 16.11.41 dev: true /@types/supertest/2.0.12: @@ -8463,14 +8145,14 @@ packages: '@types/estree': 0.0.51 dev: false - /@types/testing-library__jest-dom/5.14.3: - resolution: {integrity: sha512-oKZe+Mf4ioWlMuzVBaXQ9WDnEm1+umLx0InILg+yvZVBBDmzV5KfZyLrCvadtWcx8+916jLmHafcmqqffl+iIw==} + /@types/testing-library__jest-dom/5.14.5: + resolution: {integrity: sha512-SBwbxYoyPIvxHbeHxTZX2Pe/74F/tX2/D3mMvzabdeJ25bBojfW0TyB8BHrbq/9zaaKICJZjLP+8r6AeZMFCuQ==} dependencies: - '@types/jest': 27.5.0 + '@types/jest': 27.5.2 dev: true - /@types/uglify-js/3.13.2: - resolution: {integrity: sha512-/xFrPIo+4zOeNGtVMbf9rUm0N+i4pDf1ynExomqtokIJmVzR3962lJ1UE+MmexMkA0cmN9oTzg5Xcbwge0Ij2Q==} + /@types/uglify-js/3.16.0: + resolution: {integrity: sha512-0yeUr92L3r0GLRnBOvtYK1v2SjqMIqQDHMl7GLb+l2L8+6LSFWEEWEIgVsPdMn5ImLM8qzWT8xFPtQYpp8co0g==} dependencies: source-map: 0.6.1 dev: true @@ -8479,40 +8161,49 @@ packages: resolution: {integrity: sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==} dev: true + /@types/use-sync-external-store/0.0.3: + resolution: {integrity: sha512-EwmlvuaxPNej9+T4v5AuBPJa2x2UOJVdjCtDHgcDqitUeOtjnJKJ+apYjVcAoBEMjKW1VVFGZLUb5+qqa09XFA==} + /@types/uuid/8.3.4: resolution: {integrity: sha512-c/I8ZRb51j+pYGAu5CrFMRxqZ2ke4y2grEBO5AUjgSkSk+qT2Ea+OdWElz/OiMf5MNpn2b17kuVBwZLQJXzihw==} /@types/warning/3.0.0: - resolution: {integrity: sha1-DSUBJorY+ZYrdA04fEZU9fjiPlI=} + resolution: {integrity: sha512-t/Tvs5qR47OLOr+4E9ckN8AmP2Tf16gWq+/qA4iUGS/OOyHVO8wv2vjJuX8SNOUTJyWb+2t7wJm6cXILFnOROA==} dev: false - /@types/webpack-env/1.16.4: - resolution: {integrity: sha512-llS8qveOUX3wxHnSykP5hlYFFuMfJ9p5JvIyCiBgp7WTfl6K5ZcyHj8r8JsN/J6QODkAsRRCLIcTuOCu8etkUw==} + /@types/webpack-env/1.17.0: + resolution: {integrity: sha512-eHSaNYEyxRA5IAG0Ym/yCyf86niZUIF/TpWKofQI/CVfh5HsMEUyfE2kwFxha4ow0s5g0LfISQxpDKjbRDrizw==} dev: true /@types/webpack-sources/3.2.0: resolution: {integrity: sha512-Ft7YH3lEVRQ6ls8k4Ff1oB4jN6oy/XmU6tQISKdhfh+1mR+viZFphS6WL0IrtDOzvefmJg5a0s7ZQoRXwqTEFg==} dependencies: - '@types/node': 14.18.16 + '@types/node': 16.11.41 '@types/source-list-map': 0.1.2 - source-map: 0.7.3 + source-map: 0.7.4 dev: true /@types/webpack/4.41.32: resolution: {integrity: sha512-cb+0ioil/7oz5//7tZUSwbrSAN/NWHrQylz5cW8G0dWTcF/g+/dSdMlKVZspBYuMAN1+WnwHrkxiRrLcwd0Heg==} dependencies: - '@types/node': 14.18.16 + '@types/node': 16.11.41 '@types/tapable': 1.0.8 - '@types/uglify-js': 3.13.2 + '@types/uglify-js': 3.16.0 '@types/webpack-sources': 3.2.0 anymatch: 3.1.2 source-map: 0.6.1 dev: true + /@types/writable-consumable-stream/2.0.0: + resolution: {integrity: sha512-9pnn3oI+VrFhyp5l8frOvAaK+CS3K34kSJT4+8upBeTWeaMSxkSSyIGM6hVcRx0M1VuStKH3xjMKVLBGCzPgfw==} + dependencies: + '@types/consumable-stream': 2.0.0 + dev: true + /@types/ws/8.5.3: resolution: {integrity: sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w==} dependencies: - '@types/node': 16.11.33 + '@types/node': 16.11.41 dev: true /@types/yargs-parser/21.0.0: @@ -8535,12 +8226,12 @@ packages: resolution: {integrity: sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw==} requiresBuild: true dependencies: - '@types/node': 17.0.31 + '@types/node': 18.0.0 dev: true optional: true - /@typescript-eslint/eslint-plugin/5.22.0_9817cbad956b8aa5d1e3d9ec99e4a1e4: - resolution: {integrity: sha512-YCiy5PUzpAeOPGQ7VSGDEY2NeYUV1B0swde2e0HzokRsHBYjSdF6DZ51OuRZxVPHx0032lXGLvOMls91D8FXlg==} + /@typescript-eslint/eslint-plugin/5.29.0_qqmbkyiaixvppdwswpytuf2hgm: + resolution: {integrity: sha512-kgTsISt9pM53yRFQmLZ4npj99yGl3x3Pl7z4eA66OuTzAGC4bQB5H5fuLwPnqTKU3yyrrg4MIhjF17UYnL4c0w==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: '@typescript-eslint/parser': ^5.0.0 @@ -8550,24 +8241,24 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/parser': 5.22.0_eslint@8.15.0+typescript@4.6.4 - '@typescript-eslint/scope-manager': 5.22.0 - '@typescript-eslint/type-utils': 5.22.0_eslint@8.15.0+typescript@4.6.4 - '@typescript-eslint/utils': 5.22.0_eslint@8.15.0+typescript@4.6.4 + '@typescript-eslint/parser': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e + '@typescript-eslint/scope-manager': 5.29.0 + '@typescript-eslint/type-utils': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e + '@typescript-eslint/utils': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e debug: 4.3.4 - eslint: 8.15.0 + eslint: 8.18.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.6.4 - typescript: 4.6.4 + tsutils: 3.21.0_typescript@4.7.4 + typescript: 4.7.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/parser/5.22.0_eslint@8.15.0+typescript@4.6.4: - resolution: {integrity: sha512-piwC4krUpRDqPaPbFaycN70KCP87+PC5WZmrWs+DlVOxxmF+zI6b6hETv7Quy4s9wbkV16ikMeZgXsvzwI3icQ==} + /@typescript-eslint/parser/5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e: + resolution: {integrity: sha512-ruKWTv+x0OOxbzIw9nW5oWlUopvP/IQDjB5ZqmTglLIoDTctLlAJpAQFpNPJP/ZI7hTT9sARBosEfaKbcFuECw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 @@ -8576,26 +8267,34 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/scope-manager': 5.22.0 - '@typescript-eslint/types': 5.22.0 - '@typescript-eslint/typescript-estree': 5.22.0_typescript@4.6.4 + '@typescript-eslint/scope-manager': 5.29.0 + '@typescript-eslint/types': 5.29.0 + '@typescript-eslint/typescript-estree': 5.29.0_typescript@4.7.4 debug: 4.3.4 - eslint: 8.15.0 - typescript: 4.6.4 + eslint: 8.18.0 + typescript: 4.7.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/scope-manager/5.22.0: - resolution: {integrity: sha512-yA9G5NJgV5esANJCO0oF15MkBO20mIskbZ8ijfmlKIvQKg0ynVKfHZ15/nhAJN5m8Jn3X5qkwriQCiUntC9AbA==} + /@typescript-eslint/scope-manager/5.28.0: + resolution: {integrity: sha512-LeBLTqF/he1Z+boRhSqnso6YrzcKMTQ8bO/YKEe+6+O/JGof9M0g3IJlIsqfrK/6K03MlFIlycbf1uQR1IjE+w==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - '@typescript-eslint/types': 5.22.0 - '@typescript-eslint/visitor-keys': 5.22.0 + '@typescript-eslint/types': 5.28.0 + '@typescript-eslint/visitor-keys': 5.28.0 dev: true - /@typescript-eslint/type-utils/5.22.0_eslint@8.15.0+typescript@4.6.4: - resolution: {integrity: sha512-iqfLZIsZhK2OEJ4cQ01xOq3NaCuG5FQRKyHicA3xhZxMgaxQazLUHbH/B2k9y5i7l3+o+B5ND9Mf1AWETeMISA==} + /@typescript-eslint/scope-manager/5.29.0: + resolution: {integrity: sha512-etbXUT0FygFi2ihcxDZjz21LtC+Eps9V2xVx09zFoN44RRHPrkMflidGMI+2dUs821zR1tDS6Oc9IXxIjOUZwA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dependencies: + '@typescript-eslint/types': 5.29.0 + '@typescript-eslint/visitor-keys': 5.29.0 + dev: true + + /@typescript-eslint/type-utils/5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e: + resolution: {integrity: sha512-JK6bAaaiJozbox3K220VRfCzLa9n0ib/J+FHIwnaV3Enw/TO267qe0pM1b1QrrEuy6xun374XEAsRlA86JJnyg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: '*' @@ -8604,22 +8303,27 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/utils': 5.22.0_eslint@8.15.0+typescript@4.6.4 + '@typescript-eslint/utils': 5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e debug: 4.3.4 - eslint: 8.15.0 - tsutils: 3.21.0_typescript@4.6.4 - typescript: 4.6.4 + eslint: 8.18.0 + tsutils: 3.21.0_typescript@4.7.4 + typescript: 4.7.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/types/5.22.0: - resolution: {integrity: sha512-T7owcXW4l0v7NTijmjGWwWf/1JqdlWiBzPqzAWhobxft0SiEvMJB56QXmeCQjrPuM8zEfGUKyPQr/L8+cFUBLw==} + /@typescript-eslint/types/5.28.0: + resolution: {integrity: sha512-2OOm8ZTOQxqkPbf+DAo8oc16sDlVR5owgJfKheBkxBKg1vAfw2JsSofH9+16VPlN9PWtv8Wzhklkqw3k/zCVxA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /@typescript-eslint/typescript-estree/5.22.0_typescript@4.6.4: - resolution: {integrity: sha512-EyBEQxvNjg80yinGE2xdhpDYm41so/1kOItl0qrjIiJ1kX/L/L8WWGmJg8ni6eG3DwqmOzDqOhe6763bF92nOw==} + /@typescript-eslint/types/5.29.0: + resolution: {integrity: sha512-X99VbqvAXOMdVyfFmksMy3u8p8yoRGITgU1joBJPzeYa0rhdf5ok9S56/itRoUSh99fiDoMtarSIJXo7H/SnOg==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dev: true + + /@typescript-eslint/typescript-estree/5.28.0_typescript@4.7.4: + resolution: {integrity: sha512-9GX+GfpV+F4hdTtYc6OV9ZkyYilGXPmQpm6AThInpBmKJEyRSIjORJd1G9+bknb7OTFYL+Vd4FBJAO6T78OVqA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: typescript: '*' @@ -8627,41 +8331,88 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/types': 5.22.0 - '@typescript-eslint/visitor-keys': 5.22.0 + '@typescript-eslint/types': 5.28.0 + '@typescript-eslint/visitor-keys': 5.28.0 debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 semver: 7.3.7 - tsutils: 3.21.0_typescript@4.6.4 - typescript: 4.6.4 + tsutils: 3.21.0_typescript@4.7.4 + typescript: 4.7.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/utils/5.22.0_eslint@8.15.0+typescript@4.6.4: - resolution: {integrity: sha512-HodsGb037iobrWSUMS7QH6Hl1kppikjA1ELiJlNSTYf/UdMEwzgj0WIp+lBNb6WZ3zTwb0tEz51j0Wee3iJ3wQ==} + /@typescript-eslint/typescript-estree/5.29.0_typescript@4.7.4: + resolution: {integrity: sha512-mQvSUJ/JjGBdvo+1LwC+GY2XmSYjK1nAaVw2emp/E61wEVYEyibRHCqm1I1vEKbXCpUKuW4G7u9ZCaZhJbLoNQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/types': 5.29.0 + '@typescript-eslint/visitor-keys': 5.29.0 + debug: 4.3.4 + globby: 11.1.0 + is-glob: 4.0.3 + semver: 7.3.7 + tsutils: 3.21.0_typescript@4.7.4 + typescript: 4.7.4 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/utils/5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e: + resolution: {integrity: sha512-E60N5L0fjv7iPJV3UGc4EC+A3Lcj4jle9zzR0gW7vXhflO7/J29kwiTGITA2RlrmPokKiZbBy2DgaclCaEUs6g==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: '@types/json-schema': 7.0.11 - '@typescript-eslint/scope-manager': 5.22.0 - '@typescript-eslint/types': 5.22.0 - '@typescript-eslint/typescript-estree': 5.22.0_typescript@4.6.4 - eslint: 8.15.0 + '@typescript-eslint/scope-manager': 5.28.0 + '@typescript-eslint/types': 5.28.0 + '@typescript-eslint/typescript-estree': 5.28.0_typescript@4.7.4 + eslint: 8.18.0 eslint-scope: 5.1.1 - eslint-utils: 3.0.0_eslint@8.15.0 + eslint-utils: 3.0.0_eslint@8.18.0 transitivePeerDependencies: - supports-color - typescript dev: true - /@typescript-eslint/visitor-keys/5.22.0: - resolution: {integrity: sha512-DbgTqn2Dv5RFWluG88tn0pP6Ex0ROF+dpDO1TNNZdRtLjUr6bdznjA6f/qNqJLjd2PgguAES2Zgxh/JzwzETDg==} + /@typescript-eslint/utils/5.29.0_b5e7v2qnwxfo6hmiq56u52mz3e: + resolution: {integrity: sha512-3Eos6uP1nyLOBayc/VUdKZikV90HahXE5Dx9L5YlSd/7ylQPXhLk1BYb29SDgnBnTp+jmSZUU0QxUiyHgW4p7A==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + '@types/json-schema': 7.0.11 + '@typescript-eslint/scope-manager': 5.29.0 + '@typescript-eslint/types': 5.29.0 + '@typescript-eslint/typescript-estree': 5.29.0_typescript@4.7.4 + eslint: 8.18.0 + eslint-scope: 5.1.1 + eslint-utils: 3.0.0_eslint@8.18.0 + transitivePeerDependencies: + - supports-color + - typescript + dev: true + + /@typescript-eslint/visitor-keys/5.28.0: + resolution: {integrity: sha512-BtfP1vCor8cWacovzzPFOoeW4kBQxzmhxGoOpt0v1SFvG+nJ0cWaVdJk7cky1ArTcFHHKNIxyo2LLr3oNkSuXA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - '@typescript-eslint/types': 5.22.0 + '@typescript-eslint/types': 5.28.0 + eslint-visitor-keys: 3.3.0 + dev: true + + /@typescript-eslint/visitor-keys/5.29.0: + resolution: {integrity: sha512-Hpb/mCWsjILvikMQoZIE3voc9wtQcS0A9FUw3h8bhr9UxBdtI/tw1ZDZUOXHXLOVMedKCH5NxyzATwnU78bWCQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dependencies: + '@typescript-eslint/types': 5.29.0 eslint-visitor-keys: 3.3.0 dev: true @@ -8898,27 +8649,27 @@ packages: '@xtuc/long': 4.2.2 dev: true - /@webpack-cli/configtest/1.1.1_webpack-cli@4.9.2+webpack@5.72.0: - resolution: {integrity: sha512-1FBc1f9G4P/AxMqIgfZgeOTuRnwZMten8E7zap5zgpPInnCrP8D4Q81+4CWIch8i/Nf7nXjP0v6CjjbHOrXhKg==} + /@webpack-cli/configtest/1.2.0_77l47gmqkrqiei5z7sbwz5iaj4: + resolution: {integrity: sha512-4FB8Tj6xyVkyqjj1OaTqCjXYULB9FMkqQ8yGrZjRDrYh0nOE+7Lhs45WioWQQMV+ceFlE368Ukhe6xdvJM9Egg==} peerDependencies: webpack: 4.x.x || 5.x.x webpack-cli: 4.x.x dependencies: - webpack: 5.72.0_webpack-cli@4.9.2 - webpack-cli: 4.9.2_e12b136d9a821d211692f1ec9717cf12 + webpack: 5.73.0_webpack-cli@4.10.0 + webpack-cli: 4.10.0_hnfkmnck6ti4dm6ulhhz44v2ju dev: true - /@webpack-cli/info/1.4.1_webpack-cli@4.9.2: - resolution: {integrity: sha512-PKVGmazEq3oAo46Q63tpMr4HipI3OPfP7LiNOEJg963RMgT0rqheag28NCML0o3GIzA3DmxP1ZIAv9oTX1CUIA==} + /@webpack-cli/info/1.5.0_webpack-cli@4.10.0: + resolution: {integrity: sha512-e8tSXZpw2hPl2uMJY6fsMswaok5FdlGNRTktvFk2sD8RjH0hE2+XistawJx1vmKteh4NmGmNUrp+Tb2w+udPcQ==} peerDependencies: webpack-cli: 4.x.x dependencies: envinfo: 7.8.1 - webpack-cli: 4.9.2_e12b136d9a821d211692f1ec9717cf12 + webpack-cli: 4.10.0_hnfkmnck6ti4dm6ulhhz44v2ju dev: true - /@webpack-cli/serve/1.6.1_214f72af378d7328cdf6ebb7922c0e1b: - resolution: {integrity: sha512-gNGTiTrjEVQ0OcVnzsRSqTxaBSr+dmTfm+qJsCDluky8uhdLWep7Gcr62QsAKHTMxjCS/8nEITsmFAhfIx+QSw==} + /@webpack-cli/serve/1.7.0_b6kp5g2s4uywsci7bb7pbu5to4: + resolution: {integrity: sha512-oxnCNGj88fL+xzV+dacXs44HcDwf1ovs3AuEzvP7mqXw7fQntqIhQ1BRmynh4qEKQSSSRSWVyXRjmTbZIX9V2Q==} peerDependencies: webpack-cli: 4.x.x webpack-dev-server: '*' @@ -8926,12 +8677,12 @@ packages: webpack-dev-server: optional: true dependencies: - webpack-cli: 4.9.2_e12b136d9a821d211692f1ec9717cf12 - webpack-dev-server: 4.9.0_webpack-cli@4.9.2+webpack@5.72.0 + webpack-cli: 4.10.0_hnfkmnck6ti4dm6ulhhz44v2ju + webpack-dev-server: 4.9.2_77l47gmqkrqiei5z7sbwz5iaj4 dev: true - /@webpack-cli/serve/1.6.1_webpack-cli@4.9.2: - resolution: {integrity: sha512-gNGTiTrjEVQ0OcVnzsRSqTxaBSr+dmTfm+qJsCDluky8uhdLWep7Gcr62QsAKHTMxjCS/8nEITsmFAhfIx+QSw==} + /@webpack-cli/serve/1.7.0_webpack-cli@4.10.0: + resolution: {integrity: sha512-oxnCNGj88fL+xzV+dacXs44HcDwf1ovs3AuEzvP7mqXw7fQntqIhQ1BRmynh4qEKQSSSRSWVyXRjmTbZIX9V2Q==} peerDependencies: webpack-cli: 4.x.x webpack-dev-server: '*' @@ -8939,7 +8690,7 @@ packages: webpack-dev-server: optional: true dependencies: - webpack-cli: 4.9.2_webpack@5.72.0 + webpack-cli: 4.10.0_webpack@5.73.0 dev: true /@xmldom/xmldom/0.7.5: @@ -8955,15 +8706,9 @@ packages: resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==} dev: true - /@yarn-tool/resolve-package/1.0.46: - resolution: {integrity: sha512-RJcBGTVywUqYGRtGkPSgJC/ozf0wK/xjUy66tXkbpL35U0o1oef4S0v23euxA/CiukqBWr2fRGtGY6FidESdTg==} - dependencies: - pkg-dir: 5.0.0 - tslib: 2.4.0 - upath2: 3.1.12 - transitivePeerDependencies: - - '@types/node' - dev: true + /@zag-js/focus-visible/0.1.0: + resolution: {integrity: sha512-PeaBcTmdZWcFf7n1aM+oiOdZc+sy14qi0emPIeUuGMTjbP0xLGrZu43kdpHnWSXy7/r4Ubp/vlg50MCV8+9Isg==} + dev: false /abab/2.0.6: resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==} @@ -8981,7 +8726,7 @@ packages: negotiator: 0.6.3 /acorn-globals/3.1.0: - resolution: {integrity: sha1-/YJw9x+7SZawBPqIDuXUZXOnMb8=} + resolution: {integrity: sha512-uWttZCk96+7itPxK8xCzY86PnxKTMrReKDqrHzv42VQY0K30PUO8WY13WMOuI+cOdX4EIdzdvQ8k6jkuGRFMYw==} dependencies: acorn: 4.0.13 dev: true @@ -9028,13 +8773,13 @@ packages: dev: true /acorn/3.3.0: - resolution: {integrity: sha1-ReN/s56No/JbruP/U2niu18iAXo=} + resolution: {integrity: sha512-OLUyIIZ7mF5oaAUT1w0TFqQS81q3saT46x8t7ukpPjMNk+nbs4ZHhs7ToV8EWnLYLepjETXd4XaCE4uxkMeqUw==} engines: {node: '>=0.4.0'} hasBin: true dev: true /acorn/4.0.13: - resolution: {integrity: sha1-EFSVrlNh1pe9GVyCUZLhrX8lN4c=} + resolution: {integrity: sha512-fu2ygVGuMmlzG8ZeRJ0bvR41nsAkxxhbyk8bZ1SS521Z7vmgJFTQQlfz/Mp/nJexGBz+v8sC9bM6+lNgskt4Ug==} engines: {node: '>=0.4.0'} hasBin: true dev: true @@ -9062,6 +8807,31 @@ packages: engines: {node: '>= 10.0.0'} dev: true + /ag-auth/1.0.1: + resolution: {integrity: sha512-zlDUFLNWOrWuQstP785+UXL+WMhRvpw/66BThpKMpqSZ15dcl8dbic5VYC7an0bgoBgCLNNiCxtz0+bJxT1BeQ==} + dependencies: + jsonwebtoken: 8.5.1 + sc-errors: 2.0.1 + dev: false + + /ag-channel/5.0.0: + resolution: {integrity: sha512-bArHkdqQxynim981t8FLZM5TfA0v7p081OlFdOxs6clB79GSGcGlOQMDa31DT9F5VMjzqNiJmhfGwinvfU/3Zg==} + dependencies: + consumable-stream: 2.0.0 + + /ag-request/1.0.0: + resolution: {integrity: sha512-2f7I0cQLMVyGAqjSewVMEFuAsJsIY6egdE16UHS636r+8c6Oevrv0j6SrOIXyRN6yuNT4PBuhiKmrhHbh9OvEg==} + dependencies: + sc-errors: 2.0.1 + + /ag-simple-broker/5.0.0: + resolution: {integrity: sha512-LMwfBdoNm+8ac/RkgW6z1mjIvy2cgEqWa9cJUD5sc5uiJkIn/kXhVRlPdfa/MJtxPivo9DRhKb9DlSp2gCv+Cg==} + dependencies: + ag-channel: 5.0.0 + async-stream-emitter: 4.0.0 + stream-demux: 8.0.0 + dev: false + /agent-base/6.0.2: resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} engines: {node: '>= 6.0.0'} @@ -9101,7 +8871,7 @@ packages: globalthis: 1.0.3 object.entries: 1.1.5 object.fromentries: 2.0.5 - object.getownpropertydescriptors: 2.1.3 + object.getownpropertydescriptors: 2.1.4 object.values: 1.1.5 promise.allsettled: 1.0.5 promise.prototype.finally: 3.1.3 @@ -9163,7 +8933,7 @@ packages: dev: true /align-text/0.1.4: - resolution: {integrity: sha1-DNkKVhCT810KmSVsIrcGlDP60Rc=} + resolution: {integrity: sha512-GrTZLRpmp6wIC2ztrWW9MjjTgSKccffgFagbNDOX95/dcjEcYZibYTeaOntySQLcdw1ztBoFkviiUvTMbb9MYg==} engines: {node: '>=0.10.0'} dependencies: kind-of: 3.2.2 @@ -9186,16 +8956,11 @@ packages: engines: {node: '>=6'} dev: true - /ansi-colors/4.1.1: - resolution: {integrity: sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==} + /ansi-colors/4.1.3: + resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} engines: {node: '>=6'} dev: true - /ansi-escapes/3.2.0: - resolution: {integrity: sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==} - engines: {node: '>=4'} - dev: false - /ansi-escapes/4.3.2: resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==} engines: {node: '>=8'} @@ -9209,15 +8974,10 @@ packages: dev: true /ansi-regex/2.1.1: - resolution: {integrity: sha1-w7M6te42DYbg5ijwRorn7yfWVN8=} + resolution: {integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==} engines: {node: '>=0.10.0'} dev: true - /ansi-regex/3.0.1: - resolution: {integrity: sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==} - engines: {node: '>=4'} - dev: false - /ansi-regex/5.0.1: resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} engines: {node: '>=8'} @@ -9263,11 +9023,11 @@ packages: normalize-path: 3.0.0 picomatch: 2.3.1 - /apollo-datasource/3.3.1: - resolution: {integrity: sha512-Z3a8rEUXVPIZ1p8xrFL8bcNhWmhOmovgDArvwIwmJOBnh093ZpRfO+ESJEDAN4KswmyzCLDAwjsW4zQOONdRUw==} + /apollo-datasource/3.3.2: + resolution: {integrity: sha512-L5TiS8E2Hn/Yz7SSnWIVbZw0ZfEIXZCa5VUiVxD9P53JvSrf4aStvsFDlGWPvpIdCR+aly2CfoB79B9/JjKFqg==} engines: {node: '>=12.0'} dependencies: - apollo-server-caching: 3.3.0 + '@apollo/utils.keyvaluecache': 1.0.1 apollo-server-env: 4.2.1 transitivePeerDependencies: - encoding @@ -9279,37 +9039,30 @@ packages: '@apollo/protobufjs': 1.2.2 dev: false - /apollo-server-caching/3.3.0: - resolution: {integrity: sha512-Wgcb0ArjZ5DjQ7ID+tvxUcZ7Yxdbk5l1MxZL8D8gkyjooOkhPNzjRVQ7ubPoXqO54PrOMOTm1ejVhsF+AfIirQ==} - engines: {node: '>=12.0'} - dependencies: - lru-cache: 6.0.0 - dev: false - - /apollo-server-core/3.7.0_graphql@16.4.0: - resolution: {integrity: sha512-xUCDjrBzPVbttbh/HenuQdivco/dcXE2oIDYwCU6FU2RBXqxWFmuCl2Xe7VPA/5Frw/4snJDLCyVte9PA5edww==} + /apollo-server-core/3.9.0_graphql@16.5.0: + resolution: {integrity: sha512-WS54C33cTriDaBIcj7ijWv/fgeJICcrQKlP1Cn6pnZp/eumpMraezLeJ3gFWAXprOuR2E3fZe64lNlup0fMu8w==} engines: {node: '>=12.0'} peerDependencies: graphql: ^15.3.0 || ^16.0.0 dependencies: + '@apollo/utils.keyvaluecache': 1.0.1 '@apollo/utils.logger': 1.0.0 - '@apollographql/apollo-tools': 0.5.4_graphql@16.4.0 + '@apollo/utils.usagereporting': 1.0.0_graphql@16.5.0 + '@apollographql/apollo-tools': 0.5.4_graphql@16.5.0 '@apollographql/graphql-playground-html': 1.6.29 - '@graphql-tools/mock': 8.6.8_graphql@16.4.0 - '@graphql-tools/schema': 8.3.10_graphql@16.4.0 + '@graphql-tools/mock': 8.6.12_graphql@16.5.0 + '@graphql-tools/schema': 8.3.14_graphql@16.5.0 '@josephg/resolvable': 1.0.1 - apollo-datasource: 3.3.1 + apollo-datasource: 3.3.2 apollo-reporting-protobuf: 3.3.1 - apollo-server-caching: 3.3.0 apollo-server-env: 4.2.1 - apollo-server-errors: 3.3.1_graphql@16.4.0 - apollo-server-plugin-base: 3.5.3_graphql@16.4.0 - apollo-server-types: 3.5.3_graphql@16.4.0 + apollo-server-errors: 3.3.1_graphql@16.5.0 + apollo-server-plugin-base: 3.6.1_graphql@16.5.0 + apollo-server-types: 3.6.1_graphql@16.5.0 async-retry: 1.3.3 fast-json-stable-stringify: 2.1.0 - graphql: 16.4.0 - graphql-tag: 2.12.6_graphql@16.4.0 - lodash.sortby: 4.7.0 + graphql: 16.5.0 + graphql-tag: 2.12.6_graphql@16.5.0 loglevel: 1.8.0 lru-cache: 6.0.0 sha.js: 2.4.11 @@ -9328,17 +9081,17 @@ packages: - encoding dev: false - /apollo-server-errors/3.3.1_graphql@16.4.0: + /apollo-server-errors/3.3.1_graphql@16.5.0: resolution: {integrity: sha512-xnZJ5QWs6FixHICXHxUfm+ZWqqxrNuPlQ+kj5m6RtEgIpekOPssH/SD9gf2B4HuWV0QozorrygwZnux8POvyPA==} engines: {node: '>=12.0'} peerDependencies: graphql: ^15.3.0 || ^16.0.0 dependencies: - graphql: 16.4.0 + graphql: 16.5.0 dev: false - /apollo-server-express/3.7.0_express@4.18.1+graphql@16.4.0: - resolution: {integrity: sha512-176LSK7YBxwfleurtbfr5SYMheNNJSHrQa2h4QuosLqhfFJkfTpI2iBW56N737U47QfyueCOvkjNZVq86e3n2g==} + /apollo-server-express/3.9.0_g7snex6epo2tsaz6yhvyva23iq: + resolution: {integrity: sha512-scSeHy9iB7W3OiF3uLQEzad9Jm9tEfDF8ACsJb2P+xX69uqg6zizsrQvj3qRhazCO7FKMcMu9zQFR0hy7zKbUA==} engines: {node: '>=12.0'} peerDependencies: express: ^4.17.1 @@ -9348,48 +9101,49 @@ packages: '@types/body-parser': 1.19.2 '@types/cors': 2.8.12 '@types/express': 4.17.13 - '@types/express-serve-static-core': 4.17.28 + '@types/express-serve-static-core': 4.17.29 accepts: 1.3.8 - apollo-server-core: 3.7.0_graphql@16.4.0 - apollo-server-types: 3.5.3_graphql@16.4.0 + apollo-server-core: 3.9.0_graphql@16.5.0 + apollo-server-types: 3.6.1_graphql@16.5.0 body-parser: 1.20.0 cors: 2.8.5 express: 4.18.1 - graphql: 16.4.0 + graphql: 16.5.0 parseurl: 1.3.3 transitivePeerDependencies: - encoding - supports-color dev: false - /apollo-server-plugin-base/3.5.3_graphql@16.4.0: - resolution: {integrity: sha512-zojm3qiUGYtM5k1PPrCJnLZSDNqvWvmIDvqBjCu3wI3iNZqNm3MOA86eYGFfaBi/WNu3qYIj6QE3T7w0XjRV1A==} + /apollo-server-plugin-base/3.6.1_graphql@16.5.0: + resolution: {integrity: sha512-bFpxzWO0LTTtSAkGVBeaAtnQXJ5ZCi8eaLN/eMSju8RByifmF3Kr6gAqcOZhOH/geQEt3Y6G8n3bR0eHTGxljQ==} engines: {node: '>=12.0'} peerDependencies: graphql: ^15.3.0 || ^16.0.0 dependencies: - apollo-server-types: 3.5.3_graphql@16.4.0 - graphql: 16.4.0 + apollo-server-types: 3.6.1_graphql@16.5.0 + graphql: 16.5.0 transitivePeerDependencies: - encoding dev: false - /apollo-server-types/3.5.3_graphql@16.4.0: - resolution: {integrity: sha512-Qf5mMVTDyABEeyjGecwMsk0y0km4KuW8/j/UwBDQkAAW1QRy+w8nqi+wvSoA5hNXiYCdJN4U4nxTxm9+2eiT4w==} + /apollo-server-types/3.6.1_graphql@16.5.0: + resolution: {integrity: sha512-XOPlBlRdwP00PrG03OffGGWuzyei+J9t1rAnvyHsSdP0JCgQWigHJfvL1N9Bhgi4UTjl9JadKOJh1znLNlqIFQ==} engines: {node: '>=12.0'} peerDependencies: graphql: ^15.3.0 || ^16.0.0 dependencies: + '@apollo/utils.keyvaluecache': 1.0.1 + '@apollo/utils.logger': 1.0.0 apollo-reporting-protobuf: 3.3.1 - apollo-server-caching: 3.3.0 apollo-server-env: 4.2.1 - graphql: 16.4.0 + graphql: 16.5.0 transitivePeerDependencies: - encoding dev: false /app-root-dir/1.0.2: - resolution: {integrity: sha1-OBh+wt6nV3//Az/8sSFyaS/24Rg=} + resolution: {integrity: sha512-jlpIfsOoNoafl92Sz//64uQHGSyMrD2vYG5d8o2a4qGvyNCvXur7bzIsWtAC/6flI2RYAp3kv8rsfBtaLm7w0g==} dev: true /aproba/1.2.0: @@ -9403,7 +9157,7 @@ packages: resolution: {integrity: sha512-bEL/yUb/fNNiNTuUz979Z0Yg5L+LzLxGJz8x79lYmR54fmTIb6ob/hNQgkQnIUDWIFjZVQwl9Xs356I6BAMHfw==} engines: {node: '>= 6'} dependencies: - glob: 7.2.0 + glob: 7.2.3 graceful-fs: 4.2.10 lazystream: 1.0.1 lodash.defaults: 4.2.0 @@ -9420,7 +9174,7 @@ packages: engines: {node: '>= 10'} dependencies: archiver-utils: 2.1.0 - async: 3.2.3 + async: 3.2.4 buffer-crc32: 0.2.13 readable-stream: 3.6.0 readdir-glob: 1.1.1 @@ -9469,8 +9223,8 @@ packages: resolution: {integrity: sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==} engines: {node: '>=6.0'} dependencies: - '@babel/runtime': 7.17.9 - '@babel/runtime-corejs3': 7.17.9 + '@babel/runtime': 7.18.3 + '@babel/runtime-corejs3': 7.18.3 dev: true /aria-query/5.0.0: @@ -9479,7 +9233,7 @@ packages: dev: true /arr-diff/4.0.0: - resolution: {integrity: sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=} + resolution: {integrity: sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==} engines: {node: '>=0.10.0'} dev: true @@ -9489,19 +9243,25 @@ packages: dev: true /arr-union/3.1.0: - resolution: {integrity: sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=} + resolution: {integrity: sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==} engines: {node: '>=0.10.0'} dev: true + /array-find-index/1.0.2: + resolution: {integrity: sha512-M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw==} + engines: {node: '>=0.10.0'} + dev: true + optional: true + /array-flatten/1.1.1: - resolution: {integrity: sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=} + resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==} /array-flatten/2.1.2: resolution: {integrity: sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==} dev: true /array-from/2.1.1: - resolution: {integrity: sha1-z+nYwmYoudxa7MYqn12PHzUsEZU=} + resolution: {integrity: sha512-GQTc6Uupx1FCavi5mPzBvVT7nEOeWMmUA9P95wpfpW1XwMSKs+KaymD5C2Up7KAUKg/mYwbsUYzdZWcoajlNZg==} dev: true /array-includes/3.1.5: @@ -9510,13 +9270,13 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.0 - get-intrinsic: 1.1.1 + es-abstract: 1.20.1 + get-intrinsic: 1.1.2 is-string: 1.0.7 dev: true /array-union/1.0.2: - resolution: {integrity: sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=} + resolution: {integrity: sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==} engines: {node: '>=0.10.0'} dependencies: array-uniq: 1.0.3 @@ -9528,12 +9288,12 @@ packages: dev: true /array-uniq/1.0.3: - resolution: {integrity: sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=} + resolution: {integrity: sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==} engines: {node: '>=0.10.0'} dev: true /array-unique/0.3.2: - resolution: {integrity: sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=} + resolution: {integrity: sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==} engines: {node: '>=0.10.0'} dev: true @@ -9543,7 +9303,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.0 + es-abstract: 1.20.1 es-shim-unscopables: 1.0.0 dev: true @@ -9553,7 +9313,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.0 + es-abstract: 1.20.1 es-shim-unscopables: 1.0.0 dev: true @@ -9563,13 +9323,24 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.0 + es-abstract: 1.20.1 + es-array-method-boxes-properly: 1.0.0 + is-string: 1.0.7 + dev: true + + /array.prototype.reduce/1.0.4: + resolution: {integrity: sha512-WnM+AjG/DvLRLo4DDl+r+SvCzYtD2Jd9oeBYMcEaI7t3fFrHY9M53/wdLcTvmZNQ70IU6Htj0emFkZ5TS+lrdw==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.2 + define-properties: 1.1.4 + es-abstract: 1.20.1 es-array-method-boxes-properly: 1.0.0 is-string: 1.0.7 dev: true /arrify/1.0.1: - resolution: {integrity: sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=} + resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==} engines: {node: '>=0.10.0'} dev: true @@ -9579,7 +9350,7 @@ packages: dev: true /asap/2.0.6: - resolution: {integrity: sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=} + resolution: {integrity: sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==} dev: true /asn1.js/5.4.1: @@ -9599,12 +9370,12 @@ packages: dev: true /assign-symbols/1.0.0: - resolution: {integrity: sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=} + resolution: {integrity: sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==} engines: {node: '>=0.10.0'} dev: true /ast-types-flow/0.0.7: - resolution: {integrity: sha1-9wtzXGvKGlycItmCw+Oef+ujva0=} + resolution: {integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==} dev: true /ast-types/0.14.2: @@ -9630,29 +9401,17 @@ packages: retry: 0.13.1 dev: false - /async/2.0.0: - resolution: {integrity: sha1-0JAK04WvE4BFQKEJxCFm4657K50=} + /async-stream-emitter/4.0.0: + resolution: {integrity: sha512-zPVflmOEN4EFEAk2/p+BbLRRM/i4Iol2nvO2RSFNuYUiYZdBmBJi5O/PMQeO9Unj1EONQqUN0W5PadVS/bA6/g==} dependencies: - lodash: 4.17.21 - dev: false + stream-demux: 8.0.0 - /async/2.3.0: - resolution: {integrity: sha1-EBPRBRBH3TIP4k5JTVxm7K9hR9k=} - dependencies: - lodash: 4.17.21 - dev: false - - /async/2.6.4: - resolution: {integrity: sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==} - dependencies: - lodash: 4.17.21 - dev: false - - /async/3.2.3: - resolution: {integrity: sha512-spZRyzKL5l5BZQrr/6m/SqFdBN0q3OCI0f9rjfBzCMBIP4p75P620rR3gTmaksNOhmzgdxcaxdNfMy6anrbM0g==} + /async/3.2.4: + resolution: {integrity: sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==} + dev: true /asynckit/0.4.0: - resolution: {integrity: sha1-x57Zf380y48robyXkLzDZkdLS3k=} + resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} dev: true /at-least-node/1.0.0: @@ -9661,7 +9420,7 @@ packages: dev: true /atoa/1.0.0: - resolution: {integrity: sha1-DMDpGkgOc4+SPrwQNnZHF3mzSkk=} + resolution: {integrity: sha512-VVE1H6cc4ai+ZXo/CRWoJiHXrA1qfA31DPnx6D20+kSI547hQN5Greh51LQ1baMRMfxO5K5M4ImMtZbZt2DODQ==} dev: false /atob/2.1.2: @@ -9674,8 +9433,8 @@ packages: resolution: {integrity: sha512-eM9d/swFopRt5gdJ7jrpCwgvEMIayITpojhkkSMRsFHYuH5bkSQ4p/9qTEHtmNudUZh22Tehu7I6CxAW0IXTKA==} hasBin: true dependencies: - browserslist: 4.20.3 - caniuse-lite: 1.0.30001338 + browserslist: 4.20.4 + caniuse-lite: 1.0.30001356 normalize-range: 0.1.2 num2fraction: 1.2.2 picocolors: 0.2.1 @@ -9683,23 +9442,24 @@ packages: postcss-value-parser: 4.2.0 dev: true - /axe-core/4.4.1: - resolution: {integrity: sha512-gd1kmb21kwNuWr6BQz8fv6GNECPBnUasepcoLbekws23NVBLODdsClRZ+bQ8+9Uomf3Sm3+Vwn0oYG9NvwnJCw==} - engines: {node: '>=4'} + /axe-core/4.4.2: + resolution: {integrity: sha512-LVAaGp/wkkgYJcjmHsoKx4juT1aQvJyPcW09MLCjVTh3V2cc6PnyempiLMNH5iMdfIX/zdbjUx2KDjMLCTdPeA==} + engines: {node: '>=12'} dev: true /axios/0.21.4: resolution: {integrity: sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==} dependencies: - follow-redirects: 1.15.0 + follow-redirects: 1.15.1 transitivePeerDependencies: - debug dev: true - /axios/0.24.0: - resolution: {integrity: sha512-Q6cWsys88HoPgAaFAVUb0WpPk0O8iTeisR9IMqy9G8AbO4NlpVknrnQS03zzF9PGAWgO3cgletO3VjV/P7VztA==} + /axios/0.27.2: + resolution: {integrity: sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==} dependencies: - follow-redirects: 1.15.0 + follow-redirects: 1.15.1 + form-data: 4.0.0 transitivePeerDependencies: - debug dev: true @@ -9708,18 +9468,18 @@ packages: resolution: {integrity: sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==} dev: true - /babel-jest/27.5.1_@babel+core@7.17.10: + /babel-jest/27.5.1_@babel+core@7.18.5: resolution: {integrity: sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} peerDependencies: '@babel/core': ^7.8.0 dependencies: - '@babel/core': 7.17.10 + '@babel/core': 7.18.5 '@jest/transform': 27.5.1 '@jest/types': 27.5.1 '@types/babel__core': 7.1.19 babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 27.5.1_@babel+core@7.17.10 + babel-preset-jest: 27.5.1_@babel+core@7.18.5 chalk: 4.1.2 graceful-fs: 4.2.10 slash: 3.0.0 @@ -9727,29 +9487,14 @@ packages: - supports-color dev: true - /babel-loader/8.2.5_887a5110397f957d9e06dd05497793db: + /babel-loader/8.2.5_p4a4vpdmvzvrx3lnpkqvj5nmla: resolution: {integrity: sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ==} engines: {node: '>= 8.9'} peerDependencies: '@babel/core': ^7.0.0 webpack: '>=2' dependencies: - '@babel/core': 7.17.10 - find-cache-dir: 3.3.2 - loader-utils: 2.0.2 - make-dir: 3.1.0 - schema-utils: 2.7.1 - webpack: 5.72.0 - dev: true - - /babel-loader/8.2.5_a48671a7a0b12e26689d4cec3e702e28: - resolution: {integrity: sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ==} - engines: {node: '>= 8.9'} - peerDependencies: - '@babel/core': ^7.0.0 - webpack: '>=2' - dependencies: - '@babel/core': 7.17.10 + '@babel/core': 7.18.5 find-cache-dir: 3.3.2 loader-utils: 2.0.2 make-dir: 3.1.0 @@ -9757,8 +9502,23 @@ packages: webpack: 4.46.0 dev: true + /babel-loader/8.2.5_te6ollfzjcco6mbxjl755ucqke: + resolution: {integrity: sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ==} + engines: {node: '>= 8.9'} + peerDependencies: + '@babel/core': ^7.0.0 + webpack: '>=2' + dependencies: + '@babel/core': 7.18.5 + find-cache-dir: 3.3.2 + loader-utils: 2.0.2 + make-dir: 3.1.0 + schema-utils: 2.7.1 + webpack: 5.73.0 + dev: true + /babel-plugin-add-react-displayname/0.0.5: - resolution: {integrity: sha1-M51M3be2X9YtHfnbn+BN4TQSK9U=} + resolution: {integrity: sha512-LY3+Y0XVDYcShHHorshrDbt4KFWL4bSeniCtl4SYZbask+Syngk1uMPCeN9+nSiZo6zX5s0RTq/J9Pnaaf/KHw==} dev: true /babel-plugin-apply-mdx-type-prop/1.6.22_@babel+core@7.12.9: @@ -9777,21 +9537,6 @@ packages: object.assign: 4.1.2 dev: true - /babel-plugin-emotion/10.2.2: - resolution: {integrity: sha512-SMSkGoqTbTyUTDeuVuPIWifPdUGkTk1Kf9BWRiXIOIcuyMfsdp2EjeiiFvOzX8NOBvEh/ypKYvUh2rkgAJMCLA==} - dependencies: - '@babel/helper-module-imports': 7.16.7 - '@emotion/hash': 0.8.0 - '@emotion/memoize': 0.7.4 - '@emotion/serialize': 0.11.16 - babel-plugin-macros: 2.8.0 - babel-plugin-syntax-jsx: 6.18.0 - convert-source-map: 1.8.0 - escape-string-regexp: 1.0.5 - find-root: 1.1.0 - source-map: 0.5.7 - dev: true - /babel-plugin-extract-import-names/1.6.22: resolution: {integrity: sha512-yJ9BsJaISua7d8zNT7oRG1ZLBJCIdZ4PZqmH8qa9N5AK01ifk3fnkc98AXhtzE7UkfCsEumvoQWgoYLhOnJ7jQ==} dependencies: @@ -9802,7 +9547,7 @@ packages: resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==} engines: {node: '>=8'} dependencies: - '@babel/helper-plugin-utils': 7.16.7 + '@babel/helper-plugin-utils': 7.17.12 '@istanbuljs/load-nyc-config': 1.1.0 '@istanbuljs/schema': 0.1.3 istanbul-lib-instrument: 5.2.0 @@ -9816,7 +9561,7 @@ packages: engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: '@babel/template': 7.16.7 - '@babel/types': 7.17.10 + '@babel/types': 7.18.4 '@types/babel__core': 7.1.19 '@types/babel__traverse': 7.17.1 dev: true @@ -9824,71 +9569,64 @@ packages: /babel-plugin-macros/2.8.0: resolution: {integrity: sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==} dependencies: - '@babel/runtime': 7.17.9 + '@babel/runtime': 7.18.3 cosmiconfig: 6.0.0 - resolve: 1.22.0 + resolve: 1.22.1 + dev: false /babel-plugin-macros/3.1.0: resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==} engines: {node: '>=10', npm: '>=6'} dependencies: - '@babel/runtime': 7.17.9 + '@babel/runtime': 7.18.3 cosmiconfig: 7.0.1 - resolve: 1.22.0 + resolve: 1.22.1 dev: true - /babel-plugin-named-asset-import/0.3.8_@babel+core@7.17.10: - resolution: {integrity: sha512-WXiAc++qo7XcJ1ZnTYGtLxmBCVbddAml3CEXgWaBzNzLNoxtQ8AiGEFDMOhot9XjTCQbvP5E77Fj9Gk924f00Q==} - peerDependencies: - '@babel/core': ^7.1.0 - dependencies: - '@babel/core': 7.17.10 - dev: true - - /babel-plugin-polyfill-corejs2/0.3.1_@babel+core@7.17.10: + /babel-plugin-polyfill-corejs2/0.3.1_@babel+core@7.18.5: resolution: {integrity: sha512-v7/T6EQcNfVLfcN2X8Lulb7DjprieyLWJK/zOWH5DUYcAgex9sP3h25Q+DLsX9TloXe3y1O8l2q2Jv9q8UVB9w==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.17.10 - '@babel/core': 7.17.10 - '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.17.10 + '@babel/compat-data': 7.18.5 + '@babel/core': 7.18.5 + '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.18.5 semver: 6.3.0 transitivePeerDependencies: - supports-color dev: true - /babel-plugin-polyfill-corejs3/0.1.7_@babel+core@7.17.10: + /babel-plugin-polyfill-corejs3/0.1.7_@babel+core@7.18.5: resolution: {integrity: sha512-u+gbS9bbPhZWEeyy1oR/YaaSpod/KDT07arZHb80aTpl8H5ZBq+uN1nN9/xtX7jQyfLdPfoqI4Rue/MQSWJquw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-define-polyfill-provider': 0.1.5_@babel+core@7.17.10 - core-js-compat: 3.22.4 + '@babel/core': 7.18.5 + '@babel/helper-define-polyfill-provider': 0.1.5_@babel+core@7.18.5 + core-js-compat: 3.23.1 transitivePeerDependencies: - supports-color dev: true - /babel-plugin-polyfill-corejs3/0.5.2_@babel+core@7.17.10: + /babel-plugin-polyfill-corejs3/0.5.2_@babel+core@7.18.5: resolution: {integrity: sha512-G3uJih0XWiID451fpeFaYGVuxHEjzKTHtc9uGFEjR6hHrvNzeS/PX+LLLcetJcytsB5m4j+K3o/EpXJNb/5IEQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.17.10 - core-js-compat: 3.22.4 + '@babel/core': 7.18.5 + '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.18.5 + core-js-compat: 3.23.1 transitivePeerDependencies: - supports-color dev: true - /babel-plugin-polyfill-regenerator/0.3.1_@babel+core@7.17.10: + /babel-plugin-polyfill-regenerator/0.3.1_@babel+core@7.18.5: resolution: {integrity: sha512-Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.10 - '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.17.10 + '@babel/core': 7.18.5 + '@babel/helper-define-polyfill-provider': 0.3.1_@babel+core@7.18.5 transitivePeerDependencies: - supports-color dev: true @@ -9898,7 +9636,7 @@ packages: dependencies: ast-types: 0.14.2 lodash: 4.17.21 - react-docgen: 5.4.0 + react-docgen: 5.4.2 transitivePeerDependencies: - supports-color dev: true @@ -9913,51 +9651,51 @@ packages: babel-plugin-syntax-jsx: 6.18.0 lodash: 4.17.21 picomatch: 2.3.1 - styled-components: 5.3.5_281a4fa50a045c9112baf635f3bc27a7 + styled-components: 5.3.5_7i5myeigehqah43i5u7wbekgba /babel-plugin-syntax-jsx/6.18.0: - resolution: {integrity: sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY=} + resolution: {integrity: sha512-qrPaCSo9c8RHNRHIotaufGbuOBN8rtdC4QrrFFc43vyWCCz7Kl7GL1PGaXtMGQZUXrkCjNEgxDfmAuAabr/rlw==} - /babel-preset-current-node-syntax/1.0.1_@babel+core@7.17.10: + /babel-preset-current-node-syntax/1.0.1_@babel+core@7.18.5: resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.17.10 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.17.10 - '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.17.10 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.17.10 - '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.17.10 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.17.10 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.17.10 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.17.10 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.17.10 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.17.10 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.17.10 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.17.10 - '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.17.10 + '@babel/core': 7.18.5 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.18.5 + '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.18.5 + '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.18.5 + '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.18.5 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.18.5 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.18.5 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.18.5 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.18.5 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.18.5 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.18.5 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.18.5 + '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.18.5 dev: true - /babel-preset-jest/27.5.1_@babel+core@7.17.10: + /babel-preset-jest/27.5.1_@babel+core@7.18.5: resolution: {integrity: sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.17.10 + '@babel/core': 7.18.5 babel-plugin-jest-hoist: 27.5.1 - babel-preset-current-node-syntax: 1.0.1_@babel+core@7.17.10 + babel-preset-current-node-syntax: 1.0.1_@babel+core@7.18.5 dev: true /babel-runtime/6.26.0: - resolution: {integrity: sha1-llxwWGaOgrVde/4E/yM3vItWR/4=} + resolution: {integrity: sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g==} dependencies: core-js: 2.6.12 regenerator-runtime: 0.11.1 dev: true /babel-types/6.26.0: - resolution: {integrity: sha1-o7Bz+Uq0nrb6Vc1lInozQ4BjJJc=} + resolution: {integrity: sha512-zhe3V/26rCWsEZK8kZN+HaQj5yQ1CilTObixFzKW1UWjqG7618Twz6YEsCnjfg5gBcJh02DrpCkS9h98ZqDY+g==} dependencies: babel-runtime: 6.26.0 esutils: 2.0.3 @@ -9995,14 +9733,14 @@ packages: dev: true /base16/1.0.0: - resolution: {integrity: sha1-4pf2DX7BAUp6lxo568ipjAtoHnA=} + resolution: {integrity: sha512-pNdYkNPiJUnEhnfXV56+sQy8+AaPcG3POZAUnwr4EeqCUZFz4u2PePbo3e5Gj4ziYPCWGUZT9RHisvJKnwFuBQ==} dev: false /base64-js/1.5.1: resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} /base64id/1.0.0: - resolution: {integrity: sha1-R2iMuZu2gE8OBtPnY7HDLlfY5rY=} + resolution: {integrity: sha512-rz8L+d/xByiB/vLVftPkyY215fqNrmasrcJsYkVcm4TgJNz+YXKrFaFAWibSaHkiKoSgMDCb+lipOIRQNGYesw==} engines: {node: '>= 0.4.0'} dev: false @@ -10013,12 +9751,8 @@ packages: safe-buffer: 5.1.2 dev: false - /batch-processor/1.0.0: - resolution: {integrity: sha1-dclcMrdI4IUNEMKxaPa9vpiRrOg=} - dev: true - /batch/0.6.1: - resolution: {integrity: sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=} + resolution: {integrity: sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==} dev: true /bestzip/2.2.1: @@ -10027,8 +9761,8 @@ packages: hasBin: true dependencies: archiver: 5.3.1 - async: 3.2.3 - glob: 7.2.0 + async: 3.2.4 + glob: 7.2.3 which: 2.0.2 yargs: 16.2.0 dev: true @@ -10047,6 +9781,12 @@ packages: is-windows: 1.0.2 dev: true + /big-integer/1.6.51: + resolution: {integrity: sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==} + engines: {node: '>=0.6'} + dev: true + optional: true + /big.js/3.2.0: resolution: {integrity: sha512-+hN/Zh2D08Mx65pZ/4g5bsmNiZUuChDiQfTUQ7qJr4/kuopCr88xZsAXv6mBoZEsUI4OuGHlX59qE94K2mMW8Q==} dev: true @@ -10073,6 +9813,12 @@ packages: dev: true optional: true + /bl/1.2.3: + resolution: {integrity: sha512-pvcNpa0UU69UT341rO6AYy4FVAIkUHuZXRIWbq+zHnsVcRzDDjIAhGuuYoi0d//cwIwtt4pkpKycWEfjdV+vww==} + dependencies: + readable-stream: 2.3.7 + safe-buffer: 5.2.1 + /bl/4.1.0: resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} dependencies: @@ -10088,8 +9834,8 @@ packages: resolution: {integrity: sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==} dev: true - /bn.js/5.2.0: - resolution: {integrity: sha512-D7iWRBvnZE8ecXiLj/9wbxH7Tk79fAh8IHaTNq1RWRixsS02W+5qS+iE9yq6RYl0asXx5tw0bLhmT5pIfbSquw==} + /bn.js/5.2.1: + resolution: {integrity: sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==} dev: true /body-parser/1.20.0: @@ -10111,17 +9857,17 @@ packages: transitivePeerDependencies: - supports-color - /bonjour-service/1.0.12: - resolution: {integrity: sha512-pMmguXYCu63Ug37DluMKEHdxc+aaIf/ay4YbF8Gxtba+9d3u+rmEWy61VK3Z3hp8Rskok3BunHYnG0dUHAsblw==} + /bonjour-service/1.0.13: + resolution: {integrity: sha512-LWKRU/7EqDUC9CTAQtuZl5HzBALoCYwtLhffW3et7vZMwv3bWLpJf8bRYlMD5OCcDpTfnPgNCV4yo9ZIaJGMiA==} dependencies: array-flatten: 2.1.2 dns-equal: 1.0.0 fast-deep-equal: 3.1.3 - multicast-dns: 7.2.4 + multicast-dns: 7.2.5 dev: true /boolbase/1.0.0: - resolution: {integrity: sha1-aN/1++YMUes3cl6p4+0xDcwed24=} + resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} dev: true /boolean/3.2.0: @@ -10142,6 +9888,13 @@ packages: wrap-ansi: 7.0.0 dev: true + /bplist-parser/0.1.1: + resolution: {integrity: sha512-2AEM0FXy8ZxVLBuqX0hqt1gDwcnz2zygEkQ6zaD5Wko/sB9paUNwlpawrFtKeHUAQUOzjVy9AO4oeonqIHKA9Q==} + dependencies: + big-integer: 1.6.51 + dev: true + optional: true + /brace-expansion/1.1.11: resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} dependencies: @@ -10179,7 +9932,7 @@ packages: dev: true /brorand/1.1.0: - resolution: {integrity: sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=} + resolution: {integrity: sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==} dev: true /browser-process-hrtime/1.0.0: @@ -10217,14 +9970,14 @@ packages: /browserify-rsa/4.1.0: resolution: {integrity: sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==} dependencies: - bn.js: 5.2.0 + bn.js: 5.2.1 randombytes: 2.1.0 dev: true /browserify-sign/4.2.1: resolution: {integrity: sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==} dependencies: - bn.js: 5.2.0 + bn.js: 5.2.1 browserify-rsa: 4.1.0 create-hash: 1.2.0 create-hmac: 1.1.7 @@ -10241,17 +9994,16 @@ packages: pako: 1.0.11 dev: true - /browserslist/4.20.3: - resolution: {integrity: sha512-NBhymBQl1zM0Y5dQT/O+xiLP9/rzOIQdKM/eMJBAq7yBgaB6krIYLGejrwVYnSHZdqjscB1SPuAjHwxjvN6Wdg==} + /browserslist/4.20.4: + resolution: {integrity: sha512-ok1d+1WpnU24XYN7oC3QWgTyMhY/avPJ/r9T00xxvUOIparA/gc+UPUMaod3i+G6s+nI2nUb9xZ5k794uIwShw==} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true dependencies: - caniuse-lite: 1.0.30001338 - electron-to-chromium: 1.4.137 + caniuse-lite: 1.0.30001356 + electron-to-chromium: 1.4.161 escalade: 3.1.1 - node-releases: 2.0.4 + node-releases: 2.0.5 picocolors: 1.0.0 - dev: true /bs-logger/0.2.6: resolution: {integrity: sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==} @@ -10267,17 +10019,17 @@ packages: dev: true /buffer-crc32/0.2.13: - resolution: {integrity: sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI=} + resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==} /buffer-equal-constant-time/1.0.1: - resolution: {integrity: sha1-+OcRMvf/5uAaXJaXpMbz5I1cyBk=} + resolution: {integrity: sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==} dev: false /buffer-from/1.1.2: resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} /buffer-xor/1.0.3: - resolution: {integrity: sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=} + resolution: {integrity: sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==} dev: true /buffer/4.9.2: @@ -10294,17 +10046,17 @@ packages: base64-js: 1.5.1 ieee754: 1.2.1 - /builtin-modules/3.2.0: - resolution: {integrity: sha512-lGzLKcioL90C7wMczpkY0n/oART3MbBa8R9OFGE1rJxoVI86u4WAGfEk8Wjv10eKSyTHVGkSo3bvBylCEtk7LA==} + /builtin-modules/3.3.0: + resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==} engines: {node: '>=6'} dev: true /builtin-status-codes/3.0.0: - resolution: {integrity: sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=} + resolution: {integrity: sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==} dev: true /bytes/3.0.0: - resolution: {integrity: sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=} + resolution: {integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==} engines: {node: '>= 0.8'} dev: true @@ -10312,8 +10064,8 @@ packages: resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} engines: {node: '>= 0.8'} - /c8/7.11.2: - resolution: {integrity: sha512-6ahJSrhS6TqSghHm+HnWt/8Y2+z0hM/FQyB1ybKhAR30+NYL9CTQ1uwHxuWw6U7BHlHv6wvhgOrH81I+lfCkxg==} + /c8/7.11.3: + resolution: {integrity: sha512-6YBmsaNmqRm9OS3ZbIiL2EZgi1+Xc4O24jL3vMYGE6idixYuGdy76rIfIdltSKDj9DpLNrcXSonUTR1miBD0wA==} engines: {node: '>=10.12.0'} hasBin: true dependencies: @@ -10337,7 +10089,7 @@ packages: bluebird: 3.7.2 chownr: 1.1.4 figgy-pudding: 3.5.2 - glob: 7.2.0 + glob: 7.2.3 graceful-fs: 4.2.10 infer-owner: 1.0.4 lru-cache: 5.1.1 @@ -10359,7 +10111,7 @@ packages: '@npmcli/move-file': 1.1.2 chownr: 2.0.0 fs-minipass: 2.1.0 - glob: 7.2.0 + glob: 7.2.3 infer-owner: 1.0.4 lru-cache: 6.0.0 minipass: 3.1.6 @@ -10407,10 +10159,10 @@ packages: resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==} dependencies: function-bind: 1.1.1 - get-intrinsic: 1.1.1 + get-intrinsic: 1.1.2 /call-me-maybe/1.0.1: - resolution: {integrity: sha1-JtII6onje1y95gJQoV8DHBak1ms=} + resolution: {integrity: sha512-wCyFsDQkKPwwF8BDwOiWNx/9K45L/hvggQiDbve+viMNMQnWhrlYIuBk09offfwCRtCO9P6XwUttufzU11WCVw==} dev: true /callsites/3.1.0: @@ -10429,6 +10181,15 @@ packages: engines: {node: '>= 6'} dev: true + /camelcase-keys/2.1.0: + resolution: {integrity: sha512-bA/Z/DERHKqoEOrp+qeGKw1QlvEQkGZSc0XaY6VnTxZr+Kv1G5zFwttpjv8qxZ/sBPT4nthwZaAcsAZTJlSKXQ==} + engines: {node: '>=0.10.0'} + dependencies: + camelcase: 2.1.1 + map-obj: 1.0.1 + dev: true + optional: true + /camelcase-keys/6.2.2: resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==} engines: {node: '>=8'} @@ -10439,10 +10200,16 @@ packages: dev: true /camelcase/1.2.1: - resolution: {integrity: sha1-m7UwTS4LVmmLLHWLCKPqqdqlijk=} + resolution: {integrity: sha512-wzLkDa4K/mzI1OSITC+DUyjgIl/ETNHE9QvYgy6J6Jvqyyz4C0Xfd+lQhb19sX2jMpZV4IssUn0VDVmglV+s4g==} engines: {node: '>=0.10.0'} dev: true + /camelcase/2.1.1: + resolution: {integrity: sha512-DLIsRzJVBQu72meAKPkWQOLcujdXT32hwdfnkI1frSiSRMK1MofjKHf+MEx0SB6fjEFXL8fBDv1dKymBlOp4Qw==} + engines: {node: '>=0.10.0'} + dev: true + optional: true + /camelcase/5.3.1: resolution: {integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==} engines: {node: '>=6'} @@ -10454,11 +10221,10 @@ packages: dev: true /camelize/1.0.0: - resolution: {integrity: sha1-FkpUg+Yw+kMh5a8HAg5TGDGyYJs=} + resolution: {integrity: sha512-W2lPwkBkMZwFlPCXhIlYgxu+7gC/NUlCtdK652DAJ1JdgV0sTrvuPFshNPrFa1TY2JOkLhgdeEBplB4ezEa+xg==} - /caniuse-lite/1.0.30001338: - resolution: {integrity: sha512-1gLHWyfVoRDsHieO+CaeYe7jSo/MT7D7lhaXUiwwbuR5BwQxORs0f1tAwUSQr3YbxRXJvxHM/PA5FfPQRnsPeQ==} - dev: true + /caniuse-lite/1.0.30001356: + resolution: {integrity: sha512-/30854bktMLhxtjieIxsrJBfs2gTM1pel6MXKF3K+RdIVJZcsn2A2QdhsuR4/p9+R204fZw0zCBBhktX8xWuyQ==} /capture-exit/2.0.0: resolution: {integrity: sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==} @@ -10477,7 +10243,7 @@ packages: dev: true /center-align/0.1.3: - resolution: {integrity: sha1-qg0yYptu6XIgBBHL1EYckHvCt60=} + resolution: {integrity: sha512-Baz3aNe2gd2LP2qk5U+sDk/m4oSuwSDcBfayTCTBoWpfIGO5XFxPmjILQII4NGiZjD6DoDI6kf7gKaxkf7s3VQ==} engines: {node: '>=0.10.0'} dependencies: align-text: 0.1.4 @@ -10537,7 +10303,7 @@ packages: dev: true /character-parser/2.2.0: - resolution: {integrity: sha1-x84o821LzZdE5f/CxfzeHHMmH8A=} + resolution: {integrity: sha512-+UqJQjFEFaTAs3bNsF2j2kEN1baG/zghZbdqoYEDxGZtJo9LBzl1A+m0D4n3qKx8N2FNv8/Xp6yV9mQmBuptaw==} dependencies: is-regex: 1.1.4 dev: true @@ -10551,15 +10317,11 @@ packages: engines: {node: '>=6'} dev: true - /chardet/0.4.2: - resolution: {integrity: sha1-tUc7M9yXxCTl2Y3IfVXU2KKci/I=} - dev: false - /chardet/0.7.0: resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} /charenc/0.0.2: - resolution: {integrity: sha1-wKHS86cJLgN3S/qD8UwPxXkKhmc=} + resolution: {integrity: sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==} dev: false /chokidar/2.1.8: @@ -10611,15 +10373,15 @@ packages: engines: {node: '>=6.0'} dev: true - /chromedriver/100.0.0: - resolution: {integrity: sha512-oLfB0IgFEGY9qYpFQO/BNSXbPw7bgfJUN5VX8Okps9W2qNT4IqKh5hDwKWtpUIQNI6K3ToWe2/J5NdpurTY02g==} + /chromedriver/102.0.0: + resolution: {integrity: sha512-xer/0g1Oarkjc2e+4nyoLgZT4kJHYhcj3PcxD1nEoGJQYEllTjprN1uDpSb4BkgMGo0ydfIS1VDkszrr/J9OOg==} engines: {node: '>=10'} hasBin: true requiresBuild: true dependencies: '@testim/chrome-version': 1.1.2 - axios: 0.24.0 - del: 6.0.0 + axios: 0.27.2 + del: 6.1.1 extract-zip: 2.0.1 https-proxy-agent: 5.0.1 proxy-from-env: 1.1.0 @@ -10633,8 +10395,8 @@ packages: resolution: {integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==} dev: true - /ci-info/3.3.0: - resolution: {integrity: sha512-riT/3vI5YpVH6/qomlDnJow6TBee2PBKSEpx3O32EGPYbWGIRsIlGRms3Sm74wYE1JMo8RnO04Hb12+v1J5ICw==} + /ci-info/3.3.2: + resolution: {integrity: sha512-xmDt/QIAdeZ9+nfdPsaBCpMvHNLFiLdjj59qjqn+6iPe6YmHGQ35sBnQ8uslRBXFmXkiZQOJRjvQeoGppoTjjg==} dev: true /cipher-base/1.0.4: @@ -10684,13 +10446,6 @@ packages: engines: {node: '>=6'} dev: true - /cli-cursor/2.1.0: - resolution: {integrity: sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=} - engines: {node: '>=4'} - dependencies: - restore-cursor: 2.0.0 - dev: false - /cli-cursor/3.1.0: resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==} engines: {node: '>=8'} @@ -10710,17 +10465,13 @@ packages: '@colors/colors': 1.5.0 dev: true - /cli-width/2.2.1: - resolution: {integrity: sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw==} - dev: false - /cli-width/3.0.0: resolution: {integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==} engines: {node: '>= 10'} dev: false /cliui/2.1.0: - resolution: {integrity: sha1-S0dXYP+AJkx2LDoXGQMukcf+oNE=} + resolution: {integrity: sha512-GIOYRizG+TGoc7Wgc1LiOTLare95R3mzKgoln+Q/lE4ceiYH19gUpl0l0Ffq4lJDEf3FxujMe6IBfOCs7pfqNA==} dependencies: center-align: 0.1.3 right-align: 0.1.3 @@ -10749,7 +10500,6 @@ packages: is-plain-object: 2.0.4 kind-of: 6.0.3 shallow-clone: 3.0.1 - dev: true /clone-regexp/2.2.0: resolution: {integrity: sha512-beMpP7BOtTipFuW8hrJvREQ2DrRu3BE7by0ZpibtfBA+qfHYvMGTc2Yb1JMYPKg/JUw0CHYvpg796aNTSW9z7Q==} @@ -10759,30 +10509,21 @@ packages: dev: true /clone-response/1.0.2: - resolution: {integrity: sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=} + resolution: {integrity: sha512-yjLXh88P599UOyPTFX0POsd7WxnbsVsGohcwzHOLspIhhpalPw1BcqED8NblyZLKcGrL8dTgMlcaZxV2jAD41Q==} dependencies: mimic-response: 1.0.1 /clone/1.0.4: - resolution: {integrity: sha1-2jCcwmPfFZlMaIypAheco8fNfH4=} + resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} engines: {node: '>=0.8'} - /clone/2.1.1: - resolution: {integrity: sha1-0hfR6WERjjrJpLi7oyhVU79kfNs=} - engines: {node: '>=0.8'} - - /clsx/1.1.1: - resolution: {integrity: sha512-6/bPho624p3S2pMyvP5kKBPXnI3ufHLObBFCfgx+LkeR5lg2XYy2hqZqUf45ypD8COn2bhgGJSUE+l5dhNBieA==} - engines: {node: '>=6'} - dev: true - /co/4.6.0: - resolution: {integrity: sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=} + resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==} engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'} dev: true - /codemirror/5.65.3: - resolution: {integrity: sha512-kCC0iwGZOVZXHEKW3NDTObvM7pTIyowjty4BUqeREROc/3I6bWbgZDA3fGDwlA+rbgRjvnRnfqs9SfXynel1AQ==} + /codemirror/5.65.6: + resolution: {integrity: sha512-zNihMSMoDxK9Gqv9oEyDT8oM51rcRrQ+IEo2zyS48gJByBq5Fj8XuNEguMra+MuIOuh6lkpnLUJeL70DoTt6yw==} dev: false /collapse-white-space/1.0.6: @@ -10794,7 +10535,7 @@ packages: dev: true /collection-visit/1.0.0: - resolution: {integrity: sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=} + resolution: {integrity: sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==} engines: {node: '>=0.10.0'} dependencies: map-visit: 1.0.0 @@ -10813,7 +10554,7 @@ packages: color-name: 1.1.4 /color-name/1.1.3: - resolution: {integrity: sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=} + resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} /color-name/1.1.4: resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} @@ -10843,6 +10584,11 @@ packages: /colorette/2.0.16: resolution: {integrity: sha512-hUewv7oMjCp+wkBv5Rm0v87eJhq4woh5rSR+42YSQJKecCqgIqNkZ6lAlQms/BwHPJA5NKMRlpxPRv0n8HQW6g==} + dev: false + + /colorette/2.0.19: + resolution: {integrity: sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==} + dev: true /combined-stream/1.0.8: resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} @@ -10878,8 +10624,8 @@ packages: engines: {node: '>= 12'} dev: true - /commander/9.2.0: - resolution: {integrity: sha512-e2i4wANQiSXgnrBlIatyHtP1odfUp0BbV5Y5nEGbxtIrStkEOAAzCUirvLBNXHLr7kwLvJl6V+4V3XV9x7Wd9w==} + /commander/9.3.0: + resolution: {integrity: sha512-hv95iU5uXPbK83mjrJKuZyFM/LBAoCV/XhVGkS5Je6tl7sxr6A0ITMw5WoRV46/UaJ46Nllm3Xt7IaJhXTIkzw==} engines: {node: ^12.20.0 || >=14} dev: false @@ -10888,12 +10634,9 @@ packages: dev: true /commondir/1.0.1: - resolution: {integrity: sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=} + resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==} dev: true - /component-emitter/1.2.1: - resolution: {integrity: sha1-E3kY1teCg/ffemt8WmPhQOaUJeY=} - /component-emitter/1.3.0: resolution: {integrity: sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==} dev: true @@ -10949,12 +10692,8 @@ packages: resolution: {integrity: sha512-mKDjINe3tc6hGelUMNDzuhorIUZ7kS7BwyY0r2wQd2HOH2tRuJykiC06iSEX8y1TuhNzvz4GcJnK16mM2J1NMQ==} dev: false - /compute-scroll-into-view/1.0.17: - resolution: {integrity: sha512-j4dx+Fb0URmzbwwMUrhqWM2BEWHdFGx+qZ9qqASHRPqvTYdqvWnHg0H1hIbcyLnvgnoNAVMlwkepyqM3DaIFUg==} - dev: true - /concat-map/0.0.1: - resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=} + resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} /concat-stream/1.6.2: resolution: {integrity: sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==} @@ -10981,33 +10720,12 @@ packages: engines: {node: '>=0.8'} dev: true - /connected-react-router/6.9.2_00712eb8f791d7f1c28c0ddcca5e8608: - resolution: {integrity: sha512-bE8kNBiZv9Mivp7pYn9JvLH5ItTjLl45kk1/Vha0rmAK9I/ETb5JPJrAm0h2KCG9qLfv7vqU3Jo4UUDo0oJnQg==} - peerDependencies: - history: ^4.7.2 - react: ^16.4.0 || ^17.0.0 - react-redux: ^6.0.0 || ^7.1.0 - react-router: ^4.3.1 || ^5.0.0 - redux: ^3.6.0 || ^4.0.0 - dependencies: - history: 4.10.1 - lodash.isequalwith: 4.4.0 - prop-types: 15.8.1 - react: 17.0.2 - react-redux: 7.2.8_react-dom@17.0.2+react@17.0.2 - react-router: 5.3.1_react@17.0.2 - redux: 4.2.0 - optionalDependencies: - immutable: 4.0.0 - seamless-immutable: 7.1.4 - dev: false - /console-browserify/1.2.0: resolution: {integrity: sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==} dev: true /console-control-strings/1.1.0: - resolution: {integrity: sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=} + resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==} /constantinople/3.1.2: resolution: {integrity: sha512-yePcBqEFhLOqSBtwYOGGS1exHo/s1xjekXiinh4itpNQGCu4KA1euPh1fg07N2wMITZXQkBz75Ntdt1ctGZouw==} @@ -11019,9 +10737,12 @@ packages: dev: true /constants-browserify/1.0.0: - resolution: {integrity: sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=} + resolution: {integrity: sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==} dev: true + /consumable-stream/2.0.0: + resolution: {integrity: sha512-I6WA2JVYXs/68rEvi1ie3rZjP6qusTVFEQkbzR+WC+fY56TpwiGTIDJETsrnlxv5CsnmK69ps6CkYvIbpEEqBA==} + /content-disposition/0.5.4: resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==} engines: {node: '>= 0.6'} @@ -11033,7 +10754,7 @@ packages: engines: {node: '>= 0.6'} /contra/1.9.4: - resolution: {integrity: sha1-9TveQtfltZhcrk2ZqNYQUm3o8o0=} + resolution: {integrity: sha512-N9ArHAqwR/lhPq4OdIAwH4e1btn6EIZMAz4TazjnzCiVECcWUPTma+dRAM38ERImEJBh8NiCCpjoQruSZ+agYg==} dependencies: atoa: 1.0.0 ticky: 1.0.1 @@ -11045,7 +10766,7 @@ packages: safe-buffer: 5.1.2 /cookie-signature/1.0.6: - resolution: {integrity: sha1-4wOogrNCzD7oylE6eZmXNNqzriw=} + resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==} /cookie/0.4.2: resolution: {integrity: sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==} @@ -11072,7 +10793,7 @@ packages: dev: true /copy-descriptor/0.1.1: - resolution: {integrity: sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=} + resolution: {integrity: sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==} engines: {node: '>=0.10.0'} dev: true @@ -11080,31 +10801,32 @@ packages: resolution: {integrity: sha512-i13qo6kIHTTpCm8/Wup+0b1mVWETvu2kIMzKoK8FpkLkFxlt0znUAHcMzox+T8sPlqtZXq3CulEjQHsYiGFJUw==} dependencies: toggle-selection: 1.0.6 + dev: false - /copy-webpack-plugin/9.1.0_webpack@5.72.0: - resolution: {integrity: sha512-rxnR7PaGigJzhqETHGmAcxKnLZSR5u1Y3/bcIv/1FnqXedcL/E2ewK7ZCNrArJKCiSv8yVXhTqetJh8inDvfsA==} - engines: {node: '>= 12.13.0'} + /copy-webpack-plugin/11.0.0_webpack@5.73.0: + resolution: {integrity: sha512-fX2MWpamkW0hZxMEg0+mYnA40LTosOSa5TqZ9GYIBzyJa9C3QUaMPSE2xAi/buNr8u89SfD9wHSQVBzrRa/SOQ==} + engines: {node: '>= 14.15.0'} peerDependencies: webpack: ^5.1.0 dependencies: fast-glob: 3.2.11 glob-parent: 6.0.2 - globby: 11.1.0 + globby: 13.1.2 normalize-path: 3.0.0 - schema-utils: 3.1.1 + schema-utils: 4.0.0 serialize-javascript: 6.0.0 - webpack: 5.72.0_webpack-cli@4.9.2 + webpack: 5.73.0_webpack-cli@4.10.0 dev: true - /core-js-compat/3.22.4: - resolution: {integrity: sha512-dIWcsszDezkFZrfm1cnB4f/J85gyhiCpxbgBdohWCDtSVuAaChTSpPV7ldOQf/Xds2U5xCIJZOK82G4ZPAIswA==} + /core-js-compat/3.23.1: + resolution: {integrity: sha512-KeYrEc8t6FJsKYB2qnDwRHWaC0cJNaqlHfCpMe5q3j/W1nje3moib/txNklddLPCtGb+etcBIyJ8zuMa/LN5/A==} dependencies: - browserslist: 4.20.3 + browserslist: 4.20.4 semver: 7.0.0 dev: true - /core-js-pure/3.22.4: - resolution: {integrity: sha512-4iF+QZkpzIz0prAFuepmxwJ2h5t4agvE8WPYqs2mjLJMNNwJOnpch76w2Q7bUfCPEv/V7wpvOfog0w273M+ZSw==} + /core-js-pure/3.23.1: + resolution: {integrity: sha512-3qNgf6TqI3U1uhuSYRzJZGfFd4T+YlbyVPl+jgRiKjdZopvG4keZQwWZDAWpu1UH9nCgTpUzIV3GFawC7cJsqg==} requiresBuild: true /core-js/2.6.12: @@ -11112,8 +10834,8 @@ packages: deprecated: core-js@<3.4 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Please, upgrade your dependencies to the actual version of core-js. requiresBuild: true - /core-js/3.22.4: - resolution: {integrity: sha512-1uLykR+iOfYja+6Jn/57743gc9n73EWiOnSJJ4ba3B4fOEYDBv25MagmEZBxTp5cWq4b/KPx/l77zgsp28ju4w==} + /core-js/3.23.1: + resolution: {integrity: sha512-wfMYHWi1WQjpgZNC9kAlN4ut04TM9fUTdi7CqIoTVM7yaiOUQTklOzfb+oWH3r9edQcT3F887swuVmxrV+CC8w==} requiresBuild: true dev: true @@ -11231,7 +10953,7 @@ packages: dev: true /cross-spawn/5.1.0: - resolution: {integrity: sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=} + resolution: {integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==} dependencies: lru-cache: 4.1.5 shebang-command: 1.2.0 @@ -11258,13 +10980,13 @@ packages: which: 2.0.2 /crossvent/1.5.4: - resolution: {integrity: sha1-2ixPj0DJR4JRe/K+7BBEFIGUq5I=} + resolution: {integrity: sha512-b6gEmNAh3kemyfNJ0LQzA/29A+YeGwevlSkNp2x0TzLOMYc0b85qRAD06OUuLWLQpR7HdJHNZQTlD1cfwoTrzg==} dependencies: custom-event: 1.0.0 dev: false /crypt/0.0.2: - resolution: {integrity: sha1-iNf/fsDfuG9xPch7u0LQRNPmxBs=} + resolution: {integrity: sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==} dev: false /crypto-browserify/3.12.0: @@ -11290,11 +11012,11 @@ packages: dev: false /css-color-keywords/1.0.0: - resolution: {integrity: sha1-/qJhbcZ2spYmhrOvjb2+GAskTgU=} + resolution: {integrity: sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==} engines: {node: '>=4'} - /css-functions-list/3.0.1: - resolution: {integrity: sha512-PriDuifDt4u4rkDgnqRCLnjfMatufLmWNfQnGCq34xZwpY3oabwhB9SqRBmuvWUgndbemCFlKqg+nO7C2q0SBw==} + /css-functions-list/3.1.0: + resolution: {integrity: sha512-/9lCvYZaUbBGvYUgYGFJ4dcYiyqdhSjG7IPVluoV8A1ILjkF7ilmhp1OGUz8n+nmBcu0RNrQAzgD8B6FJbrt2w==} engines: {node: '>=12.22'} dev: true @@ -11320,21 +11042,21 @@ packages: webpack: 4.46.0 dev: true - /css-loader/6.7.1_webpack@5.72.0: + /css-loader/6.7.1_webpack@5.73.0: resolution: {integrity: sha512-yB5CNFa14MbPJcomwNh3wLThtkZgcNyI2bNMRt8iE5Z8Vwl7f8vQXFAzn2HDOJvtDq2NTZBUGMSUNNyrv3/+cw==} engines: {node: '>= 12.13.0'} peerDependencies: webpack: ^5.0.0 dependencies: - icss-utils: 5.1.0_postcss@8.4.13 - postcss: 8.4.13 - postcss-modules-extract-imports: 3.0.0_postcss@8.4.13 - postcss-modules-local-by-default: 4.0.0_postcss@8.4.13 - postcss-modules-scope: 3.0.0_postcss@8.4.13 - postcss-modules-values: 4.0.0_postcss@8.4.13 + icss-utils: 5.1.0_postcss@8.4.14 + postcss: 8.4.14 + postcss-modules-extract-imports: 3.0.0_postcss@8.4.14 + postcss-modules-local-by-default: 4.0.0_postcss@8.4.14 + postcss-modules-scope: 3.0.0_postcss@8.4.14 + postcss-modules-values: 4.0.0_postcss@8.4.14 postcss-value-parser: 4.2.0 semver: 7.3.7 - webpack: 5.72.0_webpack-cli@4.9.2 + webpack: 5.73.0_webpack-cli@4.10.0 dev: true /css-select/4.3.0: @@ -11344,7 +11066,7 @@ packages: css-what: 6.1.0 domhandler: 4.3.1 domutils: 2.8.0 - nth-check: 2.0.1 + nth-check: 2.1.1 dev: true /css-to-react-native/3.0.0: @@ -11357,7 +11079,7 @@ packages: /css-vendor/2.0.8: resolution: {integrity: sha512-x9Aq0XTInxrkuFeHKbYC7zWY8ai7qJ04Kxd9MnvbC1uO5DagxoHQjm4JvG+vCdXOoFtCjbL2XSZfxmoYa9uQVQ==} dependencies: - '@babel/runtime': 7.17.9 + '@babel/runtime': 7.18.3 is-in-browser: 1.1.3 dev: false @@ -11367,7 +11089,7 @@ packages: dev: true /css.escape/1.5.1: - resolution: {integrity: sha1-QuJ9T6BK4y+TGktNQZH6nN3ul8s=} + resolution: {integrity: sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==} dev: true /css/3.0.0: @@ -11385,7 +11107,7 @@ packages: dev: true /cssfilter/0.0.10: - resolution: {integrity: sha1-xtJnJjKi5cg+AT5oZKQs6N79IK4=} + resolution: {integrity: sha512-FAaLDaplstoRsDR8XGYH51znUN0UY7nMc6Z9/fvE8EXGwvJE9hu7W2vHwx1+bd6gCYnln9nLbzxFTrcO9YQDZw==} dev: false /cssom/0.3.8: @@ -11403,16 +11125,8 @@ packages: cssom: 0.3.8 dev: true - /csstype/2.6.20: - resolution: {integrity: sha512-/WwNkdXfckNgw6S5R125rrW8ez139lBHWouiBvX8dfMFtcn6V81REDqnH7+CRpRipfYlyU1CmOnOxrmGcFOjeA==} - dev: true - - /csstype/3.0.11: - resolution: {integrity: sha512-sa6P2wJ+CAbgyy4KFssIb/JNMLxFvKF1pCYCSXS8ZMuqZnMsrxqI2E5sPyoTpxoPU/gVZMzr2zjOfg8GIZOMsw==} - - /csstype/3.0.9: - resolution: {integrity: sha512-rpw6JPxK6Rfg1zLOYCSwle2GFOOsnjmDYDaBwEcwoOg4qlsIVCN789VkBZDJAGi4T07gI4YSutR43t9Zz4Lzuw==} - dev: false + /csstype/3.1.0: + resolution: {integrity: sha512-uX1KG+x9h5hIJsaKR9xHUeUraxf8IODOwq9JLNPq6BwB04a/xgpq3rcx47l5BZu5zBPlgD342tdke3Hom/nJRA==} /csv-generate/3.4.3: resolution: {integrity: sha512-w/T+rqR0vwvHqWs/1ZyMDWtHHSJaN06klRqJXBEpDJaM/+dZkso0OKh1VcuuYvK3XM53KysVNq8Ko/epCK8wOw==} @@ -11436,16 +11150,24 @@ packages: stream-transform: 2.1.3 dev: true + /currently-unhandled/0.4.1: + resolution: {integrity: sha512-/fITjgjGU50vjQ4FH6eUoYu+iUoUKIXws2hL15JJpIR+BbTxaXQsMuuyjtNh2WqsSBS5nsaZHFsFecyw5CCAng==} + engines: {node: '>=0.10.0'} + dependencies: + array-find-index: 1.0.2 + dev: true + optional: true + /custom-event/1.0.0: - resolution: {integrity: sha1-LkYovhncSyFLXAJjDFlx6BFhgGI=} + resolution: {integrity: sha512-6nOXX3UitrmdvSJWoVR2dlzhbX5bEUqmqsMUyx1ypCLZkHHkcuYtdpW3p94RGvcFkTV7DkLo+Ilbwnlwi8L+jw==} dev: false /cyclist/1.0.1: - resolution: {integrity: sha1-WW6WmP0MgOEgOMK4LW6xs1tiJNk=} + resolution: {integrity: sha512-NJGVKPS81XejHcLhaLJS7plab0fK3slPh11mESeeDq2W4ZI5kUKK/LRRdVDvjJseojbPB7ZwjnyOybg3Igea/A==} dev: true /d3/3.5.17: - resolution: {integrity: sha1-vEZ0gAQ3iyGjYMn8fPUjF5B2L7g=} + resolution: {integrity: sha512-yFk/2idb8OHPKkbAL8QaOaqENNoMhIaSHZerk3oQsECwkObkCpJyjYwCe+OHiq6UEdhe1m8ZGARRRO3ljFjlKg==} /damerau-levenshtein/1.0.8: resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==} @@ -11526,7 +11248,7 @@ packages: supports-color: 5.5.0 /decamelize-keys/1.1.0: - resolution: {integrity: sha1-0XGoeTMlKAfrPLYdwcFEXQeN8tk=} + resolution: {integrity: sha512-ocLWuYzRPoS9bfiSdDd3cxvrzovVMZnRDVEzAs+hWIVXGDbHxWMECij2OBuyB/An0FFW/nLuq6Kv1i/YC5Qfzg==} engines: {node: '>=0.10.0'} dependencies: decamelize: 1.2.0 @@ -11534,7 +11256,7 @@ packages: dev: true /decamelize/1.2.0: - resolution: {integrity: sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=} + resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==} engines: {node: '>=0.10.0'} dev: true @@ -11543,36 +11265,44 @@ packages: dev: true /decode-uri-component/0.2.0: - resolution: {integrity: sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=} + resolution: {integrity: sha512-hjf+xovcEn31w/EUYdTXQh/8smFL/dzYjohQGEIgjyNavaJfBY2p5F527Bo1VPATxv0VYTUC2bOcXvqFwk78Og==} engines: {node: '>=0.10'} dev: true /decompress-response/3.3.0: - resolution: {integrity: sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=} + resolution: {integrity: sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==} engines: {node: '>=4'} dependencies: mimic-response: 1.0.1 /dedent/0.7.0: - resolution: {integrity: sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw=} + resolution: {integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==} dev: true /deep-diff/0.3.8: - resolution: {integrity: sha1-wB3mPvsO7JeYgB1Ax+Da4ltYLIQ=} + resolution: {integrity: sha512-yVn6RZmHiGnxRKR9sJb3iVV2XTF1Ghh2DiWRZ3dMnGc43yUdWWF/kX6lQyk3+P84iprfWKU/8zFTrlkvtFm1ug==} dev: false /deep-is/0.1.4: resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} dev: true - /deep-object-diff/1.1.7: - resolution: {integrity: sha512-QkgBca0mL08P6HiOjoqvmm6xOAl2W6CT2+34Ljhg0OeFan8cwlcdq8jrLKsBBuUFAZLsN5b6y491KdKEoSo9lg==} - dev: true - /deepmerge/4.2.2: resolution: {integrity: sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==} engines: {node: '>=0.10.0'} + /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 + meow: 3.7.0 + untildify: 2.1.0 + dev: true + optional: true + /default-gateway/6.0.3: resolution: {integrity: sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==} engines: {node: '>= 10'} @@ -11581,7 +11311,7 @@ packages: dev: true /defaults/1.0.3: - resolution: {integrity: sha1-xlYFHpgX2f8I7YgUd/P+QBnz730=} + resolution: {integrity: sha512-s82itHOnYrN0Ib8r+z7laQz3sdE+4FP3d9Q7VLO7U+KRT+CR0GsWuyHxzdAY82I7cXv0G/twrqomTJLOssO5HA==} dependencies: clone: 1.0.4 @@ -11600,14 +11330,14 @@ packages: object-keys: 1.1.1 /define-property/0.2.5: - resolution: {integrity: sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=} + resolution: {integrity: sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==} engines: {node: '>=0.10.0'} dependencies: is-descriptor: 0.1.6 dev: true /define-property/1.0.0: - resolution: {integrity: sha1-dp66rz9KY6rTr56NMEybvnm/sOY=} + resolution: {integrity: sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==} engines: {node: '>=0.10.0'} dependencies: is-descriptor: 1.0.2 @@ -11621,8 +11351,8 @@ packages: isobject: 3.0.1 dev: true - /del/6.0.0: - resolution: {integrity: sha512-1shh9DQ23L16oXSZKB2JxpL7iMy2E0S9d517ptA1P8iw0alkPtQcrKH7ru31rYtKwF499HkTu+DRzq3TCKDFRQ==} + /del/6.1.1: + resolution: {integrity: sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==} engines: {node: '>=10'} dependencies: globby: 11.1.0 @@ -11636,15 +11366,15 @@ packages: dev: true /delayed-stream/1.0.0: - resolution: {integrity: sha1-3zrhmayt+31ECqrgsp4icrJOxhk=} + resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} engines: {node: '>=0.4.0'} dev: true /delegates/1.0.0: - resolution: {integrity: sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=} + resolution: {integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==} /depd/1.1.2: - resolution: {integrity: sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=} + resolution: {integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==} engines: {node: '>= 0.6'} /depd/2.0.0: @@ -11695,6 +11425,13 @@ packages: /detect-node/2.1.0: resolution: {integrity: sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==} + /detect-package-manager/2.0.1: + resolution: {integrity: sha512-j/lJHyoLlWi6G1LDdLgvUtz60Zo5GEj+sVYtTVXnYLDPuzgC3llMxonXym9zIwhhUII8vjdw0LXxavpLqTbl1A==} + engines: {node: '>=12'} + dependencies: + execa: 5.1.1 + dev: true + /detect-port/1.3.0: resolution: {integrity: sha512-E+B1gzkl2gqxt1IhUzwjrxBKRqx1UzC3WLONHinn8S3T6lwV/agVCyitiFOsGJ/eYuEUBvD71MZHy3Pv1G9doQ==} engines: {node: '>= 4.2.1'} @@ -11707,7 +11444,7 @@ packages: dev: true /dezalgo/1.0.3: - resolution: {integrity: sha1-f3Qt4Gb8dIvI24IFad3c5Jvw1FY=} + resolution: {integrity: sha512-K7i4zNfT2kgQz3GylDw40ot9GAE47sFZ9EXHFSPP6zONLgH6kWXE0KWJchkbQJLBkRazq4APwZ4OwiFFlT95OQ==} dependencies: asap: 2.0.6 wrappy: 1.0.2 @@ -11755,14 +11492,14 @@ packages: dev: true /dns-equal/1.0.0: - resolution: {integrity: sha1-s55/HabrCnW6nBcySzR1PEfgZU0=} + resolution: {integrity: sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==} dev: true - /dns-packet/5.3.1: - resolution: {integrity: sha512-spBwIj0TK0Ey3666GwIdWVfUpLyubpU53BTCu8iPn4r4oXd9O14Hjg3EHw3ts2oed77/SeckunUYCyRlSngqHw==} + /dns-packet/5.4.0: + resolution: {integrity: sha512-EgqGeaBB8hLiHLZtp/IbaDQTL8pZ0+IvwzSHA6d7VyMDM+B9hgddEMa9xjK5oYnw0ci0JQ6g2XCD7/f6cafU6g==} engines: {node: '>=6'} dependencies: - '@leichtgewicht/ip-codec': 2.0.3 + '@leichtgewicht/ip-codec': 2.0.4 dev: true /doctrine/2.1.0: @@ -11780,7 +11517,7 @@ packages: dev: true /doctypes/1.1.0: - resolution: {integrity: sha1-6oCxBqh1OHdOijpKWv4pPeSJ4Kk=} + resolution: {integrity: sha512-LLBi6pEqS6Do3EKQ3J0NqHWV5hhb78Pi8vvESYwyOy2c31ZEZVdtitdzsQsKb7878PEERhzUk0ftqGhG6Mz+pQ==} dev: true /dom-accessibility-api/0.5.14: @@ -11796,8 +11533,8 @@ packages: /dom-helpers/5.2.1: resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==} dependencies: - '@babel/runtime': 7.17.9 - csstype: 3.0.11 + '@babel/runtime': 7.18.3 + csstype: 3.1.0 dev: false /dom-serializer/1.4.1: @@ -11864,28 +11601,15 @@ packages: engines: {node: '>=10'} dev: true - /downshift/6.1.7_react@17.0.2: - resolution: {integrity: sha512-cVprZg/9Lvj/uhYRxELzlu1aezRcgPWBjTvspiGTVEU64gF5pRdSRKFVLcxqsZC637cLAGMbL40JavEfWnqgNg==} - peerDependencies: - react: '>=16.12.0' - dependencies: - '@babel/runtime': 7.17.9 - compute-scroll-into-view: 1.0.17 - prop-types: 15.8.1 - react: 17.0.2 - react-is: 17.0.2 - tslib: 2.4.0 - dev: true - /dragula/3.7.2: - resolution: {integrity: sha1-SjXJ05gf+sGpScKcpyhQWOhzk84=} + resolution: {integrity: sha512-iDPdNTPZY7P/l0CQ800QiX+PNA2XF9iC3ePLWfGxeb/j8iPPedRuQdfSOfZrazgSpmaShYvYQ/jx7keWb4YNzA==} dependencies: contra: 1.9.4 crossvent: 1.5.4 dev: false /duplexer3/0.1.4: - resolution: {integrity: sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=} + resolution: {integrity: sha512-CEj8FwwNA4cVH2uFCoHUrmojhYh1vmCdOaneKJXwkeY1i9jnlslVo9dx+hQ5Hl9GnH/Bwy/IjxAyOePyPKYnzA==} /duplexify/3.7.1: resolution: {integrity: sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==} @@ -11903,30 +11627,23 @@ packages: dev: false /ee-first/1.1.1: - resolution: {integrity: sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=} + resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} - /electron-to-chromium/1.4.137: - resolution: {integrity: sha512-0Rcpald12O11BUogJagX3HsCN3FE83DSqWjgXoHo5a72KUKMSfI39XBgJpgNNxS9fuGzytaFjE06kZkiVFy2qA==} - dev: true + /electron-to-chromium/1.4.161: + resolution: {integrity: sha512-sTjBRhqh6wFodzZtc5Iu8/R95OkwaPNn7tj/TaDU5nu/5EFiQDtADGAXdR4tJcTEHlYfJpHqigzJqHvPgehP8A==} - /electron/18.2.0: - resolution: {integrity: sha512-AN+CKalzA57beuvuI90PVgW/yj6zjw7rpb1h8FvIwBJ3toDC3x0Plfzbzh4Ondecbjci7pSg/NA5ngOk804WIQ==} + /electron/19.0.6: + resolution: {integrity: sha512-S9Yud32nKhB0iWC0lGl2JXz4FQnCiLCnP5Vehm1/CqyeICcQGmgQaZl2HYpCJ2pesKIsYL9nsgmku/10cxm/gg==} engines: {node: '>= 8.6'} hasBin: true requiresBuild: true dependencies: '@electron/get': 1.14.1 - '@types/node': 16.11.33 + '@types/node': 16.11.41 extract-zip: 1.7.0 transitivePeerDependencies: - supports-color - /element-resize-detector/1.2.4: - resolution: {integrity: sha512-Fl5Ftk6WwXE0wqCgNoseKWndjzZlDCwuPTcoVZfCP9R3EHQF8qUtr3YUPNETegRBOKqQKPW3n4kiIWngGi8tKg==} - dependencies: - batch-processor: 1.0.0 - dev: true - /elliptic/6.5.4: resolution: {integrity: sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==} dependencies: @@ -11952,7 +11669,7 @@ packages: dev: true /emojis-list/2.1.0: - resolution: {integrity: sha1-TapNnbAPmBmIDHn6RXrlsJof04k=} + resolution: {integrity: sha512-knHEZMgs8BB+MInokmNTg/OyPlAddghe1YBgNwJBc5zsJi/uyIcXoSDsL/W9ymOsBoBGdPIHXYJ9+qKFwRwDng==} engines: {node: '>= 0.10'} dev: true @@ -11961,21 +11678,8 @@ packages: engines: {node: '>= 4'} dev: true - /emotion-theming/10.3.0_316248eb6686a2fd4fbadcfd00de37f3: - resolution: {integrity: sha512-mXiD2Oj7N9b6+h/dC6oLf9hwxbtKHQjoIqtodEyL8CpkN4F3V4IK/BT4D0C7zSs4BBFOu4UlPJbvvBLa88SGEA==} - peerDependencies: - '@emotion/core': ^10.0.27 - react: '>=16.3.0' - dependencies: - '@babel/runtime': 7.17.9 - '@emotion/core': 10.3.1_react@17.0.2 - '@emotion/weak-memoize': 0.2.5 - hoist-non-react-statics: 3.3.2 - react: 17.0.2 - dev: true - /encodeurl/1.0.2: - resolution: {integrity: sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=} + resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==} engines: {node: '>= 0.8'} /encoding/0.1.13: @@ -12020,7 +11724,7 @@ packages: resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==} engines: {node: '>=8.6'} dependencies: - ansi-colors: 4.1.1 + ansi-colors: 4.1.3 dev: true /entities/2.2.0: @@ -12054,21 +11758,21 @@ packages: dependencies: is-arrayish: 0.2.1 - /error-stack-parser/2.0.7: - resolution: {integrity: sha512-chLOW0ZGRf4s8raLrDxa5sdkvPec5YdvwbFnqJme4rk0rFajP8mPtrDL1+I+CwrQDCjswDA5sREX7jYQDQs9vA==} + /error-stack-parser/2.1.4: + resolution: {integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==} dependencies: - stackframe: 1.2.1 + stackframe: 1.3.4 dev: true - /es-abstract/1.20.0: - resolution: {integrity: sha512-URbD8tgRthKD3YcC39vbvSDrX23upXnPcnGAjQfgxXF5ID75YcENawc9ZX/9iTP9ptUyfCLIxTTuMYoRfiOVKA==} + /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.1.1 + get-intrinsic: 1.1.2 get-symbol-description: 1.0.0 has: 1.0.3 has-property-descriptors: 1.0.0 @@ -12080,7 +11784,7 @@ packages: is-shared-array-buffer: 1.0.2 is-string: 1.0.7 is-weakref: 1.0.2 - object-inspect: 1.12.0 + object-inspect: 1.12.2 object-keys: 1.1.1 object.assign: 4.1.2 regexp.prototype.flags: 1.4.3 @@ -12097,7 +11801,7 @@ packages: resolution: {integrity: sha512-+DTO8GYwbMCwbywjimwZMHp8AuYXOS2JZFWoi2AlPOS3ebnII9w/NLpNZtA7A0YLaVDw+O7KFCeoIV7OPvM7hQ==} dependencies: call-bind: 1.0.2 - get-intrinsic: 1.1.1 + get-intrinsic: 1.1.2 has-symbols: 1.0.3 is-arguments: 1.1.1 is-map: 2.0.2 @@ -12139,12 +11843,12 @@ packages: dev: true /es6-template-regex/0.1.1: - resolution: {integrity: sha1-5Re54PdCvuuNMECDRUT9oORlFGc=} + resolution: {integrity: sha512-sCeu9DOYhaSlKG7ry2y384bwxxaxPPdqWS0Jj45lv1MeQSpRK7mYlLO0jZdqwDLHViDWMsMikOkSIXuXpf4DiQ==} engines: {node: '>=0.10.0'} dev: false /es6template/1.0.5: - resolution: {integrity: sha1-O7u5efpriudlsMmGMQ9yAHJWKp8=} + resolution: {integrity: sha512-WASLwPb/GoVFxESVJqpVpgUhrC3Z4mami74a2d2MsvYwicn8YkGSWGippd+l2ciSoPoymv4KNFYgDi3B4t7RGA==} dependencies: es6-template-regex: 0.1.1 extend-shallow: 2.0.1 @@ -12157,10 +11861,10 @@ packages: engines: {node: '>=6'} /escape-html/1.0.3: - resolution: {integrity: sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=} + resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==} /escape-string-regexp/1.0.5: - resolution: {integrity: sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=} + resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} engines: {node: '>=0.8.0'} /escape-string-regexp/2.0.0: @@ -12185,7 +11889,7 @@ packages: source-map: 0.6.1 dev: true - /eslint-config-airbnb-base/15.0.0_3587bf9a15dd535ddd6f5fd34d80da85: + /eslint-config-airbnb-base/15.0.0_srrmf5la5dmnsfe2mpg6sboreu: resolution: {integrity: sha512-xaX3z4ZZIcFLvh2oUNvcX5oEofXda7giYmuplVxoOg5A7EXJMrUyqRgR+mhDhPK8LZ4PttFOBvCYDbX3sUoUig==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: @@ -12193,14 +11897,14 @@ packages: eslint-plugin-import: ^2.25.2 dependencies: confusing-browser-globals: 1.0.11 - eslint: 8.15.0 - eslint-plugin-import: 2.26.0_f340230f306732139172ba983d5555be + eslint: 8.18.0 + eslint-plugin-import: 2.26.0_eslint@8.18.0 object.assign: 4.1.2 object.entries: 1.1.5 semver: 6.3.0 dev: true - /eslint-config-airbnb/19.0.4_17019bae230ebd7b3243fd1d86555b4d: + /eslint-config-airbnb/19.0.4_egamsbadvc6ovgxe5yxurj2cai: resolution: {integrity: sha512-T75QYQVQX57jiNgpF9r1KegMICE94VYwoFQyMGhrvc+lB8YF2E/M/PYDaQe1AJcWaEgqLE+ErXV1Og/+6Vyzew==} engines: {node: ^10.12.0 || ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -12210,35 +11914,35 @@ packages: eslint-plugin-react: ^7.28.0 eslint-plugin-react-hooks: ^4.3.0 dependencies: - eslint: 8.15.0 - eslint-config-airbnb-base: 15.0.0_3587bf9a15dd535ddd6f5fd34d80da85 - eslint-plugin-import: 2.26.0_f340230f306732139172ba983d5555be - eslint-plugin-jsx-a11y: 6.5.1_eslint@8.15.0 - eslint-plugin-react: 7.28.0_eslint@8.15.0 - eslint-plugin-react-hooks: 4.5.0_eslint@8.15.0 + eslint: 8.18.0 + eslint-config-airbnb-base: 15.0.0_srrmf5la5dmnsfe2mpg6sboreu + eslint-plugin-import: 2.26.0_eslint@8.18.0 + eslint-plugin-jsx-a11y: 6.6.0_eslint@8.18.0 + eslint-plugin-react: 7.30.1_eslint@8.18.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.18.0 object.assign: 4.1.2 object.entries: 1.1.5 dev: true - /eslint-config-prettier/8.5.0_eslint@8.15.0: + /eslint-config-prettier/8.5.0_eslint@8.18.0: resolution: {integrity: sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==} hasBin: true peerDependencies: eslint: '>=7.0.0' dependencies: - eslint: 8.15.0 + eslint: 8.18.0 dev: true /eslint-import-resolver-node/0.3.6: resolution: {integrity: sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==} dependencies: debug: 3.2.7 - resolve: 1.22.0 + resolve: 1.22.1 transitivePeerDependencies: - supports-color dev: true - /eslint-module-utils/2.7.3_b12fba4a6c5578e93f1b97ff1f20ebb4: + /eslint-module-utils/2.7.3_ulu2225r2ychl26a37c6o2rfje: resolution: {integrity: sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==} engines: {node: '>=4'} peerDependencies: @@ -12256,7 +11960,6 @@ packages: eslint-import-resolver-webpack: optional: true dependencies: - '@typescript-eslint/parser': 5.22.0_eslint@8.15.0+typescript@4.6.4 debug: 3.2.7 eslint-import-resolver-node: 0.3.6 find-up: 2.1.0 @@ -12264,7 +11967,7 @@ packages: - supports-color dev: true - /eslint-plugin-import/2.26.0_f340230f306732139172ba983d5555be: + /eslint-plugin-import/2.26.0_eslint@8.18.0: resolution: {integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==} engines: {node: '>=4'} peerDependencies: @@ -12274,20 +11977,19 @@ packages: '@typescript-eslint/parser': optional: true dependencies: - '@typescript-eslint/parser': 5.22.0_eslint@8.15.0+typescript@4.6.4 array-includes: 3.1.5 array.prototype.flat: 1.3.0 debug: 2.6.9 doctrine: 2.1.0 - eslint: 8.15.0 + eslint: 8.18.0 eslint-import-resolver-node: 0.3.6 - eslint-module-utils: 2.7.3_b12fba4a6c5578e93f1b97ff1f20ebb4 + eslint-module-utils: 2.7.3_ulu2225r2ychl26a37c6o2rfje has: 1.0.3 is-core-module: 2.9.0 is-glob: 4.0.3 minimatch: 3.1.2 object.values: 1.1.5 - resolve: 1.22.0 + resolve: 1.22.1 tsconfig-paths: 3.14.1 transitivePeerDependencies: - eslint-import-resolver-typescript @@ -12295,8 +11997,8 @@ packages: - supports-color dev: true - /eslint-plugin-jest/26.1.5_a9d133e1b4f50468488a2a18eed99ada: - resolution: {integrity: sha512-su89aDuljL9bTjEufTXmKUMSFe2kZUL9bi7+woq+C2ukHZordhtfPm4Vg+tdioHBaKf8v3/FXW9uV0ksqhYGFw==} + /eslint-plugin-jest/26.5.3_hkaktba3mic4t6mktu5mmyzyhi: + resolution: {integrity: sha512-sICclUqJQnR1bFRZGLN2jnSVsYOsmPYYnroGCIMVSvTS3y8XR3yjzy1EcTQmk6typ5pRgyIWzbjqxK6cZHEZuQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: '@typescript-eslint/eslint-plugin': ^5.0.0 @@ -12308,47 +12010,48 @@ packages: jest: optional: true dependencies: - '@typescript-eslint/eslint-plugin': 5.22.0_9817cbad956b8aa5d1e3d9ec99e4a1e4 - '@typescript-eslint/utils': 5.22.0_eslint@8.15.0+typescript@4.6.4 - eslint: 8.15.0 + '@typescript-eslint/eslint-plugin': 5.29.0_qqmbkyiaixvppdwswpytuf2hgm + '@typescript-eslint/utils': 5.28.0_b5e7v2qnwxfo6hmiq56u52mz3e + eslint: 8.18.0 jest: 27.5.1 transitivePeerDependencies: - supports-color - typescript dev: true - /eslint-plugin-jsx-a11y/6.5.1_eslint@8.15.0: - resolution: {integrity: sha512-sVCFKX9fllURnXT2JwLN5Qgo24Ug5NF6dxhkmxsMEUZhXRcGg+X3e1JbJ84YePQKBl5E0ZjAH5Q4rkdcGY99+g==} + /eslint-plugin-jsx-a11y/6.6.0_eslint@8.18.0: + resolution: {integrity: sha512-kTeLuIzpNhXL2CwLlc8AHI0aFRwWHcg483yepO9VQiHzM9bZwJdzTkzBszbuPrbgGmq2rlX/FaT2fJQsjUSHsw==} engines: {node: '>=4.0'} peerDependencies: eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 dependencies: - '@babel/runtime': 7.17.9 + '@babel/runtime': 7.18.3 aria-query: 4.2.2 array-includes: 3.1.5 ast-types-flow: 0.0.7 - axe-core: 4.4.1 + axe-core: 4.4.2 axobject-query: 2.2.0 damerau-levenshtein: 1.0.8 emoji-regex: 9.2.2 - eslint: 8.15.0 + eslint: 8.18.0 has: 1.0.3 - jsx-ast-utils: 3.3.0 + jsx-ast-utils: 3.3.1 language-tags: 1.0.5 minimatch: 3.1.2 + semver: 6.3.0 dev: true - /eslint-plugin-react-hooks/4.5.0_eslint@8.15.0: - resolution: {integrity: sha512-8k1gRt7D7h03kd+SAAlzXkQwWK22BnK6GKZG+FJA6BAGy22CFvl8kCIXKpVux0cCxMWDQUPqSok0LKaZ0aOcCw==} + /eslint-plugin-react-hooks/4.6.0_eslint@8.18.0: + resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==} engines: {node: '>=10'} peerDependencies: eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 dependencies: - eslint: 8.15.0 + eslint: 8.18.0 dev: true - /eslint-plugin-react/7.28.0_eslint@8.15.0: - resolution: {integrity: sha512-IOlFIRHzWfEQQKcAD4iyYDndHwTQiCMcJVJjxempf203jnNLUnW34AXLrV33+nEXoifJE2ZEGmcjKPL8957eSw==} + /eslint-plugin-react/7.30.1_eslint@8.18.0: + resolution: {integrity: sha512-NbEvI9jtqO46yJA3wcRF9Mo0lF9T/jhdHqhCHXiXtD+Zcb98812wvokjWpU7Q4QH5edo6dmqrukxVvWWXHlsUg==} engines: {node: '>=4'} peerDependencies: eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 @@ -12356,7 +12059,7 @@ packages: array-includes: 3.1.5 array.prototype.flatmap: 1.3.0 doctrine: 2.1.0 - eslint: 8.15.0 + eslint: 8.18.0 estraverse: 5.3.0 jsx-ast-utils: 3.3.0 minimatch: 3.1.2 @@ -12365,7 +12068,7 @@ packages: object.hasown: 1.1.1 object.values: 1.1.5 prop-types: 15.8.1 - resolve: 2.0.0-next.3 + resolve: 2.0.0-next.4 semver: 6.3.0 string.prototype.matchall: 4.0.7 dev: true @@ -12394,13 +12097,13 @@ packages: estraverse: 5.3.0 dev: true - /eslint-utils/3.0.0_eslint@8.15.0: + /eslint-utils/3.0.0_eslint@8.18.0: resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} peerDependencies: eslint: '>=5' dependencies: - eslint: 8.15.0 + eslint: 8.18.0 eslint-visitor-keys: 2.1.0 dev: true @@ -12414,12 +12117,12 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /eslint/8.15.0: - resolution: {integrity: sha512-GG5USZ1jhCu8HJkzGgeK8/+RGnHaNYZGrGDzUtigK3BsGESW/rs2az23XqE0WVwDxy1VRvvjSSGu5nB0Bu+6SA==} + /eslint/8.18.0: + resolution: {integrity: sha512-As1EfFMVk7Xc6/CvhssHUjsAQSkpfXvUGMFC3ce8JDe6WvqCgRrLOBQbVpsBFr1X1V+RACOadnzVvcUS5ni2bA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} hasBin: true dependencies: - '@eslint/eslintrc': 1.2.3 + '@eslint/eslintrc': 1.3.0 '@humanwhocodes/config-array': 0.9.5 ajv: 6.12.6 chalk: 4.1.2 @@ -12428,7 +12131,7 @@ packages: doctrine: 3.0.0 escape-string-regexp: 4.0.0 eslint-scope: 7.1.1 - eslint-utils: 3.0.0_eslint@8.15.0 + eslint-utils: 3.0.0_eslint@8.18.0 eslint-visitor-keys: 3.3.0 espree: 9.3.2 esquery: 1.4.0 @@ -12437,7 +12140,7 @@ packages: file-entry-cache: 6.0.1 functional-red-black-tree: 1.0.1 glob-parent: 6.0.2 - globals: 13.14.0 + globals: 13.15.0 ignore: 5.2.0 import-fresh: 3.3.0 imurmurhash: 0.1.4 @@ -12506,9 +12209,9 @@ packages: resolution: {integrity: sha512-YNF+mZ/Wu2FU/gvmzuWtYc8rloubL7wfXCTgouFrnjGVXPA/EeYYA7pupXWrb3Iv1cTBeSSxxJIbK23l4MRNqg==} engines: {node: '>=8.3.0'} dependencies: - '@babel/traverse': 7.17.10 - '@babel/types': 7.17.10 - c8: 7.11.2 + '@babel/traverse': 7.18.5 + '@babel/types': 7.18.4 + c8: 7.11.3 transitivePeerDependencies: - supports-color dev: true @@ -12527,7 +12230,7 @@ packages: dev: true /etag/1.8.1: - resolution: {integrity: sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=} + resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==} engines: {node: '>= 0.6'} /eventemitter3/4.0.7: @@ -12585,12 +12288,12 @@ packages: dev: true /exit/0.1.2: - resolution: {integrity: sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=} + resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==} engines: {node: '>= 0.8.0'} dev: true /expand-brackets/2.1.4: - resolution: {integrity: sha1-t3c14xXOMPa27/D4OwQVGiJEliI=} + resolution: {integrity: sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==} engines: {node: '>=0.10.0'} dependencies: debug: 2.6.9 @@ -12614,11 +12317,6 @@ packages: jest-message-util: 27.5.1 dev: true - /expirymanager/0.9.4: - resolution: {integrity: sha512-bKcLuZPTs9mFxQ2VJPYJCMuGVAM9Ah6KfezbDA3IegbGeqR39WdPi+T7GgDGVuBPjYDFsSP/va5csiNVCGT1Mw==} - engines: {node: '>= 0.8.0'} - dev: false - /express/4.18.1: resolution: {integrity: sha512-zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q==} engines: {node: '>= 0.10.0'} @@ -12658,13 +12356,13 @@ packages: - supports-color /extend-shallow/2.0.1: - resolution: {integrity: sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=} + resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==} engines: {node: '>=0.10.0'} dependencies: is-extendable: 0.1.1 /extend-shallow/3.0.2: - resolution: {integrity: sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=} + resolution: {integrity: sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==} engines: {node: '>=0.10.0'} dependencies: assign-symbols: 1.0.0 @@ -12679,15 +12377,6 @@ packages: resolution: {integrity: sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==} dev: true - /external-editor/2.2.0: - resolution: {integrity: sha512-bSn6gvGxKt+b7+6TKEv1ZycHleA7aHhRHyAqJyp5pbUFuYYNIzpZnQDk7AsYckyWdEnTeAnay0aCy2aV6iTk9A==} - engines: {node: '>=0.12'} - dependencies: - chardet: 0.4.2 - iconv-lite: 0.4.24 - tmp: 0.0.33 - dev: false - /external-editor/3.1.0: resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==} engines: {node: '>=4'} @@ -12784,7 +12473,7 @@ packages: resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} /fast-levenshtein/2.0.6: - resolution: {integrity: sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=} + resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} dev: true /fast-safe-stringify/2.1.1: @@ -12821,21 +12510,18 @@ packages: dev: true /fd-slicer/1.1.0: - resolution: {integrity: sha1-JcfInLH5B3+IkbvmHY85Dq4lbx4=} + resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==} dependencies: pend: 1.2.0 + /fetch-retry/5.0.2: + resolution: {integrity: sha512-57Hmu+1kc6pKFUGVIobT7qw3NeAzY/uNN26bSevERLVvf6VGFR/ooDCOFBHMNDgAxBiU2YJq1D0vFzc6U1DcPw==} + dev: true + /figgy-pudding/3.5.2: resolution: {integrity: sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==} dev: true - /figures/2.0.0: - resolution: {integrity: sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=} - engines: {node: '>=4'} - dependencies: - escape-string-regexp: 1.0.5 - dev: false - /figures/3.2.0: resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==} engines: {node: '>=8'} @@ -12860,7 +12546,7 @@ packages: webpack: 4.46.0 dev: true - /file-loader/6.2.0_webpack@5.72.0: + /file-loader/6.2.0_webpack@5.73.0: resolution: {integrity: sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==} engines: {node: '>= 10.13.0'} peerDependencies: @@ -12868,15 +12554,14 @@ packages: dependencies: loader-utils: 2.0.2 schema-utils: 3.1.1 - webpack: 5.72.0_webpack-cli@4.9.2 + webpack: 5.73.0_webpack-cli@4.10.0 dev: true - /file-system-cache/1.0.5: - resolution: {integrity: sha1-hCWbNqK7uNPW6xAh0xMv/mTP/08=} + /file-system-cache/1.1.0: + resolution: {integrity: sha512-IzF5MBq+5CR0jXx5RxPe4BICl/oEhBSXKaL9fLhAXrIfIUS77Hr4vzrYyqYMHN6uTt+BOqi3fDCTjjEBCjERKw==} dependencies: - bluebird: 3.7.2 - fs-extra: 0.30.0 - ramda: 0.21.0 + fs-extra: 10.1.0 + ramda: 0.28.0 dev: true /file-uri-to-path/1.0.0: @@ -12886,7 +12571,7 @@ packages: optional: true /fill-range/4.0.0: - resolution: {integrity: sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=} + resolution: {integrity: sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==} engines: {node: '>=0.10.0'} dependencies: extend-shallow: 2.0.1 @@ -12935,9 +12620,19 @@ packages: /find-root/1.1.0: resolution: {integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==} + dev: false + + /find-up/1.1.2: + resolution: {integrity: sha512-jvElSjyuo4EMQGoTwo1uJU5pQMwTW5lS1x05zzfJuTIyLR3zwO27LYrxNg+dlvKpGOuGy/MzBdXh80g0ve5+HA==} + engines: {node: '>=0.10.0'} + dependencies: + path-exists: 2.1.0 + pinkie-promise: 2.0.1 + dev: true + optional: true /find-up/2.1.0: - resolution: {integrity: sha1-RdG35QbHF93UgndaK3eSCjwMV6c=} + resolution: {integrity: sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==} engines: {node: '>=4'} dependencies: locate-path: 2.0.0 @@ -12990,11 +12685,6 @@ packages: resolution: {integrity: sha512-WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg==} dev: true - /fleximap/1.0.0: - resolution: {integrity: sha512-zg/PthjBzESYKomTw/wivo8Id6B+obVkWriIzDuRfuw4wxEIV2/0D/NIGf+LKcGTTifHRfw73+oAAQozZ9MAhA==} - engines: {node: '>= 0.8.0'} - dev: false - /flush-write-stream/1.1.1: resolution: {integrity: sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==} dependencies: @@ -13002,15 +12692,15 @@ packages: readable-stream: 2.3.7 dev: true - /focus-lock/0.9.2: - resolution: {integrity: sha512-YtHxjX7a0IC0ZACL5wsX8QdncXofWpGPNoVMuI/nZUrPGp6LmNI6+D5j0pPj+v8Kw5EpweA+T5yImK0rnWf7oQ==} + /focus-lock/0.11.2: + resolution: {integrity: sha512-pZ2bO++NWLHhiKkgP1bEXHhR1/OjVcSvlCJ98aNJDFeb7H5OOQaO+SKOZle6041O9rv2tmbrO4JzClAvDUHf0g==} engines: {node: '>=10'} dependencies: tslib: 2.4.0 dev: false - /follow-redirects/1.15.0: - resolution: {integrity: sha512-aExlJShTV4qOUOL7yF1U5tvLCB0xQuudbf6toyYA0E/acBNw71mvjFTnLaRp50aQaYocMR0a/RMMBIHeZnGyjQ==} + /follow-redirects/1.15.1: + resolution: {integrity: sha512-yLAMQs+k0b2m7cVxpS1VKJVvoz7SS9Td1zss3XRwXj+ZDH00RJgnuLx7E44wx02kQLrdM3aOOy+FpzS7+8OizA==} engines: {node: '>=4.0'} peerDependencies: debug: '*' @@ -13020,7 +12710,7 @@ packages: dev: true /for-in/1.0.2: - resolution: {integrity: sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=} + resolution: {integrity: sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==} engines: {node: '>=0.10.0'} dev: true @@ -13032,7 +12722,7 @@ packages: signal-exit: 3.0.7 dev: true - /fork-ts-checker-webpack-plugin/4.1.6_fd9ac946626c89e3cf2883682b7adefb: + /fork-ts-checker-webpack-plugin/4.1.6_nsapsdlf2mgloyd736rc2bk2vq: resolution: {integrity: sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw==} engines: {node: '>=6.11.5', yarn: '>=1.0.0'} peerDependencies: @@ -13048,19 +12738,19 @@ packages: dependencies: '@babel/code-frame': 7.16.7 chalk: 2.4.2 - eslint: 8.15.0 + eslint: 8.18.0 micromatch: 3.1.10 minimatch: 3.1.2 semver: 5.7.1 tapable: 1.1.3 - typescript: 4.6.4 + typescript: 4.7.4 webpack: 4.46.0 worker-rpc: 0.1.1 transitivePeerDependencies: - supports-color dev: true - /fork-ts-checker-webpack-plugin/6.5.2_fd9ac946626c89e3cf2883682b7adefb: + /fork-ts-checker-webpack-plugin/6.5.2_nsapsdlf2mgloyd736rc2bk2vq: resolution: {integrity: sha512-m5cUmF30xkZ7h4tWUgTAcEaKmUW7tfyUyTqNNOz7OxWJ0v1VWKTcOvH8FWHUwSjlW/356Ijc9vi3XfcPstpQKA==} engines: {node: '>=10', yarn: '>=1.0.0'} peerDependencies: @@ -13080,19 +12770,19 @@ packages: chokidar: 3.5.3 cosmiconfig: 6.0.0 deepmerge: 4.2.2 - eslint: 8.15.0 + eslint: 8.18.0 fs-extra: 9.1.0 - glob: 7.2.0 - memfs: 3.4.1 + glob: 7.2.3 + memfs: 3.4.6 minimatch: 3.1.2 schema-utils: 2.7.0 semver: 7.3.7 tapable: 1.1.3 - typescript: 4.6.4 + typescript: 4.7.4 webpack: 4.46.0 dev: true - /fork-ts-checker-webpack-plugin/7.2.11_typescript@4.6.4+webpack@5.72.0: + /fork-ts-checker-webpack-plugin/7.2.11_3o2jfq6vfqxns3sz6wn2nnc3ei: resolution: {integrity: sha512-2e5+NyTUTE1Xq4fWo7KFEQblCaIvvINQwUX3jRmEGlgCTc1Ecqw/975EfQrQ0GEraxJTnp8KB9d/c8hlCHUMJA==} engines: {node: '>=12.13.0', yarn: '>=1.0.0'} peerDependencies: @@ -13109,13 +12799,13 @@ packages: cosmiconfig: 7.0.1 deepmerge: 4.2.2 fs-extra: 10.1.0 - memfs: 3.4.1 + memfs: 3.4.6 minimatch: 3.1.2 schema-utils: 3.1.1 semver: 7.3.7 tapable: 2.2.1 - typescript: 4.6.4 - webpack: 5.72.0_webpack-cli@4.9.2 + typescript: 4.7.4 + webpack: 5.73.0_webpack-cli@4.10.0 dev: true /form-data/3.0.1: @@ -13137,7 +12827,7 @@ packages: dev: true /format/0.2.2: - resolution: {integrity: sha1-1hcBB+nv3E7TDJ3DkBbflCtctYs=} + resolution: {integrity: sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww==} engines: {node: '>=0.4.x'} dev: true @@ -13155,23 +12845,23 @@ packages: engines: {node: '>= 0.6'} /fragment-cache/0.2.1: - resolution: {integrity: sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=} + resolution: {integrity: sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==} engines: {node: '>=0.10.0'} dependencies: map-cache: 0.2.2 dev: true - /framer-motion/6.3.3_react-dom@17.0.2+react@17.0.2: - resolution: {integrity: sha512-wo0dCnoq5vn4L8YVOPO9W54dliH78vDaX0Lj+bSPUys6Nt5QaehrS3uaYa0q5eVeikUgtTjz070UhQ94thI5Sw==} + /framer-motion/6.3.15_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-tqyEaYfr+7p3rnMcMzdVxWoHLsAfpz7bk6xZljndSEfafQ0BfwlZ/CeFZkEETRFr16w/LxfDKBVhinU66ucDYw==} peerDependencies: - react: '>=16.8 || ^17.0.0 || ^18.0.0' - react-dom: '>=16.8 || ^17.0.0 || ^18.0.0' + react: '>=16.8 || ^17.0.0 || ^18.0.0 || 18' + react-dom: '>=16.8 || ^17.0.0 || ^18.0.0 || 18' dependencies: framesync: 6.0.1 hey-listen: 1.0.8 popmotion: 11.0.3 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 style-value-types: 5.0.0 tslib: 2.4.0 optionalDependencies: @@ -13191,11 +12881,11 @@ packages: dev: false /fresh/0.5.2: - resolution: {integrity: sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=} + resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==} engines: {node: '>= 0.6'} /from2/2.3.0: - resolution: {integrity: sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=} + resolution: {integrity: sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==} dependencies: inherits: 2.0.4 readable-stream: 2.3.7 @@ -13205,16 +12895,6 @@ packages: resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==} dev: true - /fs-extra/0.30.0: - resolution: {integrity: sha1-8jP/zAjU2n1DLapEl3aYnbHfk/A=} - dependencies: - graceful-fs: 4.2.10 - jsonfile: 2.4.0 - klaw: 1.3.1 - path-is-absolute: 1.0.1 - rimraf: 2.7.1 - dev: true - /fs-extra/10.1.0: resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==} engines: {node: '>=12'} @@ -13224,14 +12904,6 @@ packages: universalify: 2.0.0 dev: true - /fs-extra/6.0.1: - resolution: {integrity: sha512-GnyIkKhhzXZUWFCaJzvyDLEEgDkPfb4/TPvJCJVuS8MWZgoSsErf++QpiAlDnKFcqhRlm+tIOcencCjyJE6ZCA==} - dependencies: - graceful-fs: 4.2.10 - jsonfile: 4.0.0 - universalify: 0.1.2 - dev: false - /fs-extra/7.0.1: resolution: {integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==} engines: {node: '>=6 <7 || >=8'} @@ -13274,7 +12946,7 @@ packages: dev: true /fs-write-stream-atomic/1.0.10: - resolution: {integrity: sha1-tH31NJPvkR33VzHnCp3tAYnbQMk=} + resolution: {integrity: sha512-gehEzmPn2nAwr39eay+x3X34Ra+M2QlVUTLhkXPjWdeO8RF9kszk116avgBJM3ZyNHgHXBNx+VmPaFC36k0PzA==} dependencies: graceful-fs: 4.2.10 iferr: 0.1.5 @@ -13283,7 +12955,7 @@ packages: dev: true /fs.realpath/1.0.0: - resolution: {integrity: sha1-FQStJSMVjKpA20onh8sBQRmU6k8=} + resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} /fsevents/1.2.13: resolution: {integrity: sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==} @@ -13293,7 +12965,7 @@ packages: requiresBuild: true dependencies: bindings: 1.5.0 - nan: 2.15.0 + nan: 2.16.0 dev: true optional: true @@ -13313,23 +12985,18 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.0 + es-abstract: 1.20.1 functions-have-names: 1.2.3 dev: true /functional-red-black-tree/1.0.1: - resolution: {integrity: sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=} + resolution: {integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==} dev: true /functions-have-names/1.2.3: resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} dev: true - /fuse.js/3.6.1: - resolution: {integrity: sha512-hT9yh/tiinkmirKrlv4KWOjztdoZo1mx9Qh4KvWqC7isoXwdUY3PNWUxceF4/qO9R6riA2C29jdTOeQOIROjgw==} - engines: {node: '>=6'} - dev: true - /gauge/3.0.2: resolution: {integrity: sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==} engines: {node: '>=10'} @@ -13362,14 +13029,13 @@ packages: /gensync/1.0.0-beta.2: resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} engines: {node: '>=6.9.0'} - dev: true /get-caller-file/2.0.5: resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} engines: {node: 6.* || 8.* || >= 10.*} - /get-intrinsic/1.1.1: - resolution: {integrity: sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==} + /get-intrinsic/1.1.2: + resolution: {integrity: sha512-Jfm3OyCxHh9DJyc28qGk+JmfkpO41A4XkneDSujN9MDXrm4oDKdHvndhZ2dN94+ERNfkYJWDclW6k2L/ZGHjXA==} dependencies: function-bind: 1.1.1 has: 1.0.3 @@ -13385,9 +13051,15 @@ packages: engines: {node: '>=8.0.0'} /get-params/0.1.2: - resolution: {integrity: sha1-uuDfq6WIoMYNeDTA2Nwv9g7u8v4=} + resolution: {integrity: sha512-41eOxtlGgHQRbFyA8KTH+w+32Em3cRdfBud7j67ulzmIfmaHX9doq47s0fa4P5o9H64BZX9nrYI6sJvk46Op+Q==} dev: false + /get-stdin/4.0.1: + resolution: {integrity: sha512-F5aQMywwJ2n85s4hJPTT9RPxGmubonuB10MNYo17/xph174n2MIR33HRguhzVag10O/npM7SPk73LMZNP+FaWw==} + engines: {node: '>=0.10.0'} + dev: true + optional: true + /get-stdin/8.0.0: resolution: {integrity: sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg==} engines: {node: '>=10'} @@ -13415,11 +13087,11 @@ packages: engines: {node: '>= 0.4'} dependencies: call-bind: 1.0.2 - get-intrinsic: 1.1.1 + get-intrinsic: 1.1.2 dev: true /get-value/2.0.6: - resolution: {integrity: sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=} + resolution: {integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==} engines: {node: '>=0.10.0'} /getopts/2.3.0: @@ -13427,7 +13099,7 @@ packages: dev: false /getport/0.1.0: - resolution: {integrity: sha1-q93z1dHnfdlnzPorA2oKH7Jv1/c=} + resolution: {integrity: sha512-hx+r6Q5IutZH+5k+zeZe78J4vzgW9IqLzfz8+hqMa9NrM1ccpgPIxrxqiBg+aioJMKcCK5qNKKcGdes3PeTlKQ==} dev: false /github-slugger/1.4.0: @@ -13435,7 +13107,7 @@ packages: dev: true /glob-parent/3.1.0: - resolution: {integrity: sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=} + resolution: {integrity: sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==} dependencies: is-glob: 3.1.0 path-dirname: 1.0.2 @@ -13454,18 +13126,18 @@ packages: is-glob: 4.0.3 dev: true - /glob-promise/3.4.0_glob@7.2.0: + /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.0 + glob: 7.2.3 dev: true /glob-to-regexp/0.3.0: - resolution: {integrity: sha1-jFoUlNIGbFcMw7/kSWF1rMTVAqs=} + resolution: {integrity: sha512-Iozmtbqv0noj0uDDqoL0zNq0VBEfK2YFoMAZoxJe4cwphvLR+JskfF30QhXHOR4m3KrE6NLRYw+U9MRXvifyig==} dev: true /glob-to-regexp/0.4.1: @@ -13478,13 +13150,13 @@ packages: fs.realpath: 1.0.0 inflight: 1.0.6 inherits: 2.0.4 - minimatch: 3.0.4 + minimatch: 3.0.5 once: 1.4.0 path-is-absolute: 1.0.1 dev: true - /glob/7.2.0: - resolution: {integrity: sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==} + /glob/7.2.3: + resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} dependencies: fs.realpath: 1.0.0 inflight: 1.0.6 @@ -13544,8 +13216,8 @@ packages: resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} engines: {node: '>=4'} - /globals/13.14.0: - resolution: {integrity: sha512-ERO68sOYwm5UuLvSJTY7w7NP2c8S4UcXs3X1GBX8cwOr+ShOcDBbCY5mH4zxz0jsYCdJ8ve8Mv9n2YGJMB1aeg==} + /globals/13.15.0: + resolution: {integrity: sha512-bpzcOlgDhMG070Av0Vy5Owklpv1I6+j96GhUI7Rh7IzDCKLzboflLrrfqMu8NquDbiR4EOQk7XzJwqVJxicxog==} engines: {node: '>=8'} dependencies: type-fest: 0.20.2 @@ -13569,6 +13241,17 @@ packages: slash: 3.0.0 dev: true + /globby/13.1.2: + resolution: {integrity: sha512-LKSDZXToac40u8Q1PQtZihbNdTYSNMuWe+K5l+oa6KgDzSvVrHXlJy40hUP522RjAIoNLJYBJi7ow+rbFpIhHQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dependencies: + dir-glob: 3.0.1 + fast-glob: 3.2.11 + ignore: 5.2.0 + merge2: 1.4.1 + slash: 4.0.0 + dev: true + /globby/9.2.0: resolution: {integrity: sha512-ollPHROa5mcxDEkwg6bPt3QbEf4pDQSNtd6JPL1YvOvAo/7/0VAm9TccUeoTmarjPw4pfUthSCqcyfNB1I3ZSg==} engines: {node: '>=6'} @@ -13577,7 +13260,7 @@ packages: array-union: 1.0.2 dir-glob: 2.2.2 fast-glob: 2.2.7 - glob: 7.2.0 + glob: 7.2.3 ignore: 4.0.6 pify: 4.0.1 slash: 2.0.0 @@ -13586,7 +13269,7 @@ packages: dev: true /globjoin/0.1.4: - resolution: {integrity: sha1-L0SUrIkZ43Z8XLtpHp9GMyQoXUM=} + resolution: {integrity: sha512-xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg==} dev: true /got/9.6.0: @@ -13614,13 +13297,13 @@ packages: resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==} dev: true - /graphql-tag/2.12.6_graphql@16.4.0: + /graphql-tag/2.12.6_graphql@16.5.0: resolution: {integrity: sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==} engines: {node: '>=10'} peerDependencies: graphql: ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - graphql: 16.4.0 + graphql: 16.5.0 tslib: 2.4.0 dev: false @@ -13629,8 +13312,8 @@ packages: engines: {node: '>= 10.x'} dev: false - /graphql/16.4.0: - resolution: {integrity: sha512-tYDNcRvKCcfHREZYje3v33NSrSD/ZpbWWdPtBtUUuXx9NCo/2QDxYzNqCnMvfsrnbwRpEHMovVrPu/ERoLrIRg==} + /graphql/16.5.0: + resolution: {integrity: sha512-qbHgh8Ix+j/qY+a/ZcJnFQ+j8ezakqPiHwPiZhV/3PgGlgf96QMBB5/f2rkiC9sgLoy/xvT6TSiaf2nTHJh5iA==} engines: {node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0} dev: false @@ -13648,7 +13331,7 @@ packages: source-map: 0.6.1 wordwrap: 1.0.0 optionalDependencies: - uglify-js: 3.15.4 + uglify-js: 3.16.1 dev: true /hard-rejection/2.1.0: @@ -13661,7 +13344,7 @@ packages: dev: true /has-flag/3.0.0: - resolution: {integrity: sha1-tdRU3CGZriJWmfNGfloH87lVuv0=} + resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} engines: {node: '>=4'} /has-flag/4.0.0: @@ -13669,7 +13352,7 @@ packages: engines: {node: '>=8'} /has-glob/1.0.0: - resolution: {integrity: sha1-mqqe7b/7G6OZCnsAEPtnjuAIEgc=} + resolution: {integrity: sha512-D+8A457fBShSEI3tFCj65PAbT++5sKiFtdCdOam0gnfBgw9D277OERk+HM9qYJXmdVLZ/znez10SqHN0BBQ50g==} engines: {node: '>=0.10.0'} dependencies: is-glob: 3.1.0 @@ -13678,7 +13361,7 @@ packages: /has-property-descriptors/1.0.0: resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==} dependencies: - get-intrinsic: 1.1.1 + get-intrinsic: 1.1.2 /has-symbols/1.0.3: resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} @@ -13692,10 +13375,10 @@ packages: dev: true /has-unicode/2.0.1: - resolution: {integrity: sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=} + resolution: {integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==} /has-value/0.3.1: - resolution: {integrity: sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=} + resolution: {integrity: sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==} engines: {node: '>=0.10.0'} dependencies: get-value: 2.0.6 @@ -13704,7 +13387,7 @@ packages: dev: true /has-value/1.0.0: - resolution: {integrity: sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=} + resolution: {integrity: sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==} engines: {node: '>=0.10.0'} dependencies: get-value: 2.0.6 @@ -13713,12 +13396,12 @@ packages: dev: true /has-values/0.1.4: - resolution: {integrity: sha1-bWHeldkd/Km5oCCJrThL/49it3E=} + resolution: {integrity: sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==} engines: {node: '>=0.10.0'} dev: true /has-values/1.0.0: - resolution: {integrity: sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=} + resolution: {integrity: sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==} engines: {node: '>=0.10.0'} dependencies: is-number: 3.0.0 @@ -13835,31 +13518,14 @@ packages: resolution: {integrity: sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==} dev: true - /history/4.10.1: - resolution: {integrity: sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==} - dependencies: - '@babel/runtime': 7.17.9 - loose-envify: 1.4.0 - resolve-pathname: 3.0.0 - tiny-invariant: 1.2.0 - tiny-warning: 1.0.3 - value-equal: 1.0.1 - dev: false - - /history/5.0.0: - resolution: {integrity: sha512-3NyRMKIiFSJmIPdq7FxkNMJkQ7ZEtVblOQ38VtKaA0zZMW1Eo6Q6W8oDKEflr1kNNTItSnk4JMCO1deeSgbLLg==} - dependencies: - '@babel/runtime': 7.17.9 - dev: true - /history/5.3.0: resolution: {integrity: sha512-ZqaKwjjrAYUYfLG+htGaIIZ4nioX2L70ZUMIFysS3xvBsSG4x/n1V6TXV3N8ZYNuFGlDirFg32T7B6WOUPDYcQ==} dependencies: - '@babel/runtime': 7.17.9 - dev: true + '@babel/runtime': 7.18.3 + dev: false /hmac-drbg/1.0.1: - resolution: {integrity: sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=} + resolution: {integrity: sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==} dependencies: hash.js: 1.1.7 minimalistic-assert: 1.0.1 @@ -13883,7 +13549,7 @@ packages: dev: true /hpack.js/2.1.6: - resolution: {integrity: sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI=} + resolution: {integrity: sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==} dependencies: inherits: 2.0.4 obuf: 1.1.2 @@ -13905,15 +13571,15 @@ packages: resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} dev: true - /html-loader/3.1.0_webpack@5.72.0: - resolution: {integrity: sha512-ycMYFRiCF7YANcLDNP72kh3Po5pTcH+bROzdDwh00iVOAY/BwvpuZ1BKPziQ35Dk9D+UD84VGX1Lu/H4HpO4fw==} + /html-loader/3.1.2_webpack@5.73.0: + resolution: {integrity: sha512-9WQlLiAV5N9fCna4MUmBW/ifaUbuFZ2r7IZmtXzhyfyi4zgPEjXsmsYCKs+yT873MzRj+f1WMjuAiPNA7C6Tcw==} engines: {node: '>= 12.13.0'} peerDependencies: webpack: ^5.0.0 dependencies: html-minifier-terser: 6.1.0 parse5: 6.0.1 - webpack: 5.72.0_webpack-cli@4.9.2 + webpack: 5.73.0_webpack-cli@4.10.0 dev: true /html-minifier-terser/5.1.1: @@ -13941,7 +13607,7 @@ packages: he: 1.2.0 param-case: 3.0.4 relateurl: 0.2.7 - terser: 5.13.1 + terser: 5.14.1 dev: true /html-tags/3.2.0: @@ -13971,7 +13637,7 @@ packages: webpack: 4.46.0 dev: true - /html-webpack-plugin/5.5.0_webpack@5.72.0: + /html-webpack-plugin/5.5.0_webpack@5.73.0: resolution: {integrity: sha512-sy88PC2cRTVxvETRgUHFrL4No3UxvcH8G1NepGhqaTT+GXN2kTamqasot0inS5hXeg1cMbFDt27zzo9p35lZVw==} engines: {node: '>=10.13.0'} peerDependencies: @@ -13982,7 +13648,7 @@ packages: lodash: 4.17.21 pretty-error: 4.0.0 tapable: 2.2.1 - webpack: 5.72.0_webpack-cli@4.9.2 + webpack: 5.73.0_webpack-cli@4.10.0 dev: true /htmlparser2/6.1.0: @@ -13998,11 +13664,11 @@ packages: resolution: {integrity: sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==} /http-deceiver/1.2.7: - resolution: {integrity: sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc=} + resolution: {integrity: sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==} dev: true /http-errors/1.6.3: - resolution: {integrity: sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=} + resolution: {integrity: sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==} engines: {node: '>= 0.6'} dependencies: depd: 1.1.2 @@ -14059,14 +13725,14 @@ packages: engines: {node: '>=8.0.0'} dependencies: eventemitter3: 4.0.7 - follow-redirects: 1.15.0 + follow-redirects: 1.15.1 requires-port: 1.0.0 transitivePeerDependencies: - debug dev: true /https-browserify/1.0.0: - resolution: {integrity: sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=} + resolution: {integrity: sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg==} dev: true /https-proxy-agent/5.0.1: @@ -14088,7 +13754,7 @@ packages: dev: true /humanize-ms/1.2.1: - resolution: {integrity: sha1-xG4xWaKT9riW2ikxbYtv6Lt5u+0=} + resolution: {integrity: sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==} dependencies: ms: 2.1.3 dev: false @@ -14119,20 +13785,20 @@ packages: postcss: 7.0.39 dev: true - /icss-utils/5.1.0_postcss@8.4.13: + /icss-utils/5.1.0_postcss@8.4.14: resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.13 + postcss: 8.4.14 dev: true /ieee754/1.2.1: resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} /iferr/0.1.5: - resolution: {integrity: sha1-xg7taebY/bazEEofy8ocGS3FtQE=} + resolution: {integrity: sha512-DUNFN5j7Tln0D+TxzloUjKB+CtVu6myn0JEFak6dG18mNt9YkQ6lzGCdafwofISZ1lLF3xRHJ98VKy9ynkcFaA==} dev: true /ignore/4.0.6: @@ -14146,13 +13812,13 @@ packages: dev: true /immediate/3.0.6: - resolution: {integrity: sha1-nbHb0Pr43m++D13V5Wu2BigN5ps=} + resolution: {integrity: sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==} - /immer/9.0.12: - resolution: {integrity: sha512-lk7UNmSbAukB5B6dh9fnh5D0bJTOFKxVg2cyJWTYrWRfhLrLMBquONcUs3aFq507hNoIZEDDh8lb8UtOizSMhA==} + /immer/9.0.15: + resolution: {integrity: sha512-2eB/sswms9AEUSkOm4SbV5Y7Vmt/bKRwByd52jfLkW4OLYeaTP3EEiJ9agqU0O/tq6Dk62Zfj+TJSqfm1rLVGQ==} - /immutable/4.0.0: - resolution: {integrity: sha512-zIE9hX70qew5qTUjSS7wi1iwj/l7+m54KWU247nhM3v806UdGj1yDndXj+IOYxxtW9zyLI+xqFNZjTuDaLUqFw==} + /immutable/4.1.0: + resolution: {integrity: sha512-oNkuqVTA8jqG1Q6c+UglTOD1xhC1BtjKI7XkCXRkZHrN5m18/XsnUp8Q89GkQO/z+0WjonSvl0FLhDYftp46nQ==} /import-fresh/3.3.0: resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} @@ -14176,9 +13842,17 @@ packages: dev: true /imurmurhash/0.1.4: - resolution: {integrity: sha1-khi5srkoojixPcT7a21XbyMUU+o=} + resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} engines: {node: '>=0.8.19'} + /indent-string/2.1.0: + resolution: {integrity: sha512-aqwDFWSgSgfRaEwao5lg5KEcVd/2a+D1rvoG7NdilmYz0NwRk6StWpWdz/Hpk34MKPpx7s8XxUqimfcQK6gGlg==} + engines: {node: '>=0.10.0'} + dependencies: + repeating: 2.0.1 + dev: true + optional: true + /indent-string/4.0.0: resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} engines: {node: '>=8'} @@ -14187,17 +13861,17 @@ packages: resolution: {integrity: sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==} /inflight/1.0.6: - resolution: {integrity: sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=} + resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} dependencies: once: 1.4.0 wrappy: 1.0.2 /inherits/2.0.1: - resolution: {integrity: sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=} + resolution: {integrity: sha512-8nWq2nLTAwd02jTqJExUYFSD/fKq6VH9Y/oG2accc/kdI0V98Bag8d5a4gi3XHz73rDWa2PvTtvcWYquKqSENA==} dev: true /inherits/2.0.3: - resolution: {integrity: sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=} + resolution: {integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==} dev: true /inherits/2.0.4: @@ -14210,31 +13884,12 @@ packages: resolution: {integrity: sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==} dev: true - /inquirer/5.2.0: - resolution: {integrity: sha512-E9BmnJbAKLPGonz0HeWHtbKf+EeSP93paWO3ZYoUpq/aowXvYGjjCSuashhXPpzbArIjBbji39THkxTz9ZeEUQ==} - engines: {node: '>=6.0.0'} - dependencies: - ansi-escapes: 3.2.0 - chalk: 2.4.2 - cli-cursor: 2.1.0 - cli-width: 2.2.1 - external-editor: 2.2.0 - figures: 2.0.0 - lodash: 4.17.21 - mute-stream: 0.0.7 - run-async: 2.4.1 - rxjs: 5.5.12 - string-width: 2.1.1 - strip-ansi: 4.0.0 - through: 2.3.8 - dev: false - /inquirer/8.2.4: resolution: {integrity: sha512-nn4F01dxU8VeKfq192IjLsxu0/OmMZ4Lg3xKAns148rCaXP6ntAoEkVYZThWjwON8AlzdZZi6oqnhNbxUG9hVg==} engines: {node: '>=12.0.0'} dependencies: ansi-escapes: 4.3.2 - chalk: 4.1.1 + chalk: 4.1.2 cli-cursor: 3.1.0 cli-width: 3.0.0 external-editor: 3.1.0 @@ -14254,7 +13909,7 @@ packages: resolution: {integrity: sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==} engines: {node: '>= 0.4'} dependencies: - get-intrinsic: 1.1.1 + get-intrinsic: 1.1.2 has: 1.0.3 side-channel: 1.0.4 dev: true @@ -14267,14 +13922,21 @@ packages: resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==} dependencies: loose-envify: 1.4.0 + dev: false /ip-regex/4.3.0: resolution: {integrity: sha512-B9ZWJxHHOHUhUjCPrMpLD4xEq35bUTClHM1S6CBU5ixQnkZmwipwgc96vAd7AAGM9TGHvJR+Uss+/Ak6UphK+Q==} engines: {node: '>=8'} dev: true - /ip/1.1.5: - resolution: {integrity: sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=} + /ip/1.1.8: + resolution: {integrity: sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==} + dev: false + optional: true + + /ip/2.0.0: + resolution: {integrity: sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==} + dev: true /ipaddr.js/1.9.1: resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==} @@ -14291,7 +13953,7 @@ packages: dev: true /is-accessor-descriptor/0.1.6: - resolution: {integrity: sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=} + resolution: {integrity: sha512-e1BM1qnDbMRG3ll2U9dSK0UMHuWOs3pY3AtcFsmvwPtKL3MML/Q86i+GilLfvqEs4GW+ExB91tQ3Ig9noDIZ+A==} engines: {node: '>=0.10.0'} dependencies: kind-of: 3.2.2 @@ -14324,7 +13986,7 @@ packages: dev: true /is-arrayish/0.2.1: - resolution: {integrity: sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=} + resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} /is-arrayish/0.3.2: resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==} @@ -14337,7 +13999,7 @@ packages: dev: true /is-binary-path/1.0.1: - resolution: {integrity: sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=} + resolution: {integrity: sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==} engines: {node: '>=0.10.0'} dependencies: binary-extensions: 1.13.1 @@ -14370,7 +14032,7 @@ packages: resolution: {integrity: sha512-OV7JjAgOTfAFJmHZLvpSTb4qi0nIILDV1gWPYDnDJUTNFM5aGlRAhk4QcT8i7TuAleeEV5Fdkqn3t4mS+Q11fg==} engines: {node: '>=6'} dependencies: - builtin-modules: 3.2.0 + builtin-modules: 3.3.0 dev: true /is-callable/1.2.4: @@ -14389,7 +14051,7 @@ packages: resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==} hasBin: true dependencies: - ci-info: 3.3.0 + ci-info: 3.3.2 dev: true /is-core-module/2.9.0: @@ -14398,7 +14060,7 @@ packages: has: 1.0.3 /is-data-descriptor/0.1.4: - resolution: {integrity: sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=} + resolution: {integrity: sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==} engines: {node: '>=0.10.0'} dependencies: kind-of: 3.2.2 @@ -14453,14 +14115,14 @@ packages: dev: true /is-expression/3.0.0: - resolution: {integrity: sha1-Oayqa+f9HzRx3ELHQW5hwkMXrJ8=} + resolution: {integrity: sha512-vyMeQMq+AiH5uUnoBfMTwf18tO3bM6k1QXBE9D6ueAAquEfCZe3AJPtud9g6qS0+4X8xA7ndpZiDyeb2l2qOBw==} dependencies: acorn: 4.0.13 object-assign: 4.1.1 dev: true /is-extendable/0.1.1: - resolution: {integrity: sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=} + resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==} engines: {node: '>=0.10.0'} /is-extendable/1.0.1: @@ -14471,13 +14133,14 @@ packages: dev: true /is-extglob/2.1.1: - resolution: {integrity: sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=} + resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} engines: {node: '>=0.10.0'} - /is-fullwidth-code-point/2.0.0: - resolution: {integrity: sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=} - engines: {node: '>=4'} - dev: false + /is-finite/1.1.0: + resolution: {integrity: sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w==} + engines: {node: '>=0.10.0'} + dev: true + optional: true /is-fullwidth-code-point/3.0.0: resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} @@ -14493,7 +14156,7 @@ packages: dev: true /is-glob/3.1.0: - resolution: {integrity: sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=} + resolution: {integrity: sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==} engines: {node: '>=0.10.0'} dependencies: is-extglob: 2.1.1 @@ -14510,7 +14173,7 @@ packages: dev: true /is-in-browser/1.1.3: - resolution: {integrity: sha1-Vv9NtoOgeMYILrldrX3GLh0E+DU=} + resolution: {integrity: sha512-FeXIBgG/CPGd/WUxuEyvgGTEfwiG9Z4EKGxjNMRqviiIIfsmgrpnHLffEDdwUHqNva1VEW91o3xBT/m8Elgl9g==} dev: false /is-interactive/1.0.0: @@ -14519,7 +14182,7 @@ packages: dev: false /is-lambda/1.0.1: - resolution: {integrity: sha1-PZh3iZ5qU+/AFgUEzeFfgubwYdU=} + resolution: {integrity: sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==} dev: false optional: true @@ -14528,7 +14191,7 @@ packages: dev: true /is-module/1.0.0: - resolution: {integrity: sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE=} + resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==} dev: true /is-negative-zero/2.0.2: @@ -14548,7 +14211,7 @@ packages: dev: true /is-number/3.0.0: - resolution: {integrity: sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=} + resolution: {integrity: sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==} engines: {node: '>=0.10.0'} dependencies: kind-of: 3.2.2 @@ -14573,7 +14236,7 @@ packages: dev: true /is-plain-obj/1.1.0: - resolution: {integrity: sha1-caUMhCnfync8kqOQpKA7OfzVHT4=} + resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==} engines: {node: '>=0.10.0'} dev: true @@ -14592,7 +14255,6 @@ packages: engines: {node: '>=0.10.0'} dependencies: isobject: 3.0.1 - dev: true /is-plain-object/5.0.0: resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==} @@ -14637,7 +14299,7 @@ packages: dev: true /is-stream/1.1.0: - resolution: {integrity: sha1-EtSj3U5o4Lec6428hBc66A2RykQ=} + resolution: {integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==} engines: {node: '>=0.10.0'} dev: true @@ -14668,7 +14330,7 @@ packages: dev: true /is-typedarray/1.0.0: - resolution: {integrity: sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=} + resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==} dev: true /is-unicode-supported/0.1.0: @@ -14680,6 +14342,11 @@ packages: resolution: {integrity: sha512-ITvGim8FhRiYe4IQ5uHSkj7pVaPDrCTkNd3yq3cV7iZAcJdHTUMPMEHcqSOy9xZ9qFenQCvi+2wjH9a1nXqHww==} dev: true + /is-utf8/0.2.1: + resolution: {integrity: sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==} + dev: true + optional: true + /is-weakref/1.0.2: resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} dependencies: @@ -14691,7 +14358,7 @@ packages: dev: true /is-window/1.0.2: - resolution: {integrity: sha1-LIlspT25feRdPDMTOmXYyfVjSA0=} + resolution: {integrity: sha512-uj00kdXyZb9t9RcAUAwMZAnkBUwdYGhYlt7djMXhfyhUCzwNba50tIiBKR7q0l7tdoBtFVw/3JmLY6fI3rmZmg==} dev: true /is-windows/1.0.2: @@ -14704,7 +14371,7 @@ packages: dev: true /is-wsl/1.1.0: - resolution: {integrity: sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=} + resolution: {integrity: sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==} engines: {node: '>=4'} dev: true @@ -14724,35 +14391,44 @@ packages: dev: true /isarray/0.0.1: - resolution: {integrity: sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=} + resolution: {integrity: sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==} + dev: true /isarray/1.0.0: - resolution: {integrity: sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=} + resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} /isarray/2.0.5: resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} dev: true /isexe/2.0.0: - resolution: {integrity: sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=} + resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} /isobject/2.1.0: - resolution: {integrity: sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=} + resolution: {integrity: sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==} engines: {node: '>=0.10.0'} dependencies: isarray: 1.0.0 dev: true /isobject/3.0.1: - resolution: {integrity: sha1-TkMekrEalzFjaqH5yNHMvP2reN8=} + resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==} engines: {node: '>=0.10.0'} - dev: true /isobject/4.0.0: resolution: {integrity: sha512-S/2fF5wH8SJA/kmwr6HYhK/RI/OkhD84k8ntalo0iJjZikgq1XFvR5M8NPT1x5F7fBwCG3qHfnzeP/Vh/ZxCUA==} engines: {node: '>=0.10.0'} dev: true + /isomorphic-unfetch/3.1.0: + resolution: {integrity: sha512-geDJjpoZ8N0kWexiwkX8F9NkTsXhetLPVbZFQ+JTW239QNOwvB0gniuR1Wc6f0AMTn7/mFGyXvHTifrCp/GH8Q==} + dependencies: + node-fetch: 2.6.7 + unfetch: 4.2.0 + transitivePeerDependencies: + - encoding + dev: true + /istanbul-lib-coverage/3.2.0: resolution: {integrity: sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==} engines: {node: '>=8'} @@ -14762,8 +14438,8 @@ packages: resolution: {integrity: sha512-6Lthe1hqXHBNsqvgDzGO6l03XNeu3CrG4RqQ1KM9+l5+jNGpEJfIELx1NS3SEHmJQA8np/u+E4EPRKRiu6m19A==} engines: {node: '>=8'} dependencies: - '@babel/core': 7.17.10 - '@babel/parser': 7.17.10 + '@babel/core': 7.18.5 + '@babel/parser': 7.18.5 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.0 semver: 6.3.0 @@ -14830,7 +14506,7 @@ packages: '@jest/environment': 27.5.1 '@jest/test-result': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 17.0.31 + '@types/node': 16.11.41 chalk: 4.1.2 co: 4.6.0 dedent: 0.7.0 @@ -14880,7 +14556,7 @@ packages: - utf-8-validate dev: true - /jest-cli/27.5.1_ts-node@10.7.0: + /jest-cli/27.5.1_ts-node@10.8.1: resolution: {integrity: sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} hasBin: true @@ -14890,14 +14566,14 @@ packages: node-notifier: optional: true dependencies: - '@jest/core': 27.5.1_ts-node@10.7.0 + '@jest/core': 27.5.1_ts-node@10.8.1 '@jest/test-result': 27.5.1 '@jest/types': 27.5.1 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.10 import-local: 3.1.0 - jest-config: 27.5.1_ts-node@10.7.0 + jest-config: 27.5.1_ts-node@10.8.1 jest-util: 27.5.1 jest-validate: 27.5.1 prompts: 2.4.2 @@ -14919,14 +14595,14 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.17.10 + '@babel/core': 7.18.5 '@jest/test-sequencer': 27.5.1 '@jest/types': 27.5.1 - babel-jest: 27.5.1_@babel+core@7.17.10 + babel-jest: 27.5.1_@babel+core@7.18.5 chalk: 4.1.2 - ci-info: 3.3.0 + ci-info: 3.3.2 deepmerge: 4.2.2 - glob: 7.2.0 + glob: 7.2.3 graceful-fs: 4.2.10 jest-circus: 27.5.1 jest-environment-jsdom: 27.5.1 @@ -14950,7 +14626,7 @@ packages: - utf-8-validate dev: true - /jest-config/27.5.1_ts-node@10.7.0: + /jest-config/27.5.1_ts-node@10.8.1: resolution: {integrity: sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} peerDependencies: @@ -14959,14 +14635,14 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.17.10 + '@babel/core': 7.18.5 '@jest/test-sequencer': 27.5.1 '@jest/types': 27.5.1 - babel-jest: 27.5.1_@babel+core@7.17.10 + babel-jest: 27.5.1_@babel+core@7.18.5 chalk: 4.1.2 - ci-info: 3.3.0 + ci-info: 3.3.2 deepmerge: 4.2.2 - glob: 7.2.0 + glob: 7.2.3 graceful-fs: 4.2.10 jest-circus: 27.5.1 jest-environment-jsdom: 27.5.1 @@ -14983,7 +14659,7 @@ packages: pretty-format: 27.5.1 slash: 3.0.0 strip-json-comments: 3.1.1 - ts-node: 10.7.0_fd4b5ff48b408bf425abfec4a641da13 + ts-node: 10.8.1_qqpsu5gwjto2muvbbvmj4ndcmu transitivePeerDependencies: - bufferutil - canvas @@ -15026,7 +14702,7 @@ packages: '@jest/environment': 27.5.1 '@jest/fake-timers': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 17.0.31 + '@types/node': 16.11.41 jest-mock: 27.5.1 jest-util: 27.5.1 jsdom: 16.7.0 @@ -15044,7 +14720,7 @@ packages: '@jest/environment': 27.5.1 '@jest/fake-timers': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 17.0.31 + '@types/node': 16.11.41 jest-mock: 27.5.1 jest-util: 27.5.1 dev: true @@ -15060,7 +14736,7 @@ packages: dependencies: '@jest/types': 26.6.2 '@types/graceful-fs': 4.1.5 - '@types/node': 17.0.31 + '@types/node': 18.0.0 anymatch: 3.1.2 fb-watchman: 2.0.1 graceful-fs: 4.2.10 @@ -15083,7 +14759,7 @@ packages: dependencies: '@jest/types': 27.5.1 '@types/graceful-fs': 4.1.5 - '@types/node': 17.0.31 + '@types/node': 16.11.41 anymatch: 3.1.2 fb-watchman: 2.0.1 graceful-fs: 4.2.10 @@ -15105,7 +14781,7 @@ packages: '@jest/source-map': 27.5.1 '@jest/test-result': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 17.0.31 + '@types/node': 16.11.41 chalk: 4.1.2 co: 4.6.0 expect: 27.5.1 @@ -15160,7 +14836,7 @@ packages: engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: '@jest/types': 27.5.1 - '@types/node': 17.0.31 + '@types/node': 16.11.41 dev: true /jest-pnp-resolver/1.2.2_jest-resolve@27.5.1: @@ -15207,7 +14883,7 @@ packages: jest-pnp-resolver: 1.2.2_jest-resolve@27.5.1 jest-util: 27.5.1 jest-validate: 27.5.1 - resolve: 1.22.0 + resolve: 1.22.1 resolve.exports: 1.1.0 slash: 3.0.0 dev: true @@ -15221,7 +14897,7 @@ packages: '@jest/test-result': 27.5.1 '@jest/transform': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 17.0.31 + '@types/node': 16.11.41 chalk: 4.1.2 emittery: 0.8.1 graceful-fs: 4.2.10 @@ -15259,7 +14935,7 @@ packages: cjs-module-lexer: 1.2.2 collect-v8-coverage: 1.0.1 execa: 5.1.1 - glob: 7.2.0 + glob: 7.2.3 graceful-fs: 4.2.10 jest-haste-map: 27.5.1 jest-message-util: 27.5.1 @@ -15278,7 +14954,7 @@ packages: resolution: {integrity: sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==} engines: {node: '>= 10.14.2'} dependencies: - '@types/node': 17.0.31 + '@types/node': 18.0.0 graceful-fs: 4.2.10 dev: true @@ -15286,7 +14962,7 @@ packages: resolution: {integrity: sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - '@types/node': 17.0.31 + '@types/node': 16.11.41 graceful-fs: 4.2.10 dev: true @@ -15294,16 +14970,16 @@ packages: resolution: {integrity: sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - '@babel/core': 7.17.10 - '@babel/generator': 7.17.10 - '@babel/plugin-syntax-typescript': 7.17.10_@babel+core@7.17.10 - '@babel/traverse': 7.17.10 - '@babel/types': 7.17.10 + '@babel/core': 7.18.5 + '@babel/generator': 7.18.2 + '@babel/plugin-syntax-typescript': 7.17.12_@babel+core@7.18.5 + '@babel/traverse': 7.18.5 + '@babel/types': 7.18.4 '@jest/transform': 27.5.1 '@jest/types': 27.5.1 '@types/babel__traverse': 7.17.1 - '@types/prettier': 2.6.0 - babel-preset-current-node-syntax: 1.0.1_@babel+core@7.17.10 + '@types/prettier': 2.6.3 + babel-preset-current-node-syntax: 1.0.1_@babel+core@7.18.5 chalk: 4.1.2 expect: 27.5.1 graceful-fs: 4.2.10 @@ -15325,7 +15001,7 @@ packages: engines: {node: '>= 10.14.2'} dependencies: '@jest/types': 26.6.2 - '@types/node': 17.0.31 + '@types/node': 18.0.0 chalk: 4.1.2 graceful-fs: 4.2.10 is-ci: 2.0.0 @@ -15337,9 +15013,9 @@ packages: engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: '@jest/types': 27.5.1 - '@types/node': 17.0.31 + '@types/node': 16.11.41 chalk: 4.1.2 - ci-info: 3.3.0 + ci-info: 3.3.2 graceful-fs: 4.2.10 picomatch: 2.3.1 dev: true @@ -15362,7 +15038,7 @@ packages: dependencies: '@jest/test-result': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 17.0.31 + '@types/node': 16.11.41 ansi-escapes: 4.3.2 chalk: 4.1.2 jest-util: 27.5.1 @@ -15373,7 +15049,7 @@ packages: resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==} engines: {node: '>= 10.13.0'} dependencies: - '@types/node': 17.0.31 + '@types/node': 16.11.41 merge-stream: 2.0.0 supports-color: 7.2.0 dev: true @@ -15382,7 +15058,7 @@ packages: resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} engines: {node: '>= 10.13.0'} dependencies: - '@types/node': 17.0.31 + '@types/node': 18.0.0 merge-stream: 2.0.0 supports-color: 8.1.1 dev: true @@ -15408,7 +15084,7 @@ packages: - utf-8-validate dev: true - /jest/27.5.1_ts-node@10.7.0: + /jest/27.5.1_ts-node@10.8.1: resolution: {integrity: sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} hasBin: true @@ -15418,9 +15094,9 @@ packages: node-notifier: optional: true dependencies: - '@jest/core': 27.5.1_ts-node@10.7.0 + '@jest/core': 27.5.1_ts-node@10.8.1 import-local: 3.1.0 - jest-cli: 27.5.1_ts-node@10.7.0 + jest-cli: 27.5.1_ts-node@10.8.1 transitivePeerDependencies: - bufferutil - canvas @@ -15435,12 +15111,12 @@ packages: dev: false /js-string-escape/1.0.1: - resolution: {integrity: sha1-4mJbrbwNZ8dTPp7cEGjFh65BN+8=} + resolution: {integrity: sha512-Smw4xcfIQ5LVjAOuJCvN/zIodzA/BBSsluuoSykP+lUvScIi4U6RJLfwHet5cxFnCswUjISV8oAXaqaJDY3chg==} engines: {node: '>= 0.8'} dev: true /js-stringify/1.0.2: - resolution: {integrity: sha1-Fzb939lyTyijaCrcYjCufk6Weds=} + resolution: {integrity: sha512-rtS5ATOo2Q5k1G+DADISilDA6lv79zIiwFd6CcjuIxGKLFm5C+RLImRscVap9k55i+MOZwgliw+NejvkLuGD5g==} dev: true /js-tokens/4.0.0: @@ -15499,7 +15175,7 @@ packages: whatwg-encoding: 1.0.5 whatwg-mimetype: 2.3.0 whatwg-url: 8.7.0 - ws: 7.5.7 + ws: 7.5.8 xml-name-validator: 3.0.0 transitivePeerDependencies: - bufferutil @@ -15508,7 +15184,7 @@ packages: dev: true /jsesc/0.5.0: - resolution: {integrity: sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=} + resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==} hasBin: true dev: true @@ -15518,7 +15194,7 @@ packages: hasBin: true /json-buffer/3.0.0: - resolution: {integrity: sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg=} + resolution: {integrity: sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ==} /json-parse-better-errors/1.0.2: resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==} @@ -15547,15 +15223,15 @@ packages: dev: true /json-stable-stringify-without-jsonify/1.0.1: - resolution: {integrity: sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=} + resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} dev: true /json-stringify-safe/5.0.1: - resolution: {integrity: sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=} + resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==} optional: true /json5/0.5.1: - resolution: {integrity: sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE=} + resolution: {integrity: sha512-4xrs1aW+6N5DalkqSVA8fxh458CXvR99WU8WLKmq4v8eWAL86Xo3BVqyd3SkA9wEVjCMqyvvRRkshAdOnBp5rw==} hasBin: true dev: true @@ -15570,7 +15246,6 @@ packages: resolution: {integrity: sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==} engines: {node: '>=6'} hasBin: true - dev: true /jsonc-parser/3.0.0: resolution: {integrity: sha512-fQzRfAbIBnR0IQvftw9FJveWiHp72Fg20giDrHz6TdfB12UH/uue0D3hm57UB5KgAVuniLMCaS8P1IMj9NR7cA==} @@ -15584,15 +15259,10 @@ packages: chalk: 2.4.2 diff-match-patch: 1.0.5 dev: false - - /jsonfile/2.4.0: - resolution: {integrity: sha1-NzaitCi4e72gzIO1P6PWM6NcKug=} - optionalDependencies: - graceful-fs: 4.2.10 - dev: true + bundledDependencies: [] /jsonfile/4.0.0: - resolution: {integrity: sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=} + resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==} optionalDependencies: graceful-fs: 4.2.10 @@ -15627,7 +15297,7 @@ packages: /jss-plugin-camel-case/10.9.0: resolution: {integrity: sha512-UH6uPpnDk413/r/2Olmw4+y54yEF2lRIV8XIZyuYpgPYTITLlPOsq6XB9qeqv+75SQSg3KLocq5jUBXW8qWWww==} dependencies: - '@babel/runtime': 7.17.9 + '@babel/runtime': 7.18.3 hyphenate-style-name: 1.0.4 jss: 10.9.0 dev: false @@ -15635,7 +15305,7 @@ packages: /jss-plugin-compose/10.9.0: resolution: {integrity: sha512-Q/0FEZhDwGUpf3/b7+PspmMi6MVSlN3YlTDmvrft7I6N346jUpd8MYkYP/6qM1ZMuVj4v8ky/XYqr1v2ganLLg==} dependencies: - '@babel/runtime': 7.17.9 + '@babel/runtime': 7.18.3 jss: 10.9.0 tiny-warning: 1.0.3 dev: false @@ -15643,21 +15313,21 @@ packages: /jss-plugin-default-unit/10.9.0: resolution: {integrity: sha512-7Ju4Q9wJ/MZPsxfu4T84mzdn7pLHWeqoGd/D8O3eDNNJ93Xc8PxnLmV8s8ZPNRYkLdxZqKtm1nPQ0BM4JRlq2w==} dependencies: - '@babel/runtime': 7.17.9 + '@babel/runtime': 7.18.3 jss: 10.9.0 dev: false /jss-plugin-expand/10.9.0: resolution: {integrity: sha512-QfZ9jld0HpF1OiYU7cGWQ4q+f6+Wu93mV4X+cA1iVRssiUbSbygwdfZkUwX23UOhS1WWRJeQlLK1aJC94K8/0A==} dependencies: - '@babel/runtime': 7.17.9 + '@babel/runtime': 7.18.3 jss: 10.9.0 dev: false /jss-plugin-extend/10.9.0: resolution: {integrity: sha512-xvmosUh3RsKVsm9L14ml6PL3i0Ejj5gB6eo/jTMkGW1kIy42gNXV1EthR8cD5xiowWstnvugQ3JF0pI5+QkPMg==} dependencies: - '@babel/runtime': 7.17.9 + '@babel/runtime': 7.18.3 jss: 10.9.0 tiny-warning: 1.0.3 dev: false @@ -15665,14 +15335,14 @@ packages: /jss-plugin-global/10.9.0: resolution: {integrity: sha512-4G8PHNJ0x6nwAFsEzcuVDiBlyMsj2y3VjmFAx/uHk/R/gzJV+yRHICjT4MKGGu1cJq2hfowFWCyrr/Gg37FbgQ==} dependencies: - '@babel/runtime': 7.17.9 + '@babel/runtime': 7.18.3 jss: 10.9.0 dev: false /jss-plugin-nested/10.9.0: resolution: {integrity: sha512-2UJnDrfCZpMYcpPYR16oZB7VAC6b/1QLsRiAutOt7wJaaqwCBvNsosLEu/fUyKNQNGdvg2PPJFDO5AX7dwxtoA==} dependencies: - '@babel/runtime': 7.17.9 + '@babel/runtime': 7.18.3 jss: 10.9.0 tiny-warning: 1.0.3 dev: false @@ -15680,14 +15350,14 @@ packages: /jss-plugin-props-sort/10.9.0: resolution: {integrity: sha512-7A76HI8bzwqrsMOJTWKx/uD5v+U8piLnp5bvru7g/3ZEQOu1+PjHvv7bFdNO3DwNPC9oM0a//KwIJsIcDCjDzw==} dependencies: - '@babel/runtime': 7.17.9 + '@babel/runtime': 7.18.3 jss: 10.9.0 dev: false /jss-plugin-rule-value-function/10.9.0: resolution: {integrity: sha512-IHJv6YrEf8pRzkY207cPmdbBstBaE+z8pazhPShfz0tZSDtRdQua5jjg6NMz3IbTasVx9FdnmptxPqSWL5tyJg==} dependencies: - '@babel/runtime': 7.17.9 + '@babel/runtime': 7.18.3 jss: 10.9.0 tiny-warning: 1.0.3 dev: false @@ -15695,7 +15365,7 @@ packages: /jss-plugin-rule-value-observable/10.9.0: resolution: {integrity: sha512-/MWVPJVEn41+ofzQdsvH1GR4wusDqFqNnchh/98HVc580MxPy4NVkmUa2SAEpbHhnJ93sCoETZccW3HJKuvH4A==} dependencies: - '@babel/runtime': 7.17.9 + '@babel/runtime': 7.18.3 jss: 10.9.0 symbol-observable: 1.2.0 dev: false @@ -15703,7 +15373,7 @@ packages: /jss-plugin-template/10.9.0: resolution: {integrity: sha512-lxThUvdt0drCi7xhuJWxADWTgLLy1IWCeFO5k+dtba900xJsNg0IGZplpP9w9UpaJsYS3WUwWMXw8Sxn1dobfQ==} dependencies: - '@babel/runtime': 7.17.9 + '@babel/runtime': 7.18.3 jss: 10.9.0 tiny-warning: 1.0.3 dev: false @@ -15711,7 +15381,7 @@ packages: /jss-plugin-vendor-prefixer/10.9.0: resolution: {integrity: sha512-MbvsaXP7iiVdYVSEoi+blrW+AYnTDvHTW6I6zqi7JcwXdc6I9Kbm234nEblayhF38EftoenbM+5218pidmC5gA==} dependencies: - '@babel/runtime': 7.17.9 + '@babel/runtime': 7.18.3 css-vendor: 2.0.8 jss: 10.9.0 dev: false @@ -15719,7 +15389,7 @@ packages: /jss-preset-default/10.9.0: resolution: {integrity: sha512-Zdsj+R+UTn7OOJ1TFQi+l8PfEL7APSAM6vRPaU8mJywT8OrMjgslMKckFLrgq1k+qk1hJR1ePAMesvZ5aAXGOQ==} dependencies: - '@babel/runtime': 7.17.9 + '@babel/runtime': 7.18.3 jss: 10.9.0 jss-plugin-camel-case: 10.9.0 jss-plugin-compose: 10.9.0 @@ -15738,14 +15408,14 @@ packages: /jss/10.9.0: resolution: {integrity: sha512-YpzpreB6kUunQBbrlArlsMpXYyndt9JATbt95tajx0t4MTJJcCJdd4hdNpHmOIDiUJrF/oX5wtVFrS3uofWfGw==} dependencies: - '@babel/runtime': 7.17.9 - csstype: 3.0.11 + '@babel/runtime': 7.18.3 + csstype: 3.1.0 is-in-browser: 1.1.3 tiny-warning: 1.0.3 dev: false /jstransformer/1.0.0: - resolution: {integrity: sha1-7Yvwkh4vPx7U1cGkT2hwntJHIsM=} + resolution: {integrity: sha512-C9YK3Rf8q6VAPDCCU9fnqo3mAfOH6vUGnMcP4AQAYIEpWtfGLpwOTmZ+igtdK5y+VvI2n3CyYSzy4Qh34eq24A==} dependencies: is-promise: 2.2.2 promise: 7.3.1 @@ -15759,13 +15429,21 @@ packages: object.assign: 4.1.2 dev: true - /jszip/3.9.1: - resolution: {integrity: sha512-H9A60xPqJ1CuC4Ka6qxzXZeU8aNmgOeP5IFqwJbQQwtu2EUYxota3LdsiZWplF7Wgd9tkAd0mdu36nceSaPuYw==} + /jsx-ast-utils/3.3.1: + resolution: {integrity: sha512-pxrjmNpeRw5wwVeWyEAk7QJu2GnBO3uzPFmHCKJJFPKK2Cy0cWL23krGtLdnMmbIi6/FjlrQpPyfQI19ByPOhQ==} + engines: {node: '>=4.0'} + dependencies: + array-includes: 3.1.5 + object.assign: 4.1.2 + dev: true + + /jszip/3.10.0: + resolution: {integrity: sha512-LDfVtOLtOxb9RXkYOwPyNBTQDL4eUbqahtoY6x07GiDJHwSYvn8sHHIw8wINImV3MqbMNve2gSuM1DDqEKk09Q==} dependencies: lie: 3.3.0 pako: 1.0.11 readable-stream: 2.3.7 - set-immediate-shim: 1.0.1 + setimmediate: 1.0.5 dev: true /junk/3.1.0: @@ -15798,14 +15476,14 @@ packages: json-buffer: 3.0.0 /kind-of/3.2.2: - resolution: {integrity: sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=} + resolution: {integrity: sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==} engines: {node: '>=0.10.0'} dependencies: is-buffer: 1.1.6 dev: true /kind-of/4.0.0: - resolution: {integrity: sha1-IIE989cSkosgc3hpGkUGb65y3Vc=} + resolution: {integrity: sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==} engines: {node: '>=0.10.0'} dependencies: is-buffer: 1.1.6 @@ -15819,26 +15497,24 @@ packages: /kind-of/6.0.3: resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} engines: {node: '>=0.10.0'} - dev: true - - /klaw/1.3.1: - resolution: {integrity: sha1-QIhDO0azsbolnXh4XY6W9zugJDk=} - optionalDependencies: - graceful-fs: 4.2.10 - dev: true /kleur/3.0.3: resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} engines: {node: '>=6'} dev: true + /kleur/4.1.4: + resolution: {integrity: sha512-8QADVssbrFjivHWQU7KkMgptGTl6WAcSdlbBPY4uNF+mWr6DGcKrvY2w4FQJoXch7+fKMjj0dRrL75vk3k23OA==} + engines: {node: '>=6'} + dev: true + /klona/2.0.5: resolution: {integrity: sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ==} engines: {node: '>= 8'} dev: true - /knex/2.0.0_sqlite3@5.0.8: - resolution: {integrity: sha512-LchC8/GLfreMz8d4kCwh/ymXttsoJG8zO1O0AJBjnxdyr2oT/k2ik77hP1PpZkZH9mDQrq6WsQcIu18Pnqppzg==} + /knex/2.1.0_sqlite3@5.0.8: + resolution: {integrity: sha512-vVsnD6UJdSJy55TvCXfFF9syfwyXNxfE9mvr2hJL/4Obciy2EPGoqjDpgRSlMruHuPWDOeYAG25nyrGvU+jJog==} engines: {node: '>=12'} hasBin: true peerDependencies: @@ -15866,7 +15542,7 @@ packages: optional: true dependencies: colorette: 2.0.16 - commander: 9.2.0 + commander: 9.3.0 debug: 4.3.4 escalade: 3.1.1 esm: 3.2.25 @@ -15893,13 +15569,13 @@ packages: dev: true /language-tags/1.0.5: - resolution: {integrity: sha1-0yHbxNowuovzAk4ED6XBRmH5GTo=} + resolution: {integrity: sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==} dependencies: language-subtag-registry: 0.3.21 dev: true /lazy-cache/1.0.4: - resolution: {integrity: sha1-odePw6UEdMuAhF07O24dpJpEbo4=} + resolution: {integrity: sha512-RE2g0b5VGZsOCFOCgP7omTRYFqydmZkBwl5oNnQ1lDYC57uyO9KqNnNVxT7COSHTxrRCWVcAVOcbjk+tvh/rgQ==} engines: {node: '>=0.10.0'} dev: true @@ -15907,9 +15583,9 @@ packages: resolution: {integrity: sha512-prXSYk799h3GY3iOWnC6ZigYzMPjxN2svgjJ9shk7oMadSNX3wXy0B6F32PMJv7qtMnrIbUxoEHzbutvxR2LBQ==} engines: {node: '>=6.0.0', npm: '>=6.0.0', yarn: '>=1.0.0'} dependencies: - '@babel/runtime': 7.17.9 + '@babel/runtime': 7.18.3 app-root-dir: 1.0.2 - core-js: 3.22.4 + core-js: 3.23.1 dotenv: 8.6.0 dotenv-expand: 5.1.0 dev: true @@ -15927,7 +15603,7 @@ packages: dev: true /levn/0.3.0: - resolution: {integrity: sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=} + resolution: {integrity: sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==} engines: {node: '>= 0.8.0'} dependencies: prelude-ls: 1.1.2 @@ -15943,7 +15619,7 @@ packages: dev: true /lie/3.1.1: - resolution: {integrity: sha1-mkNrLMd0bKWd56QfpGmz77dr2H4=} + resolution: {integrity: sha512-RiNhHysUjhrDQntfYSfY4MU24coXXdEOgw9WGcKHNeEwffDYbF//u87M1EWaMGzuFoSbqW0C9C6lEEhDOAswfw==} dependencies: immediate: 3.0.6 dev: false @@ -15958,7 +15634,19 @@ packages: resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} /linked-list/0.1.0: - resolution: {integrity: sha1-eYsP+X0bkqT9CEgPVa6k6dSdN78=} + resolution: {integrity: sha512-Zr4ovrd0ODzF3ut2TWZMdHIxb8iFdJc/P3QM4iCJdlxxGHXo69c9hGIHzLo8/FtuR9E6WUZc5irKhtPUgOKMAg==} + + /load-json-file/1.1.0: + resolution: {integrity: sha512-cy7ZdNRXdablkXYNI049pthVeXFurRyb9+hA/dZzerZ0pGTx42z+y+ssxBaVV2l70t1muq5IdKhn4UtcoGUY9A==} + engines: {node: '>=0.10.0'} + dependencies: + graceful-fs: 4.2.10 + parse-json: 2.2.0 + pify: 2.3.0 + pinkie-promise: 2.0.1 + strip-bom: 2.0.0 + dev: true + optional: true /load-yaml-file/0.2.0: resolution: {integrity: sha512-OfCBkGEw4nN6JLtgRidPX6QxjBQGQf72q3si2uvqyFEMbycSFFHwAZeXx6cJgFM9wmLrf9zBwCP3Ivqa+LLZPw==} @@ -15981,7 +15669,7 @@ packages: dev: true /loader-utils/0.2.17: - resolution: {integrity: sha1-+G5jdNQyBabmxg6RlvF8Apm/s0g=} + resolution: {integrity: sha512-tiv66G0SmiOx+pLWMtGEkfSEejxvb6N6uRrQjfWJIT79W9GMpgKeCAmm9aVBKtd4WEgntciI8CsGqjpDoCWJug==} dependencies: big.js: 3.2.0 emojis-list: 2.1.0 @@ -15998,15 +15686,6 @@ packages: json5: 1.0.1 dev: true - /loader-utils/2.0.0: - resolution: {integrity: sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==} - engines: {node: '>=8.9.0'} - dependencies: - big.js: 5.2.2 - emojis-list: 3.0.0 - json5: 2.2.1 - dev: true - /loader-utils/2.0.2: resolution: {integrity: sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==} engines: {node: '>=8.9.0'} @@ -16023,7 +15702,7 @@ packages: dev: false /locate-path/2.0.0: - resolution: {integrity: sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=} + resolution: {integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==} engines: {node: '>=4'} dependencies: p-locate: 2.0.0 @@ -16052,58 +15731,50 @@ packages: p-locate: 5.0.0 dev: true - /lodash.clonedeep/4.5.0: - resolution: {integrity: sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8=} - dev: false - /lodash.curry/4.1.1: - resolution: {integrity: sha1-JI42By7ekGUB11lmIAqG2riyMXA=} + resolution: {integrity: sha512-/u14pXGviLaweY5JI0IUzgzF2J6Ne8INyzAZjImcryjgkZ+ebruBxy2/JaOOkTqScddcYtakjhSaeemV8lR0tA==} dev: false /lodash.debounce/4.0.8: - resolution: {integrity: sha1-gteb/zCmfEAF/9XiUVMArZyk168=} + resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} /lodash.defaults/4.2.0: - resolution: {integrity: sha1-0JF4cW/+pN3p5ft7N/bwgCJ0WAw=} + resolution: {integrity: sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ==} dev: true /lodash.difference/4.5.0: - resolution: {integrity: sha1-nMtOUF1Ia5FlE0V3KIWi3yf9AXw=} + resolution: {integrity: sha512-dS2j+W26TQ7taQBGN8Lbbq04ssV3emRw4NY58WErlTO29pIqS0HmoT5aJ9+TUQ1N3G+JOZSji4eugsWwGp9yPA==} dev: true /lodash.flatten/4.4.0: - resolution: {integrity: sha1-8xwiIlqWMtK7+OSt2+8kCqdlph8=} + resolution: {integrity: sha512-C5N2Z3DgnnKr0LOpv/hKCgKdb7ZZwafIrsesve6lmzvZIRZRGaZ/l6Q8+2W7NaT+ZwO3fFlSCzCzrDCFdJfZ4g==} dev: true /lodash.includes/4.3.0: - resolution: {integrity: sha1-YLuYqHy5I8aMoeUTJUgzFISfVT8=} + resolution: {integrity: sha512-W3Bx6mdkRTGtlJISOvVD/lbqjTlPPUDTMnlXZFnVwi9NKJ6tiAk6LVdlhZMm17VZisqhKcgzpO5Wz91PCt5b0w==} dev: false /lodash.isboolean/3.0.3: - resolution: {integrity: sha1-bC4XHbKiV82WgC/UOwGyDV9YcPY=} - dev: false - - /lodash.isequalwith/4.4.0: - resolution: {integrity: sha1-Jmcm3dUo+FTyH06pigZWBuD7xrA=} + resolution: {integrity: sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==} dev: false /lodash.isinteger/4.0.4: - resolution: {integrity: sha1-YZwK89A/iwTDH1iChAt3sRzWg0M=} + resolution: {integrity: sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA==} dev: false /lodash.isnumber/3.0.3: - resolution: {integrity: sha1-POdoEMWSjQM1IwGsKHMX8RwLH/w=} + resolution: {integrity: sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==} dev: false /lodash.isplainobject/4.0.6: - resolution: {integrity: sha1-fFJqUtibRcRcxpC4gWO+BJf1UMs=} + resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==} /lodash.isstring/4.0.1: - resolution: {integrity: sha1-1SfftUVuynzJu5XV2ur4i6VKVFE=} + resolution: {integrity: sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==} dev: false /lodash.memoize/4.1.2: - resolution: {integrity: sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=} + resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==} dev: true /lodash.merge/4.6.2: @@ -16115,30 +15786,31 @@ packages: dev: false /lodash.once/4.1.1: - resolution: {integrity: sha1-DdOXEhPHxW34gJd9UEyI+0cal6w=} + resolution: {integrity: sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==} dev: false /lodash.shuffle/4.2.0: - resolution: {integrity: sha1-FFtQU8+HX29cKjP0i26ZSMbse0s=} + resolution: {integrity: sha512-V/rTAABKLFjoecTZjKSv+A1ZomG8hZg8hlgeG6wwQVD9AGv+10zqqSf6mFq2tVA703Zd5R0YhSuSlXA+E/Ei+Q==} dev: false /lodash.sortby/4.7.0: - resolution: {integrity: sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=} + resolution: {integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==} + dev: false /lodash.startcase/4.4.0: - resolution: {integrity: sha1-lDbjTtJgk+1/+uGTYUQ1CRXZrdg=} + resolution: {integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==} dev: true /lodash.truncate/4.4.2: - resolution: {integrity: sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM=} + resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==} dev: true /lodash.union/4.6.0: - resolution: {integrity: sha1-SLtQiECfFvGCFmZkHETdGqrjzYg=} + resolution: {integrity: sha512-c4pB2CdGrGdjMKYLA+XiRDO7Y0PRQbm/Gzg8qMj+QH+pFVAoTp5sBpO0odL3FjoPCGjK96p6qsP+yQoiLoOBcw==} dev: true /lodash.uniq/4.5.0: - resolution: {integrity: sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=} + resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==} dev: true /lodash/4.17.21: @@ -16148,7 +15820,7 @@ packages: resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} engines: {node: '>=10'} dependencies: - chalk: 4.1.1 + chalk: 4.1.2 is-unicode-supported: 0.1.0 dev: false @@ -16172,7 +15844,7 @@ packages: dev: false /longest/1.0.1: - resolution: {integrity: sha1-MKCy2jj3N3DoKUoNIuZiXtd9AJc=} + resolution: {integrity: sha512-k+yt5n3l48JU4k8ftnKG6V7u32wyH2NfKzeMto9F/QRE0amxy/LayxwlvjjkZEIzqR+19IrtFO8p5kB9QaYUFg==} engines: {node: '>=0.10.0'} dev: true @@ -16182,6 +15854,15 @@ packages: dependencies: js-tokens: 4.0.0 + /loud-rejection/1.6.0: + resolution: {integrity: sha512-RPNliZOFkqFumDhvYqOaNY4Uz9oJM2K9tC6JWsJJsNdhuONW4LQHRBpb0qf4pJApVffI5N39SwzWZJuEhfd7eQ==} + engines: {node: '>=0.10.0'} + dependencies: + currently-unhandled: 0.4.1 + signal-exit: 3.0.7 + dev: true + optional: true + /lower-case/2.0.2: resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} dependencies: @@ -16222,8 +15903,13 @@ packages: dependencies: yallist: 4.0.0 + /lru-cache/7.10.1: + resolution: {integrity: sha512-BQuhQxPuRl79J5zSXRP+uNzPOyZw2oFI9JLRQ80XswSvg21KMKNtQza9eF42rfI/3Z40RvzBdXgziEkudzjo8A==} + engines: {node: '>=12'} + dev: false + /lz-string/1.4.4: - resolution: {integrity: sha1-wNjq82BZ9wV5bh40SBHPTEmNOiY=} + resolution: {integrity: sha512-0ckx7ZHRPqb0oUm8zNr+90mtf9DQB60H1wMCjBtfi62Kl3a7JbHob6gA2bC+xRvZoOL+1hzUK8jeuEIQE8svEQ==} hasBin: true dev: true @@ -16269,7 +15955,7 @@ packages: minipass-pipeline: 1.2.4 negotiator: 0.6.3 promise-retry: 2.0.1 - socks-proxy-agent: 6.2.0 + socks-proxy-agent: 6.2.1 ssri: 8.0.1 transitivePeerDependencies: - bluebird @@ -16284,12 +15970,12 @@ packages: dev: true /map-cache/0.2.2: - resolution: {integrity: sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=} + resolution: {integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==} engines: {node: '>=0.10.0'} dev: true /map-obj/1.0.1: - resolution: {integrity: sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=} + resolution: {integrity: sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==} engines: {node: '>=0.10.0'} dev: true @@ -16299,11 +15985,11 @@ packages: dev: true /map-or-similar/1.5.0: - resolution: {integrity: sha1-beJlMXSt+12e3DPGnT6Sobdvrwg=} + resolution: {integrity: sha512-0aF7ZmVon1igznGI4VS30yugpduQW3y3GkcgGJOp7d8x8QrizhigUxjI/m2UojsXXto+jLAH3KSz+xOJTiORjg==} dev: true /map-visit/1.0.0: - resolution: {integrity: sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=} + resolution: {integrity: sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==} engines: {node: '>=0.10.0'} dependencies: object-visit: 1.0.1 @@ -16313,15 +15999,6 @@ packages: resolution: {integrity: sha512-8z4efJYk43E0upd0NbVXwgSTQs6cT3T06etieCMEg7dRbzCbxUCK/GHlX8mhHRDcp+OLlHkPKsvqQTCvsRl2cg==} dev: true - /markdown-to-jsx/7.1.7_react@17.0.2: - resolution: {integrity: sha512-VI3TyyHlGkO8uFle0IOibzpO1c1iJDcXcS/zBrQrXQQvJ2tpdwVzVZ7XdKsyRz1NdRmre4dqQkMZzUHaKIG/1w==} - engines: {node: '>= 10'} - peerDependencies: - react: '>= 0.14.0' - dependencies: - react: 17.0.2 - dev: true - /matcher/3.0.0: resolution: {integrity: sha512-OkeDaAZ/bQCxeFAozM55PKcKU0yJMPGifLwV4Qgjitu+5MoAfSQN4lsLJeXZ1b8w0x+/Emda6MZgXS1jvsapng==} engines: {node: '>=10'} @@ -16379,15 +16056,15 @@ packages: dev: true /mdurl/1.0.1: - resolution: {integrity: sha1-/oWy7HWlkDfyrf7BAP1sYBdhFS4=} + resolution: {integrity: sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==} dev: true /media-typer/0.3.0: - resolution: {integrity: sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=} + resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==} engines: {node: '>= 0.6'} - /memfs/3.4.1: - resolution: {integrity: sha512-1c9VPVvW5P7I85c35zAdEr1TD5+F11IToIHIlrVIcflfnzPkJa0ZoYEoEdYDP8KgPFoSZ/opDrUsAoZWym3mtw==} + /memfs/3.4.6: + resolution: {integrity: sha512-rH9mjopto6Wkr7RFuH9l9dk3qb2XGOcYKr7xMhaYqfzuJqOqhRrcFvfD7JMuPj6SLmPreh5+6eAuv36NFAU+Mw==} engines: {node: '>= 4.0.0'} dependencies: fs-monkey: 1.0.3 @@ -16398,13 +16075,13 @@ packages: dev: false /memoizerific/1.11.3: - resolution: {integrity: sha1-fIekZGREwy11Q4VwkF8tvRsagFo=} + resolution: {integrity: sha512-/EuHYwAPdLtXwAwSZkh/Gutery6pD2KYd44oQLhAvQp/50mpyduZh8Q7PYHXTCJ+wuXxt7oij2LXyIJOOYFPog==} dependencies: map-or-similar: 1.5.0 dev: true /memory-fs/0.4.1: - resolution: {integrity: sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=} + resolution: {integrity: sha512-cda4JKCxReDXFXRqOHPQscuIYg1PvxbE2S2GP45rnwfEK+vZaXC8C1OFvdHIbgw0DLzowXGVoxLaAmlgRy14GQ==} dependencies: errno: 0.1.8 readable-stream: 2.3.7 @@ -16418,6 +16095,23 @@ packages: readable-stream: 2.3.7 dev: true + /meow/3.7.0: + resolution: {integrity: sha512-TNdwZs0skRlpPpCUK25StC4VH+tP5GgeY1HQOOGP+lQ2xtdkN2VtT/5tiX9k3IWpkBPV9b3LsAWXn4GGi/PrSA==} + engines: {node: '>=0.10.0'} + dependencies: + camelcase-keys: 2.1.0 + decamelize: 1.2.0 + loud-rejection: 1.6.0 + map-obj: 1.0.1 + minimist: 1.2.6 + normalize-package-data: 2.5.0 + object-assign: 4.1.1 + read-pkg-up: 1.0.1 + redent: 1.0.0 + trim-newlines: 1.0.0 + dev: true + optional: true + /meow/6.1.1: resolution: {integrity: sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg==} engines: {node: '>=8'} @@ -16454,7 +16148,7 @@ packages: dev: true /merge-descriptors/1.0.1: - resolution: {integrity: sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=} + resolution: {integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==} /merge-stream/2.0.0: resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} @@ -16466,7 +16160,7 @@ packages: dev: true /methods/1.1.2: - resolution: {integrity: sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=} + resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==} engines: {node: '>= 0.6'} /microevent.ts/0.1.1: @@ -16531,11 +16225,6 @@ packages: hasBin: true dev: true - /mimic-fn/1.2.0: - resolution: {integrity: sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==} - engines: {node: '>=4'} - dev: false - /mimic-fn/2.1.0: resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} engines: {node: '>=6'} @@ -16545,7 +16234,7 @@ packages: engines: {node: '>=4'} /min-document/2.19.0: - resolution: {integrity: sha1-e9KC4/WELtKVu3SM3Z8f+iyCRoU=} + resolution: {integrity: sha512-9Wy1B3m3f66bPPmU5hdA4DR4PB2OfDU/+GS3yAB7IQozE3tqXaVv2zOjgla7MEGSRv95+ILmOuvhLkOK6wJtCQ==} dependencies: dom-walk: 0.1.2 dev: true @@ -16555,28 +16244,16 @@ packages: engines: {node: '>=4'} dev: true - /mini-create-react-context/0.4.1_prop-types@15.8.1+react@17.0.2: - resolution: {integrity: sha512-YWCYEmd5CQeHGSAKrYvXgmzzkrvssZcuuQDDeqkT+PziKGMgE+0MCCtcKbROzocGBG1meBLl2FotlRwf4gAzbQ==} - peerDependencies: - prop-types: ^15.0.0 - react: ^0.14.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - dependencies: - '@babel/runtime': 7.17.9 - prop-types: 15.8.1 - react: 17.0.2 - tiny-warning: 1.0.3 - dev: false - /minimalistic-assert/1.0.1: resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==} dev: true /minimalistic-crypto-utils/1.0.1: - resolution: {integrity: sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=} + resolution: {integrity: sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==} dev: true - /minimatch/3.0.4: - resolution: {integrity: sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==} + /minimatch/3.0.5: + resolution: {integrity: sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==} dependencies: brace-expansion: 1.1.11 dev: true @@ -16595,10 +16272,6 @@ packages: kind-of: 6.0.3 dev: true - /minimist/1.2.0: - resolution: {integrity: sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=} - dev: false - /minimist/1.2.6: resolution: {integrity: sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==} @@ -16707,7 +16380,7 @@ packages: dev: false /move-concurrently/1.0.1: - resolution: {integrity: sha1-viwAX9oy4LKa8fBdfEszIUxwH5I=} + resolution: {integrity: sha512-hdrFxZOycD/g6A6SoI2bB5NA/5NEqD0569+S47WZhPvm46sD50ZHdYaFmnua5lndde9rCHGjmfK7Z8BuCt/PcQ==} dependencies: aproba: 1.2.0 copy-concurrently: 1.0.5 @@ -16718,7 +16391,7 @@ packages: dev: true /ms/2.0.0: - resolution: {integrity: sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=} + resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} /ms/2.1.1: resolution: {integrity: sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==} @@ -16730,54 +16403,95 @@ packages: /ms/2.1.3: resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} - /msw/0.39.2: - resolution: {integrity: sha512-ju/HpqQpE4/qCxZ23t5Gaau0KREn4QuFzdG28nP1EpidMrymMJuIvNd32+2uGTGG031PMwrC41YW7vCxHOwyHA==} + /msw/0.42.3_typescript@4.7.4: + resolution: {integrity: sha512-zrKBIGCDsNUCZLd3DLSeUtRruZ0riwJgORg9/bSDw3D0PTI8XUGAK3nC0LJA9g0rChGuKaWK/SwObA8wpFrz4g==} engines: {node: '>=14'} hasBin: true requiresBuild: true + peerDependencies: + typescript: '>= 4.2.x <= 4.7.x' + peerDependenciesMeta: + typescript: + optional: true dependencies: - '@mswjs/cookies': 0.2.0 - '@mswjs/interceptors': 0.15.1 + '@mswjs/cookies': 0.2.1 + '@mswjs/interceptors': 0.16.6 '@open-draft/until': 1.0.3 '@types/cookie': 0.4.1 '@types/js-levenshtein': 1.1.1 chalk: 4.1.1 chokidar: 3.5.3 cookie: 0.4.2 - graphql: 16.4.0 + graphql: 16.5.0 headers-polyfill: 3.0.7 inquirer: 8.2.4 is-node-process: 1.0.1 js-levenshtein: 1.1.6 node-fetch: 2.6.7 + outvariant: 1.3.0 path-to-regexp: 6.2.1 statuses: 2.0.1 strict-event-emitter: 0.2.4 type-fest: 1.4.0 - yargs: 17.4.1 + typescript: 4.7.4 + yargs: 17.5.1 transitivePeerDependencies: - encoding - supports-color dev: false - /multicast-dns/7.2.4: - resolution: {integrity: sha512-XkCYOU+rr2Ft3LI6w4ye51M3VK31qJXFIxu0XLw169PtKG0Zx47OrXeVW/GCYOfpC9s1yyyf1S+L8/4LY0J9Zw==} + /msw/0.43.0_typescript@4.7.4: + resolution: {integrity: sha512-XJylZP0qW3D5WUGWh9FFefJEl3MGG4y1I+/8a833d0eedm6B+GaPm6wPVZNcnlS2YVTagvEgShVJ7ZtY66tTRQ==} + engines: {node: '>=14'} + hasBin: true + requiresBuild: true + peerDependencies: + typescript: '>= 4.2.x <= 4.7.x' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@mswjs/cookies': 0.2.1 + '@mswjs/interceptors': 0.16.6 + '@open-draft/until': 1.0.3 + '@types/cookie': 0.4.1 + '@types/js-levenshtein': 1.1.1 + chalk: 4.1.1 + chokidar: 3.5.3 + cookie: 0.4.2 + graphql: 16.5.0 + headers-polyfill: 3.0.7 + inquirer: 8.2.4 + is-node-process: 1.0.1 + js-levenshtein: 1.1.6 + node-fetch: 2.6.7 + outvariant: 1.3.0 + path-to-regexp: 6.2.1 + statuses: 2.0.1 + strict-event-emitter: 0.2.4 + type-fest: 1.4.0 + typescript: 4.7.4 + yargs: 17.5.1 + transitivePeerDependencies: + - encoding + - supports-color + dev: false + optional: true + + /multicast-dns/7.2.5: + resolution: {integrity: sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==} hasBin: true dependencies: - dns-packet: 5.3.1 + dns-packet: 5.4.0 thunky: 1.1.0 dev: true - /mute-stream/0.0.7: - resolution: {integrity: sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s=} - dev: false - /mute-stream/0.0.8: resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==} dev: false - /nan/2.15.0: - resolution: {integrity: sha512-8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ==} + /nan/2.16.0: + resolution: {integrity: sha512-UdAqHyFngu7TfQKsCBgAA6pWDkT8MAO7d0jyOecVhN5354xbLqdn8mV9Tat9gepAupm0bt2DbeaSC8vS52MuFA==} requiresBuild: true dev: true optional: true @@ -16807,18 +16521,11 @@ packages: dev: true /natural-compare/1.4.0: - resolution: {integrity: sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=} + resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} dev: true - /ncom/1.0.3: - resolution: {integrity: sha512-PfA7rjxxMAItsGo2qXrGn2GvKJIwN0bUTa3GehsblrKRVdCCEwB0QG2ymM6/DppQGUt7YqbfxQB7LaMWMiHHWQ==} - engines: {node: '>= 0.8.0'} - dependencies: - sc-formatter: 3.0.2 - dev: false - /ncp/2.0.0: - resolution: {integrity: sha1-GVoh1sRuNh0vsSgbo4uR6d9727M=} + resolution: {integrity: sha512-zIdGUrPRFTUELUvr3Gmc7KZ2Sw/h1PiVM0Af/oHB6zgnV1ikqSfRk+TOufi79aHYCW3NiOXmr1BP5nWbzojLaA==} hasBin: true dev: true @@ -16864,7 +16571,7 @@ packages: dev: false /node-dir/0.1.17: - resolution: {integrity: sha1-X1Zl2TNRM1yqvvjxxVRRbPXx5OU=} + resolution: {integrity: sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==} engines: {node: '>= 0.10.5'} dependencies: minimatch: 3.1.2 @@ -16898,7 +16605,7 @@ packages: requiresBuild: true dependencies: env-paths: 2.2.1 - glob: 7.2.0 + glob: 7.2.3 graceful-fs: 4.2.10 make-fetch-happen: 9.1.0 nopt: 5.0.0 @@ -16914,7 +16621,7 @@ packages: optional: true /node-int64/0.4.0: - resolution: {integrity: sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=} + resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==} dev: true /node-libs-browser/2.2.1: @@ -16949,9 +16656,8 @@ packages: resolution: {integrity: sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ==} dev: true - /node-releases/2.0.4: - resolution: {integrity: sha512-gbMzqQtTtDz/00jQzZ21PQzdI9PyLYqUSvD0p3naOhX4odFji0ZxYdnVwPTxmSwkmxhcFImpozceidSG+AgoPQ==} - dev: true + /node-releases/2.0.5: + resolution: {integrity: sha512-U9h1NLROZTq9uE1SNffn6WuPDg8icmi3ns4rEl/oTfIle4iLjTliCzgTsbaIFMq/Xn078/lfY/BL0GWZ+psK4Q==} /nopt/5.0.0: resolution: {integrity: sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==} @@ -16965,7 +16671,7 @@ packages: resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} dependencies: hosted-git-info: 2.8.9 - resolve: 1.22.0 + resolve: 1.22.1 semver: 5.7.1 validate-npm-package-license: 3.0.4 dev: true @@ -16981,7 +16687,7 @@ packages: dev: true /normalize-path/2.1.1: - resolution: {integrity: sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=} + resolution: {integrity: sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==} engines: {node: '>=0.10.0'} dependencies: remove-trailing-separator: 1.1.0 @@ -16992,14 +16698,10 @@ packages: engines: {node: '>=0.10.0'} /normalize-range/0.1.2: - resolution: {integrity: sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=} + resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} engines: {node: '>=0.10.0'} dev: true - /normalize-selector/0.2.0: - resolution: {integrity: sha1-0LFF62kRicY6eNIB3E/bEpPvDAM=} - dev: true - /normalize-url/4.5.1: resolution: {integrity: sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==} engines: {node: '>=8'} @@ -17013,7 +16715,7 @@ packages: optional: true /npm-run-path/2.0.2: - resolution: {integrity: sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=} + resolution: {integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==} engines: {node: '>=4'} dependencies: path-key: 2.0.1 @@ -17045,30 +16747,36 @@ packages: dev: false optional: true - /nth-check/2.0.1: - resolution: {integrity: sha512-it1vE95zF6dTT9lBsYbxvqh0Soy4SPowchj0UBGj/V6cTPnXXtQOPUbhZ6CmGzAD/rW22LQK6E96pcdJXk4A4w==} + /nth-check/2.1.1: + resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} dependencies: boolbase: 1.0.0 dev: true /num2fraction/1.2.2: - resolution: {integrity: sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=} + resolution: {integrity: sha512-Y1wZESM7VUThYY+4W+X4ySH2maqcA+p7UR+w8VWNWVAd6lwuXXWz/w/Cz43J/dI2I+PS6wD5N+bJUF+gjWvIqg==} dev: true /nwsapi/2.2.0: resolution: {integrity: sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==} dev: true - /nx/14.1.4_typescript@4.6.4: - resolution: {integrity: sha512-cYULObHKIbDbvxUnxn0tVbBlM8Vzg2u9sZYpmL6TEVF/Xbj3PQi8oyazc2/dU5Qw319lqMJcZonG2ihv9yEGKg==} + /nx/14.3.6: + resolution: {integrity: sha512-jBgqXEkRalo8PwXJzO4HVNN3P5pqyL5VawyNd34qPl+4t2XlDRqoK0J74i8liPGdKPBB1HjM2K1u+QNF2ROvQA==} hasBin: true requiresBuild: true + peerDependencies: + '@swc-node/register': ^1.4.2 + '@swc/core': ^1.2.173 + peerDependenciesMeta: + '@swc-node/register': + optional: true + '@swc/core': + optional: true dependencies: - '@nrwl/cli': 14.1.4_typescript@4.6.4 - '@nrwl/tao': 14.1.4_typescript@4.6.4 + '@nrwl/cli': 14.3.6 + '@nrwl/tao': 14.3.6 '@parcel/watcher': 2.0.4 - '@swc-node/register': 1.5.1_typescript@4.6.4 - '@swc/core': 1.2.179 chalk: 4.1.0 chokidar: 3.5.3 cli-cursor: 3.1.0 @@ -17079,15 +16787,14 @@ packages: fast-glob: 3.2.7 figures: 3.2.0 flat: 5.0.2 - fs-extra: 9.1.0 + fs-extra: 10.1.0 glob: 7.1.4 ignore: 5.2.0 + js-yaml: 4.1.0 jsonc-parser: 3.0.0 - minimatch: 3.0.4 + minimatch: 3.0.5 npm-run-path: 4.0.1 open: 8.4.0 - rxjs: 6.6.7 - rxjs-for-await: 0.0.2_rxjs@6.6.7 semver: 7.3.4 string-width: 4.2.3 tar-stream: 2.2.0 @@ -17095,19 +16802,16 @@ packages: tsconfig-paths: 3.14.1 tslib: 2.4.0 v8-compile-cache: 2.3.0 - yargs: 17.4.1 + yargs: 17.5.1 yargs-parser: 21.0.1 - transitivePeerDependencies: - - supports-color - - typescript dev: true /object-assign/4.1.1: - resolution: {integrity: sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=} + resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} engines: {node: '>=0.10.0'} /object-copy/0.1.0: - resolution: {integrity: sha1-fn2Fi3gb18mRpBupde04EnVOmYw=} + resolution: {integrity: sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==} engines: {node: '>=0.10.0'} dependencies: copy-descriptor: 0.1.1 @@ -17115,8 +16819,8 @@ packages: kind-of: 3.2.2 dev: true - /object-inspect/1.12.0: - resolution: {integrity: sha512-Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g==} + /object-inspect/1.12.2: + resolution: {integrity: sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==} /object-keys/1.1.1: resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} @@ -17128,7 +16832,7 @@ packages: dev: false /object-visit/1.0.1: - resolution: {integrity: sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=} + resolution: {integrity: sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==} engines: {node: '>=0.10.0'} dependencies: isobject: 3.0.1 @@ -17150,7 +16854,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.0 + es-abstract: 1.20.1 dev: true /object.fromentries/2.0.5: @@ -17159,27 +16863,28 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.0 + es-abstract: 1.20.1 dev: true - /object.getownpropertydescriptors/2.1.3: - resolution: {integrity: sha512-VdDoCwvJI4QdC6ndjpqFmoL3/+HxffFBbcJzKi5hwLLqqx3mdbedRpfZDdK0SrOSauj8X4GzBvnDZl4vTN7dOw==} + /object.getownpropertydescriptors/2.1.4: + resolution: {integrity: sha512-sccv3L/pMModT6dJAYF3fzGMVcb38ysQ0tEE6ixv2yXJDtEIPph268OlAdJj5/qZMZDq2g/jqvwppt36uS/uQQ==} engines: {node: '>= 0.8'} dependencies: + array.prototype.reduce: 1.0.4 call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.0 + es-abstract: 1.20.1 dev: true /object.hasown/1.1.1: resolution: {integrity: sha512-LYLe4tivNQzq4JdaWW6WO3HMZZJWzkkH8fnI6EebWl0VZth2wL2Lovm74ep2/gZzlaTdV62JZHEqHQ2yVn8Q/A==} dependencies: define-properties: 1.1.4 - es-abstract: 1.20.0 + es-abstract: 1.20.1 dev: true /object.pick/1.3.0: - resolution: {integrity: sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=} + resolution: {integrity: sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==} engines: {node: '>=0.10.0'} dependencies: isobject: 3.0.1 @@ -17191,7 +16896,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.0 + es-abstract: 1.20.1 dev: true /objectorarray/1.0.5: @@ -17203,7 +16908,7 @@ packages: dev: true /on-finished/2.3.0: - resolution: {integrity: sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=} + resolution: {integrity: sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==} engines: {node: '>= 0.8'} dependencies: ee-first: 1.1.1 @@ -17220,17 +16925,10 @@ packages: engines: {node: '>= 0.8'} /once/1.4.0: - resolution: {integrity: sha1-WDsap3WWHUsROsF9nFC6753Xa9E=} + resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} dependencies: wrappy: 1.0.2 - /onetime/2.0.1: - resolution: {integrity: sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=} - engines: {node: '>=4'} - dependencies: - mimic-fn: 1.2.0 - dev: false - /onetime/5.1.2: resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} engines: {node: '>=6'} @@ -17282,7 +16980,7 @@ packages: engines: {node: '>=10'} dependencies: bl: 4.1.0 - chalk: 4.1.1 + chalk: 4.1.2 cli-cursor: 3.1.0 cli-spinners: 2.6.1 is-interactive: 1.0.0 @@ -17293,11 +16991,17 @@ packages: dev: false /os-browserify/0.3.0: - resolution: {integrity: sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=} + resolution: {integrity: sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==} dev: true + /os-homedir/1.0.2: + resolution: {integrity: sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==} + engines: {node: '>=0.10.0'} + dev: true + optional: true + /os-tmpdir/1.0.2: - resolution: {integrity: sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=} + resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==} engines: {node: '>=0.10.0'} /outdent/0.5.0: @@ -17308,10 +17012,6 @@ packages: resolution: {integrity: sha512-yeWM9k6UPfG/nzxdaPlJkB2p08hCg4xP6Lx99F+vP8YF7xyZVfTmJjrrNalkmzudD4WFvNLVudQikqUmF8zhVQ==} dev: false - /overlayscrollbars/1.13.1: - resolution: {integrity: sha512-gIQfzgGgu1wy80EB4/6DaJGHMEGmizq27xHIESrzXq0Y/J0Ay1P3DWk6tuVmEPIZH15zaBlxeEJOqdJKmowHCQ==} - dev: true - /p-all/2.1.0: resolution: {integrity: sha512-HbZxz5FONzz/z2gJfk6bFca0BCiSRF8jU3yCsWOen/vR6lZjfPOu/e7L3uFzTW1i0H8TlC3vqQstEJPQL4/uLA==} engines: {node: '>=6'} @@ -17338,7 +17038,7 @@ packages: dev: true /p-finally/1.0.0: - resolution: {integrity: sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=} + resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==} engines: {node: '>=4'} dev: true @@ -17364,7 +17064,7 @@ packages: dev: true /p-locate/2.0.0: - resolution: {integrity: sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=} + resolution: {integrity: sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==} engines: {node: '>=4'} dependencies: p-limit: 1.3.0 @@ -17425,7 +17125,7 @@ packages: dev: true /p-try/1.0.0: - resolution: {integrity: sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=} + resolution: {integrity: sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==} engines: {node: '>=4'} dev: true @@ -17480,6 +17180,14 @@ packages: is-hexadecimal: 1.0.4 dev: true + /parse-json/2.2.0: + resolution: {integrity: sha512-QR/GGaKCkhwk1ePQNYDRKYZ3mwU9ypsKhB0XyFnLQdomyEqk3e8wpW3V5Jp88zbxK4n5ST1nqo+g9juTpownhQ==} + engines: {node: '>=0.10.0'} + dependencies: + error-ex: 1.3.2 + dev: true + optional: true + /parse-json/5.2.0: resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} engines: {node: '>=8'} @@ -17490,7 +17198,7 @@ packages: lines-and-columns: 1.2.4 /parse-key/0.2.1: - resolution: {integrity: sha1-e892WVU242B1Zkvk1ofkvdkQII8=} + resolution: {integrity: sha512-ENta7tqTYc2A15JBG2z2b6bNjaqrTnBEgvycQBwnO6Tmfvk3Dix9IhIpuqI4VdvySd4iDoxeWLUjwDODrQ3S7w==} dev: false /parse5/6.0.1: @@ -17509,7 +17217,7 @@ packages: dev: true /pascalcase/0.1.1: - resolution: {integrity: sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=} + resolution: {integrity: sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==} engines: {node: '>=0.10.0'} dev: true @@ -17521,11 +17229,19 @@ packages: resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==} /path-dirname/1.0.2: - resolution: {integrity: sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=} + resolution: {integrity: sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==} dev: true + /path-exists/2.1.0: + resolution: {integrity: sha512-yTltuKuhtNeFJKa1PiRzfLAU5182q1y4Eb4XCJ3PBqyzEDkAZRzBrKKBct682ls9reBVHf9udYLN5Nd+K1B9BQ==} + engines: {node: '>=0.10.0'} + dependencies: + pinkie-promise: 2.0.1 + dev: true + optional: true + /path-exists/3.0.0: - resolution: {integrity: sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=} + resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==} engines: {node: '>=4'} dev: true @@ -17535,17 +17251,11 @@ packages: dev: true /path-is-absolute/1.0.1: - resolution: {integrity: sha1-F0uSaHNVNP+8es5r9TpanhtcX18=} + resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} engines: {node: '>=0.10.0'} - /path-is-network-drive/1.0.13: - resolution: {integrity: sha512-Hg74mRN6mmXV+gTm3INjFK40ncAmC/Lo4qoQaSZ+GT3hZzlKdWQSqAjqyPeW0SvObP2W073WyYEBWY9d3wOm3A==} - dependencies: - tslib: 2.4.0 - dev: true - /path-key/2.0.1: - resolution: {integrity: sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=} + resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==} engines: {node: '>=4'} dev: true @@ -17556,24 +17266,29 @@ packages: /path-parse/1.0.7: resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} - /path-strip-sep/1.0.10: - resolution: {integrity: sha512-JpCy+8LAJQQTO1bQsb/84s1g+/Stm3h39aOpPRBQ/paMUGVPPZChLTOTKHoaCkc/6sKuF7yVsnq5Pe1S6xQGcA==} - dependencies: - tslib: 2.4.0 - dev: true - /path-to-regexp/0.1.7: - resolution: {integrity: sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=} + resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==} /path-to-regexp/1.8.0: resolution: {integrity: sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==} dependencies: isarray: 0.0.1 + dev: true /path-to-regexp/6.2.1: resolution: {integrity: sha512-JLyh7xT1kizaEvcaXOQwOc2/Yhw6KZOvPf1S8401UyLk86CU79LN3vl7ztXGm/pZ+YjoyAJ4rxmHwbkBXJX+yw==} dev: false + /path-type/1.1.0: + resolution: {integrity: sha512-S4eENJz1pkiQn9Znv33Q+deTOKmbl+jj1Fl+qiP/vYezj+S8x+J3Uo0ISrx/QoEvIlOaDWJhPaRd1flJ9HXZqg==} + engines: {node: '>=0.10.0'} + dependencies: + graceful-fs: 4.2.10 + pify: 2.3.0 + pinkie-promise: 2.0.1 + dev: true + optional: true + /path-type/3.0.0: resolution: {integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==} engines: {node: '>=4'} @@ -17597,7 +17312,7 @@ packages: dev: true /pend/1.2.0: - resolution: {integrity: sha1-elfrVQpng/kRUzH89GY9XI4AelA=} + resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==} /pg-connection-string/2.5.0: resolution: {integrity: sha512-r5o/V/ORTA6TmUnyWZR9nCj1klXCO2CEKNRlVuJptZe85QuhFayC7WeMic7ndayT5IRIR0S0xFxFi2ousartlQ==} @@ -17609,14 +17324,19 @@ packages: /picocolors/1.0.0: resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} - dev: true /picomatch/2.3.1: resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} engines: {node: '>=8.6'} + /pify/2.3.0: + resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} + engines: {node: '>=0.10.0'} + dev: true + optional: true + /pify/3.0.0: - resolution: {integrity: sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=} + resolution: {integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==} engines: {node: '>=4'} /pify/4.0.1: @@ -17624,6 +17344,20 @@ packages: engines: {node: '>=6'} dev: true + /pinkie-promise/2.0.1: + resolution: {integrity: sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==} + engines: {node: '>=0.10.0'} + dependencies: + pinkie: 2.0.4 + dev: true + optional: true + + /pinkie/2.0.4: + resolution: {integrity: sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==} + engines: {node: '>=0.10.0'} + dev: true + optional: true + /pirates/4.0.5: resolution: {integrity: sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==} engines: {node: '>= 6'} @@ -17655,11 +17389,11 @@ packages: engines: {node: '>=4'} dev: false - /pnp-webpack-plugin/1.6.4_typescript@4.6.4: + /pnp-webpack-plugin/1.6.4_typescript@4.7.4: resolution: {integrity: sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg==} engines: {node: '>=6'} dependencies: - ts-pnp: 1.2.0_typescript@4.6.4 + ts-pnp: 1.2.0_typescript@4.7.4 transitivePeerDependencies: - typescript dev: true @@ -17668,7 +17402,7 @@ packages: resolution: {integrity: sha512-Sz2Lkdxz6F2Pgnpi9U5Ng/WdWAUZxmHrNPoVlm3aAemxoy2Qy7LGjQg4uf8qKelDAUW94F4np3iH2YPf2qefcQ==} engines: {node: '>=10'} dependencies: - '@babel/runtime': 7.17.9 + '@babel/runtime': 7.18.3 dev: true /popmotion/11.0.3: @@ -17681,7 +17415,7 @@ packages: dev: false /posix-character-classes/0.1.1: - resolution: {integrity: sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=} + resolution: {integrity: sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==} engines: {node: '>=0.10.0'} dev: true @@ -17691,7 +17425,7 @@ packages: postcss: 7.0.39 dev: true - /postcss-loader/4.3.0_postcss@7.0.39+webpack@4.46.0: + /postcss-loader/4.3.0_gzaxsinx64nntyd3vmdqwl7coe: resolution: {integrity: sha512-M/dSoIiNDOo8Rk0mUqoj4kpGq91gcxCfb9PoyZVdZ76/AuhxylHDYZblNE8o+EQ9AMSASeMFEKxZf5aU6wlx1Q==} engines: {node: '>= 10.13.0'} peerDependencies: @@ -17708,7 +17442,7 @@ packages: dev: true /postcss-media-query-parser/0.2.3: - resolution: {integrity: sha1-J7Ocb02U+Bsac7j3Y1HGCeXO8kQ=} + resolution: {integrity: sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig==} dev: true /postcss-modules-extract-imports/2.0.0: @@ -17718,13 +17452,13 @@ packages: postcss: 7.0.39 dev: true - /postcss-modules-extract-imports/3.0.0_postcss@8.4.13: + /postcss-modules-extract-imports/3.0.0_postcss@8.4.14: resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.13 + postcss: 8.4.14 dev: true /postcss-modules-local-by-default/3.0.3: @@ -17737,14 +17471,14 @@ packages: postcss-value-parser: 4.2.0 dev: true - /postcss-modules-local-by-default/4.0.0_postcss@8.4.13: + /postcss-modules-local-by-default/4.0.0_postcss@8.4.14: resolution: {integrity: sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - icss-utils: 5.1.0_postcss@8.4.13 - postcss: 8.4.13 + icss-utils: 5.1.0_postcss@8.4.14 + postcss: 8.4.14 postcss-selector-parser: 6.0.10 postcss-value-parser: 4.2.0 dev: true @@ -17757,13 +17491,13 @@ packages: postcss-selector-parser: 6.0.10 dev: true - /postcss-modules-scope/3.0.0_postcss@8.4.13: + /postcss-modules-scope/3.0.0_postcss@8.4.14: resolution: {integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.13 + postcss: 8.4.14 postcss-selector-parser: 6.0.10 dev: true @@ -17774,27 +17508,27 @@ packages: postcss: 7.0.39 dev: true - /postcss-modules-values/4.0.0_postcss@8.4.13: + /postcss-modules-values/4.0.0_postcss@8.4.14: resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - icss-utils: 5.1.0_postcss@8.4.13 - postcss: 8.4.13 + icss-utils: 5.1.0_postcss@8.4.14 + postcss: 8.4.14 dev: true /postcss-resolve-nested-selector/0.1.1: - resolution: {integrity: sha1-Kcy8fDfe36wwTp//C/FZaz9qDk4=} + resolution: {integrity: sha512-HvExULSwLqHLgUy1rl3ANIqCsvMS0WHss2UOsXhXnQaZ9VCc2oBvIpXrl00IUFT5ZDITME0o6oiXeiHr2SAIfw==} dev: true - /postcss-safe-parser/6.0.0_postcss@8.4.13: + /postcss-safe-parser/6.0.0_postcss@8.4.14: resolution: {integrity: sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==} engines: {node: '>=12.0'} peerDependencies: postcss: ^8.3.3 dependencies: - postcss: 8.4.13 + postcss: 8.4.14 dev: true /postcss-selector-parser/6.0.10: @@ -17816,8 +17550,8 @@ packages: source-map: 0.6.1 dev: true - /postcss/8.4.13: - resolution: {integrity: sha512-jtL6eTBrza5MPzy8oJLFuUscHDXTV5KcLlqAWHl5q5WYRfnNRGSmOZmOZ1T6Gy7A99mOZfqungmZMpMmCVJ8ZA==} + /postcss/8.4.14: + resolution: {integrity: sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==} engines: {node: ^10 || ^12 || >=14} dependencies: nanoid: 3.3.4 @@ -17836,7 +17570,7 @@ packages: dev: true /prelude-ls/1.1.2: - resolution: {integrity: sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=} + resolution: {integrity: sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==} engines: {node: '>= 0.8.0'} dev: true @@ -17846,7 +17580,7 @@ packages: dev: true /prepend-http/2.0.0: - resolution: {integrity: sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=} + resolution: {integrity: sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==} engines: {node: '>=4'} /prettier/1.19.1: @@ -17861,8 +17595,8 @@ packages: hasBin: true dev: true - /prettier/2.6.2: - resolution: {integrity: sha512-PkUpF+qoXTqhOeWL9fu7As8LXsIUZ1WYaJiY/a7McAQzxjk82OF0tibkFXVCDImZtWxbvojFjerkiLb0/q8mew==} + /prettier/2.7.1: + resolution: {integrity: sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g==} engines: {node: '>=10.13.0'} hasBin: true dev: true @@ -17891,7 +17625,7 @@ packages: dev: true /pretty-hrtime/1.0.3: - resolution: {integrity: sha1-t+PqQkNaTJsnWdmeDyAesZWALuE=} + resolution: {integrity: sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==} engines: {node: '>= 0.8'} dev: true @@ -17909,7 +17643,7 @@ packages: resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} /process/0.11.10: - resolution: {integrity: sha1-czIwDoQBYb2j5podHZGn1LwW8YI=} + resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==} engines: {node: '>= 0.6.0'} dev: true @@ -17918,7 +17652,7 @@ packages: engines: {node: '>=0.4.0'} /promise-inflight/1.0.1: - resolution: {integrity: sha1-mEcocL8igTL8vdhoEputEsPAKeM=} + resolution: {integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==} peerDependencies: bluebird: '*' peerDependenciesMeta: @@ -17926,7 +17660,7 @@ packages: optional: true /promise-inflight/1.0.1_bluebird@3.7.2: - resolution: {integrity: sha1-mEcocL8igTL8vdhoEputEsPAKeM=} + resolution: {integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==} peerDependencies: bluebird: '*' peerDependenciesMeta: @@ -17952,8 +17686,8 @@ packages: array.prototype.map: 1.0.4 call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.0 - get-intrinsic: 1.1.1 + es-abstract: 1.20.1 + get-intrinsic: 1.1.2 iterate-value: 1.0.2 dev: true @@ -17963,7 +17697,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.0 + es-abstract: 1.20.1 dev: true /promise/7.3.1: @@ -17980,12 +17714,12 @@ packages: sisteransi: 1.0.5 dev: true - /prop-types-extra/1.1.1_react@17.0.2: + /prop-types-extra/1.1.1_react@18.2.0: resolution: {integrity: sha512-59+AHNnHYCdiC+vMwY52WmvP5dM3QLeoumYuEyceQDi9aEhtwN9zIQ2ZNo25sMyXnbh32h+P1ezDsUpUH3JAew==} peerDependencies: - react: '>=0.14.0' + react: '>=0.14.0 || 18' dependencies: - react: 17.0.2 + react: 18.2.0 react-is: 16.13.1 warning: 4.0.3 dev: false @@ -18004,7 +17738,7 @@ packages: dev: true /proto-list/1.2.4: - resolution: {integrity: sha1-IS1b/hMYMGpCD2QCuOJv85ZHqEk=} + resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==} optional: true /proxy-addr/2.0.7: @@ -18019,11 +17753,11 @@ packages: dev: true /prr/1.0.1: - resolution: {integrity: sha1-0/wRS6BplaRexok/SEzrHXj19HY=} + resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==} dev: true /pseudomap/1.0.2: - resolution: {integrity: sha1-8FKijacOYYkX7wqKw0wa5aaChrM=} + resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==} dev: true /psl/1.8.0: @@ -18074,7 +17808,7 @@ packages: jstransformer: 1.0.0 pug-error: 1.3.3 pug-walk: 1.1.8 - resolve: 1.22.0 + resolve: 1.22.1 uglify-js: 2.8.29 dev: true @@ -18163,11 +17897,11 @@ packages: dev: true /punycode/1.3.2: - resolution: {integrity: sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=} + resolution: {integrity: sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw==} dev: true /punycode/1.4.1: - resolution: {integrity: sha1-wNWmOycYgArY4esPpSachN1BhF4=} + resolution: {integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==} dev: true /punycode/2.1.1: @@ -18180,20 +17914,28 @@ packages: dependencies: side-channel: 1.0.4 + /qs/6.10.5: + resolution: {integrity: sha512-O5RlPh0VFtR78y79rgcgKK4wbAI0C5zGVLztOIdpWX6ep368q5Hv6XRxDvXuZ9q3C6v+e3n8UfZZJw7IIG27eQ==} + engines: {node: '>=0.6'} + dependencies: + side-channel: 1.0.4 + dev: true + /qs/6.9.3: resolution: {integrity: sha512-EbZYNarm6138UKKq46tdx08Yo/q9ZhFoAXAI1meAFd2GtbRDhbZY2WQSICskT0c5q99aFzLG1D4nvTk9tqfXIw==} engines: {node: '>=0.6'} dev: true /querystring-es3/0.2.1: - resolution: {integrity: sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=} + resolution: {integrity: sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA==} engines: {node: '>=0.4.x'} dev: true /querystring/0.2.0: - resolution: {integrity: sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=} + resolution: {integrity: sha512-X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g==} engines: {node: '>=0.4.x'} deprecated: The querystring API is considered Legacy. new code should use the URLSearchParams API instead. + dev: true /querystring/0.2.1: resolution: {integrity: sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg==} @@ -18209,13 +17951,8 @@ packages: engines: {node: '>=8'} dev: true - /ramda/0.21.0: - resolution: {integrity: sha1-oAGr7bP/YQd9T/HVd9RN536NCjU=} - dev: true - /ramda/0.28.0: resolution: {integrity: sha512-9QnLuG/kPVgWvMQ4aODhsBUFKOUmnbUnsSXACv+NCQZcHbeb+v8Lodp8OVxtRULN1/xOyYLLaL6npE6dMq5QTA==} - dev: false /randombytes/2.1.0: resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==} @@ -18254,7 +17991,7 @@ packages: webpack: 4.46.0 dev: true - /raw-loader/4.0.2_webpack@5.72.0: + /raw-loader/4.0.2_webpack@5.73.0: resolution: {integrity: sha512-ZnScIV3ag9A4wPX/ZayxL/jZH+euYb6FcUinPcgiQW0+UBtEv0O6Q3lGd3cqJ+GHH+rksEv3Pj99oxJ3u3VIKA==} engines: {node: '>= 10.13.0'} peerDependencies: @@ -18262,75 +17999,65 @@ packages: dependencies: loader-utils: 2.0.2 schema-utils: 3.1.1 - webpack: 5.72.0_webpack-cli@4.9.2 + webpack: 5.73.0_webpack-cli@4.10.0 dev: true - /react-bootstrap/2.3.1_569957a51d469c962fcce166a59b9f78: - resolution: {integrity: sha512-+k68LdaSS62Zc/1gr18NC9QpDk/wwhNk+90QgcTMYSA8BzlXC1G2ogWWrz2LFuP2FlmCtVjcr/UXw3mpdxVmWw==} + /react-bootstrap/2.4.0_twyhzqqpkwvvgrmyeapdo6i4my: + resolution: {integrity: sha512-dn599jNK1Fg5GGjJH+lQQDwELVzigh/MdusKpB/0el+sCjsO5MZDH5gRMmBjRhC+vb7VlCDr6OXffPIDSkNMLw==} peerDependencies: '@types/react': '>=16.14.8' - react: '>=16.14.0' - react-dom: '>=16.14.0' + react: '>=16.14.0 || 18' + react-dom: '>=16.14.0 || 18' peerDependenciesMeta: '@types/react': optional: true dependencies: - '@babel/runtime': 7.17.9 - '@restart/hooks': 0.4.7_react@17.0.2 - '@restart/ui': 1.2.0_react-dom@17.0.2+react@17.0.2 - '@types/react': 17.0.45 + '@babel/runtime': 7.18.3 + '@restart/hooks': 0.4.7_react@18.2.0 + '@restart/ui': 1.2.0_biqbaboplfbrettd7655fr4n2y + '@types/react': 18.0.14 '@types/react-transition-group': 4.4.4 classnames: 2.3.1 dom-helpers: 5.2.1 invariant: 2.2.4 prop-types: 15.8.1 - prop-types-extra: 1.1.1_react@17.0.2 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - react-transition-group: 4.4.2_react-dom@17.0.2+react@17.0.2 - uncontrollable: 7.2.1_react@17.0.2 + prop-types-extra: 1.1.1_react@18.2.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + react-transition-group: 4.4.2_biqbaboplfbrettd7655fr4n2y + uncontrollable: 7.2.1_react@18.2.0 warning: 4.0.3 dev: false - /react-clientside-effect/1.2.6_react@17.0.2: + /react-clientside-effect/1.2.6_react@18.2.0: resolution: {integrity: sha512-XGGGRQAKY+q25Lz9a/4EPqom7WRjz3z9R2k4jhVKA/puQFH/5Nt27vFZYql4m4NVNdUvX8PS3O7r/Zzm7cjUlg==} peerDependencies: - react: ^15.3.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 + react: ^15.3.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || 18 dependencies: - '@babel/runtime': 7.17.9 - react: 17.0.2 + '@babel/runtime': 7.18.3 + react: 18.2.0 dev: false - /react-colorful/5.5.1_react-dom@17.0.2+react@17.0.2: - resolution: {integrity: sha512-M1TJH2X3RXEt12sWkpa6hLc/bbYS0H6F4rIqjQZ+RxNBstpY67d9TrFXtqdZwhpmBXcCwEi7stKqFue3ZRkiOg==} - peerDependencies: - react: '>=16.8.0' - react-dom: '>=16.8.0' - dependencies: - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - dev: true - /react-deep-force-update/1.1.2: resolution: {integrity: sha512-WUSQJ4P/wWcusaH+zZmbECOk7H5N2pOIl0vzheeornkIMhu+qrNdGFm0bDZLCb0hSF0jf/kH1SgkNGfBdTc4wA==} dev: true - /react-docgen-typescript/2.2.2_typescript@4.6.4: + /react-docgen-typescript/2.2.2_typescript@4.7.4: resolution: {integrity: sha512-tvg2ZtOpOi6QDwsb3GZhOjDkkX0h8Z2gipvTg6OVMUyoYoURhEiRNePT8NZItTVCDh39JJHnLdfCOkzoLbFnTg==} peerDependencies: typescript: '>= 4.3.x' dependencies: - typescript: 4.6.4 + typescript: 4.7.4 dev: true - /react-docgen/5.4.0: - resolution: {integrity: sha512-JBjVQ9cahmNlfjMGxWUxJg919xBBKAoy3hgDgKERbR+BcF4ANpDuzWAScC7j27hZfd8sJNmMPOLWo9+vB/XJEQ==} + /react-docgen/5.4.2: + resolution: {integrity: sha512-4Z5XYpHsn2bbUfaflxoS30VhUvQLBe4GCwwM5v1e1FUOeDdaoJi6wUGSmYp6OdXYEISEAOEIaSPBk4iezNCKBw==} engines: {node: '>=8.10.0'} hasBin: true dependencies: - '@babel/core': 7.17.10 - '@babel/generator': 7.17.10 - '@babel/runtime': 7.17.9 + '@babel/core': 7.18.5 + '@babel/generator': 7.18.2 + '@babel/runtime': 7.18.3 ast-types: 0.14.2 commander: 2.20.3 doctrine: 3.0.0 @@ -18342,99 +18069,75 @@ packages: - supports-color dev: true - /react-dom/17.0.2_react@17.0.2: - resolution: {integrity: sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==} + /react-dom/18.2.0_react@18.2.0: + resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==} peerDependencies: - react: 17.0.2 + react: ^18.2.0 || 18 dependencies: loose-envify: 1.4.0 - object-assign: 4.1.1 - react: 17.0.2 - scheduler: 0.20.2 - - /react-draggable/4.4.5_react-dom@17.0.2+react@17.0.2: - resolution: {integrity: sha512-OMHzJdyJbYTZo4uQE393fHcqqPYsEtkjfMgvCHr6rejT+Ezn4OZbNyGH50vv+SunC1RMvwOTSWkEODQLzw1M9g==} - peerDependencies: - react: '>= 16.3.0' - react-dom: '>= 16.3.0' - dependencies: - clsx: 1.1.1 - prop-types: 15.8.1 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - dev: true + react: 18.2.0 + scheduler: 0.23.0 /react-dragula/1.1.17: - resolution: {integrity: sha1-s8s1KkcKcZNnupnWpUAcYPrU9v8=} + resolution: {integrity: sha512-gJdY190sPWAyV8jz79vyK9SGk97bVOHjUguVNIYIEVosvt27HLxnbJo4qiuEkb/nAuGY13Im2CHup92fUyO3fw==} dependencies: atoa: 1.0.0 dragula: 3.7.2 dev: false - /react-element-to-jsx-string/14.3.4_react-dom@17.0.2+react@17.0.2: + /react-element-to-jsx-string/14.3.4_biqbaboplfbrettd7655fr4n2y: resolution: {integrity: sha512-t4ZwvV6vwNxzujDQ+37bspnLwA4JlgUPWhLjBJWsNIDceAf6ZKUTCjdm08cN6WeZ5pTMKiCJkmAYnpmR4Bm+dg==} peerDependencies: - react: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 - react-dom: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 + react: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || 18 + react-dom: ^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || 18 dependencies: '@base2/pretty-print-object': 1.0.1 is-plain-object: 5.0.0 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 react-is: 17.0.2 dev: true /react-fast-compare/3.2.0: resolution: {integrity: sha512-rtGImPZ0YyLrscKI9xTpV8psd6I8VAtjKCzQDlzyDvqJA8XOW78TXYQwNRNd8g8JZnDu8q9Fu/1v4HPAVwVdHA==} - - /react-focus-lock/2.5.2_3df41e700a554c2356b362be396a0af4: - resolution: {integrity: sha512-WzpdOnEqjf+/A3EH9opMZWauag7gV0BxFl+EY4ElA4qFqYsUsBLnmo2sELbN5OC30S16GAWMy16B9DLPpdJKAQ==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - dependencies: - '@babel/runtime': 7.17.9 - focus-lock: 0.9.2 - prop-types: 15.8.1 - react: 17.0.2 - react-clientside-effect: 1.2.6_react@17.0.2 - use-callback-ref: 1.3.0_3df41e700a554c2356b362be396a0af4 - use-sidecar: 1.1.2_3df41e700a554c2356b362be396a0af4 - transitivePeerDependencies: - - '@types/react' dev: false - /react-helmet-async/1.3.0_react-dom@17.0.2+react@17.0.2: - resolution: {integrity: sha512-9jZ57/dAn9t3q6hneQS0wukqC2ENOBgMNVEhb/ZG9ZSxUetzVIw4iAmEU38IaVg3QGYauQPhSeUTuIUtFglWpg==} + /react-focus-lock/2.9.1_luyos4mouogwq6z3wafb3re4ce: + resolution: {integrity: sha512-pSWOQrUmiKLkffPO6BpMXN7SNKXMsuOakl652IBuALAu1esk+IcpJyM+ALcYzPTTFz1rD0R54aB9A4HuP5t1Wg==} peerDependencies: - react: ^16.6.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.6.0 || ^17.0.0 || ^18.0.0 + '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 + peerDependenciesMeta: + '@types/react': + optional: true dependencies: - '@babel/runtime': 7.17.9 - invariant: 2.2.4 + '@babel/runtime': 7.18.3 + '@types/react': 18.0.14 + focus-lock: 0.11.2 prop-types: 15.8.1 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - react-fast-compare: 3.2.0 - shallowequal: 1.1.0 - dev: true + react: 18.2.0 + react-clientside-effect: 1.2.6_react@18.2.0 + use-callback-ref: 1.3.0_luyos4mouogwq6z3wafb3re4ce + use-sidecar: 1.1.2_luyos4mouogwq6z3wafb3re4ce + dev: false - /react-icons/4.3.1_react@17.0.2: - resolution: {integrity: sha512-cB10MXLTs3gVuXimblAdI71jrJx8njrJZmNMEMC+sQu5B/BIOmlsAjskdqpn81y8UBVEGuHODd7/ci5DvoSzTQ==} + /react-icons/4.4.0_react@18.2.0: + resolution: {integrity: sha512-fSbvHeVYo/B5/L4VhB7sBA1i2tS8MkT0Hb9t2H1AVPkwGfVHLJCqyr2Py9dKMxsyM63Eng1GkdZfbWj+Fmv8Rg==} peerDependencies: react: '*' dependencies: - react: 17.0.2 + react: 18.2.0 dev: false - /react-inspector/5.1.1_react@17.0.2: + /react-inspector/5.1.1_react@18.2.0: resolution: {integrity: sha512-GURDaYzoLbW8pMGXwYPDBIv6nqei4kK7LPRZ9q9HCZF54wqXz/dnylBp/kfE9XmekBhHvLDdcYeyIwSrvtOiWg==} peerDependencies: - react: ^16.8.4 || ^17.0.0 + react: ^16.8.4 || ^17.0.0 || 18 dependencies: - '@babel/runtime': 7.17.9 + '@babel/runtime': 7.18.3 is-dom: 1.1.0 prop-types: 15.8.1 - react: 17.0.2 + react: 18.2.0 dev: true /react-is/16.13.1: @@ -18442,286 +18145,293 @@ packages: /react-is/17.0.2: resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==} + dev: true + + /react-is/18.2.0: + resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==} /react-lifecycles-compat/3.0.4: resolution: {integrity: sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==} dev: false - /react-popper-tooltip/3.1.1_react-dom@17.0.2+react@17.0.2: - resolution: {integrity: sha512-EnERAnnKRptQBJyaee5GJScWNUKQPDD2ywvzZyUjst/wj5U64C8/CnSYLNEmP2hG0IJ3ZhtDxE8oDN+KOyavXQ==} - peerDependencies: - react: ^16.6.0 || ^17.0.0 - react-dom: ^16.6.0 || ^17.0.0 - dependencies: - '@babel/runtime': 7.17.9 - '@popperjs/core': 2.11.5 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - react-popper: 2.3.0_56755b872f91af5df7d7d5046f3b0a1b - dev: true - - /react-popper/2.3.0_56755b872f91af5df7d7d5046f3b0a1b: - resolution: {integrity: sha512-e1hj8lL3uM+sgSR4Lxzn5h1GxBlpa4CQz0XLF8kx4MDrDRWY0Ena4c97PUeSX9i5W3UAfDP0z0FXCTQkoXUl3Q==} - peerDependencies: - '@popperjs/core': ^2.0.0 - react: ^16.8.0 || ^17 || ^18 - react-dom: ^16.8.0 || ^17 || ^18 - dependencies: - '@popperjs/core': 2.11.5 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - react-fast-compare: 3.2.0 - warning: 4.0.3 - dev: true - /react-proxy/1.1.8: - resolution: {integrity: sha1-nb/Z2SdSjDqp9ETkVYw3gwq4wmo=} + resolution: {integrity: sha512-46GkBpZD97R/vV+iw+u6aFACzIHOst9gCl41d5K5vepPBz2i2gqHmXQJWKXsrUsSOdylKahN3sd9taswFN8Wzw==} dependencies: lodash: 4.17.21 react-deep-force-update: 1.1.2 dev: true - /react-redux/7.2.8_react-dom@17.0.2+react@17.0.2: - resolution: {integrity: sha512-6+uDjhs3PSIclqoCk0kd6iX74gzrGc3W5zcAjbrFgEdIjRSQObdIwfx80unTkVUYvbQ95Y8Av3OvFHq1w5EOUw==} + /react-redux/8.0.2_42iqcqzqjdyq32nxzztmetzyhu: + resolution: {integrity: sha512-nBwiscMw3NoP59NFCXFf02f8xdo+vSHT/uZ1ldDwF7XaTpzm+Phk97VT4urYBl5TYAPNVaFm12UHAEyzkpNzRA==} peerDependencies: - react: ^16.8.3 || ^17 || ^18 - react-dom: '*' - react-native: '*' + '@types/react': ^16.8 || ^17.0 || ^18.0 + '@types/react-dom': ^16.8 || ^17.0 || ^18.0 + react: ^16.8 || ^17.0 || ^18.0 || 18 + react-dom: ^16.8 || ^17.0 || ^18.0 || 18 + react-native: '>=0.59' + redux: ^4 peerDependenciesMeta: + '@types/react': + optional: true + '@types/react-dom': + optional: true react-dom: optional: true react-native: optional: true + redux: + optional: true dependencies: - '@babel/runtime': 7.17.9 - '@types/react-redux': 7.1.24 + '@babel/runtime': 7.18.3 + '@types/hoist-non-react-statics': 3.3.1 + '@types/react': 18.0.14 + '@types/use-sync-external-store': 0.0.3 hoist-non-react-statics: 3.3.2 - loose-envify: 1.4.0 - prop-types: 15.8.1 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - react-is: 17.0.2 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + react-is: 18.2.0 + redux: 4.2.0 + use-sync-external-store: 1.2.0_react@18.2.0 + dev: true + + /react-redux/8.0.2_fzknh3pugl53jp7xsetxkg5ani: + resolution: {integrity: sha512-nBwiscMw3NoP59NFCXFf02f8xdo+vSHT/uZ1ldDwF7XaTpzm+Phk97VT4urYBl5TYAPNVaFm12UHAEyzkpNzRA==} + peerDependencies: + '@types/react': ^16.8 || ^17.0 || ^18.0 + '@types/react-dom': ^16.8 || ^17.0 || ^18.0 + react: ^16.8 || ^17.0 || ^18.0 || 18 + react-dom: ^16.8 || ^17.0 || ^18.0 || 18 + react-native: '>=0.59' + redux: ^4 + peerDependenciesMeta: + '@types/react': + optional: true + '@types/react-dom': + optional: true + react-dom: + optional: true + react-native: + optional: true + redux: + optional: true + dependencies: + '@babel/runtime': 7.18.3 + '@types/hoist-non-react-statics': 3.3.1 + '@types/react': 18.0.14 + '@types/react-dom': 18.0.5 + '@types/use-sync-external-store': 0.0.3 + hoist-non-react-statics: 3.3.2 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + react-is: 18.2.0 + use-sync-external-store: 1.2.0_react@18.2.0 + dev: false + + /react-redux/8.0.2_jcbkrypqxz3emsprsw5dchskju: + resolution: {integrity: sha512-nBwiscMw3NoP59NFCXFf02f8xdo+vSHT/uZ1ldDwF7XaTpzm+Phk97VT4urYBl5TYAPNVaFm12UHAEyzkpNzRA==} + peerDependencies: + '@types/react': ^16.8 || ^17.0 || ^18.0 + '@types/react-dom': ^16.8 || ^17.0 || ^18.0 + react: ^16.8 || ^17.0 || ^18.0 || 18 + react-dom: ^16.8 || ^17.0 || ^18.0 || 18 + react-native: '>=0.59' + redux: ^4 + peerDependenciesMeta: + '@types/react': + optional: true + '@types/react-dom': + optional: true + react-dom: + optional: true + react-native: + optional: true + redux: + optional: true + dependencies: + '@babel/runtime': 7.18.3 + '@types/hoist-non-react-statics': 3.3.1 + '@types/react': 18.0.14 + '@types/react-dom': 18.0.5 + '@types/use-sync-external-store': 0.0.3 + hoist-non-react-statics: 3.3.2 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + react-is: 18.2.0 + redux: 4.2.0 + use-sync-external-store: 1.2.0_react@18.2.0 + dev: false /react-refresh/0.11.0: resolution: {integrity: sha512-F27qZr8uUqwhWZboondsPx8tnC3Ct3SxZA3V5WyEvujRyyNv0VYPhoBg1gZ8/MV5tubQp76Trw8lTv9hzRBa+A==} engines: {node: '>=0.10.0'} dev: true - /react-remove-scroll-bar/2.3.1_3df41e700a554c2356b362be396a0af4: - resolution: {integrity: sha512-IvGX3mJclEF7+hga8APZczve1UyGMkMG+tjS0o/U1iLgvZRpjFAQEUBJ4JETfvbNlfNnZnoDyWJCICkA15Mghg==} + /react-remove-scroll-bar/2.3.3_luyos4mouogwq6z3wafb3re4ce: + resolution: {integrity: sha512-i9GMNWwpz8XpUpQ6QlevUtFjHGqnPG4Hxs+wlIJntu/xcsZVEpJcIV71K3ZkqNy2q3GfgvkD7y6t/Sv8ofYSbw==} engines: {node: '>=10'} peerDependencies: '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 peerDependenciesMeta: '@types/react': optional: true dependencies: - '@types/react': 17.0.45 - react: 17.0.2 - react-style-singleton: 2.2.0_3df41e700a554c2356b362be396a0af4 + '@types/react': 18.0.14 + react: 18.2.0 + react-style-singleton: 2.2.1_luyos4mouogwq6z3wafb3re4ce tslib: 2.4.0 dev: false - /react-remove-scroll/2.4.1_3df41e700a554c2356b362be396a0af4: - resolution: {integrity: sha512-K7XZySEzOHMTq7dDwcHsZA6Y7/1uX5RsWhRXVYv8rdh+y9Qz2nMwl9RX/Mwnj/j7JstCGmxyfyC0zbVGXYh3mA==} - engines: {node: '>=8.5.0'} + /react-remove-scroll/2.5.4_luyos4mouogwq6z3wafb3re4ce: + resolution: {integrity: sha512-xGVKJJr0SJGQVirVFAUZ2k1QLyO6m+2fy0l8Qawbp5Jgrv3DeLalrfMNBFSlmz5kriGGzsVBtGVnf4pTKIhhWA==} + engines: {node: '>=10'} peerDependencies: - '@types/react': ^16.8.0 || ^17.0.0 - react: ^16.8.0 || ^17.0.0 + '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 peerDependenciesMeta: '@types/react': optional: true dependencies: - '@types/react': 17.0.45 - react: 17.0.2 - react-remove-scroll-bar: 2.3.1_3df41e700a554c2356b362be396a0af4 - react-style-singleton: 2.2.0_3df41e700a554c2356b362be396a0af4 - tslib: 1.14.1 - use-callback-ref: 1.3.0_3df41e700a554c2356b362be396a0af4 - use-sidecar: 1.1.2_3df41e700a554c2356b362be396a0af4 + '@types/react': 18.0.14 + react: 18.2.0 + react-remove-scroll-bar: 2.3.3_luyos4mouogwq6z3wafb3re4ce + react-style-singleton: 2.2.1_luyos4mouogwq6z3wafb3re4ce + tslib: 2.4.0 + use-callback-ref: 1.3.0_luyos4mouogwq6z3wafb3re4ce + use-sidecar: 1.1.2_luyos4mouogwq6z3wafb3re4ce dev: false - /react-router-dom/5.3.1_react@17.0.2: - resolution: {integrity: sha512-f0pj/gMAbv9e8gahTmCEY20oFhxhrmHwYeIwH5EO5xu0qme+wXtsdB8YfUOAZzUz4VaXmb58m3ceiLtjMhqYmQ==} - peerDependencies: - react: '>=15' - dependencies: - '@babel/runtime': 7.17.9 - history: 4.10.1 - loose-envify: 1.4.0 - prop-types: 15.8.1 - react: 17.0.2 - react-router: 5.3.1_react@17.0.2 - tiny-invariant: 1.2.0 - tiny-warning: 1.0.3 - dev: false - - /react-router-dom/6.3.0_react-dom@17.0.2+react@17.0.2: + /react-router-dom/6.3.0_biqbaboplfbrettd7655fr4n2y: resolution: {integrity: sha512-uaJj7LKytRxZNQV8+RbzJWnJ8K2nPsOOEuX7aQstlMZKQT0164C+X2w6bnkqU3sjtLvpd5ojrezAyfZ1+0sStw==} peerDependencies: - react: '>=16.8' - react-dom: '>=16.8' + react: '>=16.8 || 18' + react-dom: '>=16.8 || 18' dependencies: history: 5.3.0 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - react-router: 6.3.0_react@17.0.2 - dev: true - - /react-router/5.3.1_react@17.0.2: - resolution: {integrity: sha512-v+zwjqb7bakqgF+wMVKlAPTca/cEmPOvQ9zt7gpSNyPXau1+0qvuYZ5BWzzNDP1y6s15zDwgb9rPN63+SIniRQ==} - peerDependencies: - react: '>=15' - dependencies: - '@babel/runtime': 7.17.9 - history: 4.10.1 - hoist-non-react-statics: 3.3.2 - loose-envify: 1.4.0 - mini-create-react-context: 0.4.1_prop-types@15.8.1+react@17.0.2 - path-to-regexp: 1.8.0 - prop-types: 15.8.1 - react: 17.0.2 - react-is: 16.13.1 - tiny-invariant: 1.2.0 - tiny-warning: 1.0.3 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + react-router: 6.3.0_react@18.2.0 dev: false - /react-router/6.3.0_react@17.0.2: + /react-router/6.3.0_react@18.2.0: resolution: {integrity: sha512-7Wh1DzVQ+tlFjkeo+ujvjSqSJmkt1+8JO+T5xklPlgrh70y7ogx75ODRW0ThWhY7S+6yEDks8TYrtQe/aoboBQ==} peerDependencies: - react: '>=16.8' + react: '>=16.8 || 18' dependencies: history: 5.3.0 - react: 17.0.2 - dev: true + react: 18.2.0 + dev: false - /react-select/5.3.2_119827f31b0360eaa21c3c49ad2eba57: + /react-select/5.3.2_sukxovx4mwg6d6626r5e3rv5k4: resolution: {integrity: sha512-W6Irh7U6Ha7p5uQQ2ZnemoCQ8mcfgOtHfw3wuMzG6FAu0P+CYicgofSLOq97BhjMx8jS+h+wwWdCBeVVZ9VqlQ==} peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 dependencies: - '@babel/runtime': 7.17.9 - '@emotion/cache': 11.7.1 - '@emotion/react': 11.9.0_0191d4f7d13d8e58ed45c49e4813c090 + '@babel/runtime': 7.18.3 + '@emotion/cache': 11.9.3 + '@emotion/react': 11.9.3_7eu627umq2cbnjxmysy5yb5jqq '@types/react-transition-group': 4.4.4 memoize-one: 5.2.1 prop-types: 15.8.1 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - react-transition-group: 4.4.2_react-dom@17.0.2+react@17.0.2 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + react-transition-group: 4.4.2_biqbaboplfbrettd7655fr4n2y transitivePeerDependencies: - '@babel/core' - '@types/react' dev: false - /react-shallow-renderer/16.15.0_react@17.0.2: + /react-shallow-renderer/16.15.0_react@18.2.0: resolution: {integrity: sha512-oScf2FqQ9LFVQgA73vr86xl2NaOIX73rh+YFqcOp68CWj56tSfgtGKrEbyhCj0rSijyG9M1CYprTh39fBi5hzA==} peerDependencies: - react: ^16.0.0 || ^17.0.0 || ^18.0.0 + react: ^16.0.0 || ^17.0.0 || ^18.0.0 || 18 dependencies: object-assign: 4.1.1 - react: 17.0.2 - react-is: 17.0.2 + react: 18.2.0 + react-is: 18.2.0 dev: true - /react-sizeme/3.0.2: - resolution: {integrity: sha512-xOIAOqqSSmKlKFJLO3inBQBdymzDuXx4iuwkNcJmC96jeiOg5ojByvL+g3MW9LPEsojLbC6pf68zOfobK8IPlw==} - dependencies: - element-resize-detector: 1.2.4 - invariant: 2.2.4 - shallowequal: 1.1.0 - throttle-debounce: 3.0.1 - dev: true - - /react-style-singleton/2.2.0_3df41e700a554c2356b362be396a0af4: - resolution: {integrity: sha512-nK7mN92DMYZEu3cQcAhfwE48NpzO5RpxjG4okbSqRRbfal9Pk+fG2RdQXTMp+f6all1hB9LIJSt+j7dCYrU11g==} + /react-style-singleton/2.2.1_luyos4mouogwq6z3wafb3re4ce: + resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==} engines: {node: '>=10'} peerDependencies: '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 peerDependenciesMeta: '@types/react': optional: true dependencies: - '@types/react': 17.0.45 + '@types/react': 18.0.14 get-nonce: 1.0.1 invariant: 2.2.4 - react: 17.0.2 + react: 18.2.0 tslib: 2.4.0 dev: false - /react-syntax-highlighter/13.5.3_react@17.0.2: - resolution: {integrity: sha512-crPaF+QGPeHNIblxxCdf2Lg936NAHKhNhuMzRL3F9ct6aYXL3NcZtCL0Rms9+qVo6Y1EQLdXGypBNSbPL/r+qg==} + /react-syntax-highlighter/15.5.0_react@18.2.0: + resolution: {integrity: sha512-+zq2myprEnQmH5yw6Gqc8lD55QHnpKaU8TOcFeC/Lg/MQSs8UknEA0JC4nTZGFAXC2J2Hyj/ijJ7NlabyPi2gg==} peerDependencies: - react: '>= 0.14.0' + react: '>= 0.14.0 || 18' dependencies: - '@babel/runtime': 7.17.9 + '@babel/runtime': 7.18.3 highlight.js: 10.7.3 lowlight: 1.20.0 prismjs: 1.28.0 - react: 17.0.2 + react: 18.2.0 refractor: 3.6.0 dev: true - /react-test-renderer/17.0.2_react@17.0.2: - resolution: {integrity: sha512-yaQ9cB89c17PUb0x6UfWRs7kQCorVdHlutU1boVPEsB8IDZH6n9tHxMacc3y0JoXOJUsZb/t/Mb8FUWMKaM7iQ==} + /react-test-renderer/18.2.0_react@18.2.0: + resolution: {integrity: sha512-JWD+aQ0lh2gvh4NM3bBM42Kx+XybOxCpgYK7F8ugAlpaTSnWsX+39Z4XkOykGZAHrjwwTZT3x3KxswVWxHPUqA==} peerDependencies: - react: 17.0.2 + react: ^18.2.0 || 18 dependencies: - object-assign: 4.1.1 - react: 17.0.2 - react-is: 17.0.2 - react-shallow-renderer: 16.15.0_react@17.0.2 - scheduler: 0.20.2 - dev: true - - /react-textarea-autosize/8.3.3_3df41e700a554c2356b362be396a0af4: - resolution: {integrity: sha512-2XlHXK2TDxS6vbQaoPbMOfQ8GK7+irc2fVK6QFIcC8GOnH3zI/v481n+j1L0WaPVvKxwesnY93fEfH++sus2rQ==} - engines: {node: '>=10'} - peerDependencies: - react: ^16.8.0 || ^17.0.0 - dependencies: - '@babel/runtime': 7.17.9 - react: 17.0.2 - use-composed-ref: 1.3.0_react@17.0.2 - use-latest: 1.2.1_3df41e700a554c2356b362be396a0af4 - transitivePeerDependencies: - - '@types/react' + react: 18.2.0 + react-is: 18.2.0 + react-shallow-renderer: 16.15.0_react@18.2.0 + scheduler: 0.23.0 dev: true /react-transform-catch-errors/1.0.2: - resolution: {integrity: sha1-G01KdulycYlvwW/jCGx5PsiKnus=} + resolution: {integrity: sha512-FCeTXLTpRM8wMrwAlYVoEI+HXUFYEJLKdmf9zd5YtH1yc2Dq81JL1YMr0eHeUe699CCTezG4CfEB5D9RpmovEw==} dev: true /react-transform-hmr/1.0.4: - resolution: {integrity: sha1-4aQL0Krvxy6N/Xp82gmvhQZjl7s=} + resolution: {integrity: sha512-8bK1DWUZynE6swD2jNPbzO5mvhB8fs9Ub5GksoVqYkc9i06FdSLC36qQYjaKOW79KBdsROq2cK0tRKITiEzmyg==} dependencies: global: 4.4.0 react-proxy: 1.1.8 dev: true - /react-transition-group/4.4.2_react-dom@17.0.2+react@17.0.2: + /react-transition-group/4.4.2_biqbaboplfbrettd7655fr4n2y: resolution: {integrity: sha512-/RNYfRAMlZwDSr6z4zNKV6xu53/e2BuaBbGhbyYIXTrmgu/bGHzmqOs7mJSJBHy9Ud+ApHx3QjrkKSp1pxvlFg==} peerDependencies: - react: '>=16.6.0' - react-dom: '>=16.6.0' + react: '>=16.6.0 || 18' + react-dom: '>=16.6.0 || 18' dependencies: - '@babel/runtime': 7.17.9 + '@babel/runtime': 7.18.3 dom-helpers: 5.2.1 loose-envify: 1.4.0 prop-types: 15.8.1 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 dev: false - /react/17.0.2: - resolution: {integrity: sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==} + /react/18.2.0: + resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==} engines: {node: '>=0.10.0'} dependencies: loose-envify: 1.4.0 - object-assign: 4.1.1 + + /read-pkg-up/1.0.1: + resolution: {integrity: sha512-WD9MTlNtI55IwYUS27iHh9tK3YoIVhxis8yKhLpTqWtml739uXc9NWTpxoHkfZf3+DkCCsXox94/VWZniuZm6A==} + engines: {node: '>=0.10.0'} + dependencies: + find-up: 1.1.2 + read-pkg: 1.1.0 + dev: true + optional: true /read-pkg-up/7.0.1: resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==} @@ -18732,6 +18442,16 @@ packages: type-fest: 0.8.1 dev: true + /read-pkg/1.1.0: + resolution: {integrity: sha512-7BGwRHqt4s/uVbuyoeejRn4YmFnYZiFl4AuaeXHlgZf3sONF0SOGlxs2Pw8g6hCKupo08RafIO5YXFNOKTfwsQ==} + engines: {node: '>=0.10.0'} + dependencies: + load-json-file: 1.1.0 + normalize-package-data: 2.5.0 + path-type: 1.1.0 + dev: true + optional: true + /read-pkg/5.2.0: resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} engines: {node: '>=8'} @@ -18799,16 +18519,25 @@ packages: resolution: {integrity: sha512-/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg==} engines: {node: '>= 0.10'} dependencies: - resolve: 1.22.0 + resolve: 1.22.1 dev: true /rechoir/0.8.0: resolution: {integrity: sha512-/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ==} engines: {node: '>= 10.13.0'} dependencies: - resolve: 1.22.0 + resolve: 1.22.1 dev: false + /redent/1.0.0: + resolution: {integrity: sha512-qtW5hKzGQZqKoh6JNSD+4lfitfPKGz42e6QwiRmPM5mmKtR0N41AbJRYu0xJi7nhOJ4WDgRkKvAk6tw4WIwR4g==} + engines: {node: '>=0.10.0'} + dependencies: + indent-string: 2.1.0 + strip-indent: 1.0.1 + dev: true + optional: true + /redent/3.0.0: resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} engines: {node: '>=8'} @@ -18818,27 +18547,27 @@ packages: dev: true /redux-devtools-themes/1.0.0: - resolution: {integrity: sha1-xILc48U3OXYEX0ATSQfZ3LOuPV0=} + resolution: {integrity: sha512-hBWqdZX+dioMWnTjf8+uSm0q1wCdYO4kU5gERzHcMMbu0Qg7JDR42TnJ6GHJ6r7k/tIpsCSygc9U0ehAtR24TQ==} dependencies: base16: 1.0.0 dev: false /redux-logger/3.0.6: - resolution: {integrity: sha1-91VZZvMJjzyIYExEnPC69XeCdL8=} + resolution: {integrity: sha512-JoCIok7bg/XpqA1JqCqXFypuqBbQzGQySrhFzewB7ThcnysTO30l4VCst86AuB9T9tuT03MAA56Jw2PNhRSNCg==} dependencies: deep-diff: 0.3.8 dev: false - /redux-persist/6.0.0_react@17.0.2+redux@4.2.0: + /redux-persist/6.0.0_react@18.2.0+redux@4.2.0: resolution: {integrity: sha512-71LLMbUq2r02ng2We9S215LtPu3fY0KgaGE0k8WRgl6RkqxtGfl7HUozz1Dftwsb0D/5mZ8dwAaPbtnzfvbEwQ==} peerDependencies: - react: '>=16' + react: '>=16 || 18' redux: '>4.0.0' peerDependenciesMeta: react: optional: true dependencies: - react: 17.0.2 + react: 18.2.0 redux: 4.2.0 dev: false @@ -18852,7 +18581,7 @@ packages: /redux/4.2.0: resolution: {integrity: sha512-oSBmcKKIuIR4ME29/AeNUnl5L+hvBq7OaJWzaptTQJAntaPvxIJqfnjbaEiCzzaIz+XmVILfqAM3Ob0aXLPfjA==} dependencies: - '@babel/runtime': 7.17.9 + '@babel/runtime': 7.18.3 /refractor/3.6.0: resolution: {integrity: sha512-MY9W41IOWxxk31o+YvFCNyNzdkc9M20NoZK5vq6jkv4I/uh2zkWcfudj0Q1fovjUQJrNewS9NMzeTtqPf+n5EA==} @@ -18883,7 +18612,7 @@ packages: /regenerator-transform/0.15.0: resolution: {integrity: sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg==} dependencies: - '@babel/runtime': 7.17.9 + '@babel/runtime': 7.18.3 dev: true /regex-not/1.0.2: @@ -18932,7 +18661,7 @@ packages: dev: true /relateurl/0.2.7: - resolution: {integrity: sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=} + resolution: {integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==} engines: {node: '>= 0.10'} dev: true @@ -19001,7 +18730,7 @@ packages: dev: true /remove-trailing-separator/1.1.0: - resolution: {integrity: sha1-wkvOKig62tW8P1jg1IJJuSN52O8=} + resolution: {integrity: sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==} dev: true /renderkid/2.0.7: @@ -19030,12 +18759,20 @@ packages: dev: true /repeat-string/1.6.1: - resolution: {integrity: sha1-jcrkcOHIirwtYA//Sndihtp15jc=} + resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==} engines: {node: '>=0.10'} dev: true + /repeating/2.0.1: + resolution: {integrity: sha512-ZqtSMuVybkISo2OWvqvm7iHSWngvdaW3IpsT9/uP8v4gMi591LY6h35wdOfvQdWCKFWZWm2Y1Opp4kV7vQKT6A==} + engines: {node: '>=0.10.0'} + dependencies: + is-finite: 1.1.0 + dev: true + optional: true + /require-directory/2.1.1: - resolution: {integrity: sha1-jGStX9MNqxyXbiNE/+f3kqam30I=} + resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} engines: {node: '>=0.10.0'} /require-from-string/2.0.2: @@ -19048,11 +18785,11 @@ packages: dev: true /requires-port/1.0.0: - resolution: {integrity: sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=} + resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==} dev: true - /reselect/4.1.5: - resolution: {integrity: sha512-uVdlz8J7OO+ASpBYoz1Zypgx0KasCY20H+N8JD13oUMtPvSHQuscrHop4KbXrbsBcdB9Ds7lVK7eRkBIfO43vQ==} + /reselect/4.1.6: + resolution: {integrity: sha512-ZovIuXqto7elwnxyXbBtCPo9YFEr3uJqj2rRbcOOog1bmu2Ag85M4hixSwFWyaBMKXNgvPaJ9OSu9SkBPIeJHQ==} /resolve-cwd/3.0.0: resolution: {integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==} @@ -19069,12 +18806,8 @@ packages: resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} engines: {node: '>=8'} - /resolve-pathname/3.0.0: - resolution: {integrity: sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng==} - dev: false - /resolve-url/0.2.1: - resolution: {integrity: sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=} + resolution: {integrity: sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==} deprecated: https://github.com/lydell/resolve-url#deprecated dev: true @@ -19083,34 +18816,28 @@ packages: engines: {node: '>=10'} dev: true - /resolve/1.22.0: - resolution: {integrity: sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==} + /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 supports-preserve-symlinks-flag: 1.0.0 - /resolve/2.0.0-next.3: - resolution: {integrity: sha512-W8LucSynKUIDu9ylraa7ueVZ7hc0uAgJBxVsQSKOXOyle8a93qXhcz+XAXZ8bIq2d6i4Ehddn6Evt+0/UwKk6Q==} + /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 + supports-preserve-symlinks-flag: 1.0.0 dev: true /responselike/1.0.2: - resolution: {integrity: sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec=} + resolution: {integrity: sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ==} dependencies: lowercase-keys: 1.0.1 - /restore-cursor/2.0.0: - resolution: {integrity: sha1-n37ih/gv0ybU/RYpI9YhKe7g368=} - engines: {node: '>=4'} - dependencies: - onetime: 2.0.1 - signal-exit: 3.0.7 - dev: false - /restore-cursor/3.1.0: resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==} engines: {node: '>=8'} @@ -19124,7 +18851,7 @@ packages: dev: true /retry/0.12.0: - resolution: {integrity: sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=} + resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==} engines: {node: '>= 4'} dev: false optional: true @@ -19139,7 +18866,7 @@ packages: dev: true /right-align/0.1.3: - resolution: {integrity: sha1-YTObci/mo1FWiSENJOFMlhSGE+8=} + resolution: {integrity: sha512-yqINtL/G7vs2v+dFIZmFUDbnVyFUJFKd6gK22Kgo6R4jfJGFtisKyncWDDULgjfqf4ASQuIQyjJ7XZ+3aWpsAg==} engines: {node: '>=0.10.0'} dependencies: align-text: 0.1.4 @@ -19149,14 +18876,14 @@ packages: resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==} hasBin: true dependencies: - glob: 7.2.0 + glob: 7.2.3 dev: true /rimraf/3.0.2: resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} hasBin: true dependencies: - glob: 7.2.0 + glob: 7.2.3 /ripemd160/2.0.2: resolution: {integrity: sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==} @@ -19181,38 +18908,35 @@ packages: sprintf-js: 1.1.2 optional: true - /rollup-plugin-terser/7.0.2_rollup@2.72.1: + /rollup-plugin-terser/7.0.2_rollup@2.75.7: resolution: {integrity: sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==} peerDependencies: rollup: ^2.0.0 dependencies: '@babel/code-frame': 7.16.7 jest-worker: 26.6.2 - rollup: 2.72.1 + rollup: 2.75.7 serialize-javascript: 4.0.0 - terser: 5.13.1 + terser: 5.14.1 dev: true - /rollup-plugin-typescript2/0.31.2_rollup@2.72.1+typescript@4.6.4: - resolution: {integrity: sha512-hRwEYR1C8xDGVVMFJQdEVnNAeWRvpaY97g5mp3IeLnzhNXzSVq78Ye/BJ9PAaUfN4DXa/uDnqerifMOaMFY54Q==} + /rollup-plugin-typescript2/0.32.1_okefoyb4o5sittgqayreuhurei: + resolution: {integrity: sha512-RanO8bp1WbeMv0bVlgcbsFNCn+Y3rX7wF97SQLDxf0fMLsg0B/QFF005t4AsGUcDgF3aKJHoqt4JF2xVaABeKw==} peerDependencies: rollup: '>=1.26.3' typescript: '>=2.4.0' dependencies: '@rollup/pluginutils': 4.2.1 - '@yarn-tool/resolve-package': 1.0.46 find-cache-dir: 3.3.2 fs-extra: 10.1.0 - resolve: 1.22.0 - rollup: 2.72.1 + resolve: 1.22.1 + rollup: 2.75.7 tslib: 2.4.0 - typescript: 4.6.4 - transitivePeerDependencies: - - '@types/node' + typescript: 4.7.4 dev: true - /rollup/2.72.1: - resolution: {integrity: sha512-NTc5UGy/NWFGpSqF1lFY8z9Adri6uhyMLI6LvPAXdBKoPRFhIIiBUpt+Qg2awixqO3xvzSijjhnb4+QEZwJmxA==} + /rollup/2.75.7: + resolution: {integrity: sha512-VSE1iy0eaAYNCxEXaleThdFXqZJ42qDBatAwrfnPlENEZ8erQ+0LYX4JXOLPceWfZpV1VtZwZ3dFCuOZiSyFtQ==} engines: {node: '>=10.0.0'} hasBin: true optionalDependencies: @@ -19236,33 +18960,11 @@ packages: dev: true /run-queue/1.0.3: - resolution: {integrity: sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec=} + resolution: {integrity: sha512-ntymy489o0/QQplUDnpYAYUsO50K9SBrIVaKCWDOJzYJts0f9WH9RFJkyagebkw5+y1oi00R7ynNW/d12GBumg==} dependencies: aproba: 1.2.0 dev: true - /rxjs-for-await/0.0.2_rxjs@6.6.7: - resolution: {integrity: sha512-IJ8R/ZCFMHOcDIqoABs82jal00VrZx8Xkgfe7TOKoaRPAW5nH/VFlG23bXpeGdrmtqI9UobFPgUKgCuFc7Lncw==} - peerDependencies: - rxjs: ^6.0.0 - dependencies: - rxjs: 6.6.7 - dev: true - - /rxjs/5.5.12: - resolution: {integrity: sha512-xx2itnL5sBbqeeiVgNPVuQQ1nC8Jp2WfNJhXWHmElW9YmrpS9UVnNzhP3EH3HFqexO5Tlp8GhYY+WEcqcVMvGw==} - engines: {npm: '>=2.0.0'} - dependencies: - symbol-observable: 1.0.1 - dev: false - - /rxjs/6.6.7: - resolution: {integrity: sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==} - engines: {npm: '>=2.0.0'} - dependencies: - tslib: 1.14.1 - dev: true - /rxjs/7.5.5: resolution: {integrity: sha512-sy+H0pQofO95VDmFLzyaw9xNJU4KTRSwQIGM6+iG3SypAtCiLDzpeG8sJrNCWn2Up9km+KhkvTdbkrdy+yzZdw==} dependencies: @@ -19279,7 +18981,7 @@ packages: resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} /safe-regex/1.1.0: - resolution: {integrity: sha1-QKNmnzsHfR6UPURinhV91IAjvy4=} + resolution: {integrity: sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==} dependencies: ret: 0.1.15 dev: true @@ -19313,66 +19015,16 @@ packages: xmlchars: 2.2.0 dev: true - /sc-auth/5.0.2: - resolution: {integrity: sha512-Le3YBsFjzv5g6wIH6Y+vD+KFkK0HDXiaWy1Gm4nXtYebMQUyNYSf1cS83MtHrYzVEMlhYElRva1b0bvZ0hBqQw==} - dependencies: - jsonwebtoken: 8.5.1 - sc-errors: 1.4.1 - dev: false - - /sc-broker-cluster/7.0.0: - resolution: {integrity: sha512-DNG8sxiFwmRSMS0sUXA25UvDV8QTwEfYnzrutqbp4HlMU9JP65FBcs6GuNFPhjQN4s9VtwAE8BBaCNK5BjNV0g==} - engines: {node: '>= 0.8.0'} - dependencies: - async: 2.0.0 - sc-broker: 6.0.0 - sc-channel: 1.2.0 - sc-errors: 1.4.1 - sc-hasher: 1.0.1 - dev: false - - /sc-broker/6.0.0: - resolution: {integrity: sha512-c1mFIllUdPnEXDDFxTiX3obYW+cT0hb56fdNM5k+Xo5DI3+3Q9MYxTc8jD23qBIXOHokt4+d/CHocmZQPlAjAQ==} - engines: {node: '>= 0.8.0'} - dependencies: - async: 2.6.4 - expirymanager: 0.9.4 - fleximap: 1.0.0 - ncom: 1.0.3 - sc-errors: 1.4.1 - uuid: 3.1.0 - dev: false - - /sc-channel/1.2.0: - resolution: {integrity: sha512-M3gdq8PlKg0zWJSisWqAsMmTVxYRTpVRqw4CWAdKBgAfVKumFcTjoCV0hYu7lgUXccCtCD8Wk9VkkE+IXCxmZA==} - dependencies: - component-emitter: 1.2.1 - - /sc-errors/1.4.1: - resolution: {integrity: sha512-dBn92iIonpChTxYLgKkIT/PCApvmYT6EPIbRvbQKTgY6tbEbIy8XVUv4pGyKwEK4nCmvX4TKXcN0iXC6tNW6rQ==} - dev: false - /sc-errors/2.0.1: resolution: {integrity: sha512-JoVhq3Ud+3Ujv2SIG7W0XtjRHsrNgl6iXuHHsh0s+Kdt5NwI6N2EGAZD4iteitdDv68ENBkpjtSvN597/wxPSQ==} - /sc-formatter/3.0.2: - resolution: {integrity: sha512-9PbqYBpCq+OoEeRQ3QfFIGE6qwjjBcd2j7UjgDlhnZbtSnuGgHdcRklPKYGuYFH82V/dwd+AIpu8XvA1zqTd+A==} + /sc-formatter/3.0.3: + resolution: {integrity: sha512-lYI/lTs1u1c0geKElcj+bmEUfcP/HuKg2iDeTijPSjiTNFzN3Cf8Qh6tVd65oi7Qn+2/oD7LP4s6GC13v/9NiQ==} - /sc-hasher/1.0.1: - resolution: {integrity: sha512-whZWw70Gp5ibXXMcz6+Tulmk8xkwWMs42gG70p12hGscdUg8BICBvihS3pX2T3dWTw+yeZuGKiULr3MwL37SOQ==} - dev: false - - /sc-simple-broker/2.1.3: - resolution: {integrity: sha512-ldt0ybOS5fVZSMea5Z8qVu7lmDBTy0qO9BD6TseJjRuPx+g+stfSqmPAb0RsCsQUXRH8A1koCbwsuUnI9BOxvw==} - dependencies: - sc-channel: 1.2.0 - dev: false - - /scheduler/0.20.2: - resolution: {integrity: sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==} + /scheduler/0.23.0: + resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==} dependencies: loose-envify: 1.4.0 - object-assign: 4.1.1 /schema-utils/1.0.0: resolution: {integrity: sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==} @@ -19420,23 +19072,17 @@ packages: ajv-keywords: 5.1.0_ajv@8.11.0 dev: true - /seamless-immutable/7.1.4: - resolution: {integrity: sha512-XiUO1QP4ki4E2PHegiGAlu6r82o5A+6tRh7IkGGTVg/h+UoeX4nFBeCGPOhb4CYjvkqsfm/TUtvOMYC1xmV30A==} - requiresBuild: true - dev: false - optional: true - /select-hose/2.0.0: - resolution: {integrity: sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=} + resolution: {integrity: sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==} dev: true - /selenium-webdriver/4.1.2: - resolution: {integrity: sha512-e4Ap8vQvhipgBB8Ry9zBiKGkU6kHKyNnWiavGGLKkrdW81Zv7NVMtFOL/j3yX0G8QScM7XIXijKssNd4EUxSOw==} + /selenium-webdriver/4.3.0: + resolution: {integrity: sha512-9XFr8w95BO7jageR61AtiB83fJNem3fdtOQcUpqIIDHWSxihomyG/yBlL1H4y/shi/dO/Ai3PJMAOG+OW3+JHw==} engines: {node: '>= 10.15.0'} dependencies: - jszip: 3.9.1 + jszip: 3.10.0 tmp: 0.2.1 - ws: 8.6.0 + ws: 8.8.0 transitivePeerDependencies: - bufferutil - utf-8-validate @@ -19450,7 +19096,7 @@ packages: dev: true /semver-compare/1.0.0: - resolution: {integrity: sha1-De4hahyUGrN+nvsXiPavxf9VN/w=} + resolution: {integrity: sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==} optional: true /semver/5.7.1: @@ -19527,7 +19173,7 @@ packages: dev: true /serve-favicon/2.5.0: - resolution: {integrity: sha1-k10kDN/g9YBTB/3+ln2IlCosvPA=} + resolution: {integrity: sha512-FMW2RvqNr03x+C0WxTyu6sOv21oOjkq5j8tjquWccwa6ScNyGFOGJVpuS1NmTVGBAHS07xnSKotgf2ehQmf9iA==} engines: {node: '>= 0.8.0'} dependencies: etag: 1.8.1 @@ -19538,7 +19184,7 @@ packages: dev: true /serve-index/1.9.1: - resolution: {integrity: sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=} + resolution: {integrity: sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==} engines: {node: '>= 0.8.0'} dependencies: accepts: 1.3.8 @@ -19564,17 +19210,12 @@ packages: - supports-color /set-blocking/2.0.0: - resolution: {integrity: sha1-BF+XgtARrppoA93TgrJDkrPYkPc=} + resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==} - /set-cookie-parser/2.4.8: - resolution: {integrity: sha512-edRH8mBKEWNVIVMKejNnuJxleqYE/ZSdcT8/Nem9/mmosx12pctd80s2Oy00KNZzrogMZS5mauK2/ymL1bvlvg==} + /set-cookie-parser/2.5.0: + resolution: {integrity: sha512-cHMAtSXilfyBePduZEBVPTCftTQWz6ehWJD5YNUg4mqvRosrrjKbo4WS8JkB0/RxonMoohHm7cOGH60mDkRQ9w==} dev: false - /set-immediate-shim/1.0.1: - resolution: {integrity: sha1-SysbJ+uAip+NzEgaWOXlb1mfP2E=} - engines: {node: '>=0.10.0'} - dev: true - /set-value/2.0.1: resolution: {integrity: sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==} engines: {node: '>=0.10.0'} @@ -19586,7 +19227,7 @@ packages: dev: true /setimmediate/1.0.5: - resolution: {integrity: sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=} + resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==} dev: true /setprototypeof/1.1.0: @@ -19608,13 +19249,12 @@ packages: engines: {node: '>=8'} dependencies: kind-of: 6.0.3 - dev: true /shallowequal/1.1.0: resolution: {integrity: sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==} /shebang-command/1.2.0: - resolution: {integrity: sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=} + resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==} engines: {node: '>=0.10.0'} dependencies: shebang-regex: 1.0.0 @@ -19627,7 +19267,7 @@ packages: shebang-regex: 3.0.0 /shebang-regex/1.0.0: - resolution: {integrity: sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=} + resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==} engines: {node: '>=0.10.0'} dev: true @@ -19639,14 +19279,14 @@ packages: resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} dependencies: call-bind: 1.0.2 - get-intrinsic: 1.1.1 - object-inspect: 1.12.0 + get-intrinsic: 1.1.2 + object-inspect: 1.12.2 /signal-exit/3.0.7: resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} /simple-diff/1.6.0: - resolution: {integrity: sha1-m7XZUKe0ZNHsyG8gTog2UBnVpUI=} + resolution: {integrity: sha512-99OIdUsKPcn8V8eGl+UGy3H95WpKcZGv3Iz/CoPCt6ZV4XuYkxk38sWEDXyXL7xOUfLoKHA4zXlcp3Z4DhxN0g==} dev: false /simple-element-resize-detector/1.3.0: @@ -19654,7 +19294,7 @@ packages: dev: false /simple-swizzle/0.2.2: - resolution: {integrity: sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=} + resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==} dependencies: is-arrayish: 0.3.2 dev: false @@ -19693,6 +19333,11 @@ packages: engines: {node: '>=8'} dev: true + /slash/4.0.0: + resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==} + engines: {node: '>=12'} + dev: true + /slice-ansi/4.0.0: resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==} engines: {node: '>=10'} @@ -19703,7 +19348,7 @@ packages: dev: true /sliced/1.0.1: - resolution: {integrity: sha1-CzpmK10Ewxd7GSa+qCsD+Dei70E=} + resolution: {integrity: sha512-VZBmZP8WU3sMOZm1bdgTadsQbcscK0UM8oKxKVBs4XAhUo2Xxzm/OFMGBkPusxw9xL3Uy8LrzEqGqJhclsr0yA==} dev: false /smart-buffer/4.2.0: @@ -19712,11 +19357,12 @@ packages: dev: false optional: true - /smartwrap/1.2.5: - resolution: {integrity: sha512-bzWRwHwu0RnWjwU7dFy7tF68pDAx/zMSu3g7xr9Nx5J0iSImYInglwEVExyHLxXljy6PWMjkSAbwF7t2mPnRmg==} - deprecated: Backported compatibility to node > 6 + /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 grapheme-splitter: 1.0.4 strip-ansi: 6.0.1 @@ -19756,55 +19402,39 @@ packages: - supports-color dev: true - /socketcluster-client/14.3.2: - resolution: {integrity: sha512-xDtgW7Ss0ARlfhx53bJ5GY5THDdEOeJnT+/C9Rmrj/vnZr54xeiQfrCZJbcglwe732nK3V+uZq87IvrRl7Hn4g==} + /socketcluster-client/16.1.1: + resolution: {integrity: sha512-Fv/O8Dnb62fDLHRfh0Vr0FLrK/IzcFCukAqZlTE3L2LkI8ZY+24GzUNvYn3NnppSfqjEjEl1bLm26guqPAqlpQ==} dependencies: + ag-channel: 5.0.0 + ag-request: 1.0.0 + async-stream-emitter: 4.0.0 buffer: 5.7.1 - clone: 2.1.1 - component-emitter: 1.2.1 + clone-deep: 4.0.1 linked-list: 0.1.0 - querystring: 0.2.0 - sc-channel: 1.2.0 sc-errors: 2.0.1 - sc-formatter: 3.0.2 - uuid: 3.2.1 - ws: 7.5.7 + sc-formatter: 3.0.3 + stream-demux: 8.0.0 + uuid: 8.3.2 + vinyl-buffer: 1.0.1 + ws: 7.5.8 transitivePeerDependencies: - bufferutil - utf-8-validate - /socketcluster-server/14.7.2: - resolution: {integrity: sha512-PHFez3OXpxZ0jMm+JleYzshwCT7EXdldlVQnZpLCHM8BARSgbr6C+vuD5lHCvUDJc+T6kVFNEHQ1Hnhzw21CSw==} + /socketcluster-server/16.2.1: + resolution: {integrity: sha512-ARB3VmM5JIfehQR8Dk3he11v+DA7dEtSOX/97Dce7WTK4ELdbdyHpgPhOhFPhW6TWCd+43X6/LwMmcwJkx7vUQ==} dependencies: - async: 3.2.3 + ag-auth: 1.0.1 + ag-request: 1.0.0 + ag-simple-broker: 5.0.0 + async-stream-emitter: 4.0.0 base64id: 1.0.0 - component-emitter: 1.2.1 - lodash.clonedeep: 4.5.0 - sc-auth: 5.0.2 + clone-deep: 4.0.1 sc-errors: 2.0.1 - sc-formatter: 3.0.2 - sc-simple-broker: 2.1.3 - uuid: 3.2.1 - ws: 7.5.7 - transitivePeerDependencies: - - bufferutil - - utf-8-validate - dev: false - - /socketcluster/14.4.2: - resolution: {integrity: sha512-Z45tSQ6K/XUEyftrID1hyBXSdaK/gDeq6BMqhNR3XvjnUQ6HkkeTrxZUoXIn/In/J8KLl1WRVtvZAB0Zf9pEjA==} - hasBin: true - dependencies: - async: 2.3.0 - fs-extra: 6.0.1 - inquirer: 5.2.0 - minimist: 1.2.0 - sc-auth: 5.0.2 - sc-broker-cluster: 7.0.0 - sc-errors: 1.4.1 - socketcluster-server: 14.7.2 - uid-number: 0.0.6 - uuid: 3.2.1 + sc-formatter: 3.0.3 + stream-demux: 8.0.0 + writable-consumable-stream: 2.0.0 + ws: 7.5.8 transitivePeerDependencies: - bufferutil - utf-8-validate @@ -19818,8 +19448,8 @@ packages: websocket-driver: 0.7.4 dev: true - /socks-proxy-agent/6.2.0: - resolution: {integrity: sha512-wWqJhjb32Q6GsrUqzuFkukxb/zzide5quXYcMVpIjxalDBBYy2nqKCFQ/9+Ie4dvOYSQdOk3hUlZSdzZOd3zMQ==} + /socks-proxy-agent/6.2.1: + resolution: {integrity: sha512-a6KW9G+6B3nWZ1yB8G7pJwL3ggLy1uTzKAgCb7ttblwqdz9fMGJUuTy3uFzEP48FAs9FLILlmzDlE2JJhVQaXQ==} engines: {node: '>= 10'} dependencies: agent-base: 6.0.2 @@ -19834,7 +19464,7 @@ packages: resolution: {integrity: sha512-zDZhHhZRY9PxRruRMR7kMhnf3I8hDs4S3f9RecfnGxvcBHQcKcIH/oUcEWffsfl1XxdYlA7nnlGbbTvPz9D8gA==} engines: {node: '>= 10.13.0', npm: '>= 3.0.0'} dependencies: - ip: 1.1.5 + ip: 1.1.8 smart-buffer: 4.2.0 dev: false optional: true @@ -19880,7 +19510,7 @@ packages: dev: true /source-map/0.5.7: - resolution: {integrity: sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=} + resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==} engines: {node: '>=0.10.0'} /source-map/0.6.1: @@ -19888,18 +19518,11 @@ packages: engines: {node: '>=0.10.0'} dev: true - /source-map/0.7.3: - resolution: {integrity: sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==} + /source-map/0.7.4: + resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==} engines: {node: '>= 8'} dev: true - /source-map/0.8.0-beta.0: - resolution: {integrity: sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==} - engines: {node: '>= 8'} - dependencies: - whatwg-url: 7.1.0 - dev: true - /sourcemap-codec/1.4.8: resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==} dev: true @@ -19963,11 +19586,6 @@ packages: - supports-color dev: true - /specificity/0.4.1: - resolution: {integrity: sha512-1klA3Gi5PD1Wv9Q0wUoOQN1IWAuPu0D1U03ThXTr0cJ20+/iq2tHSDnK7Kk/0LXJ1ztUB2/1Os0wKmfyNgUQfg==} - hasBin: true - dev: true - /split-string/3.1.0: resolution: {integrity: sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==} engines: {node: '>=0.10.0'} @@ -19976,7 +19594,7 @@ packages: dev: true /sprintf-js/1.0.3: - resolution: {integrity: sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=} + resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} dev: true /sprintf-js/1.1.2: @@ -20024,8 +19642,8 @@ packages: escape-string-regexp: 2.0.0 dev: true - /stackframe/1.2.1: - resolution: {integrity: sha512-h88QkzREN/hy8eRdyNhhsO7RSJ5oyTqxxmmn0dzBIMUclZsjpfmrsg81vp8mjjAs2vAZ72nyWxRUwSwmh0e4xg==} + /stackframe/1.3.4: + resolution: {integrity: sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==} dev: true /state-toggle/1.0.3: @@ -20033,7 +19651,7 @@ packages: dev: true /static-extend/0.1.2: - resolution: {integrity: sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=} + resolution: {integrity: sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==} engines: {node: '>=0.10.0'} dependencies: define-property: 0.2.5 @@ -20041,7 +19659,7 @@ packages: dev: true /statuses/1.5.0: - resolution: {integrity: sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=} + resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==} engines: {node: '>= 0.6'} dev: true @@ -20060,6 +19678,12 @@ packages: readable-stream: 2.3.7 dev: true + /stream-demux/8.0.0: + resolution: {integrity: sha512-vt6P85yEUxiapK9F+ET5BLyto1DnCD4Sl7MlDklDgcb4K5SGXPtOPz9DiP7vTooJ1wW1F/VRPlcSV22Coeim1A==} + dependencies: + consumable-stream: 2.0.0 + writable-consumable-stream: 2.0.0 + /stream-each/1.2.3: resolution: {integrity: sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==} dependencies: @@ -20101,14 +19725,6 @@ packages: strip-ansi: 6.0.1 dev: true - /string-width/2.1.1: - resolution: {integrity: sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==} - engines: {node: '>=4'} - dependencies: - is-fullwidth-code-point: 2.0.0 - strip-ansi: 4.0.0 - dev: false - /string-width/4.2.3: resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} engines: {node: '>=8'} @@ -20122,8 +19738,8 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.0 - get-intrinsic: 1.1.1 + es-abstract: 1.20.1 + get-intrinsic: 1.1.2 has-symbols: 1.0.3 internal-slot: 1.0.3 regexp.prototype.flags: 1.4.3 @@ -20136,7 +19752,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.0 + es-abstract: 1.20.1 dev: true /string.prototype.padstart/3.1.3: @@ -20145,7 +19761,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.0 + es-abstract: 1.20.1 dev: true /string.prototype.trimend/1.0.5: @@ -20153,7 +19769,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.0 + es-abstract: 1.20.1 dev: true /string.prototype.trimstart/1.0.5: @@ -20161,7 +19777,7 @@ packages: dependencies: call-bind: 1.0.2 define-properties: 1.1.4 - es-abstract: 1.20.0 + es-abstract: 1.20.1 dev: true /string_decoder/1.1.1: @@ -20175,27 +19791,28 @@ packages: safe-buffer: 5.2.1 /strip-ansi/3.0.1: - resolution: {integrity: sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=} + resolution: {integrity: sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==} engines: {node: '>=0.10.0'} dependencies: ansi-regex: 2.1.1 dev: true - /strip-ansi/4.0.0: - resolution: {integrity: sha1-qEeQIusaw2iocTibY1JixQXuNo8=} - engines: {node: '>=4'} - dependencies: - ansi-regex: 3.0.1 - dev: false - /strip-ansi/6.0.1: resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} engines: {node: '>=8'} dependencies: ansi-regex: 5.0.1 + /strip-bom/2.0.0: + resolution: {integrity: sha512-kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g==} + engines: {node: '>=0.10.0'} + dependencies: + is-utf8: 0.2.1 + dev: true + optional: true + /strip-bom/3.0.0: - resolution: {integrity: sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=} + resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} engines: {node: '>=4'} dev: true @@ -20205,7 +19822,7 @@ packages: dev: true /strip-eof/1.0.0: - resolution: {integrity: sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=} + resolution: {integrity: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==} engines: {node: '>=0.10.0'} dev: true @@ -20214,6 +19831,15 @@ packages: engines: {node: '>=6'} dev: true + /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: true + optional: true + /strip-indent/3.0.0: resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} engines: {node: '>=8'} @@ -20237,17 +19863,17 @@ packages: webpack: 4.46.0 dev: true - /style-loader/3.3.1_webpack@5.72.0: + /style-loader/3.3.1_webpack@5.73.0: resolution: {integrity: sha512-GPcQ+LDJbrcxHORTRes6Jy2sfvK2kS6hpSfI/fXhPt+spVzxF6LJ1dHLN9zIGmVaaP044YKaIatFaufENRiDoQ==} engines: {node: '>= 12.13.0'} peerDependencies: webpack: ^5.0.0 dependencies: - webpack: 5.72.0_webpack-cli@4.9.2 + webpack: 5.73.0_webpack-cli@4.10.0 dev: true /style-search/0.1.0: - resolution: {integrity: sha1-eVjHk+R+MuB9K1yv5cC/jhLneQI=} + resolution: {integrity: sha512-Dj1Okke1C3uKKwQcetra4jSuk0DqbzbYtXipzFlFMZtowbF1x7BKJwB9AayVMyFARvU8EDrZdcax4At/452cAg==} dev: true /style-to-object/0.3.0: @@ -20263,54 +19889,54 @@ packages: tslib: 2.4.0 dev: false - /styled-components/5.3.5_281a4fa50a045c9112baf635f3bc27a7: + /styled-components/5.3.5_7i5myeigehqah43i5u7wbekgba: resolution: {integrity: sha512-ndETJ9RKaaL6q41B69WudeqLzOpY1A/ET/glXkNZ2T7dPjPqpPCXXQjDFYZWwNnE5co0wX+gTCqx9mfxTmSIPg==} engines: {node: '>=10'} requiresBuild: true peerDependencies: - react: '>= 16.8.0' - react-dom: '>= 16.8.0' + react: '>= 16.8.0 || 18' + react-dom: '>= 16.8.0 || 18' react-is: '>= 16.8.0' dependencies: '@babel/helper-module-imports': 7.16.7 - '@babel/traverse': 7.17.10_supports-color@5.5.0 - '@emotion/is-prop-valid': 1.1.2 + '@babel/traverse': 7.18.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: 2.0.7_styled-components@5.3.5 css-to-react-native: 3.0.0 hoist-non-react-statics: 3.3.2 - react: 17.0.2 - react-dom: 17.0.2_react@17.0.2 - react-is: 17.0.2 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + react-is: 18.2.0 shallowequal: 1.1.0 supports-color: 5.5.0 - /stylelint-config-prettier/9.0.3_stylelint@14.8.2: + /stylelint-config-prettier/9.0.3_stylelint@14.9.1: resolution: {integrity: sha512-5n9gUDp/n5tTMCq1GLqSpA30w2sqWITSSEiAWQlpxkKGAUbjcemQ0nbkRvRUa0B1LgD3+hCvdL7B1eTxy1QHJg==} engines: {node: '>= 12'} hasBin: true peerDependencies: stylelint: '>=11.0.0' dependencies: - stylelint: 14.8.2 + stylelint: 14.9.1 dev: true - /stylelint-config-recommended/7.0.0_stylelint@14.8.2: + /stylelint-config-recommended/7.0.0_stylelint@14.9.1: resolution: {integrity: sha512-yGn84Bf/q41J4luis1AZ95gj0EQwRX8lWmGmBwkwBNSkpGSpl66XcPTulxGa/Z91aPoNGuIGBmFkcM1MejMo9Q==} peerDependencies: stylelint: ^14.4.0 dependencies: - stylelint: 14.8.2 + stylelint: 14.9.1 dev: true - /stylelint-config-standard/25.0.0_stylelint@14.8.2: + /stylelint-config-standard/25.0.0_stylelint@14.9.1: resolution: {integrity: sha512-21HnP3VSpaT1wFjFvv9VjvOGDtAviv47uTp3uFmzcN+3Lt+RYRv6oAplLaV51Kf792JSxJ6svCJh/G18E9VnCA==} peerDependencies: stylelint: ^14.4.0 dependencies: - stylelint: 14.8.2 - stylelint-config-recommended: 7.0.0_stylelint@14.8.2 + stylelint: 14.9.1 + stylelint-config-recommended: 7.0.0_stylelint@14.9.1 dev: true /stylelint-config-styled-components/0.1.1: @@ -20320,23 +19946,24 @@ packages: /stylelint-processor-styled-components/1.10.0: resolution: {integrity: sha512-g4HpN9rm0JD0LoHuIOcd/FIjTZCJ0ErQ+dC3VTxp+dSvnkV+MklKCCmCQEdz5K5WxF4vPuzfVgdbSDuPYGZhoA==} dependencies: - '@babel/parser': 7.17.10 - '@babel/traverse': 7.17.10 + '@babel/parser': 7.18.5 + '@babel/traverse': 7.18.5 micromatch: 4.0.5 postcss: 7.0.39 transitivePeerDependencies: - supports-color dev: true - /stylelint/14.8.2: - resolution: {integrity: sha512-tjDfexCYfoPdl/xcDJ9Fv+Ko9cvzbDnmdiaqEn3ovXHXasi/hbkt5tSjsiReQ+ENqnz0eltaX/AOO+AlzVdcNA==} + /stylelint/14.9.1: + resolution: {integrity: sha512-RdAkJdPiLqHawCSnu21nE27MjNXaVd4WcOHA4vK5GtIGjScfhNnaOuWR2wWdfKFAvcWQPOYe311iveiVKSmwsA==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} hasBin: true dependencies: + '@csstools/selector-specificity': 2.0.1_444rcjjorr3kpoqtvoodsr46pu balanced-match: 2.0.0 colord: 2.9.2 cosmiconfig: 7.0.1 - css-functions-list: 3.0.1 + css-functions-list: 3.1.0 debug: 4.3.4 execall: 2.0.0 fast-glob: 3.2.11 @@ -20356,16 +19983,14 @@ packages: meow: 9.0.0 micromatch: 4.0.5 normalize-path: 3.0.0 - normalize-selector: 0.2.0 picocolors: 1.0.0 - postcss: 8.4.13 + postcss: 8.4.14 postcss-media-query-parser: 0.2.3 postcss-resolve-nested-selector: 0.1.1 - postcss-safe-parser: 6.0.0_postcss@8.4.13 + postcss-safe-parser: 6.0.0_postcss@8.4.14 postcss-selector-parser: 6.0.10 postcss-value-parser: 4.2.0 resolve-from: 5.0.0 - specificity: 0.4.1 string-width: 4.2.3 strip-ansi: 6.0.1 style-search: 0.1.0 @@ -20390,8 +20015,8 @@ packages: transitivePeerDependencies: - supports-color - /superagent/7.1.3: - resolution: {integrity: sha512-WA6et4nAvgBCS73lJvv1D0ssI5uk5Gh+TGN/kNe+B608EtcVs/yzfl+OLXTzDs7tOBDIpvgh/WUs1K2OK1zTeQ==} + /superagent/7.1.6: + resolution: {integrity: sha512-gZkVCQR1gy/oUXr+kxJMLDjla434KmSOKbx5iGD30Ql+AkJQ/YlPKECJy2nhqOsHLjGHzoDTXNSjhnvWhzKk7g==} engines: {node: '>=6.4.0 <13 || >=14'} dependencies: component-emitter: 1.3.0 @@ -20402,7 +20027,7 @@ packages: formidable: 2.0.1 methods: 1.1.2 mime: 2.6.0 - qs: 6.10.3 + qs: 6.10.5 readable-stream: 3.6.0 semver: 7.3.7 transitivePeerDependencies: @@ -20414,7 +20039,7 @@ packages: engines: {node: '>=6.0.0'} dependencies: methods: 1.1.2 - superagent: 7.1.3 + superagent: 7.1.6 transitivePeerDependencies: - supports-color dev: true @@ -20451,14 +20076,9 @@ packages: engines: {node: '>= 0.4'} /svg-tags/1.0.0: - resolution: {integrity: sha1-WPcc7jvVGbWdSyqEO2x95krAR2Q=} + resolution: {integrity: sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==} dev: true - /symbol-observable/1.0.1: - resolution: {integrity: sha1-g0D8RwLDEi310iKI+IKD9RPT/dQ=} - engines: {node: '>=0.10.0'} - dev: false - /symbol-observable/1.2.0: resolution: {integrity: sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==} engines: {node: '>=0.10.0'} @@ -20475,7 +20095,7 @@ packages: call-bind: 1.0.2 get-symbol-description: 1.0.0 has-symbols: 1.0.3 - object.getownpropertydescriptors: 2.1.3 + object.getownpropertydescriptors: 2.1.4 dev: true /synchronous-promise/2.0.15: @@ -20539,8 +20159,8 @@ packages: - supports-color dev: true - /telejson/5.3.3: - resolution: {integrity: sha512-PjqkJZpzEggA9TBpVtJi1LVptP7tYtXB6rEubwlHap76AMjzvOdKX41CxyaW7ahhzDU1aftXnMCx5kAPDZTQBA==} + /telejson/6.0.8: + resolution: {integrity: sha512-nerNXi+j8NK1QEfBHtZUN/aLdDcyupA//9kAboYLrtzZlPLpUfqbVGWb9zz91f/mIjRbAYhbgtnJHY8I1b5MBg==} dependencies: '@types/is-function': 1.0.1 global: 4.4.0 @@ -20596,15 +20216,15 @@ packages: schema-utils: 3.1.1 serialize-javascript: 5.0.1 source-map: 0.6.1 - terser: 5.13.1 + terser: 5.14.1 webpack: 4.46.0 webpack-sources: 1.4.3 transitivePeerDependencies: - bluebird dev: true - /terser-webpack-plugin/5.3.1_webpack@5.72.0: - resolution: {integrity: sha512-GvlZdT6wPQKbDNW/GDQzZFg/j4vKU96yl2q6mcUkzKOgW4gwf1Z8cZToUCrz31XHlPWH8MVb1r2tFtdDtTGJ7g==} + /terser-webpack-plugin/5.3.3_webpack@5.73.0: + resolution: {integrity: sha512-Fx60G5HNYknNTNQnzQ1VePRuu89ZVYWfjRAeT5rITuCY/1b08s49e5kSQwHDirKZWuoKOBRFS98EUUoZ9kLEwQ==} engines: {node: '>= 10.13.0'} peerDependencies: '@swc/core': '*' @@ -20619,12 +20239,12 @@ packages: uglify-js: optional: true dependencies: + '@jridgewell/trace-mapping': 0.3.13 jest-worker: 27.5.1 schema-utils: 3.1.1 serialize-javascript: 6.0.0 - source-map: 0.6.1 - terser: 5.13.1 - webpack: 5.72.0 + terser: 5.14.1 + webpack: 5.73.0_webpack-cli@4.10.0 dev: true /terser/4.8.0: @@ -20638,14 +20258,14 @@ packages: source-map-support: 0.5.21 dev: true - /terser/5.13.1: - resolution: {integrity: sha512-hn4WKOfwnwbYfe48NgrQjqNOH9jzLqRcIfbYytOXCOv46LBfWr9bDS17MQqOi+BWGD0sJK3Sj5NC/gJjiojaoA==} + /terser/5.14.1: + resolution: {integrity: sha512-+ahUAE+iheqBTDxXhTisdA8hgvbEG1hHOQ9xmNjeUJSoi6DU/gMrKNcfZjHkyY6Alnuyc+ikYJaxxfHkT3+WuQ==} engines: {node: '>=10'} hasBin: true dependencies: + '@jridgewell/source-map': 0.3.2 acorn: 8.7.1 commander: 2.20.3 - source-map: 0.8.0-beta.0 source-map-support: 0.5.21 dev: true @@ -20654,25 +20274,20 @@ packages: engines: {node: '>=8'} dependencies: '@istanbuljs/schema': 0.1.3 - glob: 7.2.0 + glob: 7.2.3 minimatch: 3.1.2 dev: true /text-table/0.2.0: - resolution: {integrity: sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=} + resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} dev: true /throat/6.0.1: resolution: {integrity: sha512-8hmiGIJMDlwjg7dlJ4yKGLK8EsYqKgPWbG3b4wjJddKNwc7N7Dpn08Df4szr/sZdMVeOstrdYSsqzX6BYbcB+w==} dev: true - /throttle-debounce/3.0.1: - resolution: {integrity: sha512-dTEWWNu6JmeVXY0ZYoPuH5cRIwc0MeGbJwah9KUNYSJwommQpCzTySTpEe8Gs1J23aeWEuAobe4Ag7EHVt/LOg==} - engines: {node: '>=10'} - dev: true - /through/2.3.8: - resolution: {integrity: sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=} + resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} dev: false /through2/2.0.5: @@ -20680,14 +20295,13 @@ packages: dependencies: readable-stream: 2.3.7 xtend: 4.0.2 - dev: true /thunky/1.1.0: resolution: {integrity: sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==} dev: true /ticky/1.0.1: - resolution: {integrity: sha1-t8+nHnaPHJAAxJe5FRswlHxQ5G0=} + resolution: {integrity: sha512-RX35iq/D+lrsqhcPWIazM9ELkjOe30MSeoBHQHSsRwd1YuhJO5ui1K1/R0r7N3mFvbLBs33idw+eR6j+w6i/DA==} dev: false /tildify/2.0.0: @@ -20728,20 +20342,20 @@ packages: dev: true /to-arraybuffer/1.0.1: - resolution: {integrity: sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=} + resolution: {integrity: sha512-okFlQcoGTi4LQBG/PgSYblw9VOyptsz2KJZqc6qtgGdes8VktzUQkj4BI2blit072iS8VODNcMA+tvnS9dnuMA==} dev: true /to-fast-properties/1.0.3: - resolution: {integrity: sha1-uDVx+k2MJbguIxsG46MFXeTKGkc=} + resolution: {integrity: sha512-lxrWP8ejsq+7E3nNjwYmUBMAgjMTZoTI+sdBOpvNyijeDLa29LUn9QaoXAHv4+Z578hbmHHJKZknzxVtvo77og==} engines: {node: '>=0.10.0'} dev: true /to-fast-properties/2.0.0: - resolution: {integrity: sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=} + resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} engines: {node: '>=4'} /to-object-path/0.3.0: - resolution: {integrity: sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=} + resolution: {integrity: sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==} engines: {node: '>=0.10.0'} dependencies: kind-of: 3.2.2 @@ -20752,7 +20366,7 @@ packages: engines: {node: '>=6'} /to-regex-range/2.1.1: - resolution: {integrity: sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=} + resolution: {integrity: sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==} engines: {node: '>=0.10.0'} dependencies: is-number: 3.0.0 @@ -20780,14 +20394,15 @@ packages: dev: false /toggle-selection/1.0.6: - resolution: {integrity: sha1-bkWxJj8gF/oKzH2J14sVuL932jI=} + resolution: {integrity: sha512-BiZS+C1OS8g/q2RRbJmy59xpyghNBqrr6k5L/uKBGRsTfxmu3ffiRnd8mlGPUVayg8pvfi5urfnu8TU7DVOkLQ==} + dev: false /toidentifier/1.0.1: resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} engines: {node: '>=0.6'} /token-stream/0.0.1: - resolution: {integrity: sha1-zu78cXp2xDFvEm0LnbqlXX598Bo=} + resolution: {integrity: sha512-nfjOAu/zAWmX9tgwi5NRp7O7zTDUD1miHiB40klUnAh9qnL1iXdgzcz/i5dMaL5jahcBAaSfmNOBBJBLJW8TEg==} dev: true /tough-cookie/4.0.0: @@ -20800,13 +20415,7 @@ packages: dev: true /tr46/0.0.3: - resolution: {integrity: sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o=} - - /tr46/1.0.1: - resolution: {integrity: sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk=} - dependencies: - punycode: 2.1.1 - dev: true + resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} /tr46/2.1.0: resolution: {integrity: sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==} @@ -20815,6 +20424,12 @@ packages: punycode: 2.1.1 dev: true + /trim-newlines/1.0.0: + resolution: {integrity: sha512-Nm4cF79FhSTzrLKGDMi3I4utBtFv8qKy4sq1enftf2gMdpqI8oVQTAfySkTz5r49giVzDj88SVZXP4CeYQwjaw==} + engines: {node: '>=0.10.0'} + dev: true + optional: true + /trim-newlines/3.0.1: resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==} engines: {node: '>=8'} @@ -20825,7 +20440,7 @@ packages: dev: true /trim/0.0.1: - resolution: {integrity: sha1-WFhUf2spB1fulczMZm+1AITEYN0=} + resolution: {integrity: sha512-YzQV+TZg4AxpKxaTHK3c3D+kRDCGVEE7LemdlQZoQXn0iennk10RsIoY6ikzAqJTc9Xjl9C1/waHom/J86ziAQ==} dev: true /trough/1.0.5: @@ -20837,8 +20452,8 @@ packages: engines: {node: '>=6.10'} dev: true - /ts-jest/27.1.4_1b8efe0ed321f0989772e89f9c474479: - resolution: {integrity: sha512-qjkZlVPWVctAezwsOD1OPzbZ+k7zA5z3oxII4dGdZo5ggX/PL7kvwTM0pXTr10fAtbiVpJaL3bWd502zAhpgSQ==} + /ts-jest/27.1.5_7giygfzd3xe4pjz4ngu3nwlqbm: + resolution: {integrity: sha512-Xv6jBQPoBEvBq/5i2TeSG9tt/nqkbpcurrEG1b+2yfBrcJelOZF9Ml6dmyMh7bcW9JyFbRYpR5rxROSlBLTZHA==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} hasBin: true peerDependencies: @@ -20858,7 +20473,8 @@ packages: esbuild: optional: true dependencies: - '@babel/core': 7.17.10 + '@babel/core': 7.18.5 + '@types/jest': 27.5.2 bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 jest: 27.5.1 @@ -20867,12 +20483,12 @@ packages: lodash.memoize: 4.1.2 make-error: 1.3.6 semver: 7.3.7 - typescript: 4.6.4 + typescript: 4.7.4 yargs-parser: 20.2.9 dev: true - /ts-jest/27.1.4_6b62438663b23957550c965172b78733: - resolution: {integrity: sha512-qjkZlVPWVctAezwsOD1OPzbZ+k7zA5z3oxII4dGdZo5ggX/PL7kvwTM0pXTr10fAtbiVpJaL3bWd502zAhpgSQ==} + /ts-jest/27.1.5_fddvm4zdts2kttulaik7bnebje: + resolution: {integrity: sha512-Xv6jBQPoBEvBq/5i2TeSG9tt/nqkbpcurrEG1b+2yfBrcJelOZF9Ml6dmyMh7bcW9JyFbRYpR5rxROSlBLTZHA==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} hasBin: true peerDependencies: @@ -20892,8 +20508,7 @@ packages: esbuild: optional: true dependencies: - '@babel/core': 7.17.10 - '@types/jest': 27.5.0 + '@babel/core': 7.18.5 bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 jest: 27.5.1 @@ -20902,12 +20517,46 @@ packages: lodash.memoize: 4.1.2 make-error: 1.3.6 semver: 7.3.7 - typescript: 4.6.4 + typescript: 4.7.4 yargs-parser: 20.2.9 dev: true - /ts-node/10.7.0_fd4b5ff48b408bf425abfec4a641da13: - resolution: {integrity: sha512-TbIGS4xgJoX2i3do417KSaep1uRAW/Lu+WAL2doDHC0D6ummjirVOXU5/7aiZotbQ5p1Zp9tP7U6cYhA0O7M8A==} + /ts-jest/27.1.5_mqaoisgizytgigbr3gbjwvnjie: + resolution: {integrity: sha512-Xv6jBQPoBEvBq/5i2TeSG9tt/nqkbpcurrEG1b+2yfBrcJelOZF9Ml6dmyMh7bcW9JyFbRYpR5rxROSlBLTZHA==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + hasBin: true + peerDependencies: + '@babel/core': '>=7.0.0-beta.0 <8' + '@types/jest': ^27.0.0 + babel-jest: '>=27.0.0 <28' + esbuild: '*' + jest: ^27.0.0 + typescript: '>=3.8 <5.0' + peerDependenciesMeta: + '@babel/core': + optional: true + '@types/jest': + optional: true + babel-jest: + optional: true + esbuild: + optional: true + dependencies: + '@types/jest': 27.5.2 + bs-logger: 0.2.6 + fast-json-stable-stringify: 2.1.0 + jest: 27.5.1 + jest-util: 27.5.1 + json5: 2.2.1 + lodash.memoize: 4.1.2 + make-error: 1.3.6 + semver: 7.3.7 + typescript: 4.7.4 + yargs-parser: 20.2.9 + dev: true + + /ts-node/10.8.1_qqpsu5gwjto2muvbbvmj4ndcmu: + resolution: {integrity: sha512-Wwsnao4DQoJsN034wePSg5nZiw4YKXf56mPIAeD6wVmiv+RytNSWqc2f3fKvcUoV+Yn2+yocD71VOfQHbmVX4g==} hasBin: true peerDependencies: '@swc/core': '>=1.2.50' @@ -20920,24 +20569,24 @@ packages: '@swc/wasm': optional: true dependencies: - '@cspotcode/source-map-support': 0.7.0 - '@tsconfig/node10': 1.0.8 - '@tsconfig/node12': 1.0.9 - '@tsconfig/node14': 1.0.1 - '@tsconfig/node16': 1.0.2 - '@types/node': 16.11.33 + '@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.11.41 acorn: 8.7.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.6.4 + typescript: 4.7.4 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 dev: true - /ts-pnp/1.2.0_typescript@4.6.4: + /ts-pnp/1.2.0_typescript@4.7.4: resolution: {integrity: sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==} engines: {node: '>=6'} peerDependencies: @@ -20946,7 +20595,7 @@ packages: typescript: optional: true dependencies: - typescript: 4.6.4 + typescript: 4.7.4 dev: true /ts-toolbelt/6.15.5: @@ -20965,38 +20614,35 @@ packages: /tslib/1.14.1: resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} - /tslib/2.3.1: - resolution: {integrity: sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==} - dev: false - /tslib/2.4.0: resolution: {integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==} - /tsutils/3.21.0_typescript@4.6.4: + /tsutils/3.21.0_typescript@4.7.4: 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.6.4 + typescript: 4.7.4 dev: true /tty-browserify/0.0.0: - resolution: {integrity: sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=} + resolution: {integrity: sha512-JVa5ijo+j/sOoHGjw0sxw734b1LhBkQ3bvUGNdxnVXDCX81Yx7TFgnZygxrIIWn23hbfTaMYLwRmAxFyDuFmIw==} dev: true - /tty-table/2.8.13: - resolution: {integrity: sha512-eVV/+kB6fIIdx+iUImhXrO22gl7f6VmmYh0Zbu6C196fe1elcHXd7U6LcLXu0YoVPc2kNesWiukYcdK8ZmJ6aQ==} - engines: {node: '>=8.16.0'} + /tty-table/4.1.6: + resolution: {integrity: sha512-kRj5CBzOrakV4VRRY5kUWbNYvo/FpOsz65DzI5op9P+cHov3+IqPbo1JE1ZnQGkHdZgNFDsrEjrfqqy/Ply9fw==} + engines: {node: '>=8.0.0'} hasBin: true dependencies: - chalk: 3.0.0 + chalk: 4.1.2 csv: 5.5.3 - smartwrap: 1.2.5 + kleur: 4.1.4 + smartwrap: 2.0.2 strip-ansi: 6.0.1 wcwidth: 1.0.1 - yargs: 15.4.1 + yargs: 17.5.1 dev: true /tunnel/0.0.6: @@ -21005,7 +20651,7 @@ packages: optional: true /type-check/0.3.2: - resolution: {integrity: sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=} + resolution: {integrity: sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==} engines: {node: '>= 0.8.0'} dependencies: prelude-ls: 1.1.2 @@ -21070,16 +20716,15 @@ packages: dev: true /typedarray/0.0.6: - resolution: {integrity: sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=} + resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==} - /typescript/4.6.4: - resolution: {integrity: sha512-9ia/jWHIEbo49HfjrLGfKbZSuWo9iTMwXO+Ca3pRsSpbsMbc7/IU8NKdCZVRRBafVPGnoJeFL76ZOAA84I9fEg==} + /typescript/4.7.4: + resolution: {integrity: sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ==} engines: {node: '>=4.2.0'} hasBin: true - dev: true /uglify-js/2.8.29: - resolution: {integrity: sha1-KcVzMUgFe7Th913zW3qcty5qWd0=} + resolution: {integrity: sha512-qLq/4y2pjcU3vhlhseXGGJ7VbFO4pBANu0kwl8VCa9KEI0V8VfZIx2Fy3w01iSTA/pGwKZSmu/+I4etLNDdt5w==} engines: {node: '>=0.8.0'} hasBin: true dependencies: @@ -21089,8 +20734,8 @@ packages: uglify-to-browserify: 1.0.2 dev: true - /uglify-js/3.15.4: - resolution: {integrity: sha512-vMOPGDuvXecPs34V74qDKk4iJ/SN4vL3Ow/23ixafENYvtrNvtbcgUeugTcUGRGsOF/5fU8/NYSL5Hyb3l1OJA==} + /uglify-js/3.16.1: + resolution: {integrity: sha512-X5BGTIDH8U6IQ1TIRP62YC36k+ULAa1d59BxlWvPUJ1NkW5L3FwcGfEzuVvGmhJFBu0YJ5Ge25tmRISqCmLiRQ==} engines: {node: '>=0.8.0'} hasBin: true requiresBuild: true @@ -21098,15 +20743,11 @@ packages: optional: true /uglify-to-browserify/1.0.2: - resolution: {integrity: sha1-bgkk1r2mta/jSeOabWMoUKD4grc=} + resolution: {integrity: sha512-vb2s1lYx2xBtUgy+ta+b2J/GLVUR+wmpINwHePmPRhOsIVCG2wDzKJ0n14GslH1BifsqVzSOwQhRaCAsZ/nI4Q==} requiresBuild: true dev: true optional: true - /uid-number/0.0.6: - resolution: {integrity: sha1-DqEOgDXo61uOREnwbaHHMGY7qoE=} - dev: false - /unbox-primitive/1.0.2: resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} dependencies: @@ -21116,15 +20757,15 @@ packages: which-boxed-primitive: 1.0.2 dev: true - /uncontrollable/7.2.1_react@17.0.2: + /uncontrollable/7.2.1_react@18.2.0: resolution: {integrity: sha512-svtcfoTADIB0nT9nltgjujTi7BzVmwjZClOmskKu/E8FW9BXzg9os8OLr4f8Dlnk0rYWJIWr4wv9eKUXiQvQwQ==} peerDependencies: - react: '>=15.0.0' + react: '>=15.0.0 || 18' dependencies: - '@babel/runtime': 7.17.9 - '@types/react': 17.0.45 + '@babel/runtime': 7.18.3 + '@types/react': 18.0.14 invariant: 2.2.4 - react: 17.0.2 + react: 18.2.0 react-lifecycles-compat: 3.0.4 dev: false @@ -21252,33 +20893,31 @@ packages: dev: true /unpipe/1.0.0: - resolution: {integrity: sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=} + resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} engines: {node: '>= 0.8'} /unset-value/1.0.0: - resolution: {integrity: sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=} + resolution: {integrity: sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==} engines: {node: '>=0.10.0'} dependencies: has-value: 0.3.1 isobject: 3.0.1 dev: true + /untildify/2.1.0: + resolution: {integrity: sha512-sJjbDp2GodvkB0FZZcn7k6afVisqX5BZD7Yq3xp4nN2O15BBK0cLm3Vwn2vQaF7UDS0UUsrQMkkplmDI5fskig==} + engines: {node: '>=0.10.0'} + dependencies: + os-homedir: 1.0.2 + dev: true + optional: true + /upath/1.2.0: resolution: {integrity: sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==} engines: {node: '>=4'} dev: true optional: true - /upath2/3.1.12: - resolution: {integrity: sha512-yC3eZeCyCXFWjy7Nu4pgjLhXNYjuzuUmJiRgSSw6TJp8Emc+E4951HGPJf+bldFC5SL7oBLeNbtm1fGzXn2gxw==} - peerDependencies: - '@types/node': '*' - dependencies: - path-is-network-drive: 1.0.13 - path-strip-sep: 1.0.10 - tslib: 2.4.0 - dev: true - /uri-js/4.4.1: resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} dependencies: @@ -21289,11 +20928,11 @@ packages: dev: true /urix/0.1.0: - resolution: {integrity: sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=} + resolution: {integrity: sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==} deprecated: Please see https://github.com/lydell/urix#deprecated dev: true - /url-loader/4.1.1_file-loader@6.2.0+webpack@4.46.0: + /url-loader/4.1.1_lit45vopotvaqup7lrvlnvtxwy: resolution: {integrity: sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==} engines: {node: '>= 10.13.0'} peerDependencies: @@ -21311,101 +20950,73 @@ packages: dev: true /url-parse-lax/3.0.0: - resolution: {integrity: sha1-FrXK/Afb42dsGxmZF3gj1lA6yww=} + resolution: {integrity: sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ==} engines: {node: '>=4'} dependencies: prepend-http: 2.0.0 /url/0.11.0: - resolution: {integrity: sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=} + resolution: {integrity: sha512-kbailJa29QrtXnxgq+DdCEGlbTeYM2eJUxsz6vjZavrCYPMIFHMKQmSKYAIuUK2i7hgPm28a8piX5NTUtM/LKQ==} dependencies: punycode: 1.3.2 querystring: 0.2.0 dev: true - /use-callback-ref/1.3.0_3df41e700a554c2356b362be396a0af4: + /use-callback-ref/1.3.0_luyos4mouogwq6z3wafb3re4ce: resolution: {integrity: sha512-3FT9PRuRdbB9HfXhEq35u4oZkvpJ5kuYbpqhCfmiZyReuRgpnhDlbr2ZEnnuS0RrJAPn6l23xjFg9kpDM+Ms7w==} engines: {node: '>=10'} peerDependencies: '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 peerDependenciesMeta: '@types/react': optional: true dependencies: - '@types/react': 17.0.45 - react: 17.0.2 + '@types/react': 18.0.14 + react: 18.2.0 tslib: 2.4.0 dev: false - /use-composed-ref/1.3.0_react@17.0.2: - resolution: {integrity: sha512-GLMG0Jc/jiKov/3Ulid1wbv3r54K9HlMW29IWcDFPEqFkSO2nS0MuefWgMJpeHQ9YJeXDL3ZUF+P3jdXlZX/cQ==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - dependencies: - react: 17.0.2 - dev: true - - /use-isomorphic-layout-effect/1.1.2_3df41e700a554c2356b362be396a0af4: - resolution: {integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==} - peerDependencies: - '@types/react': '*' - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@types/react': - optional: true - dependencies: - '@types/react': 17.0.45 - react: 17.0.2 - dev: true - - /use-latest/1.2.1_3df41e700a554c2356b362be396a0af4: - resolution: {integrity: sha512-xA+AVm/Wlg3e2P/JiItTziwS7FK92LWrDB0p+hgXloIMuVCeJJ8v6f0eeHyPZaJrM+usM1FkFfbNCrJGs8A/zw==} - peerDependencies: - '@types/react': '*' - react: ^16.8.0 || ^17.0.0 || ^18.0.0 - peerDependenciesMeta: - '@types/react': - optional: true - dependencies: - '@types/react': 17.0.45 - react: 17.0.2 - use-isomorphic-layout-effect: 1.1.2_3df41e700a554c2356b362be396a0af4 - dev: true - - /use-sidecar/1.1.2_3df41e700a554c2356b362be396a0af4: + /use-sidecar/1.1.2_luyos4mouogwq6z3wafb3re4ce: resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==} engines: {node: '>=10'} peerDependencies: '@types/react': ^16.9.0 || ^17.0.0 || ^18.0.0 - react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 peerDependenciesMeta: '@types/react': optional: true dependencies: - '@types/react': 17.0.45 + '@types/react': 18.0.14 detect-node-es: 1.1.0 - react: 17.0.2 + react: 18.2.0 tslib: 2.4.0 dev: false + /use-sync-external-store/1.2.0_react@18.2.0: + resolution: {integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 + dependencies: + react: 18.2.0 + /use/3.1.1: resolution: {integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==} engines: {node: '>=0.10.0'} dev: true /util-deprecate/1.0.2: - resolution: {integrity: sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=} + resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} /util.promisify/1.0.0: resolution: {integrity: sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==} dependencies: define-properties: 1.1.4 - object.getownpropertydescriptors: 2.1.3 + object.getownpropertydescriptors: 2.1.4 dev: true /util/0.10.3: - resolution: {integrity: sha1-evsa/lCAUkZInj23/g7TeTNqwPk=} + resolution: {integrity: sha512-5KiHfsmkqacuKjkRkdV7SsfDJ2EGiPsK92s2MhNSY0craxjTdKTtqKsJaCWp4LW33ZZ0OPUv1WO/TFvNQRiQxQ==} dependencies: inherits: 2.0.1 dev: true @@ -21417,28 +21028,17 @@ packages: dev: true /utila/0.4.0: - resolution: {integrity: sha1-ihagXURWV6Oupe7MWxKk+lN5dyw=} + resolution: {integrity: sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==} dev: true /utils-merge/1.0.1: - resolution: {integrity: sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=} + resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==} engines: {node: '>= 0.4.0'} /uuid-browser/3.1.0: - resolution: {integrity: sha1-DwWkCu90+eWVHiDvv0SxGHHlZBA=} + resolution: {integrity: sha512-dsNgbLaTrd6l3MMxTtouOCFw4CBFc/3a+GgYA2YyrJvyQ1u6q4pcu3ktLoUZ/VN/Aw9WsauazbgsgdfVWgAKQg==} dev: true - /uuid/3.1.0: - resolution: {integrity: sha512-DIWtzUkw04M4k3bf1IcpS2tngXEL26YUD2M0tMDUpnUrz2hgzUBlD55a4FjdLGPvfHxS6uluGWvaVEqgBcVa+g==} - deprecated: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details. - hasBin: true - dev: false - - /uuid/3.2.1: - resolution: {integrity: sha512-jZnMwlb9Iku/O3smGWvZhauCf6cvvpKi4BKRiliS3cxnI+Gz9j5MEpTz2UFuXiKPJocb7gnsLHwiS05ige5BEA==} - deprecated: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details. - hasBin: true - /uuid/3.4.0: resolution: {integrity: sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==} deprecated: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details. @@ -21463,14 +21063,14 @@ packages: dependencies: '@types/istanbul-lib-coverage': 2.0.4 convert-source-map: 1.8.0 - source-map: 0.7.3 + source-map: 0.7.4 dev: true /v8-to-istanbul/9.0.0: resolution: {integrity: sha512-HcvgY/xaRm7isYmyx+lFKA4uQmfUbN0J4M0nNItvzTvH/iQ9kW5j/t4YSR+Ge323/lrgDAWJoF46tzGQHwBHFw==} engines: {node: '>=10.12.0'} dependencies: - '@jridgewell/trace-mapping': 0.3.10 + '@jridgewell/trace-mapping': 0.3.13 '@types/istanbul-lib-coverage': 2.0.4 convert-source-map: 1.8.0 dev: true @@ -21483,28 +21083,24 @@ packages: dev: true /validate.io-array/1.0.6: - resolution: {integrity: sha1-W1osr9j4uFq7L4hroVPy2Tond00=} + resolution: {integrity: sha512-DeOy7CnPEziggrOO5CZhVKJw6S3Yi7e9e65R1Nl/RTN1vTQKnzjfvks0/8kQ40FP/dsjRAOd4hxmJ7uLa6vxkg==} /validate.io-function/1.0.2: - resolution: {integrity: sha1-NDoZgC7TsZaCaceA5VjpNBHAutc=} + resolution: {integrity: sha512-LlFybRJEriSuBnUhQyG5bwglhh50EpTL2ul23MPIuR1odjO7XaMLFV8vHGwp7AZciFxtYOeiSCT5st+XSPONiQ==} /validate.io-integer-array/1.0.0: - resolution: {integrity: sha1-LKveAzKTpry+Bj/q/pHq9GsToIk=} + resolution: {integrity: sha512-mTrMk/1ytQHtCY0oNO3dztafHYyGU88KL+jRxWuzfOmQb+4qqnWmI+gykvGp8usKZOM0H7keJHEbRaFiYA0VrA==} dependencies: validate.io-array: 1.0.6 validate.io-integer: 1.0.5 /validate.io-integer/1.0.5: - resolution: {integrity: sha1-FoSWSAuVviJH7EQ/IjPeT4mHgGg=} + resolution: {integrity: sha512-22izsYSLojN/P6bppBqhgUDjCkr5RY2jd+N2a3DCAUey8ydvrZ/OkGvFPR7qfOpwR2LC5p4Ngzxz36g5Vgr/hQ==} dependencies: validate.io-number: 1.0.3 /validate.io-number/1.0.3: - resolution: {integrity: sha1-9j/+2iSL8opnqNSODjtGGhZluvg=} - - /value-equal/1.0.1: - resolution: {integrity: sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw==} - dev: false + resolution: {integrity: sha512-kRAyotcbNaSYoDnXvb4MHg/0a1egJdLwS6oJ38TJY7aw9n93Fl/3blIXdyYvPOp55CNxywooG/3BcrwNrBpcSg==} /value-or-promise/1.0.11: resolution: {integrity: sha512-41BrgH+dIbCFXClcSapVs5M6GkENd3gQOJpEfPDNa71LsUGMXDL0jMWpI/Rh7WhX+Aalfz2TTS3Zt5pUsbnhLg==} @@ -21512,7 +21108,7 @@ packages: dev: false /vary/1.1.2: - resolution: {integrity: sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=} + resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} engines: {node: '>= 0.8'} /vfile-location/3.2.0: @@ -21535,12 +21131,18 @@ packages: vfile-message: 2.0.4 dev: true + /vinyl-buffer/1.0.1: + resolution: {integrity: sha512-LRBE2/g3C1hSHL2k/FynSZcVTRhEw8sb08oKGt/0hukZXwrh2m8nfy+r5yLhGEk7eFFuclhyIuPct/Bxlxk6rg==} + dependencies: + bl: 1.2.3 + through2: 2.0.5 + /vm-browserify/1.1.2: resolution: {integrity: sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==} dev: true /void-elements/2.0.1: - resolution: {integrity: sha1-wGavtYK7HLQSjWDqkjkulNXp2+w=} + resolution: {integrity: sha512-qZKX4RnBzH2ugr8Lxa7x+0V6XD9Sb/ouARtiasEQCHB1EVU4NXtmHsDDrx1dO4ne5fc3J6EW05BP1Dl0z0iung==} engines: {node: '>=0.10.0'} dev: true @@ -21567,6 +21169,7 @@ packages: resolution: {integrity: sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==} dependencies: loose-envify: 1.4.0 + dev: false /watchpack-chokidar2/2.0.1: resolution: {integrity: sha512-nCFfBIPKr5Sh61s4LPpy1Wtfi0HE8isJ3d2Yb5/Ppw2P2B/3eVSEBjKfN0fmHJSK14+31KwMKmcrzs2GM4P0Ww==} @@ -21590,8 +21193,8 @@ packages: - supports-color dev: true - /watchpack/2.3.1: - resolution: {integrity: sha512-x0t0JuydIo8qCNctdDrn1OzH/qDzk2+rdCOC3YzumZ42fiMqmQ7T3xQurykYMhYfHaPHTp4ZxAx2NfUo1K6QaA==} + /watchpack/2.4.0: + resolution: {integrity: sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==} engines: {node: '>=10.13.0'} dependencies: glob-to-regexp: 0.4.1 @@ -21605,7 +21208,7 @@ packages: dev: true /wcwidth/1.0.1: - resolution: {integrity: sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g=} + resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} dependencies: defaults: 1.0.3 @@ -21614,11 +21217,7 @@ packages: dev: true /webidl-conversions/3.0.1: - resolution: {integrity: sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE=} - - /webidl-conversions/4.0.2: - resolution: {integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==} - dev: true + resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} /webidl-conversions/5.0.0: resolution: {integrity: sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==} @@ -21630,8 +21229,8 @@ packages: engines: {node: '>=10.4'} dev: true - /webpack-cli/4.9.2_e12b136d9a821d211692f1ec9717cf12: - resolution: {integrity: sha512-m3/AACnBBzK/kMTcxWHcZFPrw/eQuY4Df1TxvIWfWM2x7mRqBQCqKEd96oCUa9jkapLBaFfRce33eGDb4Pr7YQ==} + /webpack-cli/4.10.0_hnfkmnck6ti4dm6ulhhz44v2ju: + resolution: {integrity: sha512-NLhDfH/h4O6UOy+0LSso42xvYypClINuMNBVVzX4vX98TmTaTUxwRbXdhucbFMd2qLaCTcLq/PdYrvi8onw90w==} engines: {node: '>=10.13.0'} hasBin: true peerDependencies: @@ -21651,23 +21250,23 @@ packages: optional: true dependencies: '@discoveryjs/json-ext': 0.5.7 - '@webpack-cli/configtest': 1.1.1_webpack-cli@4.9.2+webpack@5.72.0 - '@webpack-cli/info': 1.4.1_webpack-cli@4.9.2 - '@webpack-cli/serve': 1.6.1_214f72af378d7328cdf6ebb7922c0e1b - colorette: 2.0.16 + '@webpack-cli/configtest': 1.2.0_77l47gmqkrqiei5z7sbwz5iaj4 + '@webpack-cli/info': 1.5.0_webpack-cli@4.10.0 + '@webpack-cli/serve': 1.7.0_b6kp5g2s4uywsci7bb7pbu5to4 + colorette: 2.0.19 commander: 7.2.0 - execa: 5.1.1 + cross-spawn: 7.0.3 fastest-levenshtein: 1.0.12 import-local: 3.1.0 interpret: 2.2.0 rechoir: 0.7.1 - webpack: 5.72.0_webpack-cli@4.9.2 - webpack-dev-server: 4.9.0_webpack-cli@4.9.2+webpack@5.72.0 + webpack: 5.73.0_webpack-cli@4.10.0 + webpack-dev-server: 4.9.2_77l47gmqkrqiei5z7sbwz5iaj4 webpack-merge: 5.8.0 dev: true - /webpack-cli/4.9.2_webpack@5.72.0: - resolution: {integrity: sha512-m3/AACnBBzK/kMTcxWHcZFPrw/eQuY4Df1TxvIWfWM2x7mRqBQCqKEd96oCUa9jkapLBaFfRce33eGDb4Pr7YQ==} + /webpack-cli/4.10.0_webpack@5.73.0: + resolution: {integrity: sha512-NLhDfH/h4O6UOy+0LSso42xvYypClINuMNBVVzX4vX98TmTaTUxwRbXdhucbFMd2qLaCTcLq/PdYrvi8onw90w==} engines: {node: '>=10.13.0'} hasBin: true peerDependencies: @@ -21687,17 +21286,17 @@ packages: optional: true dependencies: '@discoveryjs/json-ext': 0.5.7 - '@webpack-cli/configtest': 1.1.1_webpack-cli@4.9.2+webpack@5.72.0 - '@webpack-cli/info': 1.4.1_webpack-cli@4.9.2 - '@webpack-cli/serve': 1.6.1_webpack-cli@4.9.2 - colorette: 2.0.16 + '@webpack-cli/configtest': 1.2.0_77l47gmqkrqiei5z7sbwz5iaj4 + '@webpack-cli/info': 1.5.0_webpack-cli@4.10.0 + '@webpack-cli/serve': 1.7.0_webpack-cli@4.10.0 + colorette: 2.0.19 commander: 7.2.0 - execa: 5.1.1 + cross-spawn: 7.0.3 fastest-levenshtein: 1.0.12 import-local: 3.1.0 interpret: 2.2.0 rechoir: 0.7.1 - webpack: 5.72.0_webpack-cli@4.9.2 + webpack: 5.73.0_webpack-cli@4.10.0 webpack-merge: 5.8.0 dev: true @@ -21715,22 +21314,22 @@ packages: webpack-log: 2.0.0 dev: true - /webpack-dev-middleware/5.3.1_webpack@5.72.0: - resolution: {integrity: sha512-81EujCKkyles2wphtdrnPg/QqegC/AtqNH//mQkBYSMqwFVCQrxM6ktB2O/SPlZy7LqeEfTbV3cZARGQz6umhg==} + /webpack-dev-middleware/5.3.3_webpack@5.73.0: + resolution: {integrity: sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==} engines: {node: '>= 12.13.0'} peerDependencies: webpack: ^4.0.0 || ^5.0.0 dependencies: - colorette: 2.0.16 - memfs: 3.4.1 + colorette: 2.0.19 + memfs: 3.4.6 mime-types: 2.1.35 range-parser: 1.2.1 schema-utils: 4.0.0 - webpack: 5.72.0_webpack-cli@4.9.2 + webpack: 5.73.0_webpack-cli@4.10.0 dev: true - /webpack-dev-server/4.9.0_webpack-cli@4.9.2+webpack@5.72.0: - resolution: {integrity: sha512-+Nlb39iQSOSsFv0lWUuUTim3jDQO8nhK3E68f//J2r5rIcp4lULHXz2oZ0UVdEeWXEh5lSzYUlzarZhDAeAVQw==} + /webpack-dev-server/4.9.2_77l47gmqkrqiei5z7sbwz5iaj4: + resolution: {integrity: sha512-H95Ns95dP24ZsEzO6G9iT+PNw4Q7ltll1GfJHV4fKphuHWgKFzGHWi4alTlTnpk1SPPk41X+l2RB7rLfIhnB9Q==} engines: {node: '>= 12.13.0'} hasBin: true peerDependencies: @@ -21744,12 +21343,13 @@ packages: '@types/connect-history-api-fallback': 1.3.5 '@types/express': 4.17.13 '@types/serve-index': 1.9.1 + '@types/serve-static': 1.13.10 '@types/sockjs': 0.3.33 '@types/ws': 8.5.3 ansi-html-community: 0.0.8 - bonjour-service: 1.0.12 + bonjour-service: 1.0.13 chokidar: 3.5.3 - colorette: 2.0.16 + colorette: 2.0.19 compression: 1.7.4 connect-history-api-fallback: 1.6.0 default-gateway: 6.0.3 @@ -21766,10 +21366,10 @@ packages: serve-index: 1.9.1 sockjs: 0.3.24 spdy: 4.0.2 - webpack: 5.72.0_webpack-cli@4.9.2 - webpack-cli: 4.9.2_e12b136d9a821d211692f1ec9717cf12 - webpack-dev-middleware: 5.3.1_webpack@5.72.0 - ws: 8.6.0 + webpack: 5.73.0_webpack-cli@4.10.0 + webpack-cli: 4.10.0_hnfkmnck6ti4dm6ulhhz44v2ju + webpack-dev-middleware: 5.3.3_webpack@5.73.0 + ws: 8.8.0 transitivePeerDependencies: - bufferutil - debug @@ -21871,8 +21471,8 @@ packages: - supports-color dev: true - /webpack/5.72.0: - resolution: {integrity: sha512-qmSmbspI0Qo5ld49htys8GY9XhS9CGqFoHTsOVAnjBdg0Zn79y135R+k4IR4rKK6+eKaabMhJwiVB7xw0SJu5w==} + /webpack/5.73.0: + resolution: {integrity: sha512-svjudQRPPa0YiOYa2lM/Gacw0r6PvxptHj4FuEKQ2kX05ZLkjbVc5MnPs6its5j7IZljnIqSVo/OsY2X0IpHGA==} engines: {node: '>=10.13.0'} hasBin: true peerDependencies: @@ -21888,7 +21488,7 @@ packages: '@webassemblyjs/wasm-parser': 1.11.1 acorn: 8.7.1 acorn-import-assertions: 1.8.0_acorn@8.7.1 - browserslist: 4.20.3 + browserslist: 4.20.4 chrome-trace-event: 1.0.3 enhanced-resolve: 5.9.3 es-module-lexer: 0.9.3 @@ -21896,14 +21496,14 @@ packages: events: 3.3.0 glob-to-regexp: 0.4.1 graceful-fs: 4.2.10 - json-parse-better-errors: 1.0.2 + json-parse-even-better-errors: 2.3.1 loader-runner: 4.3.0 mime-types: 2.1.35 neo-async: 2.6.2 schema-utils: 3.1.1 tapable: 2.2.1 - terser-webpack-plugin: 5.3.1_webpack@5.72.0 - watchpack: 2.3.1 + terser-webpack-plugin: 5.3.3_webpack@5.73.0 + watchpack: 2.4.0 webpack-sources: 3.2.3 transitivePeerDependencies: - '@swc/core' @@ -21911,8 +21511,8 @@ packages: - uglify-js dev: true - /webpack/5.72.0_webpack-cli@4.9.2: - resolution: {integrity: sha512-qmSmbspI0Qo5ld49htys8GY9XhS9CGqFoHTsOVAnjBdg0Zn79y135R+k4IR4rKK6+eKaabMhJwiVB7xw0SJu5w==} + /webpack/5.73.0_webpack-cli@4.10.0: + resolution: {integrity: sha512-svjudQRPPa0YiOYa2lM/Gacw0r6PvxptHj4FuEKQ2kX05ZLkjbVc5MnPs6its5j7IZljnIqSVo/OsY2X0IpHGA==} engines: {node: '>=10.13.0'} hasBin: true peerDependencies: @@ -21928,7 +21528,7 @@ packages: '@webassemblyjs/wasm-parser': 1.11.1 acorn: 8.7.1 acorn-import-assertions: 1.8.0_acorn@8.7.1 - browserslist: 4.20.3 + browserslist: 4.20.4 chrome-trace-event: 1.0.3 enhanced-resolve: 5.9.3 es-module-lexer: 0.9.3 @@ -21936,15 +21536,15 @@ packages: events: 3.3.0 glob-to-regexp: 0.4.1 graceful-fs: 4.2.10 - json-parse-better-errors: 1.0.2 + json-parse-even-better-errors: 2.3.1 loader-runner: 4.3.0 mime-types: 2.1.35 neo-async: 2.6.2 schema-utils: 3.1.1 tapable: 2.2.1 - terser-webpack-plugin: 5.3.1_webpack@5.72.0 - watchpack: 2.3.1 - webpack-cli: 4.9.2_e12b136d9a821d211692f1ec9717cf12 + terser-webpack-plugin: 5.3.3_webpack@5.73.0 + watchpack: 2.4.0 + webpack-cli: 4.10.0_hnfkmnck6ti4dm6ulhhz44v2ju webpack-sources: 3.2.3 transitivePeerDependencies: - '@swc/core' @@ -21982,19 +21582,11 @@ packages: dev: false /whatwg-url/5.0.0: - resolution: {integrity: sha1-lmRU6HZUYuN2RNNib2dCzotwll0=} + resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} dependencies: tr46: 0.0.3 webidl-conversions: 3.0.1 - /whatwg-url/7.1.0: - resolution: {integrity: sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==} - dependencies: - lodash.sortby: 4.7.0 - tr46: 1.0.1 - webidl-conversions: 4.0.2 - dev: true - /whatwg-url/8.7.0: resolution: {integrity: sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==} engines: {node: '>=10'} @@ -22015,7 +21607,7 @@ packages: dev: true /which-module/2.0.0: - resolution: {integrity: sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=} + resolution: {integrity: sha512-B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q==} dev: true /which-pm/2.0.0: @@ -22057,12 +21649,12 @@ packages: dev: true /window-size/0.1.0: - resolution: {integrity: sha1-VDjNLqk7IC76Ohn+iIeu58lPnJ0=} + resolution: {integrity: sha512-1pTPQDKTdd61ozlKGNCjhNRd+KPmgLSGa3mZTHoOliaGcESD8G1PXhh7c1fgiPjVbNVfgy2Faw4BI8/m0cC8Mg==} engines: {node: '>= 0.8.0'} dev: true /with/5.1.1: - resolution: {integrity: sha1-+k2qktrzLE6pTtRTyB8EaGtXXf4=} + resolution: {integrity: sha512-uAnSsFGfSpF6DNhBXStvlZILfHJfJu4eUkfbRGk94kGO1Ta7bg6FwfvoOhhyHAJuFbCw+0xk4uJ3u57jLvlCJg==} dependencies: acorn: 3.3.0 acorn-globals: 3.1.0 @@ -22074,12 +21666,12 @@ packages: dev: true /wordwrap/0.0.2: - resolution: {integrity: sha1-t5Zpu0LstAn4PVg8rVLKF+qhZD8=} + resolution: {integrity: sha512-xSBsCeh+g+dinoBv3GAOWM4LcVVO68wLXRanibtBSdUvkGWQRGeE9P7IwU9EmDDi4jA6L44lz15CGMwdw9N5+Q==} engines: {node: '>=0.4.0'} dev: true /wordwrap/1.0.0: - resolution: {integrity: sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=} + resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==} dev: true /worker-farm/1.7.0: @@ -22112,7 +21704,12 @@ packages: strip-ansi: 6.0.1 /wrappy/1.0.2: - resolution: {integrity: sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=} + resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} + + /writable-consumable-stream/2.0.0: + resolution: {integrity: sha512-SITambzxtPTFU/wR82h+zOKGBiEv5V8gC1mt8xvoE1/168ApEa8H+6s2UToYJo3VLL7sNYTaApKuPD+pZHMGJQ==} + dependencies: + consumable-stream: 2.0.0 /write-file-atomic/3.0.3: resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==} @@ -22131,8 +21728,8 @@ packages: signal-exit: 3.0.7 dev: true - /ws/7.5.7: - resolution: {integrity: sha512-KMvVuFzpKBuiIXW3E4u3mySRO2/mCHSyZDJQM5NQ9Q9KHWHWh0NHgfbRMLLrceUK5qAL4ytALJbpRMjixFZh8A==} + /ws/7.5.8: + resolution: {integrity: sha512-ri1Id1WinAX5Jqn9HejiGb8crfRio0Qgu8+MtL36rlTA6RLsMdWt1Az/19A2Qij6uSHUMphEFaTKa4WG+UNHNw==} engines: {node: '>=8.3.0'} peerDependencies: bufferutil: ^4.0.1 @@ -22143,8 +21740,8 @@ packages: utf-8-validate: optional: true - /ws/8.6.0: - resolution: {integrity: sha512-AzmM3aH3gk0aX7/rZLYvjdvZooofDu3fFOzGqcSnQ1tOcTWwhM/o+q++E8mAyVVIyUdajrkzWUGftaVSDLn1bw==} + /ws/8.8.0: + resolution: {integrity: sha512-JDAgSYQ1ksuwqfChJusw1LSJ8BizJ2e/vVu5Lxjq3YvNJNlROv1ui4i+c/kUUrPheBvQl4c5UbERhTwKa6QBJQ==} engines: {node: '>=10.0.0'} peerDependencies: bufferutil: ^4.0.1 @@ -22156,6 +21753,13 @@ packages: optional: true dev: true + /x-default-browser/0.4.0: + resolution: {integrity: sha512-7LKo7RtWfoFN/rHx1UELv/2zHGMx8MkZKDq1xENmOCTkfIqZJ0zZ26NEJX8czhnPXVcqS0ARjjfJB+eJ0/5Cvw==} + hasBin: true + optionalDependencies: + default-browser-id: 1.0.4 + dev: true + /xml-name-validator/3.0.0: resolution: {integrity: sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==} dev: true @@ -22164,8 +21768,8 @@ packages: resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==} dev: true - /xss/1.0.11: - resolution: {integrity: sha512-EimjrjThZeK2MO7WKR9mN5ZC1CSqivSl55wvUK5EtU6acf0rzEE1pN+9ZDrFXJ82BRp3JL38pPE6S4o/rpp1zQ==} + /xss/1.0.13: + resolution: {integrity: sha512-clu7dxTm1e8Mo5fz3n/oW3UCXBfV89xZ72jM8yzo1vR/pIS0w3sgB3XV2H8Vm6zfGnHL0FzvLJPJEBhd86/z4Q==} engines: {node: '>= 0.10.0'} hasBin: true dependencies: @@ -22176,7 +21780,6 @@ packages: /xtend/4.0.2: resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} engines: {node: '>=0.4'} - dev: true /y18n/4.0.3: resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==} @@ -22187,7 +21790,7 @@ packages: engines: {node: '>=10'} /yallist/2.1.2: - resolution: {integrity: sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=} + resolution: {integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==} dev: true /yallist/3.1.1: @@ -22248,8 +21851,8 @@ packages: yargs-parser: 20.2.9 dev: true - /yargs/17.4.1: - resolution: {integrity: sha512-WSZD9jgobAg3ZKuCQZSa3g9QOJeCCqLoLAykiWgmXnDo9EPnn4RPf5qVTtzgOx66o6/oqhcA5tHtJXpG8pMt3g==} + /yargs/17.5.1: + resolution: {integrity: sha512-t6YAJcxDkNX7NFYiVtKvWUz8l+PaKTLiL63mJYWR2GnHq2gjEWISzsLp9wg3aY36dY1j+gfIEL3pIF+XlJJfbA==} engines: {node: '>=12'} dependencies: cliui: 7.0.4 @@ -22261,7 +21864,7 @@ packages: yargs-parser: 21.0.1 /yargs/3.10.0: - resolution: {integrity: sha1-9+572FfdfB0tOMDnTvvWgdFDH9E=} + resolution: {integrity: sha512-QFzUah88GAGy9lyDKGBqZdkYApt63rCXYBGYnEP4xDJPXNqXXnBDACnbrXnViV6jRSqAePwrATi2i8mfYm4L1A==} dependencies: camelcase: 1.2.1 cliui: 2.1.0 @@ -22270,7 +21873,7 @@ packages: dev: true /yauzl/2.10.0: - resolution: {integrity: sha1-x+sXyT4RLLEIb6bY5R+wZnt5pfk=} + resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==} dependencies: buffer-crc32: 0.2.13 fd-slicer: 1.1.0 diff --git a/renovate.json b/renovate.json index ebb441d7..370ff54e 100644 --- a/renovate.json +++ b/renovate.json @@ -23,9 +23,30 @@ "groupName": "source-map" }, { - "matchPackageNames": ["eslint-plugin-react"], - "matchUpdateTypes": ["major", "minor"], - "groupName": "eslint-plugin-react" + "matchPackageNames": [ + "react", + "react-dom", + "react-is", + "react-test-renderer", + "@testing-library/react", + "@testing-library/user-event", + "@types/react", + "@types/react-dom", + "@types/react-test-renderer", + "@chakra-ui/react" + ], + "matchUpdateTypes": ["major"], + "groupName": "react" + }, + { + "matchPackageNames": [ + "socketcluster-client", + "@types/socketcluster-client", + "socketcluster", + "@types/socketcluster-server" + ], + "matchUpdateTypes": ["major"], + "groupName": "socketcluster" } ] }