diff --git a/extension/jest.config.js b/extension/jest.config.js index b70a7b3e..924b5865 100644 --- a/extension/jest.config.js +++ b/extension/jest.config.js @@ -5,4 +5,5 @@ module.exports = { moduleNameMapper: { '\\.css$': '/test/__mocks__/styleMock.ts', }, + resolver: '/jestResolver.js', }; diff --git a/extension/jestResolver.js b/extension/jestResolver.js new file mode 100644 index 00000000..8e066aa4 --- /dev/null +++ b/extension/jestResolver.js @@ -0,0 +1,15 @@ +module.exports = (path, options) => { + return options.defaultResolver(path, { + ...options, + packageFilter: (pkg) => { + if (pkg.name === 'nanoid') { + pkg.exports['.'].browser = pkg.exports['.'].require; + } + if (pkg.name === 'uuid' && pkg.version.startsWith('8.')) { + delete pkg.exports; + delete pkg.module; + } + return pkg; + }, + }); +}; diff --git a/extension/package.json b/extension/package.json index 13bf27e2..3e45a475 100644 --- a/extension/package.json +++ b/extension/package.json @@ -43,7 +43,7 @@ "lodash": "^4.17.21", "react": "^18.2.0", "react-dom": "^18.2.0", - "react-icons": "^4.4.0", + "react-icons": "^4.6.0", "react-is": "^18.2.0", "react-json-tree": "^0.17.0", "react-redux": "^8.0.4", @@ -53,34 +53,35 @@ }, "devDependencies": { "@babel/core": "^7.19.3", - "@babel/preset-env": "^7.19.3", + "@babel/preset-env": "^7.19.4", "@babel/preset-react": "^7.18.6", "@babel/preset-typescript": "^7.18.6", "@babel/register": "^7.18.9", "@testing-library/jest-dom": "^5.16.5", "@testing-library/react": "^13.4.0", - "@types/chrome": "^0.0.197", + "@types/chrome": "^0.0.198", "@types/lodash": "^4.14.186", "@types/react": "^18.0.21", "@types/react-dom": "^18.0.6", "@types/styled-components": "^5.1.26", - "babel-loader": "^8.2.5", + "babel-loader": "^9.0.0", "bestzip": "^2.2.1", "chromedriver": "^106.0.1", "copy-webpack-plugin": "^11.0.0", "cross-env": "^7.0.3", "css-loader": "^6.7.1", - "electron": "^21.1.0", + "electron": "^21.1.1", "eslint": "^8.25.0", "eslint-config-airbnb": "^19.0.4", "eslint-plugin-import": "^2.26.0", "eslint-plugin-jsx-a11y": "^6.6.1", - "eslint-plugin-react": "^7.31.9", + "eslint-plugin-react": "^7.31.10", "eslint-plugin-react-hooks": "^4.6.0", "file-loader": "^6.2.0", "fork-ts-checker-webpack-plugin": "^7.2.13", "immutable": "^4.1.0", - "jest": "^27.5.1", + "jest": "^29.2.2", + "jest-environment-jsdom": "^29.2.2", "path-browserify": "^1.0.1", "pug-html-loader": "^1.1.5", "raw-loader": "^4.0.2", @@ -90,7 +91,7 @@ "selenium-webdriver": "^4.5.0", "sinon-chrome": "^3.0.1", "style-loader": "^3.3.1", - "ts-jest": "^27.1.5", + "ts-jest": "^29.0.3", "typescript": "~4.8.4", "webpack": "^5.74.0", "webpack-cli": "^4.10.0" diff --git a/package.json b/package.json index be09749e..3baf32d1 100644 --- a/package.json +++ b/package.json @@ -4,18 +4,18 @@ "@babel/core": "^7.19.3", "@babel/eslint-parser": "^7.19.1", "@changesets/cli": "^2.25.0", - "@typescript-eslint/eslint-plugin": "^5.39.0", - "@typescript-eslint/parser": "^5.39.0", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-jest": "^27.1.1", - "eslint-plugin-react": "^7.31.9", + "eslint-plugin-jest": "^27.1.2", + "eslint-plugin-react": "^7.31.10", "eslint-plugin-react-hooks": "^4.6.0", - "jest": "^27.5.1", + "jest": "^29.2.2", "prettier": "2.7.1", "typescript": "~4.8.4", - "nx": "^14.8.3", - "@nrwl/nx-cloud": "^14.7.0" + "nx": "^15.0.0", + "@nrwl/nx-cloud": "^15.0.0" }, "scripts": { "format": "prettier --write .", @@ -38,7 +38,7 @@ "packages/redux-devtools-rtk-query-monitor/demo", "packages/redux-devtools-slider-monitor/examples/todomvc" ], - "packageManager": "pnpm@7.13.3", + "packageManager": "pnpm@7.13.5", "pnpm": { "overrides": { "@babel/highlight>chalk": "Methuselah96/chalk#v2-without-process" diff --git a/packages/d3-state-visualizer/examples/tree/package.json b/packages/d3-state-visualizer/examples/tree/package.json index b635331d..f513ba16 100644 --- a/packages/d3-state-visualizer/examples/tree/package.json +++ b/packages/d3-state-visualizer/examples/tree/package.json @@ -30,12 +30,12 @@ }, "devDependencies": { "@babel/core": "^7.19.3", - "@babel/preset-env": "^7.19.3", + "@babel/preset-env": "^7.19.4", "@babel/preset-typescript": "^7.18.6", - "@types/node": "^16.11.64", - "@typescript-eslint/eslint-plugin": "^5.39.0", - "@typescript-eslint/parser": "^5.39.0", - "babel-loader": "^8.2.5", + "@types/node": "^18.11.7", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", + "babel-loader": "^9.0.0", "cross-env": "^7.0.3", "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", diff --git a/packages/d3-state-visualizer/package.json b/packages/d3-state-visualizer/package.json index 6e702fe0..a031825f 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.19.0", + "@babel/runtime": "^7.19.4", "@types/d3": "^3.5.47", "d3": "^3.5.17", "d3tooltip": "^2.1.0", @@ -55,20 +55,20 @@ "@babel/core": "^7.19.3", "@babel/eslint-parser": "^7.19.1", "@babel/plugin-transform-runtime": "^7.19.1", - "@babel/preset-env": "^7.19.3", + "@babel/preset-env": "^7.19.4", "@babel/preset-typescript": "^7.18.6", "@rollup/plugin-babel": "^6.0.0", "@rollup/plugin-commonjs": "^23.0.0", "@rollup/plugin-node-resolve": "^15.0.0", - "@types/node": "^16.11.64", - "@types/ramda": "^0.28.15", - "@typescript-eslint/eslint-plugin": "^5.39.0", - "@typescript-eslint/parser": "^5.39.0", + "@rollup/plugin-terser": "^0.1.0", + "@types/node": "^18.11.7", + "@types/ramda": "^0.28.16", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", "rimraf": "^3.0.2", - "rollup": "^2.79.1", - "rollup-plugin-terser": "^7.0.2", + "rollup": "^3.2.3", "rollup-plugin-typescript2": "^0.34.1", "tslib": "^2.4.0", "typescript": "~4.8.4" diff --git a/packages/d3-state-visualizer/rollup.config.js b/packages/d3-state-visualizer/rollup.config.mjs similarity index 96% rename from packages/d3-state-visualizer/rollup.config.js rename to packages/d3-state-visualizer/rollup.config.mjs index 70ce4df1..e144a1bb 100644 --- a/packages/d3-state-visualizer/rollup.config.js +++ b/packages/d3-state-visualizer/rollup.config.mjs @@ -2,7 +2,7 @@ import typescript from 'rollup-plugin-typescript2'; import resolve from '@rollup/plugin-node-resolve'; import commonjs from '@rollup/plugin-commonjs'; import babel from '@rollup/plugin-babel'; -import { terser } from 'rollup-plugin-terser'; +import terser from '@rollup/plugin-terser'; const config = [ { diff --git a/packages/d3tooltip/package.json b/packages/d3tooltip/package.json index 390bb829..1e91221a 100644 --- a/packages/d3tooltip/package.json +++ b/packages/d3tooltip/package.json @@ -38,7 +38,7 @@ "prepublish": "pnpm run type-check && pnpm run lint" }, "dependencies": { - "@babel/runtime": "^7.19.0", + "@babel/runtime": "^7.19.4", "ramda": "^0.28.0" }, "devDependencies": { @@ -46,22 +46,22 @@ "@babel/core": "^7.19.3", "@babel/eslint-parser": "^7.19.1", "@babel/plugin-transform-runtime": "^7.19.1", - "@babel/preset-env": "^7.19.3", + "@babel/preset-env": "^7.19.4", "@babel/preset-typescript": "^7.18.6", "@rollup/plugin-babel": "^6.0.0", "@rollup/plugin-commonjs": "^23.0.0", "@rollup/plugin-node-resolve": "^15.0.0", + "@rollup/plugin-terser": "^0.1.0", "@types/d3": "^3.5.47", - "@types/node": "^16.11.64", - "@types/ramda": "^0.28.15", - "@typescript-eslint/eslint-plugin": "^5.39.0", - "@typescript-eslint/parser": "^5.39.0", + "@types/node": "^18.11.7", + "@types/ramda": "^0.28.16", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", "d3": "^3.5.17", "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", "rimraf": "^3.0.2", - "rollup": "^2.79.1", - "rollup-plugin-terser": "^7.0.2", + "rollup": "^3.2.3", "rollup-plugin-typescript2": "^0.34.1", "tslib": "^2.4.0", "typescript": "~4.8.4" diff --git a/packages/d3tooltip/rollup.config.js b/packages/d3tooltip/rollup.config.mjs similarity index 96% rename from packages/d3tooltip/rollup.config.js rename to packages/d3tooltip/rollup.config.mjs index 6a442f22..b2b9e71c 100644 --- a/packages/d3tooltip/rollup.config.js +++ b/packages/d3tooltip/rollup.config.mjs @@ -2,7 +2,7 @@ import typescript from 'rollup-plugin-typescript2'; import resolve from '@rollup/plugin-node-resolve'; import commonjs from '@rollup/plugin-commonjs'; import babel from '@rollup/plugin-babel'; -import { terser } from 'rollup-plugin-terser'; +import terser from '@rollup/plugin-terser'; const config = [ { diff --git a/packages/map2tree/jest.config.js b/packages/map2tree/jest.config.js index 05d33807..f68efd05 100644 --- a/packages/map2tree/jest.config.js +++ b/packages/map2tree/jest.config.js @@ -1,8 +1,6 @@ module.exports = { preset: 'ts-jest', - globals: { - 'ts-jest': { - tsconfig: 'tsconfig.test.json', - }, + transform: { + '^.+\\.tsx?$': ['ts-jest', { tsconfig: 'tsconfig.test.json' }], }, }; diff --git a/packages/map2tree/package.json b/packages/map2tree/package.json index 42bbc569..84731f8c 100755 --- a/packages/map2tree/package.json +++ b/packages/map2tree/package.json @@ -42,7 +42,7 @@ "prepublish": "pnpm run type-check && pnpm run lint && pnpm run test" }, "dependencies": { - "@babel/runtime": "^7.19.0", + "@babel/runtime": "^7.19.4", "lodash": "^4.17.21" }, "devDependencies": { @@ -50,26 +50,26 @@ "@babel/core": "^7.19.3", "@babel/eslint-parser": "^7.19.1", "@babel/plugin-transform-runtime": "^7.19.1", - "@babel/preset-env": "^7.19.3", + "@babel/preset-env": "^7.19.4", "@babel/preset-typescript": "^7.18.6", "@rollup/plugin-babel": "^6.0.0", "@rollup/plugin-commonjs": "^23.0.0", "@rollup/plugin-node-resolve": "^15.0.0", - "@types/jest": "^27.5.2", + "@rollup/plugin-terser": "^0.1.0", + "@types/jest": "^29.2.0", "@types/lodash": "^4.14.186", - "@types/node": "^16.11.64", - "@typescript-eslint/eslint-plugin": "^5.39.0", - "@typescript-eslint/parser": "^5.39.0", + "@types/node": "^18.11.7", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-jest": "^27.1.1", + "eslint-plugin-jest": "^27.1.2", "immutable": "^4.1.0", - "jest": "^27.5.1", + "jest": "^29.2.2", "rimraf": "^3.0.2", - "rollup": "^2.79.1", - "rollup-plugin-terser": "^7.0.2", + "rollup": "^3.2.3", "rollup-plugin-typescript2": "^0.34.1", - "ts-jest": "^27.1.5", + "ts-jest": "^29.0.3", "tslib": "^2.4.0", "typescript": "~4.8.4" } diff --git a/packages/map2tree/rollup.config.js b/packages/map2tree/rollup.config.mjs similarity index 95% rename from packages/map2tree/rollup.config.js rename to packages/map2tree/rollup.config.mjs index f977bb7c..d7a30f91 100644 --- a/packages/map2tree/rollup.config.js +++ b/packages/map2tree/rollup.config.mjs @@ -2,7 +2,7 @@ import typescript from 'rollup-plugin-typescript2'; import resolve from '@rollup/plugin-node-resolve'; import commonjs from '@rollup/plugin-commonjs'; import babel from '@rollup/plugin-babel'; -import { terser } from 'rollup-plugin-terser'; +import terser from '@rollup/plugin-terser'; const config = [ { diff --git a/packages/react-base16-styling/jest.config.js b/packages/react-base16-styling/jest.config.js index f0ecd734..dcef0803 100644 --- a/packages/react-base16-styling/jest.config.js +++ b/packages/react-base16-styling/jest.config.js @@ -1,9 +1,7 @@ module.exports = { preset: 'ts-jest', testEnvironment: 'jsdom', - globals: { - 'ts-jest': { - tsconfig: 'tsconfig.test.json', - }, + transform: { + '^.+\\.tsx?$': ['ts-jest', { tsconfig: 'tsconfig.test.json' }], }, }; diff --git a/packages/react-base16-styling/package.json b/packages/react-base16-styling/package.json index 35630f95..12ce46b7 100644 --- a/packages/react-base16-styling/package.json +++ b/packages/react-base16-styling/package.json @@ -39,7 +39,7 @@ "prepublish": "pnpm run type-check && pnpm run lint && pnpm run test" }, "dependencies": { - "@babel/runtime": "^7.19.0", + "@babel/runtime": "^7.19.4", "@types/base16": "^1.0.2", "@types/lodash": "^4.14.186", "base16": "^1.0.0", @@ -52,19 +52,20 @@ "@babel/core": "^7.19.3", "@babel/eslint-parser": "^7.19.1", "@babel/plugin-transform-runtime": "^7.19.1", - "@babel/preset-env": "^7.19.3", + "@babel/preset-env": "^7.19.4", "@babel/preset-typescript": "^7.18.6", "@types/color": "^3.0.3", - "@types/jest": "^27.5.2", + "@types/jest": "^29.2.0", "@types/lodash.curry": "^4.1.7", - "@typescript-eslint/eslint-plugin": "^5.39.0", - "@typescript-eslint/parser": "^5.39.0", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-jest": "^27.1.1", - "jest": "^27.5.1", + "eslint-plugin-jest": "^27.1.2", + "jest": "^29.2.2", + "jest-environment-jsdom": "^29.2.2", "rimraf": "^3.0.2", - "ts-jest": "^27.1.5", + "ts-jest": "^29.0.3", "typescript": "~4.8.4" } } diff --git a/packages/react-dock/demo/package.json b/packages/react-dock/demo/package.json index 36924700..8fe80c98 100644 --- a/packages/react-dock/demo/package.json +++ b/packages/react-dock/demo/package.json @@ -14,26 +14,26 @@ "react-bootstrap": "^2.5.0", "react-dock": "^0.6.0", "react-dom": "^18.2.0", - "react-icons": "^4.4.0", + "react-icons": "^4.6.0", "react-is": "^18.2.0", "styled-components": "^5.3.6" }, "devDependencies": { "@babel/core": "^7.19.3", - "@babel/preset-env": "^7.19.3", + "@babel/preset-env": "^7.19.4", "@babel/preset-react": "^7.18.6", "@babel/preset-typescript": "^7.18.6", - "@types/node": "^16.11.64", + "@types/node": "^18.11.7", "@types/react": "^18.0.21", "@types/react-dom": "^18.0.6", "@types/styled-components": "^5.1.26", - "@typescript-eslint/eslint-plugin": "^5.39.0", - "@typescript-eslint/parser": "^5.39.0", - "babel-loader": "^8.2.5", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", + "babel-loader": "^9.0.0", "cross-env": "^7.0.3", "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-react": "^7.31.9", + "eslint-plugin-react": "^7.31.10", "eslint-plugin-react-hooks": "^4.6.0", "fork-ts-checker-webpack-plugin": "^7.2.13", "html-webpack-plugin": "^5.5.0", diff --git a/packages/react-dock/jest.config.js b/packages/react-dock/jest.config.js index f0ecd734..dcef0803 100644 --- a/packages/react-dock/jest.config.js +++ b/packages/react-dock/jest.config.js @@ -1,9 +1,7 @@ module.exports = { preset: 'ts-jest', testEnvironment: 'jsdom', - globals: { - 'ts-jest': { - tsconfig: 'tsconfig.test.json', - }, + transform: { + '^.+\\.tsx?$': ['ts-jest', { tsconfig: 'tsconfig.test.json' }], }, }; diff --git a/packages/react-dock/package.json b/packages/react-dock/package.json index 8a75e9ff..5f58fd36 100644 --- a/packages/react-dock/package.json +++ b/packages/react-dock/package.json @@ -39,7 +39,7 @@ "prepublish": "pnpm run type-check && pnpm run lint && pnpm run test" }, "dependencies": { - "@babel/runtime": "^7.19.0", + "@babel/runtime": "^7.19.4", "@types/lodash": "^4.14.186", "@types/prop-types": "^15.7.5", "lodash.debounce": "^4.0.8", @@ -50,25 +50,26 @@ "@babel/core": "^7.19.3", "@babel/eslint-parser": "^7.19.1", "@babel/plugin-transform-runtime": "^7.19.1", - "@babel/preset-env": "^7.19.3", + "@babel/preset-env": "^7.19.4", "@babel/preset-react": "^7.18.6", "@babel/preset-typescript": "^7.18.6", - "@types/jest": "^27.5.2", + "@types/jest": "^29.2.0", "@types/lodash.debounce": "^4.0.7", "@types/react": "^18.0.21", "@types/react-test-renderer": "^18.0.0", - "@typescript-eslint/eslint-plugin": "^5.39.0", - "@typescript-eslint/parser": "^5.39.0", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-jest": "^27.1.1", - "eslint-plugin-react": "^7.31.9", + "eslint-plugin-jest": "^27.1.2", + "eslint-plugin-react": "^7.31.10", "eslint-plugin-react-hooks": "^4.6.0", - "jest": "^27.5.1", + "jest": "^29.2.2", + "jest-environment-jsdom": "^29.2.2", "react": "^18.2.0", "react-test-renderer": "^18.2.0", "rimraf": "^3.0.2", - "ts-jest": "^27.1.5", + "ts-jest": "^29.0.3", "typescript": "~4.8.4" }, "peerDependencies": { diff --git a/packages/react-json-tree/examples/package.json b/packages/react-json-tree/examples/package.json index 05f52bed..283e3b4d 100644 --- a/packages/react-json-tree/examples/package.json +++ b/packages/react-json-tree/examples/package.json @@ -27,19 +27,19 @@ }, "devDependencies": { "@babel/core": "^7.19.3", - "@babel/preset-env": "^7.19.3", + "@babel/preset-env": "^7.19.4", "@babel/preset-react": "^7.18.6", "@babel/preset-typescript": "^7.18.6", - "@types/node": "^16.11.64", + "@types/node": "^18.11.7", "@types/react": "^18.0.21", "@types/react-dom": "^18.0.6", - "@typescript-eslint/eslint-plugin": "^5.39.0", - "@typescript-eslint/parser": "^5.39.0", - "babel-loader": "^8.2.5", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", + "babel-loader": "^9.0.0", "cross-env": "^7.0.3", "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-react": "^7.31.9", + "eslint-plugin-react": "^7.31.10", "eslint-plugin-react-hooks": "^4.6.0", "fork-ts-checker-webpack-plugin": "^7.2.13", "html-webpack-plugin": "^5.5.0", diff --git a/packages/react-json-tree/jest.config.js b/packages/react-json-tree/jest.config.js index 05d33807..f68efd05 100644 --- a/packages/react-json-tree/jest.config.js +++ b/packages/react-json-tree/jest.config.js @@ -1,8 +1,6 @@ module.exports = { preset: 'ts-jest', - globals: { - 'ts-jest': { - tsconfig: 'tsconfig.test.json', - }, + transform: { + '^.+\\.tsx?$': ['ts-jest', { tsconfig: 'tsconfig.test.json' }], }, }; diff --git a/packages/react-json-tree/package.json b/packages/react-json-tree/package.json index 23d65451..39ede4a5 100644 --- a/packages/react-json-tree/package.json +++ b/packages/react-json-tree/package.json @@ -45,7 +45,7 @@ "prepublish": "pnpm run type-check && pnpm run lint && pnpm run test" }, "dependencies": { - "@babel/runtime": "^7.19.0", + "@babel/runtime": "^7.19.4", "@types/lodash": "^4.14.186", "@types/prop-types": "^15.7.5", "prop-types": "^15.8.1", @@ -56,31 +56,31 @@ "@babel/core": "^7.19.3", "@babel/eslint-parser": "^7.19.1", "@babel/plugin-transform-runtime": "^7.19.1", - "@babel/preset-env": "^7.19.3", + "@babel/preset-env": "^7.19.4", "@babel/preset-react": "^7.18.6", "@babel/preset-typescript": "^7.18.6", "@rollup/plugin-babel": "^6.0.0", "@rollup/plugin-commonjs": "^23.0.0", "@rollup/plugin-node-resolve": "^15.0.0", - "@types/jest": "^27.5.2", - "@types/node": "^16.11.64", + "@rollup/plugin-terser": "^0.1.0", + "@types/jest": "^29.2.0", + "@types/node": "^18.11.7", "@types/react": "^18.0.21", "@types/react-test-renderer": "^18.0.0", - "@typescript-eslint/eslint-plugin": "^5.39.0", - "@typescript-eslint/parser": "^5.39.0", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-jest": "^27.1.1", - "eslint-plugin-react": "^7.31.9", + "eslint-plugin-jest": "^27.1.2", + "eslint-plugin-react": "^7.31.10", "eslint-plugin-react-hooks": "^4.6.0", - "jest": "^27.5.1", + "jest": "^29.2.2", "react": "^18.2.0", "react-test-renderer": "^18.2.0", "rimraf": "^3.0.2", - "rollup": "^2.79.1", - "rollup-plugin-terser": "^7.0.2", + "rollup": "^3.2.3", "rollup-plugin-typescript2": "^0.34.1", - "ts-jest": "^27.1.5", + "ts-jest": "^29.0.3", "tslib": "^2.4.0", "typescript": "~4.8.4" }, diff --git a/packages/react-json-tree/rollup.config.js b/packages/react-json-tree/rollup.config.mjs similarity index 96% rename from packages/react-json-tree/rollup.config.js rename to packages/react-json-tree/rollup.config.mjs index 8d2e2555..de6c3688 100644 --- a/packages/react-json-tree/rollup.config.js +++ b/packages/react-json-tree/rollup.config.mjs @@ -2,7 +2,7 @@ import typescript from 'rollup-plugin-typescript2'; import resolve from '@rollup/plugin-node-resolve'; import commonjs from '@rollup/plugin-commonjs'; import babel from '@rollup/plugin-babel'; -import { terser } from 'rollup-plugin-terser'; +import terser from '@rollup/plugin-terser'; const config = [ { diff --git a/packages/redux-devtools-app/jest.config.js b/packages/redux-devtools-app/jest.config.js index 2aaa8218..2bef3a04 100644 --- a/packages/redux-devtools-app/jest.config.js +++ b/packages/redux-devtools-app/jest.config.js @@ -5,9 +5,8 @@ module.exports = { moduleNameMapper: { '\\.css$': '/test/__mocks__/styleMock.ts', }, - globals: { - 'ts-jest': { - tsconfig: 'tsconfig.test.json', - }, + transform: { + '^.+\\.tsx?$': ['ts-jest', { tsconfig: 'tsconfig.test.json' }], }, + resolver: '/jestResolver.js', }; diff --git a/packages/redux-devtools-app/jestResolver.js b/packages/redux-devtools-app/jestResolver.js new file mode 100644 index 00000000..8e066aa4 --- /dev/null +++ b/packages/redux-devtools-app/jestResolver.js @@ -0,0 +1,15 @@ +module.exports = (path, options) => { + return options.defaultResolver(path, { + ...options, + packageFilter: (pkg) => { + if (pkg.name === 'nanoid') { + pkg.exports['.'].browser = pkg.exports['.'].require; + } + if (pkg.name === 'uuid' && pkg.version.startsWith('8.')) { + delete pkg.exports; + delete pkg.module; + } + return pkg; + }, + }); +}; diff --git a/packages/redux-devtools-app/package.json b/packages/redux-devtools-app/package.json index f7773549..145f722f 100644 --- a/packages/redux-devtools-app/package.json +++ b/packages/redux-devtools-app/package.json @@ -40,7 +40,7 @@ "prepublish": "pnpm run type-check && pnpm run lint && pnpm run test" }, "dependencies": { - "@babel/runtime": "^7.19.0", + "@babel/runtime": "^7.19.4", "@redux-devtools/chart-monitor": "^3.0.0", "@redux-devtools/core": "^3.13.0", "@redux-devtools/inspector-monitor": "^3.0.0", @@ -59,7 +59,7 @@ "localforage": "^1.10.0", "lodash": "^4.17.21", "prop-types": "^15.8.1", - "react-icons": "^4.4.0", + "react-icons": "^4.6.0", "react-is": "^18.2.0", "react-redux": "^8.0.4", "redux": "^4.2.0", @@ -71,44 +71,45 @@ "@babel/core": "^7.19.3", "@babel/eslint-parser": "^7.19.1", "@babel/plugin-transform-runtime": "^7.19.1", - "@babel/preset-env": "^7.19.3", + "@babel/preset-env": "^7.19.4", "@babel/preset-react": "^7.18.6", "@babel/preset-typescript": "^7.18.6", "@rjsf/core": "^4.2.3", "@testing-library/jest-dom": "^5.16.5", "@testing-library/react": "^13.4.0", - "@types/jest": "^27.5.2", + "@types/jest": "^29.2.0", "@types/jsan": "^3.1.2", "@types/json-schema": "^7.0.11", "@types/lodash": "^4.14.186", - "@types/node": "^16.11.64", + "@types/node": "^18.11.7", "@types/react": "^18.0.21", "@types/react-dom": "^18.0.6", "@types/socketcluster-client": "^16.0.0", "@types/styled-components": "^5.1.26", "@types/testing-library__jest-dom": "^5.14.5", "@types/webpack-env": "^1.18.0", - "@typescript-eslint/eslint-plugin": "^5.39.0", - "@typescript-eslint/parser": "^5.39.0", - "babel-loader": "^8.2.5", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", + "babel-loader": "^9.0.0", "cross-env": "^7.0.3", "css-loader": "^6.7.1", "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-jest": "^27.1.1", - "eslint-plugin-react": "^7.31.9", + "eslint-plugin-jest": "^27.1.2", + "eslint-plugin-react": "^7.31.10", "eslint-plugin-react-hooks": "^4.6.0", "fork-ts-checker-webpack-plugin": "^7.2.13", "html-loader": "^4.2.0", "html-webpack-plugin": "^5.5.0", - "jest": "^27.5.1", + "jest": "^29.2.2", + "jest-environment-jsdom": "^29.2.2", "path-browserify": "^1.0.1", "react": "^18.2.0", "react-dom": "^18.2.0", "rimraf": "^3.0.2", "style-loader": "^3.3.1", "styled-components": "^5.3.6", - "ts-jest": "^27.1.5", + "ts-jest": "^29.0.3", "ts-node": "^10.9.1", "typescript": "~4.8.4", "webpack": "^5.74.0", diff --git a/packages/redux-devtools-chart-monitor/package.json b/packages/redux-devtools-chart-monitor/package.json index 172c7b11..2ddeb740 100644 --- a/packages/redux-devtools-chart-monitor/package.json +++ b/packages/redux-devtools-chart-monitor/package.json @@ -39,7 +39,7 @@ "prepublish": "pnpm run type-check && pnpm run lint" }, "dependencies": { - "@babel/runtime": "^7.19.0", + "@babel/runtime": "^7.19.4", "@types/prop-types": "^15.7.5", "@types/redux-devtools-themes": "^1.0.0", "d3-state-visualizer": "^1.6.0", @@ -52,16 +52,16 @@ "@babel/core": "^7.19.3", "@babel/eslint-parser": "^7.19.1", "@babel/plugin-transform-runtime": "^7.19.1", - "@babel/preset-env": "^7.19.3", + "@babel/preset-env": "^7.19.4", "@babel/preset-react": "^7.18.6", "@babel/preset-typescript": "^7.18.6", "@redux-devtools/core": "^3.13.1", "@types/react": "^18.0.21", - "@typescript-eslint/eslint-plugin": "^5.39.0", - "@typescript-eslint/parser": "^5.39.0", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-react": "^7.31.9", + "eslint-plugin-react": "^7.31.10", "eslint-plugin-react-hooks": "^4.6.0", "react": "^18.2.0", "redux": "^4.2.0", diff --git a/packages/redux-devtools-cli/jest.config.js b/packages/redux-devtools-cli/jest.config.js index 05d33807..f68efd05 100644 --- a/packages/redux-devtools-cli/jest.config.js +++ b/packages/redux-devtools-cli/jest.config.js @@ -1,8 +1,6 @@ module.exports = { preset: 'ts-jest', - globals: { - 'ts-jest': { - tsconfig: 'tsconfig.test.json', - }, + transform: { + '^.+\\.tsx?$': ['ts-jest', { tsconfig: 'tsconfig.test.json' }], }, }; diff --git a/packages/redux-devtools-cli/package.json b/packages/redux-devtools-cli/package.json index 6a380809..6d4462fb 100644 --- a/packages/redux-devtools-cli/package.json +++ b/packages/redux-devtools-cli/package.json @@ -47,13 +47,13 @@ "chalk": "^4.1.2", "cors": "^2.8.5", "cross-spawn": "^7.0.3", - "electron": "^21.1.0", + "electron": "^21.1.1", "express": "^4.18.2", "getport": "^0.1.0", "graphql": "^16.6.0", "knex": "^2.3.0", "lodash": "^4.17.21", - "minimist": "^1.2.6", + "minimist": "^1.2.7", "morgan": "^1.10.0", "open": "^8.4.0", "react": "^18.2.0", @@ -70,28 +70,28 @@ "@types/cors": "^2.8.12", "@types/cross-spawn": "^6.0.2", "@types/express": "^4.17.14", - "@types/jest": "^27.5.2", + "@types/jest": "^29.2.0", "@types/lodash": "^4.14.186", "@types/minimist": "^1.2.2", "@types/morgan": "^1.9.3", - "@types/node": "^16.11.64", + "@types/node": "^18.11.7", "@types/semver": "^7.3.12", "@types/socketcluster-client": "^16.0.0", "@types/socketcluster-server": "^16.1.0", "@types/styled-components": "^5.1.26", "@types/supertest": "^2.0.12", "@types/uuid": "^8.3.4", - "@typescript-eslint/eslint-plugin": "^5.39.0", - "@typescript-eslint/parser": "^5.39.0", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-jest": "^27.1.1", - "jest": "^27.5.1", + "eslint-plugin-jest": "^27.1.2", + "jest": "^29.2.2", "ncp": "^2.0.0", "rimraf": "^3.0.2", "socketcluster-client": "^17.1.0", "supertest": "^6.3.0", - "ts-jest": "^27.1.5", + "ts-jest": "^29.0.3", "typescript": "~4.8.4" } } diff --git a/packages/redux-devtools-dock-monitor/package.json b/packages/redux-devtools-dock-monitor/package.json index e8247b25..9774fa37 100644 --- a/packages/redux-devtools-dock-monitor/package.json +++ b/packages/redux-devtools-dock-monitor/package.json @@ -41,7 +41,7 @@ "prepublish": "pnpm run type-check && pnpm run lint" }, "dependencies": { - "@babel/runtime": "^7.19.0", + "@babel/runtime": "^7.19.4", "@types/prop-types": "^15.7.5", "parse-key": "^0.2.1", "prop-types": "^15.8.1", @@ -52,17 +52,17 @@ "@babel/core": "^7.19.3", "@babel/eslint-parser": "^7.19.1", "@babel/plugin-transform-runtime": "^7.19.1", - "@babel/preset-env": "^7.19.3", + "@babel/preset-env": "^7.19.4", "@babel/preset-react": "^7.18.6", "@babel/preset-typescript": "^7.18.6", "@redux-devtools/core": "^3.13.1", "@types/parse-key": "^0.2.0", "@types/react": "^18.0.21", - "@typescript-eslint/eslint-plugin": "^5.39.0", - "@typescript-eslint/parser": "^5.39.0", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-react": "^7.31.9", + "eslint-plugin-react": "^7.31.10", "eslint-plugin-react-hooks": "^4.6.0", "react": "^18.2.0", "redux": "^4.2.0", diff --git a/packages/redux-devtools-extension/package.json b/packages/redux-devtools-extension/package.json index 14365c4b..ecb566c0 100644 --- a/packages/redux-devtools-extension/package.json +++ b/packages/redux-devtools-extension/package.json @@ -29,7 +29,7 @@ "prepublish": "pnpm run type-check && pnpm run lint" }, "dependencies": { - "@babel/runtime": "^7.19.0", + "@babel/runtime": "^7.19.4", "immutable": "^4.1.0" }, "devDependencies": { @@ -37,10 +37,10 @@ "@babel/core": "^7.19.3", "@babel/eslint-parser": "^7.19.1", "@babel/plugin-transform-runtime": "^7.19.1", - "@babel/preset-env": "^7.19.3", + "@babel/preset-env": "^7.19.4", "@babel/preset-typescript": "^7.18.6", - "@typescript-eslint/eslint-plugin": "^5.39.0", - "@typescript-eslint/parser": "^5.39.0", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", "redux": "^4.2.0", 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 6e2c94e5..fd20c1ad 100644 --- a/packages/redux-devtools-inspector-monitor-test-tab/demo/package.json +++ b/packages/redux-devtools-inspector-monitor-test-tab/demo/package.json @@ -28,24 +28,24 @@ }, "devDependencies": { "@babel/core": "^7.19.3", - "@babel/preset-env": "^7.19.3", + "@babel/preset-env": "^7.19.4", "@babel/preset-react": "^7.18.6", "@babel/preset-typescript": "^7.18.6", "@types/lodash.shuffle": "^4.2.7", - "@types/node": "^16.11.64", + "@types/node": "^18.11.7", "@types/react": "^18.0.21", "@types/react-dom": "^18.0.6", "@types/redux-logger": "^3.0.9", "@types/styled-components": "^5.1.26", "@types/webpack-env": "^1.18.0", - "@typescript-eslint/eslint-plugin": "^5.39.0", - "@typescript-eslint/parser": "^5.39.0", - "babel-loader": "^8.2.5", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", + "babel-loader": "^9.0.0", "cross-env": "^7.0.3", "css-loader": "^6.7.1", "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-react": "^7.31.9", + "eslint-plugin-react": "^7.31.10", "eslint-plugin-react-hooks": "^4.6.0", "fork-ts-checker-webpack-plugin": "^7.2.13", "html-webpack-plugin": "^5.5.0", diff --git a/packages/redux-devtools-inspector-monitor-test-tab/jest.config.js b/packages/redux-devtools-inspector-monitor-test-tab/jest.config.js index bf9761dc..3244f843 100644 --- a/packages/redux-devtools-inspector-monitor-test-tab/jest.config.js +++ b/packages/redux-devtools-inspector-monitor-test-tab/jest.config.js @@ -4,9 +4,8 @@ module.exports = { moduleNameMapper: { '\\.css$': '/test/__mocks__/styleMock.ts', }, - globals: { - 'ts-jest': { - tsconfig: 'tsconfig.test.json', - }, + transform: { + '^.+\\.tsx?$': ['ts-jest', { tsconfig: 'tsconfig.test.json' }], }, + resolver: '/jestResolver.js', }; diff --git a/packages/redux-devtools-inspector-monitor-test-tab/jestResolver.js b/packages/redux-devtools-inspector-monitor-test-tab/jestResolver.js new file mode 100644 index 00000000..385b2568 --- /dev/null +++ b/packages/redux-devtools-inspector-monitor-test-tab/jestResolver.js @@ -0,0 +1,11 @@ +module.exports = (path, options) => { + return options.defaultResolver(path, { + ...options, + packageFilter: (pkg) => { + if (pkg.name === 'nanoid') { + pkg.exports['.'].browser = pkg.exports['.'].require; + } + return pkg; + }, + }); +}; diff --git a/packages/redux-devtools-inspector-monitor-test-tab/package.json b/packages/redux-devtools-inspector-monitor-test-tab/package.json index 5a1c787a..c7c9d45e 100644 --- a/packages/redux-devtools-inspector-monitor-test-tab/package.json +++ b/packages/redux-devtools-inspector-monitor-test-tab/package.json @@ -43,7 +43,7 @@ "prepublish": "pnpm run type-check && pnpm run lint && pnpm run test" }, "dependencies": { - "@babel/runtime": "^7.19.0", + "@babel/runtime": "^7.19.4", "@redux-devtools/ui": "^1.3.0", "@types/prop-types": "^15.7.5", "es6template": "^1.0.5", @@ -51,7 +51,7 @@ "jsan": "^3.1.14", "object-path": "^0.11.8", "prop-types": "^15.8.1", - "react-icons": "^4.4.0", + "react-icons": "^4.6.0", "simple-diff": "^1.6.0" }, "devDependencies": { @@ -59,31 +59,32 @@ "@babel/core": "^7.19.3", "@babel/eslint-parser": "^7.19.1", "@babel/plugin-transform-runtime": "^7.19.1", - "@babel/preset-env": "^7.19.3", + "@babel/preset-env": "^7.19.4", "@babel/preset-react": "^7.18.6", "@babel/preset-typescript": "^7.18.6", "@redux-devtools/core": "^3.13.0", "@redux-devtools/inspector-monitor": "^3.0.0", "@testing-library/react": "^13.4.0", "@types/es6template": "^1.0.0", - "@types/jest": "^27.5.2", + "@types/jest": "^29.2.0", "@types/jsan": "^3.1.2", "@types/object-path": "^0.11.1", "@types/react": "^18.0.21", "@types/simple-diff": "^1.6.1", - "@typescript-eslint/eslint-plugin": "^5.39.0", - "@typescript-eslint/parser": "^5.39.0", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-jest": "^27.1.1", - "eslint-plugin-react": "^7.31.9", + "eslint-plugin-jest": "^27.1.2", + "eslint-plugin-react": "^7.31.10", "eslint-plugin-react-hooks": "^4.6.0", - "jest": "^27.5.1", + "jest": "^29.2.2", + "jest-environment-jsdom": "^29.2.2", "react": "^18.2.0", "react-dom": "^18.2.0", "redux": "^4.2.0", "rimraf": "^3.0.2", - "ts-jest": "^27.1.5", + "ts-jest": "^29.0.3", "typescript": "~4.8.4" }, "peerDependencies": { diff --git a/packages/redux-devtools-inspector-monitor-trace-tab/package.json b/packages/redux-devtools-inspector-monitor-trace-tab/package.json index 2c559ad7..e9173823 100644 --- a/packages/redux-devtools-inspector-monitor-trace-tab/package.json +++ b/packages/redux-devtools-inspector-monitor-trace-tab/package.json @@ -31,8 +31,8 @@ }, "dependencies": { "@babel/code-frame": "^7.18.6", - "@babel/runtime": "^7.19.0", - "@types/chrome": "^0.0.197", + "@babel/runtime": "^7.19.4", + "@types/chrome": "^0.0.198", "anser": "^2.1.1", "html-entities": "^2.3.3", "path-browserify": "^1.0.1", @@ -44,7 +44,7 @@ "@babel/core": "^7.19.3", "@babel/eslint-parser": "^7.19.1", "@babel/plugin-transform-runtime": "^7.19.1", - "@babel/preset-env": "^7.19.3", + "@babel/preset-env": "^7.19.4", "@babel/preset-react": "^7.18.6", "@babel/preset-typescript": "^7.18.6", "@redux-devtools/core": "^3.13.0", @@ -52,26 +52,27 @@ "@testing-library/react": "^13.4.0", "@types/babel__code-frame": "^7.0.3", "@types/html-entities": "^1.3.4", - "@types/jest": "^27.5.2", - "@types/node": "^16.11.64", + "@types/jest": "^29.2.0", + "@types/node": "^18.11.7", "@types/path-browserify": "^1.0.0", "@types/react": "^18.0.21", "@types/redux-devtools-themes": "^1.0.0", "@types/source-map": "0.5.2", - "@typescript-eslint/eslint-plugin": "^5.39.0", - "@typescript-eslint/parser": "^5.39.0", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-jest": "^27.1.1", - "eslint-plugin-react": "^7.31.9", + "eslint-plugin-jest": "^27.1.2", + "eslint-plugin-react": "^7.31.10", "eslint-plugin-react-hooks": "^4.6.0", - "jest": "^27.5.1", + "jest": "^29.2.2", + "jest-environment-jsdom": "^29.2.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.5", + "ts-jest": "^29.0.3", "typescript": "~4.8.4" }, "peerDependencies": { diff --git a/packages/redux-devtools-inspector-monitor/demo/package.json b/packages/redux-devtools-inspector-monitor/demo/package.json index 63c78326..60225c57 100644 --- a/packages/redux-devtools-inspector-monitor/demo/package.json +++ b/packages/redux-devtools-inspector-monitor/demo/package.json @@ -26,23 +26,23 @@ }, "devDependencies": { "@babel/core": "^7.19.3", - "@babel/preset-env": "^7.19.3", + "@babel/preset-env": "^7.19.4", "@babel/preset-react": "^7.18.6", "@babel/preset-typescript": "^7.18.6", "@types/base16": "^1.0.2", "@types/lodash.shuffle": "^4.2.7", - "@types/node": "^16.11.64", + "@types/node": "^18.11.7", "@types/react": "^18.0.21", "@types/react-dom": "^18.0.6", "@types/redux-logger": "^3.0.9", "@types/webpack-env": "^1.18.0", - "@typescript-eslint/eslint-plugin": "^5.39.0", - "@typescript-eslint/parser": "^5.39.0", - "babel-loader": "^8.2.5", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", + "babel-loader": "^9.0.0", "cross-env": "^7.0.3", "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-react": "^7.31.9", + "eslint-plugin-react": "^7.31.10", "eslint-plugin-react-hooks": "^4.6.0", "fork-ts-checker-webpack-plugin": "^7.2.13", "html-webpack-plugin": "^5.5.0", diff --git a/packages/redux-devtools-inspector-monitor/package.json b/packages/redux-devtools-inspector-monitor/package.json index b2b63f39..f0361949 100644 --- a/packages/redux-devtools-inspector-monitor/package.json +++ b/packages/redux-devtools-inspector-monitor/package.json @@ -35,7 +35,7 @@ "prepublish": "pnpm run type-check && pnpm run lint" }, "dependencies": { - "@babel/runtime": "^7.19.0", + "@babel/runtime": "^7.19.4", "@types/dragula": "^3.7.1", "@types/lodash": "^4.14.186", "@types/prop-types": "^15.7.5", @@ -58,7 +58,7 @@ "@babel/core": "^7.19.3", "@babel/eslint-parser": "^7.19.1", "@babel/plugin-transform-runtime": "^7.19.1", - "@babel/preset-env": "^7.19.3", + "@babel/preset-env": "^7.19.4", "@babel/preset-react": "^7.18.6", "@babel/preset-typescript": "^7.18.6", "@redux-devtools/core": "^3.13.1", @@ -69,11 +69,11 @@ "@types/react": "^18.0.21", "@types/react-dragula": "^1.1.0", "@types/redux-devtools-themes": "^1.0.0", - "@typescript-eslint/eslint-plugin": "^5.39.0", - "@typescript-eslint/parser": "^5.39.0", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-react": "^7.31.9", + "eslint-plugin-react": "^7.31.10", "eslint-plugin-react-hooks": "^4.6.0", "react": "^18.2.0", "redux": "^4.2.0", diff --git a/packages/redux-devtools-instrument/jest.config.js b/packages/redux-devtools-instrument/jest.config.js index 05d33807..f68efd05 100644 --- a/packages/redux-devtools-instrument/jest.config.js +++ b/packages/redux-devtools-instrument/jest.config.js @@ -1,8 +1,6 @@ module.exports = { preset: 'ts-jest', - globals: { - 'ts-jest': { - tsconfig: 'tsconfig.test.json', - }, + transform: { + '^.+\\.tsx?$': ['ts-jest', { tsconfig: 'tsconfig.test.json' }], }, }; diff --git a/packages/redux-devtools-instrument/package.json b/packages/redux-devtools-instrument/package.json index cd05fecb..3fa56fb6 100644 --- a/packages/redux-devtools-instrument/package.json +++ b/packages/redux-devtools-instrument/package.json @@ -41,7 +41,7 @@ "prepublish": "pnpm run type-check && pnpm run lint && pnpm run test" }, "dependencies": { - "@babel/runtime": "^7.19.0", + "@babel/runtime": "^7.19.4", "lodash": "^4.17.21" }, "devDependencies": { @@ -49,21 +49,21 @@ "@babel/core": "^7.19.3", "@babel/eslint-parser": "^7.19.1", "@babel/plugin-transform-runtime": "^7.19.1", - "@babel/preset-env": "^7.19.3", + "@babel/preset-env": "^7.19.4", "@babel/preset-typescript": "^7.18.6", - "@types/jest": "^27.5.2", + "@types/jest": "^29.2.0", "@types/lodash": "^4.14.186", - "@types/node": "^16.11.64", - "@typescript-eslint/eslint-plugin": "^5.39.0", - "@typescript-eslint/parser": "^5.39.0", + "@types/node": "^18.11.7", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-jest": "^27.1.1", - "jest": "^27.5.1", + "eslint-plugin-jest": "^27.1.2", + "jest": "^29.2.2", "redux": "^4.2.0", "rimraf": "^3.0.2", "rxjs": "^7.5.7", - "ts-jest": "^27.1.5", + "ts-jest": "^29.0.3", "typescript": "~4.8.4" }, "peerDependencies": { diff --git a/packages/redux-devtools-log-monitor/package.json b/packages/redux-devtools-log-monitor/package.json index 22ce9ac7..467fbd5a 100644 --- a/packages/redux-devtools-log-monitor/package.json +++ b/packages/redux-devtools-log-monitor/package.json @@ -41,7 +41,7 @@ "prepublish": "pnpm run type-check && pnpm run lint" }, "dependencies": { - "@babel/runtime": "^7.19.0", + "@babel/runtime": "^7.19.4", "@types/lodash.debounce": "^4.0.7", "@types/prop-types": "^15.7.5", "@types/redux-devtools-themes": "^1.0.0", @@ -55,16 +55,16 @@ "@babel/core": "^7.19.3", "@babel/eslint-parser": "^7.19.1", "@babel/plugin-transform-runtime": "^7.19.1", - "@babel/preset-env": "^7.19.3", + "@babel/preset-env": "^7.19.4", "@babel/preset-react": "^7.18.6", "@babel/preset-typescript": "^7.18.6", "@redux-devtools/core": "^3.13.1", "@types/react": "^18.0.21", - "@typescript-eslint/eslint-plugin": "^5.39.0", - "@typescript-eslint/parser": "^5.39.0", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-react": "^7.31.9", + "eslint-plugin-react": "^7.31.10", "eslint-plugin-react-hooks": "^4.6.0", "react": "^18.2.0", "redux": "^4.2.0", diff --git a/packages/redux-devtools-remote/package.json b/packages/redux-devtools-remote/package.json index 46aaacd5..66017c0b 100644 --- a/packages/redux-devtools-remote/package.json +++ b/packages/redux-devtools-remote/package.json @@ -41,7 +41,7 @@ "prepublish": "pnpm run type-check && pnpm run lint" }, "dependencies": { - "@babel/runtime": "^7.19.0", + "@babel/runtime": "^7.19.4", "@redux-devtools/instrument": "^2.1.0", "@redux-devtools/utils": "^2.0.0", "jsan": "^3.1.14", @@ -54,14 +54,14 @@ "@babel/core": "^7.19.3", "@babel/eslint-parser": "^7.19.1", "@babel/plugin-transform-runtime": "^7.19.1", - "@babel/preset-env": "^7.19.3", + "@babel/preset-env": "^7.19.4", "@babel/preset-typescript": "^7.18.6", "@types/jsan": "^3.1.2", - "@types/node": "^16.11.64", + "@types/node": "^18.11.7", "@types/rn-host-detect": "^1.2.0", "@types/socketcluster-client": "^16.0.0", - "@typescript-eslint/eslint-plugin": "^5.39.0", - "@typescript-eslint/parser": "^5.39.0", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", "redux": "^4.2.0", diff --git a/packages/redux-devtools-rtk-query-monitor/demo/package.json b/packages/redux-devtools-rtk-query-monitor/demo/package.json index ab6ee337..8b8008fb 100644 --- a/packages/redux-devtools-rtk-query-monitor/demo/package.json +++ b/packages/redux-devtools-rtk-query-monitor/demo/package.json @@ -10,8 +10,8 @@ "type-check": "tsc --noEmit" }, "dependencies": { - "@babel/runtime": "^7.19.0", - "@chakra-ui/react": "^2.3.5", + "@babel/runtime": "^7.19.4", + "@chakra-ui/react": "^2.3.6", "@emotion/react": "^11.10.4", "@emotion/styled": "^11.10.4", "@mswjs/data": "^0.10.2", @@ -19,11 +19,11 @@ "@redux-devtools/dock-monitor": "^3.0.0", "@redux-devtools/rtk-query-monitor": "^3.1.0", "@reduxjs/toolkit": "^1.8.6", - "framer-motion": "^7.5.3", + "framer-motion": "^7.6.1", "msw": "^0.47.4", "react": "^18.2.0", "react-dom": "^18.2.0", - "react-icons": "^4.4.0", + "react-icons": "^4.6.0", "react-is": "^18.2.0", "react-redux": "^8.0.4", "react-router-dom": "^6.4.2", @@ -32,23 +32,23 @@ "devDependencies": { "@babel/core": "^7.19.3", "@babel/plugin-transform-runtime": "^7.19.1", - "@babel/preset-env": "^7.19.3", + "@babel/preset-env": "^7.19.4", "@babel/preset-react": "^7.18.6", "@babel/preset-typescript": "^7.18.6", "@types/copy-webpack-plugin": "^8.0.1", - "@types/node": "^16.11.64", + "@types/node": "^18.11.7", "@types/react": "^18.0.21", "@types/react-dom": "^18.0.6", "@types/styled-components": "^5.1.26", - "@typescript-eslint/eslint-plugin": "^5.39.0", - "@typescript-eslint/parser": "^5.39.0", - "babel-loader": "^8.2.5", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", + "babel-loader": "^9.0.0", "copy-webpack-plugin": "^11.0.0", "cross-env": "^7.0.3", "css-loader": "^6.7.1", "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-react": "^7.31.9", + "eslint-plugin-react": "^7.31.10", "eslint-plugin-react-hooks": "^4.6.0", "fork-ts-checker-webpack-plugin": "^7.2.13", "html-webpack-plugin": "^5.5.0", diff --git a/packages/redux-devtools-rtk-query-monitor/jest.config.js b/packages/redux-devtools-rtk-query-monitor/jest.config.js index bf9761dc..3244f843 100644 --- a/packages/redux-devtools-rtk-query-monitor/jest.config.js +++ b/packages/redux-devtools-rtk-query-monitor/jest.config.js @@ -4,9 +4,8 @@ module.exports = { moduleNameMapper: { '\\.css$': '/test/__mocks__/styleMock.ts', }, - globals: { - 'ts-jest': { - tsconfig: 'tsconfig.test.json', - }, + transform: { + '^.+\\.tsx?$': ['ts-jest', { tsconfig: 'tsconfig.test.json' }], }, + resolver: '/jestResolver.js', }; diff --git a/packages/redux-devtools-rtk-query-monitor/jestResolver.js b/packages/redux-devtools-rtk-query-monitor/jestResolver.js new file mode 100644 index 00000000..385b2568 --- /dev/null +++ b/packages/redux-devtools-rtk-query-monitor/jestResolver.js @@ -0,0 +1,11 @@ +module.exports = (path, options) => { + return options.defaultResolver(path, { + ...options, + packageFilter: (pkg) => { + if (pkg.name === 'nanoid') { + pkg.exports['.'].browser = pkg.exports['.'].require; + } + return pkg; + }, + }); +}; diff --git a/packages/redux-devtools-rtk-query-monitor/package.json b/packages/redux-devtools-rtk-query-monitor/package.json index 4593f7c8..de294c9b 100644 --- a/packages/redux-devtools-rtk-query-monitor/package.json +++ b/packages/redux-devtools-rtk-query-monitor/package.json @@ -44,7 +44,7 @@ "prepublish": "pnpm run type-check && pnpm run lint && pnpm run test" }, "dependencies": { - "@babel/runtime": "^7.19.0", + "@babel/runtime": "^7.19.4", "@redux-devtools/ui": "^1.3.0", "@types/lodash": "^4.14.186", "@types/prop-types": "^15.7.5", @@ -64,31 +64,32 @@ "@babel/core": "^7.19.3", "@babel/eslint-parser": "^7.19.1", "@babel/plugin-transform-runtime": "^7.19.1", - "@babel/preset-env": "^7.19.3", + "@babel/preset-env": "^7.19.4", "@babel/preset-react": "^7.18.6", "@babel/preset-typescript": "^7.18.6", "@redux-devtools/core": "^3.13.1", "@reduxjs/toolkit": "^1.8.6", "@testing-library/jest-dom": "^5.16.5", "@testing-library/react": "^13.4.0", - "@types/jest": "^27.5.2", + "@types/jest": "^29.2.0", "@types/hex-rgba": "^1.0.1", "@types/lodash.debounce": "^4.0.7", "@types/react": "^18.0.21", - "@typescript-eslint/eslint-plugin": "^5.39.0", - "@typescript-eslint/parser": "^5.39.0", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-jest": "^27.1.1", - "eslint-plugin-react": "^7.31.9", + "eslint-plugin-jest": "^27.1.2", + "eslint-plugin-react": "^7.31.10", "eslint-plugin-react-hooks": "^4.6.0", - "jest": "^27.5.1", + "jest": "^29.2.2", + "jest-environment-jsdom": "^29.2.2", "react": "^18.2.0", "react-dom": "^18.2.0", "react-redux": "^8.0.4", "redux": "^4.2.0", "rimraf": "^3.0.2", - "ts-jest": "^27.1.5", + "ts-jest": "^29.0.3", "typescript": "~4.8.4" }, "peerDependencies": { diff --git a/packages/redux-devtools-serialize/jest.config.js b/packages/redux-devtools-serialize/jest.config.js index 05d33807..f68efd05 100644 --- a/packages/redux-devtools-serialize/jest.config.js +++ b/packages/redux-devtools-serialize/jest.config.js @@ -1,8 +1,6 @@ module.exports = { preset: 'ts-jest', - globals: { - 'ts-jest': { - tsconfig: 'tsconfig.test.json', - }, + transform: { + '^.+\\.tsx?$': ['ts-jest', { tsconfig: 'tsconfig.test.json' }], }, }; diff --git a/packages/redux-devtools-serialize/package.json b/packages/redux-devtools-serialize/package.json index 40a3bf05..239c5f78 100644 --- a/packages/redux-devtools-serialize/package.json +++ b/packages/redux-devtools-serialize/package.json @@ -37,7 +37,7 @@ "prepublish": "pnpm run type-check && pnpm run lint && pnpm run test" }, "dependencies": { - "@babel/runtime": "^7.19.0", + "@babel/runtime": "^7.19.4", "jsan": "^3.1.14" }, "devDependencies": { @@ -45,19 +45,19 @@ "@babel/core": "^7.19.3", "@babel/eslint-parser": "^7.19.1", "@babel/plugin-transform-runtime": "^7.19.1", - "@babel/preset-env": "^7.19.3", + "@babel/preset-env": "^7.19.4", "@babel/preset-typescript": "^7.18.6", - "@types/jest": "^27.5.2", + "@types/jest": "^29.2.0", "@types/jsan": "^3.1.2", - "@typescript-eslint/eslint-plugin": "^5.39.0", - "@typescript-eslint/parser": "^5.39.0", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-jest": "^27.1.1", + "eslint-plugin-jest": "^27.1.2", "immutable": "^4.1.0", - "jest": "^27.5.1", + "jest": "^29.2.2", "rimraf": "^3.0.2", - "ts-jest": "^27.1.5", + "ts-jest": "^29.0.3", "typescript": "~4.8.4" }, "peerDependencies": { diff --git a/packages/redux-devtools-serialize/test/__snapshots__/helpers.spec.ts.snap b/packages/redux-devtools-serialize/test/__snapshots__/helpers.spec.ts.snap index 00056f49..14984dc6 100644 --- a/packages/redux-devtools-serialize/test/__snapshots__/helpers.spec.ts.snap +++ b/packages/redux-devtools-serialize/test/__snapshots__/helpers.spec.ts.snap @@ -1,34 +1,34 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP exports[`Helpers extract 1`] = ` -Object { +{ "__serializedType__": "testType", - "data": Object { + "data": { "testData": "test", }, } `; exports[`Helpers mark 1`] = ` -Object { +{ "__serializedType__": "testType", - "data": Object { + "data": { "testData": "test", }, } `; exports[`Helpers mark 2`] = ` -Object { +{ "__serializedType__": "testType", "data": "[object Object]", } `; exports[`Helpers refer 1`] = ` -Object { +{ "__serializedType__": "testType", - "data": Object { + "data": { "testData": "test", }, } diff --git a/packages/redux-devtools-serialize/test/__snapshots__/immutable.spec.ts.snap b/packages/redux-devtools-serialize/test/__snapshots__/immutable.spec.ts.snap index 4c460e04..2fe2a9f9 100644 --- a/packages/redux-devtools-serialize/test/__snapshots__/immutable.spec.ts.snap +++ b/packages/redux-devtools-serialize/test/__snapshots__/immutable.spec.ts.snap @@ -1,23 +1,23 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP -exports[`Immutable Nested stringify 1`] = `"{\\"data\\":[{\\"data\\":{\\"map\\":{\\"data\\":{\\"seq\\":{\\"data\\":[1,2,3,4,5,6,7,8],\\"__serializedType__\\":\\"ImmutableSeq\\"},\\"stack\\":{\\"data\\":[\\"a\\",\\"b\\",\\"c\\"],\\"__serializedType__\\":\\"ImmutableStack\\"}},\\"__serializedType__\\":\\"ImmutableOrderedMap\\"},\\"repeat\\":{\\"data\\":{\\"_value\\":\\"hi\\",\\"size\\":100},\\"__serializedType__\\":\\"ImmutableRepeat\\"}},\\"__serializedType__\\":\\"ImmutableRecord\\",\\"__serializedRef__\\":0},{\\"data\\":[10,9,8,7,6,5,4,3,2,1],\\"__serializedType__\\":\\"ImmutableOrderedSet\\"},{\\"data\\":{\\"_start\\":0,\\"_end\\":7,\\"_step\\":1,\\"size\\":7},\\"__serializedType__\\":\\"ImmutableRange\\"}],\\"__serializedType__\\":\\"ImmutableSet\\"}"`; +exports[`Immutable Nested stringify 1`] = `"{"data":[{"data":{"map":{"data":{"seq":{"data":[1,2,3,4,5,6,7,8],"__serializedType__":"ImmutableSeq"},"stack":{"data":["a","b","c"],"__serializedType__":"ImmutableStack"}},"__serializedType__":"ImmutableOrderedMap"},"repeat":{"data":{"_value":"hi","size":100},"__serializedType__":"ImmutableRepeat"}},"__serializedType__":"ImmutableRecord","__serializedRef__":0},{"data":[10,9,8,7,6,5,4,3,2,1],"__serializedType__":"ImmutableOrderedSet"},{"data":{"_start":0,"_end":7,"_step":1,"size":7},"__serializedType__":"ImmutableRange"}],"__serializedType__":"ImmutableSet"}"`; -exports[`Immutable Record stringify 1`] = `"{\\"data\\":{\\"a\\":1,\\"b\\":3},\\"__serializedType__\\":\\"ImmutableRecord\\",\\"__serializedRef__\\":0}"`; +exports[`Immutable Record stringify 1`] = `"{"data":{"a":1,"b":3},"__serializedType__":"ImmutableRecord","__serializedRef__":0}"`; -exports[`Immutable Stringify list 1`] = `"{\\"data\\":[1,2,3,4,5,6,7,8,9,10],\\"__serializedType__\\":\\"ImmutableList\\"}"`; +exports[`Immutable Stringify list 1`] = `"{"data":[1,2,3,4,5,6,7,8,9,10],"__serializedType__":"ImmutableList"}"`; -exports[`Immutable Stringify map 1`] = `"{\\"data\\":{\\"a\\":1,\\"b\\":2,\\"c\\":3,\\"d\\":4},\\"__serializedType__\\":\\"ImmutableMap\\"}"`; +exports[`Immutable Stringify map 1`] = `"{"data":{"a":1,"b":2,"c":3,"d":4},"__serializedType__":"ImmutableMap"}"`; -exports[`Immutable Stringify orderedMap 1`] = `"{\\"data\\":{\\"b\\":2,\\"a\\":1,\\"c\\":3,\\"d\\":4},\\"__serializedType__\\":\\"ImmutableOrderedMap\\"}"`; +exports[`Immutable Stringify orderedMap 1`] = `"{"data":{"b":2,"a":1,"c":3,"d":4},"__serializedType__":"ImmutableOrderedMap"}"`; -exports[`Immutable Stringify orderedSet 1`] = `"{\\"data\\":[10,9,8,7,6,5,4,3,2,1],\\"__serializedType__\\":\\"ImmutableOrderedSet\\"}"`; +exports[`Immutable Stringify orderedSet 1`] = `"{"data":[10,9,8,7,6,5,4,3,2,1],"__serializedType__":"ImmutableOrderedSet"}"`; -exports[`Immutable Stringify range 1`] = `"{\\"data\\":{\\"_start\\":0,\\"_end\\":7,\\"_step\\":1,\\"size\\":7},\\"__serializedType__\\":\\"ImmutableRange\\"}"`; +exports[`Immutable Stringify range 1`] = `"{"data":{"_start":0,"_end":7,"_step":1,"size":7},"__serializedType__":"ImmutableRange"}"`; -exports[`Immutable Stringify repeat 1`] = `"{\\"data\\":{\\"_value\\":\\"hi\\",\\"size\\":100},\\"__serializedType__\\":\\"ImmutableRepeat\\"}"`; +exports[`Immutable Stringify repeat 1`] = `"{"data":{"_value":"hi","size":100},"__serializedType__":"ImmutableRepeat"}"`; -exports[`Immutable Stringify seq 1`] = `"{\\"data\\":[1,2,3,4,5,6,7,8],\\"__serializedType__\\":\\"ImmutableSeq\\"}"`; +exports[`Immutable Stringify seq 1`] = `"{"data":[1,2,3,4,5,6,7,8],"__serializedType__":"ImmutableSeq"}"`; -exports[`Immutable Stringify set 1`] = `"{\\"data\\":[1,2,3,4,5,6,7,8,9,10],\\"__serializedType__\\":\\"ImmutableSet\\"}"`; +exports[`Immutable Stringify set 1`] = `"{"data":[1,2,3,4,5,6,7,8,9,10],"__serializedType__":"ImmutableSet"}"`; -exports[`Immutable Stringify stack 1`] = `"{\\"data\\":[\\"a\\",\\"b\\",\\"c\\"],\\"__serializedType__\\":\\"ImmutableStack\\"}"`; +exports[`Immutable Stringify stack 1`] = `"{"data":["a","b","c"],"__serializedType__":"ImmutableStack"}"`; diff --git a/packages/redux-devtools-slider-monitor/examples/todomvc/package.json b/packages/redux-devtools-slider-monitor/examples/todomvc/package.json index f40945fe..2e68a13e 100644 --- a/packages/redux-devtools-slider-monitor/examples/todomvc/package.json +++ b/packages/redux-devtools-slider-monitor/examples/todomvc/package.json @@ -31,24 +31,24 @@ }, "devDependencies": { "@babel/core": "^7.19.3", - "@babel/preset-env": "^7.19.3", + "@babel/preset-env": "^7.19.4", "@babel/preset-react": "^7.18.6", "@babel/preset-typescript": "^7.18.6", "@types/classnames": "^2.3.1", - "@types/node": "^16.11.64", + "@types/node": "^18.11.7", "@types/prop-types": "^15.7.5", "@types/react": "^18.0.21", "@types/react-dom": "^18.0.6", "@types/styled-components": "^5.1.26", "@types/webpack-env": "^1.18.0", - "@typescript-eslint/eslint-plugin": "^5.39.0", - "@typescript-eslint/parser": "^5.39.0", - "babel-loader": "^8.2.5", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", + "babel-loader": "^9.0.0", "cross-env": "^7.0.3", "css-loader": "^6.7.1", "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-react": "^7.31.9", + "eslint-plugin-react": "^7.31.10", "eslint-plugin-react-hooks": "^4.6.0", "fork-ts-checker-webpack-plugin": "^7.2.13", "html-webpack-plugin": "^5.5.0", diff --git a/packages/redux-devtools-slider-monitor/package.json b/packages/redux-devtools-slider-monitor/package.json index a28598b0..e358385f 100644 --- a/packages/redux-devtools-slider-monitor/package.json +++ b/packages/redux-devtools-slider-monitor/package.json @@ -32,7 +32,7 @@ "prepublish": "pnpm run type-check && pnpm run lint" }, "dependencies": { - "@babel/runtime": "^7.19.0", + "@babel/runtime": "^7.19.4", "@redux-devtools/ui": "^1.3.0", "@types/prop-types": "^15.7.5", "@types/redux-devtools-themes": "^1.0.0", @@ -44,23 +44,23 @@ "@babel/core": "^7.19.3", "@babel/eslint-parser": "^7.19.1", "@babel/plugin-transform-runtime": "^7.19.1", - "@babel/preset-env": "^7.19.3", + "@babel/preset-env": "^7.19.4", "@babel/preset-react": "^7.18.6", "@babel/preset-typescript": "^7.18.6", "@redux-devtools/core": "^3.13.1", "@rollup/plugin-babel": "^6.0.0", - "@types/node": "^16.11.64", + "@types/node": "^18.11.7", "@types/react": "^18.0.21", - "@typescript-eslint/eslint-plugin": "^5.39.0", - "@typescript-eslint/parser": "^5.39.0", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-react": "^7.31.9", + "eslint-plugin-react": "^7.31.10", "eslint-plugin-react-hooks": "^4.6.0", "react": "^18.2.0", "redux": "^4.2.0", "rimraf": "^3.0.2", - "rollup": "^2.79.1", + "rollup": "^3.2.3", "rollup-plugin-typescript2": "^0.34.1", "tslib": "^2.4.0", "typescript": "~4.8.4" diff --git a/packages/redux-devtools-ui/.storybook/main.js b/packages/redux-devtools-ui/.storybook/main.js index 0b048608..b2931238 100644 --- a/packages/redux-devtools-ui/.storybook/main.js +++ b/packages/redux-devtools-ui/.storybook/main.js @@ -1,4 +1,7 @@ module.exports = { + core: { + builder: 'webpack5', + }, stories: ['../src/**/*.stories.mdx', '../src/**/*.stories.@(js|jsx|ts|tsx)'], addons: [ { diff --git a/packages/redux-devtools-ui/jest.config.js b/packages/redux-devtools-ui/jest.config.js index bf9761dc..3244f843 100644 --- a/packages/redux-devtools-ui/jest.config.js +++ b/packages/redux-devtools-ui/jest.config.js @@ -4,9 +4,8 @@ module.exports = { moduleNameMapper: { '\\.css$': '/test/__mocks__/styleMock.ts', }, - globals: { - 'ts-jest': { - tsconfig: 'tsconfig.test.json', - }, + transform: { + '^.+\\.tsx?$': ['ts-jest', { tsconfig: 'tsconfig.test.json' }], }, + resolver: '/jestResolver.js', }; diff --git a/packages/redux-devtools-ui/jestResolver.js b/packages/redux-devtools-ui/jestResolver.js new file mode 100644 index 00000000..385b2568 --- /dev/null +++ b/packages/redux-devtools-ui/jestResolver.js @@ -0,0 +1,11 @@ +module.exports = (path, options) => { + return options.defaultResolver(path, { + ...options, + packageFilter: (pkg) => { + if (pkg.name === 'nanoid') { + pkg.exports['.'].browser = pkg.exports['.'].require; + } + return pkg; + }, + }); +}; diff --git a/packages/redux-devtools-ui/package.json b/packages/redux-devtools-ui/package.json index 46d740ec..9883a1c0 100644 --- a/packages/redux-devtools-ui/package.json +++ b/packages/redux-devtools-ui/package.json @@ -42,7 +42,7 @@ "prepublish": "pnpm run type-check && pnpm run lint && pnpm run test" }, "dependencies": { - "@babel/runtime": "^7.19.0", + "@babel/runtime": "^7.19.4", "@rjsf/core": "^4.2.3", "@types/base16": "^1.0.2", "@types/codemirror": "^5.60.5", @@ -54,8 +54,8 @@ "codemirror": "^5.65.9", "color": "^4.2.3", "prop-types": "^15.8.1", - "react-icons": "^4.4.0", - "react-select": "^5.4.0", + "react-icons": "^4.6.0", + "react-select": "^5.5.2", "redux-devtools-themes": "^1.0.0", "simple-element-resize-detector": "^1.3.0" }, @@ -64,28 +64,31 @@ "@babel/core": "^7.19.3", "@babel/eslint-parser": "^7.19.1", "@babel/plugin-transform-runtime": "^7.19.1", - "@babel/preset-env": "^7.19.3", + "@babel/preset-env": "^7.19.4", "@babel/preset-react": "^7.18.6", "@babel/preset-typescript": "^7.18.6", "@storybook/addon-essentials": "^6.5.12", + "@storybook/builder-webpack5": "^6.5.13", + "@storybook/manager-webpack5": "^6.5.13", "@storybook/react": "^6.5.12", "@testing-library/dom": "^8.19.0", "@testing-library/react": "^13.4.0", "@testing-library/user-event": "^14.4.3", "@types/color": "^3.0.3", - "@types/jest": "^27.5.2", + "@types/jest": "^29.2.0", "@types/react": "^18.0.21", "@types/styled-components": "^5.1.26", - "@typescript-eslint/eslint-plugin": "^5.39.0", - "@typescript-eslint/parser": "^5.39.0", - "babel-loader": "^8.2.5", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", + "babel-loader": "^9.0.0", "csstype": "^3.1.1", "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-jest": "^27.1.1", - "eslint-plugin-react": "^7.31.9", + "eslint-plugin-jest": "^27.1.2", + "eslint-plugin-react": "^7.31.10", "eslint-plugin-react-hooks": "^4.6.0", - "jest": "^27.5.1", + "jest": "^29.2.2", + "jest-environment-jsdom": "^29.2.2", "ncp": "^2.0.0", "react": "^18.2.0", "react-dom": "^18.2.0", @@ -93,12 +96,12 @@ "require-from-string": "^2.0.2", "rimraf": "^3.0.2", "styled-components": "^5.3.6", - "stylelint": "^14.13.0", + "stylelint": "^14.14.0", "stylelint-config-prettier": "^9.0.3", - "stylelint-config-standard": "^28.0.0", + "stylelint-config-standard": "^29.0.0", "stylelint-config-styled-components": "^0.1.1", "stylelint-processor-styled-components": "^1.10.0", - "ts-jest": "^27.1.5", + "ts-jest": "^29.0.3", "typescript": "~4.8.4", "webpack": "^5.74.0" }, diff --git a/packages/redux-devtools-utils/package.json b/packages/redux-devtools-utils/package.json index 7ab695ad..b8f50285 100644 --- a/packages/redux-devtools-utils/package.json +++ b/packages/redux-devtools-utils/package.json @@ -32,7 +32,7 @@ "prepublish": "pnpm run type-check && pnpm run lint" }, "dependencies": { - "@babel/runtime": "^7.19.0", + "@babel/runtime": "^7.19.4", "@redux-devtools/core": "^3.13.1", "@redux-devtools/serialize": "^0.4.1", "@types/get-params": "^0.1.0", @@ -48,13 +48,13 @@ "@babel/core": "^7.19.3", "@babel/eslint-parser": "^7.19.1", "@babel/plugin-transform-runtime": "^7.19.1", - "@babel/preset-env": "^7.19.3", + "@babel/preset-env": "^7.19.4", "@babel/preset-typescript": "^7.18.6", "@types/jsan": "^3.1.2", "@types/lodash": "^4.14.186", - "@types/node": "^16.11.64", - "@typescript-eslint/eslint-plugin": "^5.39.0", - "@typescript-eslint/parser": "^5.39.0", + "@types/node": "^18.11.7", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", "rimraf": "^3.0.2", diff --git a/packages/redux-devtools/examples/counter/package.json b/packages/redux-devtools/examples/counter/package.json index c08a5aae..fd277531 100644 --- a/packages/redux-devtools/examples/counter/package.json +++ b/packages/redux-devtools/examples/counter/package.json @@ -31,21 +31,21 @@ }, "devDependencies": { "@babel/core": "^7.19.3", - "@babel/preset-env": "^7.19.3", + "@babel/preset-env": "^7.19.4", "@babel/preset-react": "^7.18.6", "@babel/preset-typescript": "^7.18.6", - "@types/node": "^16.11.64", + "@types/node": "^18.11.7", "@types/prop-types": "^15.7.5", "@types/react": "^18.0.21", "@types/react-dom": "^18.0.6", "@types/webpack-env": "^1.18.0", - "@typescript-eslint/eslint-plugin": "^5.39.0", - "@typescript-eslint/parser": "^5.39.0", - "babel-loader": "^8.2.5", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", + "babel-loader": "^9.0.0", "cross-env": "^7.0.3", "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-react": "^7.31.9", + "eslint-plugin-react": "^7.31.10", "eslint-plugin-react-hooks": "^4.6.0", "fork-ts-checker-webpack-plugin": "^7.2.13", "html-webpack-plugin": "^5.5.0", diff --git a/packages/redux-devtools/examples/todomvc/package.json b/packages/redux-devtools/examples/todomvc/package.json index a3897abb..e36b6d0a 100644 --- a/packages/redux-devtools/examples/todomvc/package.json +++ b/packages/redux-devtools/examples/todomvc/package.json @@ -44,23 +44,23 @@ }, "devDependencies": { "@babel/core": "^7.19.3", - "@babel/preset-env": "^7.19.3", + "@babel/preset-env": "^7.19.4", "@babel/preset-react": "^7.18.6", "@babel/preset-typescript": "^7.18.6", "@types/classnames": "^2.3.1", - "@types/node": "^16.11.64", + "@types/node": "^18.11.7", "@types/prop-types": "^15.7.5", "@types/react": "^18.0.21", "@types/react-dom": "^18.0.6", "@types/webpack-env": "^1.18.0", - "@typescript-eslint/eslint-plugin": "^5.39.0", - "@typescript-eslint/parser": "^5.39.0", - "babel-loader": "^8.2.5", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", + "babel-loader": "^9.0.0", "cross-env": "^7.0.3", "css-loader": "^6.7.1", "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-react": "^7.31.9", + "eslint-plugin-react": "^7.31.10", "eslint-plugin-react-hooks": "^4.6.0", "fork-ts-checker-webpack-plugin": "^7.2.13", "html-webpack-plugin": "^5.5.0", diff --git a/packages/redux-devtools/jest.config.js b/packages/redux-devtools/jest.config.js index 05d33807..f68efd05 100644 --- a/packages/redux-devtools/jest.config.js +++ b/packages/redux-devtools/jest.config.js @@ -1,8 +1,6 @@ module.exports = { preset: 'ts-jest', - globals: { - 'ts-jest': { - tsconfig: 'tsconfig.test.json', - }, + transform: { + '^.+\\.tsx?$': ['ts-jest', { tsconfig: 'tsconfig.test.json' }], }, }; diff --git a/packages/redux-devtools/package.json b/packages/redux-devtools/package.json index fe590c10..dec81606 100644 --- a/packages/redux-devtools/package.json +++ b/packages/redux-devtools/package.json @@ -41,7 +41,7 @@ "prepublish": "pnpm run type-check && pnpm run lint && pnpm run test" }, "dependencies": { - "@babel/runtime": "^7.19.0", + "@babel/runtime": "^7.19.4", "@redux-devtools/instrument": "^2.1.0", "@types/prop-types": "^15.7.5", "lodash": "^4.17.21", @@ -52,27 +52,27 @@ "@babel/core": "^7.19.3", "@babel/eslint-parser": "^7.19.1", "@babel/plugin-transform-runtime": "^7.19.1", - "@babel/preset-env": "^7.19.3", + "@babel/preset-env": "^7.19.4", "@babel/preset-react": "^7.18.6", "@babel/preset-typescript": "^7.18.6", - "@types/jest": "^27.5.2", + "@types/jest": "^29.2.0", "@types/lodash": "^4.14.186", - "@types/node": "^16.11.64", + "@types/node": "^18.11.7", "@types/react": "^18.0.21", - "@typescript-eslint/eslint-plugin": "^5.39.0", - "@typescript-eslint/parser": "^5.39.0", + "@typescript-eslint/eslint-plugin": "^5.40.1", + "@typescript-eslint/parser": "^5.40.1", "eslint": "^8.25.0", "eslint-config-prettier": "^8.5.0", - "eslint-plugin-jest": "^27.1.1", - "eslint-plugin-react": "^7.31.9", + "eslint-plugin-jest": "^27.1.2", + "eslint-plugin-react": "^7.31.10", "eslint-plugin-react-hooks": "^4.6.0", - "jest": "^27.5.1", + "jest": "^29.2.2", "react": "^18.2.0", "react-dom": "^18.2.0", "react-redux": "^8.0.4", "redux": "^4.2.0", "rimraf": "^3.0.2", - "ts-jest": "^27.1.5", + "ts-jest": "^29.0.3", "typescript": "~4.8.4" }, "peerDependencies": { diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index e4992913..9fe0be17 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -10,32 +10,32 @@ importers: '@babel/core': ^7.19.3 '@babel/eslint-parser': ^7.19.1 '@changesets/cli': ^2.25.0 - '@nrwl/nx-cloud': ^14.7.0 - '@typescript-eslint/eslint-plugin': ^5.39.0 - '@typescript-eslint/parser': ^5.39.0 + '@nrwl/nx-cloud': ^15.0.0 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 eslint: ^8.25.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-jest: ^27.1.1 - eslint-plugin-react: ^7.31.9 + eslint-plugin-jest: ^27.1.2 + eslint-plugin-react: ^7.31.10 eslint-plugin-react-hooks: ^4.6.0 - jest: ^27.5.1 - nx: ^14.8.3 + jest: ^29.2.2 + nx: ^15.0.0 prettier: 2.7.1 typescript: ~4.8.4 devDependencies: '@babel/core': 7.19.3 '@babel/eslint-parser': 7.19.1_v37dtiefj2fmp2s4n57pt7n35y '@changesets/cli': 2.25.0 - '@nrwl/nx-cloud': 14.7.0 - '@typescript-eslint/eslint-plugin': 5.39.0_cfd7h3iktziq6hcwahu2qxhjhy - '@typescript-eslint/parser': 5.39.0_z4bbprzjrhnsfa24uvmcbu7f5q + '@nrwl/nx-cloud': 15.0.0 + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q eslint: 8.25.0 eslint-config-prettier: 8.5.0_eslint@8.25.0 - eslint-plugin-jest: 27.1.1_or6kr3fag2h7rsusdfqwiniqvm - eslint-plugin-react: 7.31.9_eslint@8.25.0 + eslint-plugin-jest: 27.1.2_6co43ebcjfbpobjajqgjcmpkdi + eslint-plugin-react: 7.31.10_eslint@8.25.0 eslint-plugin-react-hooks: 4.6.0_eslint@8.25.0 - jest: 27.5.1 - nx: 14.8.3 + jest: 29.2.2 + nx: 15.0.0 prettier: 2.7.1 typescript: 4.8.4 @@ -43,7 +43,7 @@ importers: specifiers: '@babel/core': ^7.19.3 '@babel/polyfill': ^7.12.1 - '@babel/preset-env': ^7.19.3 + '@babel/preset-env': ^7.19.4 '@babel/preset-react': ^7.18.6 '@babel/preset-typescript': ^7.18.6 '@babel/register': ^7.18.9 @@ -56,29 +56,30 @@ importers: '@redux-devtools/utils': ^2.0.0 '@testing-library/jest-dom': ^5.16.5 '@testing-library/react': ^13.4.0 - '@types/chrome': ^0.0.197 + '@types/chrome': ^0.0.198 '@types/jsan': ^3.1.2 '@types/lodash': ^4.14.186 '@types/react': ^18.0.21 '@types/react-dom': ^18.0.6 '@types/styled-components': ^5.1.26 - babel-loader: ^8.2.5 + babel-loader: ^9.0.0 bestzip: ^2.2.1 chromedriver: ^106.0.1 copy-webpack-plugin: ^11.0.0 cross-env: ^7.0.3 css-loader: ^6.7.1 - electron: ^21.1.0 + electron: ^21.1.1 eslint: ^8.25.0 eslint-config-airbnb: ^19.0.4 eslint-plugin-import: ^2.26.0 eslint-plugin-jsx-a11y: ^6.6.1 - eslint-plugin-react: ^7.31.9 + eslint-plugin-react: ^7.31.10 eslint-plugin-react-hooks: ^4.6.0 file-loader: ^6.2.0 fork-ts-checker-webpack-plugin: ^7.2.13 immutable: ^4.1.0 - jest: ^27.5.1 + jest: ^29.2.2 + jest-environment-jsdom: ^29.2.2 jsan: ^3.1.14 localforage: ^1.10.0 lodash: ^4.17.21 @@ -87,7 +88,7 @@ importers: raw-loader: ^4.0.2 react: ^18.2.0 react-dom: ^18.2.0 - react-icons: ^4.4.0 + react-icons: ^4.6.0 react-is: ^18.2.0 react-json-tree: ^0.17.0 react-redux: ^8.0.4 @@ -100,7 +101,7 @@ importers: sinon-chrome: ^3.0.1 style-loader: ^3.3.1 styled-components: ^5.3.6 - ts-jest: ^27.1.5 + ts-jest: ^29.0.3 typescript: ~4.8.4 webpack: ^5.74.0 webpack-cli: ^4.10.0 @@ -119,7 +120,7 @@ importers: lodash: 4.17.21 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - react-icons: 4.4.0_react@18.2.0 + react-icons: 4.6.0_react@18.2.0 react-is: 18.2.0 react-json-tree: link:../packages/react-json-tree react-redux: 8.0.4_yfr4m6wk75wdra335rld4tkrbu @@ -128,34 +129,35 @@ importers: styled-components: 5.3.6_7i5myeigehqah43i5u7wbekgba devDependencies: '@babel/core': 7.19.3 - '@babel/preset-env': 7.19.3_@babel+core@7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 '@babel/preset-react': 7.18.6_@babel+core@7.19.3 '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 '@babel/register': 7.18.9_@babel+core@7.19.3 '@testing-library/jest-dom': 5.16.5 '@testing-library/react': 13.4.0_biqbaboplfbrettd7655fr4n2y - '@types/chrome': 0.0.197 + '@types/chrome': 0.0.198 '@types/lodash': 4.14.186 '@types/react': 18.0.21 '@types/react-dom': 18.0.6 '@types/styled-components': 5.1.26 - babel-loader: 8.2.5_wfdvla2jorjoj23kkavho2upde + babel-loader: 9.0.0_wfdvla2jorjoj23kkavho2upde bestzip: 2.2.1 chromedriver: 106.0.1 copy-webpack-plugin: 11.0.0_webpack@5.74.0 cross-env: 7.0.3 css-loader: 6.7.1_webpack@5.74.0 - electron: 21.1.0 + electron: 21.1.1 eslint: 8.25.0 - eslint-config-airbnb: 19.0.4_ckxtnaoy67ewg7fa3hkinvzrqe + eslint-config-airbnb: 19.0.4_4ces55zid76bgvayjtslcl5sne eslint-plugin-import: 2.26.0_eslint@8.25.0 eslint-plugin-jsx-a11y: 6.6.1_eslint@8.25.0 - eslint-plugin-react: 7.31.9_eslint@8.25.0 + eslint-plugin-react: 7.31.10_eslint@8.25.0 eslint-plugin-react-hooks: 4.6.0_eslint@8.25.0 file-loader: 6.2.0_webpack@5.74.0 fork-ts-checker-webpack-plugin: 7.2.13_qqxisngxjbp7lstdk7boexbu3e immutable: 4.1.0 - jest: 27.5.1 + jest: 29.2.2 + jest-environment-jsdom: 29.2.2 path-browserify: 1.0.1 pug-html-loader: 1.1.5 raw-loader: 4.0.2_webpack@5.74.0 @@ -165,7 +167,7 @@ importers: selenium-webdriver: 4.5.0 sinon-chrome: 3.0.1 style-loader: 3.3.1_webpack@5.74.0 - ts-jest: 27.1.5_s3hctw44eio5yfpbfoxpvrxkse + ts-jest: 29.0.3_qutljtsb73gn6tigyw4fnh25am typescript: 4.8.4 webpack: 5.74.0_webpack-cli@4.10.0 webpack-cli: 4.10.0_webpack@5.74.0 @@ -176,17 +178,18 @@ importers: '@babel/core': ^7.19.3 '@babel/eslint-parser': ^7.19.1 '@babel/plugin-transform-runtime': ^7.19.1 - '@babel/preset-env': ^7.19.3 + '@babel/preset-env': ^7.19.4 '@babel/preset-typescript': ^7.18.6 - '@babel/runtime': ^7.19.0 + '@babel/runtime': ^7.19.4 '@rollup/plugin-babel': ^6.0.0 '@rollup/plugin-commonjs': ^23.0.0 '@rollup/plugin-node-resolve': ^15.0.0 + '@rollup/plugin-terser': ^0.1.0 '@types/d3': ^3.5.47 - '@types/node': ^16.11.64 - '@types/ramda': ^0.28.15 - '@typescript-eslint/eslint-plugin': ^5.39.0 - '@typescript-eslint/parser': ^5.39.0 + '@types/node': ^18.11.7 + '@types/ramda': ^0.28.16 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 d3: ^3.5.17 d3tooltip: ^2.1.0 deepmerge: ^4.2.2 @@ -195,13 +198,12 @@ importers: map2tree: ^2.1.0 ramda: ^0.28.0 rimraf: ^3.0.2 - rollup: ^2.79.1 - rollup-plugin-terser: ^7.0.2 + rollup: ^3.2.3 rollup-plugin-typescript2: ^0.34.1 tslib: ^2.4.0 typescript: ~4.8.4 dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 '@types/d3': 3.5.47 d3: 3.5.17 d3tooltip: link:../d3tooltip @@ -213,33 +215,33 @@ importers: '@babel/core': 7.19.3 '@babel/eslint-parser': 7.19.1_v37dtiefj2fmp2s4n57pt7n35y '@babel/plugin-transform-runtime': 7.19.1_@babel+core@7.19.3 - '@babel/preset-env': 7.19.3_@babel+core@7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 - '@rollup/plugin-babel': 6.0.0_vy4anxjpv2s44kyfi2kxqu576u - '@rollup/plugin-commonjs': 23.0.0_rollup@2.79.1 - '@rollup/plugin-node-resolve': 15.0.0_rollup@2.79.1 - '@types/node': 16.11.64 - '@types/ramda': 0.28.15 - '@typescript-eslint/eslint-plugin': 5.39.0_cfd7h3iktziq6hcwahu2qxhjhy - '@typescript-eslint/parser': 5.39.0_z4bbprzjrhnsfa24uvmcbu7f5q + '@rollup/plugin-babel': 6.0.0_t2lseskayu4pmjc4spb5q7neyq + '@rollup/plugin-commonjs': 23.0.0_rollup@3.2.3 + '@rollup/plugin-node-resolve': 15.0.0_rollup@3.2.3 + '@rollup/plugin-terser': 0.1.0_rollup@3.2.3 + '@types/node': 18.11.7 + '@types/ramda': 0.28.16 + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q eslint: 8.25.0 eslint-config-prettier: 8.5.0_eslint@8.25.0 rimraf: 3.0.2 - rollup: 2.79.1 - rollup-plugin-terser: 7.0.2_rollup@2.79.1 - rollup-plugin-typescript2: 0.34.1_gypgyaqhine6mwjfvh7icfhviq + rollup: 3.2.3 + rollup-plugin-typescript2: 0.34.1_655ssj4e7sdqlljrreeiqtltve tslib: 2.4.0 typescript: 4.8.4 packages/d3-state-visualizer/examples/tree: specifiers: '@babel/core': ^7.19.3 - '@babel/preset-env': ^7.19.3 + '@babel/preset-env': ^7.19.4 '@babel/preset-typescript': ^7.18.6 - '@types/node': ^16.11.64 - '@typescript-eslint/eslint-plugin': ^5.39.0 - '@typescript-eslint/parser': ^5.39.0 - babel-loader: ^8.2.5 + '@types/node': ^18.11.7 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 + babel-loader: ^9.0.0 cross-env: ^7.0.3 d3-state-visualizer: ^1.6.0 eslint: ^8.25.0 @@ -257,18 +259,18 @@ importers: map2tree: link:../../../map2tree devDependencies: '@babel/core': 7.19.3 - '@babel/preset-env': 7.19.3_@babel+core@7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 - '@types/node': 16.11.64 - '@typescript-eslint/eslint-plugin': 5.39.0_cfd7h3iktziq6hcwahu2qxhjhy - '@typescript-eslint/parser': 5.39.0_z4bbprzjrhnsfa24uvmcbu7f5q - babel-loader: 8.2.5_wfdvla2jorjoj23kkavho2upde + '@types/node': 18.11.7 + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q + babel-loader: 9.0.0_wfdvla2jorjoj23kkavho2upde cross-env: 7.0.3 eslint: 8.25.0 eslint-config-prettier: 8.5.0_eslint@8.25.0 fork-ts-checker-webpack-plugin: 7.2.13_qqxisngxjbp7lstdk7boexbu3e html-webpack-plugin: 5.5.0_webpack@5.74.0 - ts-node: 10.9.1_k2jc2lb6qrtdc3lulqxjwnbwoi + ts-node: 10.9.1_evej5wzm4hojmu6uzxwpspdmsu typescript: 4.8.4 webpack: 5.74.0_webpack-cli@4.10.0 webpack-cli: 4.10.0_vnmgq7jx5zjkzolvtfp7mdf5ri @@ -280,52 +282,52 @@ importers: '@babel/core': ^7.19.3 '@babel/eslint-parser': ^7.19.1 '@babel/plugin-transform-runtime': ^7.19.1 - '@babel/preset-env': ^7.19.3 + '@babel/preset-env': ^7.19.4 '@babel/preset-typescript': ^7.18.6 - '@babel/runtime': ^7.19.0 + '@babel/runtime': ^7.19.4 '@rollup/plugin-babel': ^6.0.0 '@rollup/plugin-commonjs': ^23.0.0 '@rollup/plugin-node-resolve': ^15.0.0 + '@rollup/plugin-terser': ^0.1.0 '@types/d3': ^3.5.47 - '@types/node': ^16.11.64 - '@types/ramda': ^0.28.15 - '@typescript-eslint/eslint-plugin': ^5.39.0 - '@typescript-eslint/parser': ^5.39.0 + '@types/node': ^18.11.7 + '@types/ramda': ^0.28.16 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 d3: ^3.5.17 eslint: ^8.25.0 eslint-config-prettier: ^8.5.0 ramda: ^0.28.0 rimraf: ^3.0.2 - rollup: ^2.79.1 - rollup-plugin-terser: ^7.0.2 + rollup: ^3.2.3 rollup-plugin-typescript2: ^0.34.1 tslib: ^2.4.0 typescript: ~4.8.4 dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 ramda: 0.28.0 devDependencies: '@babel/cli': 7.19.3_@babel+core@7.19.3 '@babel/core': 7.19.3 '@babel/eslint-parser': 7.19.1_v37dtiefj2fmp2s4n57pt7n35y '@babel/plugin-transform-runtime': 7.19.1_@babel+core@7.19.3 - '@babel/preset-env': 7.19.3_@babel+core@7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 - '@rollup/plugin-babel': 6.0.0_vy4anxjpv2s44kyfi2kxqu576u - '@rollup/plugin-commonjs': 23.0.0_rollup@2.79.1 - '@rollup/plugin-node-resolve': 15.0.0_rollup@2.79.1 + '@rollup/plugin-babel': 6.0.0_t2lseskayu4pmjc4spb5q7neyq + '@rollup/plugin-commonjs': 23.0.0_rollup@3.2.3 + '@rollup/plugin-node-resolve': 15.0.0_rollup@3.2.3 + '@rollup/plugin-terser': 0.1.0_rollup@3.2.3 '@types/d3': 3.5.47 - '@types/node': 16.11.64 - '@types/ramda': 0.28.15 - '@typescript-eslint/eslint-plugin': 5.39.0_cfd7h3iktziq6hcwahu2qxhjhy - '@typescript-eslint/parser': 5.39.0_z4bbprzjrhnsfa24uvmcbu7f5q + '@types/node': 18.11.7 + '@types/ramda': 0.28.16 + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q d3: 3.5.17 eslint: 8.25.0 eslint-config-prettier: 8.5.0_eslint@8.25.0 rimraf: 3.0.2 - rollup: 2.79.1 - rollup-plugin-terser: 7.0.2_rollup@2.79.1 - rollup-plugin-typescript2: 0.34.1_gypgyaqhine6mwjfvh7icfhviq + rollup: 3.2.3 + rollup-plugin-typescript2: 0.34.1_655ssj4e7sdqlljrreeiqtltve tslib: 2.4.0 typescript: 4.8.4 @@ -335,58 +337,58 @@ importers: '@babel/core': ^7.19.3 '@babel/eslint-parser': ^7.19.1 '@babel/plugin-transform-runtime': ^7.19.1 - '@babel/preset-env': ^7.19.3 + '@babel/preset-env': ^7.19.4 '@babel/preset-typescript': ^7.18.6 - '@babel/runtime': ^7.19.0 + '@babel/runtime': ^7.19.4 '@rollup/plugin-babel': ^6.0.0 '@rollup/plugin-commonjs': ^23.0.0 '@rollup/plugin-node-resolve': ^15.0.0 - '@types/jest': ^27.5.2 + '@rollup/plugin-terser': ^0.1.0 + '@types/jest': ^29.2.0 '@types/lodash': ^4.14.186 - '@types/node': ^16.11.64 - '@typescript-eslint/eslint-plugin': ^5.39.0 - '@typescript-eslint/parser': ^5.39.0 + '@types/node': ^18.11.7 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 eslint: ^8.25.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-jest: ^27.1.1 + eslint-plugin-jest: ^27.1.2 immutable: ^4.1.0 - jest: ^27.5.1 + jest: ^29.2.2 lodash: ^4.17.21 rimraf: ^3.0.2 - rollup: ^2.79.1 - rollup-plugin-terser: ^7.0.2 + rollup: ^3.2.3 rollup-plugin-typescript2: ^0.34.1 - ts-jest: ^27.1.5 + ts-jest: ^29.0.3 tslib: ^2.4.0 typescript: ~4.8.4 dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 lodash: 4.17.21 devDependencies: '@babel/cli': 7.19.3_@babel+core@7.19.3 '@babel/core': 7.19.3 '@babel/eslint-parser': 7.19.1_v37dtiefj2fmp2s4n57pt7n35y '@babel/plugin-transform-runtime': 7.19.1_@babel+core@7.19.3 - '@babel/preset-env': 7.19.3_@babel+core@7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 - '@rollup/plugin-babel': 6.0.0_vy4anxjpv2s44kyfi2kxqu576u - '@rollup/plugin-commonjs': 23.0.0_rollup@2.79.1 - '@rollup/plugin-node-resolve': 15.0.0_rollup@2.79.1 - '@types/jest': 27.5.2 + '@rollup/plugin-babel': 6.0.0_t2lseskayu4pmjc4spb5q7neyq + '@rollup/plugin-commonjs': 23.0.0_rollup@3.2.3 + '@rollup/plugin-node-resolve': 15.0.0_rollup@3.2.3 + '@rollup/plugin-terser': 0.1.0_rollup@3.2.3 + '@types/jest': 29.2.0 '@types/lodash': 4.14.186 - '@types/node': 16.11.64 - '@typescript-eslint/eslint-plugin': 5.39.0_cfd7h3iktziq6hcwahu2qxhjhy - '@typescript-eslint/parser': 5.39.0_z4bbprzjrhnsfa24uvmcbu7f5q + '@types/node': 18.11.7 + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q eslint: 8.25.0 eslint-config-prettier: 8.5.0_eslint@8.25.0 - eslint-plugin-jest: 27.1.1_or6kr3fag2h7rsusdfqwiniqvm + eslint-plugin-jest: 27.1.2_6co43ebcjfbpobjajqgjcmpkdi immutable: 4.1.0 - jest: 27.5.1 + jest: 29.2.2_@types+node@18.11.7 rimraf: 3.0.2 - rollup: 2.79.1 - rollup-plugin-terser: 7.0.2_rollup@2.79.1 - rollup-plugin-typescript2: 0.34.1_gypgyaqhine6mwjfvh7icfhviq - ts-jest: 27.1.5_zgo3ukr7wfsrfu7w73hol4lxpy + rollup: 3.2.3 + rollup-plugin-typescript2: 0.34.1_655ssj4e7sdqlljrreeiqtltve + ts-jest: 29.0.3_qutljtsb73gn6tigyw4fnh25am tslib: 2.4.0 typescript: 4.8.4 @@ -396,29 +398,30 @@ importers: '@babel/core': ^7.19.3 '@babel/eslint-parser': ^7.19.1 '@babel/plugin-transform-runtime': ^7.19.1 - '@babel/preset-env': ^7.19.3 + '@babel/preset-env': ^7.19.4 '@babel/preset-typescript': ^7.18.6 - '@babel/runtime': ^7.19.0 + '@babel/runtime': ^7.19.4 '@types/base16': ^1.0.2 '@types/color': ^3.0.3 - '@types/jest': ^27.5.2 + '@types/jest': ^29.2.0 '@types/lodash': ^4.14.186 '@types/lodash.curry': ^4.1.7 - '@typescript-eslint/eslint-plugin': ^5.39.0 - '@typescript-eslint/parser': ^5.39.0 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 base16: ^1.0.0 color: ^4.2.3 csstype: ^3.1.1 eslint: ^8.25.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-jest: ^27.1.1 - jest: ^27.5.1 + eslint-plugin-jest: ^27.1.2 + jest: ^29.2.2 + jest-environment-jsdom: ^29.2.2 lodash.curry: ^4.1.1 rimraf: ^3.0.2 - ts-jest: ^27.1.5 + ts-jest: ^29.0.3 typescript: ~4.8.4 dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 '@types/base16': 1.0.2 '@types/lodash': 4.14.186 base16: 1.0.0 @@ -430,19 +433,20 @@ importers: '@babel/core': 7.19.3 '@babel/eslint-parser': 7.19.1_v37dtiefj2fmp2s4n57pt7n35y '@babel/plugin-transform-runtime': 7.19.1_@babel+core@7.19.3 - '@babel/preset-env': 7.19.3_@babel+core@7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 '@types/color': 3.0.3 - '@types/jest': 27.5.2 + '@types/jest': 29.2.0 '@types/lodash.curry': 4.1.7 - '@typescript-eslint/eslint-plugin': 5.39.0_cfd7h3iktziq6hcwahu2qxhjhy - '@typescript-eslint/parser': 5.39.0_z4bbprzjrhnsfa24uvmcbu7f5q + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q eslint: 8.25.0 eslint-config-prettier: 8.5.0_eslint@8.25.0 - eslint-plugin-jest: 27.1.1_or6kr3fag2h7rsusdfqwiniqvm - jest: 27.5.1 + eslint-plugin-jest: 27.1.2_6co43ebcjfbpobjajqgjcmpkdi + jest: 29.2.2 + jest-environment-jsdom: 29.2.2 rimraf: 3.0.2 - ts-jest: 27.1.5_zgo3ukr7wfsrfu7w73hol4lxpy + ts-jest: 29.0.3_qutljtsb73gn6tigyw4fnh25am typescript: 4.8.4 packages/react-dock: @@ -451,33 +455,34 @@ importers: '@babel/core': ^7.19.3 '@babel/eslint-parser': ^7.19.1 '@babel/plugin-transform-runtime': ^7.19.1 - '@babel/preset-env': ^7.19.3 + '@babel/preset-env': ^7.19.4 '@babel/preset-react': ^7.18.6 '@babel/preset-typescript': ^7.18.6 - '@babel/runtime': ^7.19.0 - '@types/jest': ^27.5.2 + '@babel/runtime': ^7.19.4 + '@types/jest': ^29.2.0 '@types/lodash': ^4.14.186 '@types/lodash.debounce': ^4.0.7 '@types/prop-types': ^15.7.5 '@types/react': ^18.0.21 '@types/react-test-renderer': ^18.0.0 - '@typescript-eslint/eslint-plugin': ^5.39.0 - '@typescript-eslint/parser': ^5.39.0 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 eslint: ^8.25.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-jest: ^27.1.1 - eslint-plugin-react: ^7.31.9 + eslint-plugin-jest: ^27.1.2 + eslint-plugin-react: ^7.31.10 eslint-plugin-react-hooks: ^4.6.0 - jest: ^27.5.1 + jest: ^29.2.2 + jest-environment-jsdom: ^29.2.2 lodash.debounce: ^4.0.8 prop-types: ^15.8.1 react: ^18.2.0 react-test-renderer: ^18.2.0 rimraf: ^3.0.2 - ts-jest: ^27.1.5 + ts-jest: ^29.0.3 typescript: ~4.8.4 dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 '@types/lodash': 4.14.186 '@types/prop-types': 15.7.5 lodash.debounce: 4.0.8 @@ -487,44 +492,45 @@ importers: '@babel/core': 7.19.3 '@babel/eslint-parser': 7.19.1_v37dtiefj2fmp2s4n57pt7n35y '@babel/plugin-transform-runtime': 7.19.1_@babel+core@7.19.3 - '@babel/preset-env': 7.19.3_@babel+core@7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 '@babel/preset-react': 7.18.6_@babel+core@7.19.3 '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 - '@types/jest': 27.5.2 + '@types/jest': 29.2.0 '@types/lodash.debounce': 4.0.7 '@types/react': 18.0.21 '@types/react-test-renderer': 18.0.0 - '@typescript-eslint/eslint-plugin': 5.39.0_cfd7h3iktziq6hcwahu2qxhjhy - '@typescript-eslint/parser': 5.39.0_z4bbprzjrhnsfa24uvmcbu7f5q + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q eslint: 8.25.0 eslint-config-prettier: 8.5.0_eslint@8.25.0 - eslint-plugin-jest: 27.1.1_or6kr3fag2h7rsusdfqwiniqvm - eslint-plugin-react: 7.31.9_eslint@8.25.0 + eslint-plugin-jest: 27.1.2_6co43ebcjfbpobjajqgjcmpkdi + eslint-plugin-react: 7.31.10_eslint@8.25.0 eslint-plugin-react-hooks: 4.6.0_eslint@8.25.0 - jest: 27.5.1 + jest: 29.2.2 + jest-environment-jsdom: 29.2.2 react: 18.2.0 react-test-renderer: 18.2.0_react@18.2.0 rimraf: 3.0.2 - ts-jest: 27.1.5_zgo3ukr7wfsrfu7w73hol4lxpy + ts-jest: 29.0.3_qutljtsb73gn6tigyw4fnh25am typescript: 4.8.4 packages/react-dock/demo: specifiers: '@babel/core': ^7.19.3 - '@babel/preset-env': ^7.19.3 + '@babel/preset-env': ^7.19.4 '@babel/preset-react': ^7.18.6 '@babel/preset-typescript': ^7.18.6 - '@types/node': ^16.11.64 + '@types/node': ^18.11.7 '@types/react': ^18.0.21 '@types/react-dom': ^18.0.6 '@types/styled-components': ^5.1.26 - '@typescript-eslint/eslint-plugin': ^5.39.0 - '@typescript-eslint/parser': ^5.39.0 - babel-loader: ^8.2.5 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 + babel-loader: ^9.0.0 cross-env: ^7.0.3 eslint: ^8.25.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-react: ^7.31.9 + eslint-plugin-react: ^7.31.10 eslint-plugin-react-hooks: ^4.6.0 fork-ts-checker-webpack-plugin: ^7.2.13 html-webpack-plugin: ^5.5.0 @@ -532,7 +538,7 @@ importers: react-bootstrap: ^2.5.0 react-dock: ^0.6.0 react-dom: ^18.2.0 - react-icons: ^4.4.0 + react-icons: ^4.6.0 react-is: ^18.2.0 styled-components: ^5.3.6 ts-node: ^10.9.1 @@ -545,29 +551,29 @@ importers: react-bootstrap: 2.5.0_rj7ozvcq3uehdlnj3cbwzbi5ce react-dock: link:.. react-dom: 18.2.0_react@18.2.0 - react-icons: 4.4.0_react@18.2.0 + react-icons: 4.6.0_react@18.2.0 react-is: 18.2.0 styled-components: 5.3.6_7i5myeigehqah43i5u7wbekgba devDependencies: '@babel/core': 7.19.3 - '@babel/preset-env': 7.19.3_@babel+core@7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 '@babel/preset-react': 7.18.6_@babel+core@7.19.3 '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 - '@types/node': 16.11.64 + '@types/node': 18.11.7 '@types/react': 18.0.21 '@types/react-dom': 18.0.6 '@types/styled-components': 5.1.26 - '@typescript-eslint/eslint-plugin': 5.39.0_cfd7h3iktziq6hcwahu2qxhjhy - '@typescript-eslint/parser': 5.39.0_z4bbprzjrhnsfa24uvmcbu7f5q - babel-loader: 8.2.5_wfdvla2jorjoj23kkavho2upde + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q + babel-loader: 9.0.0_wfdvla2jorjoj23kkavho2upde cross-env: 7.0.3 eslint: 8.25.0 eslint-config-prettier: 8.5.0_eslint@8.25.0 - eslint-plugin-react: 7.31.9_eslint@8.25.0 + eslint-plugin-react: 7.31.10_eslint@8.25.0 eslint-plugin-react-hooks: 4.6.0_eslint@8.25.0 fork-ts-checker-webpack-plugin: 7.2.13_qqxisngxjbp7lstdk7boexbu3e html-webpack-plugin: 5.5.0_webpack@5.74.0 - ts-node: 10.9.1_k2jc2lb6qrtdc3lulqxjwnbwoi + ts-node: 10.9.1_evej5wzm4hojmu6uzxwpspdmsu typescript: 4.8.4 webpack: 5.74.0_webpack-cli@4.10.0 webpack-cli: 4.10.0_vnmgq7jx5zjkzolvtfp7mdf5ri @@ -579,40 +585,40 @@ importers: '@babel/core': ^7.19.3 '@babel/eslint-parser': ^7.19.1 '@babel/plugin-transform-runtime': ^7.19.1 - '@babel/preset-env': ^7.19.3 + '@babel/preset-env': ^7.19.4 '@babel/preset-react': ^7.18.6 '@babel/preset-typescript': ^7.18.6 - '@babel/runtime': ^7.19.0 + '@babel/runtime': ^7.19.4 '@rollup/plugin-babel': ^6.0.0 '@rollup/plugin-commonjs': ^23.0.0 '@rollup/plugin-node-resolve': ^15.0.0 - '@types/jest': ^27.5.2 + '@rollup/plugin-terser': ^0.1.0 + '@types/jest': ^29.2.0 '@types/lodash': ^4.14.186 - '@types/node': ^16.11.64 + '@types/node': ^18.11.7 '@types/prop-types': ^15.7.5 '@types/react': ^18.0.21 '@types/react-test-renderer': ^18.0.0 - '@typescript-eslint/eslint-plugin': ^5.39.0 - '@typescript-eslint/parser': ^5.39.0 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 eslint: ^8.25.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-jest: ^27.1.1 - eslint-plugin-react: ^7.31.9 + eslint-plugin-jest: ^27.1.2 + eslint-plugin-react: ^7.31.10 eslint-plugin-react-hooks: ^4.6.0 - jest: ^27.5.1 + jest: ^29.2.2 prop-types: ^15.8.1 react: ^18.2.0 react-base16-styling: ^0.9.1 react-test-renderer: ^18.2.0 rimraf: ^3.0.2 - rollup: ^2.79.1 - rollup-plugin-terser: ^7.0.2 + rollup: ^3.2.3 rollup-plugin-typescript2: ^0.34.1 - ts-jest: ^27.1.5 + ts-jest: ^29.0.3 tslib: ^2.4.0 typescript: ~4.8.4 dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 '@types/lodash': 4.14.186 '@types/prop-types': 15.7.5 prop-types: 15.8.1 @@ -622,50 +628,50 @@ importers: '@babel/core': 7.19.3 '@babel/eslint-parser': 7.19.1_v37dtiefj2fmp2s4n57pt7n35y '@babel/plugin-transform-runtime': 7.19.1_@babel+core@7.19.3 - '@babel/preset-env': 7.19.3_@babel+core@7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 '@babel/preset-react': 7.18.6_@babel+core@7.19.3 '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 - '@rollup/plugin-babel': 6.0.0_vy4anxjpv2s44kyfi2kxqu576u - '@rollup/plugin-commonjs': 23.0.0_rollup@2.79.1 - '@rollup/plugin-node-resolve': 15.0.0_rollup@2.79.1 - '@types/jest': 27.5.2 - '@types/node': 16.11.64 + '@rollup/plugin-babel': 6.0.0_t2lseskayu4pmjc4spb5q7neyq + '@rollup/plugin-commonjs': 23.0.0_rollup@3.2.3 + '@rollup/plugin-node-resolve': 15.0.0_rollup@3.2.3 + '@rollup/plugin-terser': 0.1.0_rollup@3.2.3 + '@types/jest': 29.2.0 + '@types/node': 18.11.7 '@types/react': 18.0.21 '@types/react-test-renderer': 18.0.0 - '@typescript-eslint/eslint-plugin': 5.39.0_cfd7h3iktziq6hcwahu2qxhjhy - '@typescript-eslint/parser': 5.39.0_z4bbprzjrhnsfa24uvmcbu7f5q + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q eslint: 8.25.0 eslint-config-prettier: 8.5.0_eslint@8.25.0 - eslint-plugin-jest: 27.1.1_or6kr3fag2h7rsusdfqwiniqvm - eslint-plugin-react: 7.31.9_eslint@8.25.0 + eslint-plugin-jest: 27.1.2_6co43ebcjfbpobjajqgjcmpkdi + eslint-plugin-react: 7.31.10_eslint@8.25.0 eslint-plugin-react-hooks: 4.6.0_eslint@8.25.0 - jest: 27.5.1 + jest: 29.2.2_@types+node@18.11.7 react: 18.2.0 react-test-renderer: 18.2.0_react@18.2.0 rimraf: 3.0.2 - rollup: 2.79.1 - rollup-plugin-terser: 7.0.2_rollup@2.79.1 - rollup-plugin-typescript2: 0.34.1_gypgyaqhine6mwjfvh7icfhviq - ts-jest: 27.1.5_zgo3ukr7wfsrfu7w73hol4lxpy + rollup: 3.2.3 + rollup-plugin-typescript2: 0.34.1_655ssj4e7sdqlljrreeiqtltve + ts-jest: 29.0.3_qutljtsb73gn6tigyw4fnh25am tslib: 2.4.0 typescript: 4.8.4 packages/react-json-tree/examples: specifiers: '@babel/core': ^7.19.3 - '@babel/preset-env': ^7.19.3 + '@babel/preset-env': ^7.19.4 '@babel/preset-react': ^7.18.6 '@babel/preset-typescript': ^7.18.6 - '@types/node': ^16.11.64 + '@types/node': ^18.11.7 '@types/react': ^18.0.21 '@types/react-dom': ^18.0.6 - '@typescript-eslint/eslint-plugin': ^5.39.0 - '@typescript-eslint/parser': ^5.39.0 - babel-loader: ^8.2.5 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 + babel-loader: ^9.0.0 cross-env: ^7.0.3 eslint: ^8.25.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-react: ^7.31.9 + eslint-plugin-react: ^7.31.10 eslint-plugin-react-hooks: ^4.6.0 fork-ts-checker-webpack-plugin: ^7.2.13 html-webpack-plugin: ^5.5.0 @@ -687,23 +693,23 @@ importers: react-json-tree: link:.. devDependencies: '@babel/core': 7.19.3 - '@babel/preset-env': 7.19.3_@babel+core@7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 '@babel/preset-react': 7.18.6_@babel+core@7.19.3 '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 - '@types/node': 16.11.64 + '@types/node': 18.11.7 '@types/react': 18.0.21 '@types/react-dom': 18.0.6 - '@typescript-eslint/eslint-plugin': 5.39.0_cfd7h3iktziq6hcwahu2qxhjhy - '@typescript-eslint/parser': 5.39.0_z4bbprzjrhnsfa24uvmcbu7f5q - babel-loader: 8.2.5_wfdvla2jorjoj23kkavho2upde + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q + babel-loader: 9.0.0_wfdvla2jorjoj23kkavho2upde cross-env: 7.0.3 eslint: 8.25.0 eslint-config-prettier: 8.5.0_eslint@8.25.0 - eslint-plugin-react: 7.31.9_eslint@8.25.0 + eslint-plugin-react: 7.31.10_eslint@8.25.0 eslint-plugin-react-hooks: 4.6.0_eslint@8.25.0 fork-ts-checker-webpack-plugin: 7.2.13_qqxisngxjbp7lstdk7boexbu3e html-webpack-plugin: 5.5.0_webpack@5.74.0 - ts-node: 10.9.1_k2jc2lb6qrtdc3lulqxjwnbwoi + ts-node: 10.9.1_evej5wzm4hojmu6uzxwpspdmsu typescript: 4.8.4 webpack: 5.74.0_webpack-cli@4.10.0 webpack-cli: 4.10.0_vnmgq7jx5zjkzolvtfp7mdf5ri @@ -715,24 +721,24 @@ importers: '@babel/core': ^7.19.3 '@babel/eslint-parser': ^7.19.1 '@babel/plugin-transform-runtime': ^7.19.1 - '@babel/preset-env': ^7.19.3 + '@babel/preset-env': ^7.19.4 '@babel/preset-react': ^7.18.6 '@babel/preset-typescript': ^7.18.6 - '@babel/runtime': ^7.19.0 + '@babel/runtime': ^7.19.4 '@redux-devtools/instrument': ^2.1.0 - '@types/jest': ^27.5.2 + '@types/jest': ^29.2.0 '@types/lodash': ^4.14.186 - '@types/node': ^16.11.64 + '@types/node': ^18.11.7 '@types/prop-types': ^15.7.5 '@types/react': ^18.0.21 - '@typescript-eslint/eslint-plugin': ^5.39.0 - '@typescript-eslint/parser': ^5.39.0 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 eslint: ^8.25.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-jest: ^27.1.1 - eslint-plugin-react: ^7.31.9 + eslint-plugin-jest: ^27.1.2 + eslint-plugin-react: ^7.31.10 eslint-plugin-react-hooks: ^4.6.0 - jest: ^27.5.1 + jest: ^29.2.2 lodash: ^4.17.21 prop-types: ^15.8.1 react: ^18.2.0 @@ -740,10 +746,10 @@ importers: react-redux: ^8.0.4 redux: ^4.2.0 rimraf: ^3.0.2 - ts-jest: ^27.1.5 + ts-jest: ^29.0.3 typescript: ~4.8.4 dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 '@redux-devtools/instrument': link:../redux-devtools-instrument '@types/prop-types': 15.7.5 lodash: 4.17.21 @@ -753,27 +759,27 @@ importers: '@babel/core': 7.19.3 '@babel/eslint-parser': 7.19.1_v37dtiefj2fmp2s4n57pt7n35y '@babel/plugin-transform-runtime': 7.19.1_@babel+core@7.19.3 - '@babel/preset-env': 7.19.3_@babel+core@7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 '@babel/preset-react': 7.18.6_@babel+core@7.19.3 '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 - '@types/jest': 27.5.2 + '@types/jest': 29.2.0 '@types/lodash': 4.14.186 - '@types/node': 16.11.64 + '@types/node': 18.11.7 '@types/react': 18.0.21 - '@typescript-eslint/eslint-plugin': 5.39.0_cfd7h3iktziq6hcwahu2qxhjhy - '@typescript-eslint/parser': 5.39.0_z4bbprzjrhnsfa24uvmcbu7f5q + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q eslint: 8.25.0 eslint-config-prettier: 8.5.0_eslint@8.25.0 - eslint-plugin-jest: 27.1.1_or6kr3fag2h7rsusdfqwiniqvm - eslint-plugin-react: 7.31.9_eslint@8.25.0 + eslint-plugin-jest: 27.1.2_6co43ebcjfbpobjajqgjcmpkdi + eslint-plugin-react: 7.31.10_eslint@8.25.0 eslint-plugin-react-hooks: 4.6.0_eslint@8.25.0 - jest: 27.5.1 + jest: 29.2.2_@types+node@18.11.7 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 react-redux: 8.0.4_wr4jmv5xrjbe6vbq33me5wwo2a redux: 4.2.0 rimraf: 3.0.2 - ts-jest: 27.1.5_zgo3ukr7wfsrfu7w73hol4lxpy + ts-jest: 29.0.3_qutljtsb73gn6tigyw4fnh25am typescript: 4.8.4 packages/redux-devtools-app: @@ -782,10 +788,10 @@ importers: '@babel/core': ^7.19.3 '@babel/eslint-parser': ^7.19.1 '@babel/plugin-transform-runtime': ^7.19.1 - '@babel/preset-env': ^7.19.3 + '@babel/preset-env': ^7.19.4 '@babel/preset-react': ^7.18.6 '@babel/preset-typescript': ^7.18.6 - '@babel/runtime': ^7.19.0 + '@babel/runtime': ^7.19.4 '@redux-devtools/chart-monitor': ^3.0.0 '@redux-devtools/core': ^3.13.0 '@redux-devtools/inspector-monitor': ^3.0.0 @@ -799,11 +805,11 @@ importers: '@rjsf/core': ^4.2.3 '@testing-library/jest-dom': ^5.16.5 '@testing-library/react': ^13.4.0 - '@types/jest': ^27.5.2 + '@types/jest': ^29.2.0 '@types/jsan': ^3.1.2 '@types/json-schema': ^7.0.11 '@types/lodash': ^4.14.186 - '@types/node': ^16.11.64 + '@types/node': ^18.11.7 '@types/prop-types': ^15.7.5 '@types/react': ^18.0.21 '@types/react-dom': ^18.0.6 @@ -811,22 +817,23 @@ importers: '@types/styled-components': ^5.1.26 '@types/testing-library__jest-dom': ^5.14.5 '@types/webpack-env': ^1.18.0 - '@typescript-eslint/eslint-plugin': ^5.39.0 - '@typescript-eslint/parser': ^5.39.0 - babel-loader: ^8.2.5 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 + babel-loader: ^9.0.0 cross-env: ^7.0.3 css-loader: ^6.7.1 d3-state-visualizer: ^1.6.0 eslint: ^8.25.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-jest: ^27.1.1 - eslint-plugin-react: ^7.31.9 + eslint-plugin-jest: ^27.1.2 + eslint-plugin-react: ^7.31.10 eslint-plugin-react-hooks: ^4.6.0 fork-ts-checker-webpack-plugin: ^7.2.13 html-loader: ^4.2.0 html-webpack-plugin: ^5.5.0 javascript-stringify: ^2.1.0 - jest: ^27.5.1 + jest: ^29.2.2 + jest-environment-jsdom: ^29.2.2 jsan: ^3.1.14 jsondiffpatch: ^0.4.1 localforage: ^1.10.0 @@ -835,7 +842,7 @@ importers: prop-types: ^15.8.1 react: ^18.2.0 react-dom: ^18.2.0 - react-icons: ^4.4.0 + react-icons: ^4.6.0 react-is: ^18.2.0 react-redux: ^8.0.4 redux: ^4.2.0 @@ -844,14 +851,14 @@ importers: socketcluster-client: ^17.1.0 style-loader: ^3.3.1 styled-components: ^5.3.6 - ts-jest: ^27.1.5 + ts-jest: ^29.0.3 ts-node: ^10.9.1 typescript: ~4.8.4 webpack: ^5.74.0 webpack-cli: ^4.10.0 webpack-dev-server: ^4.11.1 dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 '@redux-devtools/chart-monitor': link:../redux-devtools-chart-monitor '@redux-devtools/core': link:../redux-devtools '@redux-devtools/inspector-monitor': link:../redux-devtools-inspector-monitor @@ -870,7 +877,7 @@ importers: localforage: 1.10.0 lodash: 4.17.21 prop-types: 15.8.1 - react-icons: 4.4.0_react@18.2.0 + react-icons: 4.6.0_react@18.2.0 react-is: 18.2.0 react-redux: 8.0.4_yfr4m6wk75wdra335rld4tkrbu redux: 4.2.0 @@ -881,45 +888,46 @@ importers: '@babel/core': 7.19.3 '@babel/eslint-parser': 7.19.1_v37dtiefj2fmp2s4n57pt7n35y '@babel/plugin-transform-runtime': 7.19.1_@babel+core@7.19.3 - '@babel/preset-env': 7.19.3_@babel+core@7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 '@babel/preset-react': 7.18.6_@babel+core@7.19.3 '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 '@rjsf/core': 4.2.3_react@18.2.0 '@testing-library/jest-dom': 5.16.5 '@testing-library/react': 13.4.0_biqbaboplfbrettd7655fr4n2y - '@types/jest': 27.5.2 + '@types/jest': 29.2.0 '@types/jsan': 3.1.2 '@types/json-schema': 7.0.11 '@types/lodash': 4.14.186 - '@types/node': 16.11.64 + '@types/node': 18.11.7 '@types/react': 18.0.21 '@types/react-dom': 18.0.6 '@types/socketcluster-client': 16.0.0 '@types/styled-components': 5.1.26 '@types/testing-library__jest-dom': 5.14.5 '@types/webpack-env': 1.18.0 - '@typescript-eslint/eslint-plugin': 5.39.0_cfd7h3iktziq6hcwahu2qxhjhy - '@typescript-eslint/parser': 5.39.0_z4bbprzjrhnsfa24uvmcbu7f5q - babel-loader: 8.2.5_wfdvla2jorjoj23kkavho2upde + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q + babel-loader: 9.0.0_wfdvla2jorjoj23kkavho2upde cross-env: 7.0.3 css-loader: 6.7.1_webpack@5.74.0 eslint: 8.25.0 eslint-config-prettier: 8.5.0_eslint@8.25.0 - eslint-plugin-jest: 27.1.1_or6kr3fag2h7rsusdfqwiniqvm - eslint-plugin-react: 7.31.9_eslint@8.25.0 + eslint-plugin-jest: 27.1.2_6co43ebcjfbpobjajqgjcmpkdi + eslint-plugin-react: 7.31.10_eslint@8.25.0 eslint-plugin-react-hooks: 4.6.0_eslint@8.25.0 fork-ts-checker-webpack-plugin: 7.2.13_qqxisngxjbp7lstdk7boexbu3e html-loader: 4.2.0_webpack@5.74.0 html-webpack-plugin: 5.5.0_webpack@5.74.0 - jest: 27.5.1_ts-node@10.9.1 + jest: 29.2.2_4pb6an67rakrle6rtido6z2a34 + jest-environment-jsdom: 29.2.2 path-browserify: 1.0.1 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 rimraf: 3.0.2 style-loader: 3.3.1_webpack@5.74.0 styled-components: 5.3.6_7i5myeigehqah43i5u7wbekgba - ts-jest: 27.1.5_zgo3ukr7wfsrfu7w73hol4lxpy - ts-node: 10.9.1_k2jc2lb6qrtdc3lulqxjwnbwoi + ts-jest: 29.0.3_qutljtsb73gn6tigyw4fnh25am + ts-node: 10.9.1_evej5wzm4hojmu6uzxwpspdmsu typescript: 4.8.4 webpack: 5.74.0_webpack-cli@4.10.0 webpack-cli: 4.10.0_vnmgq7jx5zjkzolvtfp7mdf5ri @@ -931,21 +939,21 @@ importers: '@babel/core': ^7.19.3 '@babel/eslint-parser': ^7.19.1 '@babel/plugin-transform-runtime': ^7.19.1 - '@babel/preset-env': ^7.19.3 + '@babel/preset-env': ^7.19.4 '@babel/preset-react': ^7.18.6 '@babel/preset-typescript': ^7.18.6 - '@babel/runtime': ^7.19.0 + '@babel/runtime': ^7.19.4 '@redux-devtools/core': ^3.13.1 '@types/prop-types': ^15.7.5 '@types/react': ^18.0.21 '@types/redux-devtools-themes': ^1.0.0 - '@typescript-eslint/eslint-plugin': ^5.39.0 - '@typescript-eslint/parser': ^5.39.0 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 d3-state-visualizer: ^1.6.0 deepmerge: ^4.2.2 eslint: ^8.25.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-react: ^7.31.9 + eslint-plugin-react: ^7.31.10 eslint-plugin-react-hooks: ^4.6.0 prop-types: ^15.8.1 react: ^18.2.0 @@ -954,7 +962,7 @@ importers: rimraf: ^3.0.2 typescript: ~4.8.4 dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 '@types/prop-types': 15.7.5 '@types/redux-devtools-themes': 1.0.0 d3-state-visualizer: link:../d3-state-visualizer @@ -966,16 +974,16 @@ importers: '@babel/core': 7.19.3 '@babel/eslint-parser': 7.19.1_v37dtiefj2fmp2s4n57pt7n35y '@babel/plugin-transform-runtime': 7.19.1_@babel+core@7.19.3 - '@babel/preset-env': 7.19.3_@babel+core@7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 '@babel/preset-react': 7.18.6_@babel+core@7.19.3 '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 '@redux-devtools/core': link:../redux-devtools '@types/react': 18.0.21 - '@typescript-eslint/eslint-plugin': 5.39.0_cfd7h3iktziq6hcwahu2qxhjhy - '@typescript-eslint/parser': 5.39.0_z4bbprzjrhnsfa24uvmcbu7f5q + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q eslint: 8.25.0 eslint-config-prettier: 8.5.0_eslint@8.25.0 - eslint-plugin-react: 7.31.9_eslint@8.25.0 + eslint-plugin-react: 7.31.10_eslint@8.25.0 eslint-plugin-react-hooks: 4.6.0_eslint@8.25.0 react: 18.2.0 redux: 4.2.0 @@ -989,11 +997,11 @@ importers: '@types/cors': ^2.8.12 '@types/cross-spawn': ^6.0.2 '@types/express': ^4.17.14 - '@types/jest': ^27.5.2 + '@types/jest': ^29.2.0 '@types/lodash': ^4.14.186 '@types/minimist': ^1.2.2 '@types/morgan': ^1.9.3 - '@types/node': ^16.11.64 + '@types/node': ^18.11.7 '@types/react': ^18.0.21 '@types/semver': ^7.3.12 '@types/socketcluster-client': ^16.0.0 @@ -1001,24 +1009,24 @@ importers: '@types/styled-components': ^5.1.26 '@types/supertest': ^2.0.12 '@types/uuid': ^8.3.4 - '@typescript-eslint/eslint-plugin': ^5.39.0 - '@typescript-eslint/parser': ^5.39.0 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 apollo-server-express: ^3.10.3 body-parser: ^1.20.1 chalk: ^4.1.2 cors: ^2.8.5 cross-spawn: ^7.0.3 - electron: ^21.1.0 + electron: ^21.1.1 eslint: ^8.25.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-jest: ^27.1.1 + eslint-plugin-jest: ^27.1.2 express: ^4.18.2 getport: ^0.1.0 graphql: ^16.6.0 - jest: ^27.5.1 + jest: ^29.2.2 knex: ^2.3.0 lodash: ^4.17.21 - minimist: ^1.2.6 + minimist: ^1.2.7 morgan: ^1.10.0 ncp: ^2.0.0 open: ^8.4.0 @@ -1032,7 +1040,7 @@ importers: sqlite3: ^5.1.2 styled-components: ^5.3.6 supertest: ^6.3.0 - ts-jest: ^27.1.5 + ts-jest: ^29.0.3 typescript: ~4.8.4 uuid: ^9.0.0 dependencies: @@ -1043,13 +1051,13 @@ importers: chalk: 4.1.2 cors: 2.8.5 cross-spawn: 7.0.3 - electron: 21.1.0 + electron: 21.1.1 express: 4.18.2 getport: 0.1.0 graphql: 16.6.0 knex: 2.3.0_sqlite3@5.1.2 lodash: 4.17.21 - minimist: 1.2.6 + minimist: 1.2.7 morgan: 1.10.0 open: 8.4.0 react: 18.2.0 @@ -1065,28 +1073,28 @@ importers: '@types/cors': 2.8.12 '@types/cross-spawn': 6.0.2 '@types/express': 4.17.14 - '@types/jest': 27.5.2 + '@types/jest': 29.2.0 '@types/lodash': 4.14.186 '@types/minimist': 1.2.2 '@types/morgan': 1.9.3 - '@types/node': 16.11.64 + '@types/node': 18.11.7 '@types/semver': 7.3.12 '@types/socketcluster-client': 16.0.0 '@types/socketcluster-server': 16.1.0 '@types/styled-components': 5.1.26 '@types/supertest': 2.0.12 '@types/uuid': 8.3.4 - '@typescript-eslint/eslint-plugin': 5.39.0_cfd7h3iktziq6hcwahu2qxhjhy - '@typescript-eslint/parser': 5.39.0_z4bbprzjrhnsfa24uvmcbu7f5q + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q eslint: 8.25.0 eslint-config-prettier: 8.5.0_eslint@8.25.0 - eslint-plugin-jest: 27.1.1_or6kr3fag2h7rsusdfqwiniqvm - jest: 27.5.1 + eslint-plugin-jest: 27.1.2_6co43ebcjfbpobjajqgjcmpkdi + jest: 29.2.2_@types+node@18.11.7 ncp: 2.0.0 rimraf: 3.0.2 socketcluster-client: 17.1.0 supertest: 6.3.0 - ts-jest: 27.1.5_h2mjkler2cwtrz56xjx3qgassu + ts-jest: 29.0.3_r7gdwuj75x2gz25bauak3xcnbm typescript: 4.8.4 packages/redux-devtools-dock-monitor: @@ -1095,19 +1103,19 @@ importers: '@babel/core': ^7.19.3 '@babel/eslint-parser': ^7.19.1 '@babel/plugin-transform-runtime': ^7.19.1 - '@babel/preset-env': ^7.19.3 + '@babel/preset-env': ^7.19.4 '@babel/preset-react': ^7.18.6 '@babel/preset-typescript': ^7.18.6 - '@babel/runtime': ^7.19.0 + '@babel/runtime': ^7.19.4 '@redux-devtools/core': ^3.13.1 '@types/parse-key': ^0.2.0 '@types/prop-types': ^15.7.5 '@types/react': ^18.0.21 - '@typescript-eslint/eslint-plugin': ^5.39.0 - '@typescript-eslint/parser': ^5.39.0 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 eslint: ^8.25.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-react: ^7.31.9 + eslint-plugin-react: ^7.31.10 eslint-plugin-react-hooks: ^4.6.0 parse-key: ^0.2.1 prop-types: ^15.8.1 @@ -1117,7 +1125,7 @@ importers: rimraf: ^3.0.2 typescript: ~4.8.4 dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 '@types/prop-types': 15.7.5 parse-key: 0.2.1 prop-types: 15.8.1 @@ -1127,17 +1135,17 @@ importers: '@babel/core': 7.19.3 '@babel/eslint-parser': 7.19.1_v37dtiefj2fmp2s4n57pt7n35y '@babel/plugin-transform-runtime': 7.19.1_@babel+core@7.19.3 - '@babel/preset-env': 7.19.3_@babel+core@7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 '@babel/preset-react': 7.18.6_@babel+core@7.19.3 '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 '@redux-devtools/core': link:../redux-devtools '@types/parse-key': 0.2.0 '@types/react': 18.0.21 - '@typescript-eslint/eslint-plugin': 5.39.0_cfd7h3iktziq6hcwahu2qxhjhy - '@typescript-eslint/parser': 5.39.0_z4bbprzjrhnsfa24uvmcbu7f5q + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q eslint: 8.25.0 eslint-config-prettier: 8.5.0_eslint@8.25.0 - eslint-plugin-react: 7.31.9_eslint@8.25.0 + eslint-plugin-react: 7.31.10_eslint@8.25.0 eslint-plugin-react-hooks: 4.6.0_eslint@8.25.0 react: 18.2.0 redux: 4.2.0 @@ -1150,11 +1158,11 @@ importers: '@babel/core': ^7.19.3 '@babel/eslint-parser': ^7.19.1 '@babel/plugin-transform-runtime': ^7.19.1 - '@babel/preset-env': ^7.19.3 + '@babel/preset-env': ^7.19.4 '@babel/preset-typescript': ^7.18.6 - '@babel/runtime': ^7.19.0 - '@typescript-eslint/eslint-plugin': ^5.39.0 - '@typescript-eslint/parser': ^5.39.0 + '@babel/runtime': ^7.19.4 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 eslint: ^8.25.0 eslint-config-prettier: ^8.5.0 immutable: ^4.1.0 @@ -1162,17 +1170,17 @@ importers: rimraf: ^3.0.2 typescript: ~4.8.4 dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 immutable: 4.1.0 devDependencies: '@babel/cli': 7.19.3_@babel+core@7.19.3 '@babel/core': 7.19.3 '@babel/eslint-parser': 7.19.1_v37dtiefj2fmp2s4n57pt7n35y '@babel/plugin-transform-runtime': 7.19.1_@babel+core@7.19.3 - '@babel/preset-env': 7.19.3_@babel+core@7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 - '@typescript-eslint/eslint-plugin': 5.39.0_cfd7h3iktziq6hcwahu2qxhjhy - '@typescript-eslint/parser': 5.39.0_z4bbprzjrhnsfa24uvmcbu7f5q + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q eslint: 8.25.0 eslint-config-prettier: 8.5.0_eslint@8.25.0 redux: 4.2.0 @@ -1185,10 +1193,10 @@ importers: '@babel/core': ^7.19.3 '@babel/eslint-parser': ^7.19.1 '@babel/plugin-transform-runtime': ^7.19.1 - '@babel/preset-env': ^7.19.3 + '@babel/preset-env': ^7.19.4 '@babel/preset-react': ^7.18.6 '@babel/preset-typescript': ^7.18.6 - '@babel/runtime': ^7.19.0 + '@babel/runtime': ^7.19.4 '@redux-devtools/core': ^3.13.1 '@types/dateformat': ^3.0.1 '@types/dragula': ^3.7.1 @@ -1200,12 +1208,12 @@ importers: '@types/react': ^18.0.21 '@types/react-dragula': ^1.1.0 '@types/redux-devtools-themes': ^1.0.0 - '@typescript-eslint/eslint-plugin': ^5.39.0 - '@typescript-eslint/parser': ^5.39.0 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 dateformat: ^4.6.3 eslint: ^8.25.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-react: ^7.31.9 + eslint-plugin-react: ^7.31.10 eslint-plugin-react-hooks: ^4.6.0 hex-rgba: ^1.0.2 immutable: ^4.1.0 @@ -1224,7 +1232,7 @@ importers: rimraf: ^3.0.2 typescript: ~4.8.4 dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 '@types/dragula': 3.7.1 '@types/lodash': 4.14.186 '@types/prop-types': 15.7.5 @@ -1246,7 +1254,7 @@ importers: '@babel/core': 7.19.3 '@babel/eslint-parser': 7.19.1_v37dtiefj2fmp2s4n57pt7n35y '@babel/plugin-transform-runtime': 7.19.1_@babel+core@7.19.3 - '@babel/preset-env': 7.19.3_@babel+core@7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 '@babel/preset-react': 7.18.6_@babel+core@7.19.3 '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 '@redux-devtools/core': link:../redux-devtools @@ -1257,11 +1265,11 @@ importers: '@types/react': 18.0.21 '@types/react-dragula': 1.1.0 '@types/redux-devtools-themes': 1.0.0 - '@typescript-eslint/eslint-plugin': 5.39.0_cfd7h3iktziq6hcwahu2qxhjhy - '@typescript-eslint/parser': 5.39.0_z4bbprzjrhnsfa24uvmcbu7f5q + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q eslint: 8.25.0 eslint-config-prettier: 8.5.0_eslint@8.25.0 - eslint-plugin-react: 7.31.9_eslint@8.25.0 + eslint-plugin-react: 7.31.10_eslint@8.25.0 eslint-plugin-react-hooks: 4.6.0_eslint@8.25.0 react: 18.2.0 redux: 4.2.0 @@ -1274,44 +1282,45 @@ importers: '@babel/core': ^7.19.3 '@babel/eslint-parser': ^7.19.1 '@babel/plugin-transform-runtime': ^7.19.1 - '@babel/preset-env': ^7.19.3 + '@babel/preset-env': ^7.19.4 '@babel/preset-react': ^7.18.6 '@babel/preset-typescript': ^7.18.6 - '@babel/runtime': ^7.19.0 + '@babel/runtime': ^7.19.4 '@redux-devtools/core': ^3.13.0 '@redux-devtools/inspector-monitor': ^3.0.0 '@redux-devtools/ui': ^1.3.0 '@testing-library/react': ^13.4.0 '@types/es6template': ^1.0.0 - '@types/jest': ^27.5.2 + '@types/jest': ^29.2.0 '@types/jsan': ^3.1.2 '@types/object-path': ^0.11.1 '@types/prop-types': ^15.7.5 '@types/react': ^18.0.21 '@types/simple-diff': ^1.6.1 - '@typescript-eslint/eslint-plugin': ^5.39.0 - '@typescript-eslint/parser': ^5.39.0 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 es6template: ^1.0.5 eslint: ^8.25.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-jest: ^27.1.1 - eslint-plugin-react: ^7.31.9 + eslint-plugin-jest: ^27.1.2 + eslint-plugin-react: ^7.31.10 eslint-plugin-react-hooks: ^4.6.0 javascript-stringify: ^2.1.0 - jest: ^27.5.1 + jest: ^29.2.2 + jest-environment-jsdom: ^29.2.2 jsan: ^3.1.14 object-path: ^0.11.8 prop-types: ^15.8.1 react: ^18.2.0 react-dom: ^18.2.0 - react-icons: ^4.4.0 + react-icons: ^4.6.0 redux: ^4.2.0 rimraf: ^3.0.2 simple-diff: ^1.6.0 - ts-jest: ^27.1.5 + ts-jest: ^29.0.3 typescript: ~4.8.4 dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 '@redux-devtools/ui': link:../redux-devtools-ui '@types/prop-types': 15.7.5 es6template: 1.0.5 @@ -1319,44 +1328,45 @@ importers: jsan: 3.1.14 object-path: 0.11.8 prop-types: 15.8.1 - react-icons: 4.4.0_react@18.2.0 + react-icons: 4.6.0_react@18.2.0 simple-diff: 1.6.0 devDependencies: '@babel/cli': 7.19.3_@babel+core@7.19.3 '@babel/core': 7.19.3 '@babel/eslint-parser': 7.19.1_v37dtiefj2fmp2s4n57pt7n35y '@babel/plugin-transform-runtime': 7.19.1_@babel+core@7.19.3 - '@babel/preset-env': 7.19.3_@babel+core@7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 '@babel/preset-react': 7.18.6_@babel+core@7.19.3 '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 '@redux-devtools/core': link:../redux-devtools '@redux-devtools/inspector-monitor': link:../redux-devtools-inspector-monitor '@testing-library/react': 13.4.0_biqbaboplfbrettd7655fr4n2y '@types/es6template': 1.0.0 - '@types/jest': 27.5.2 + '@types/jest': 29.2.0 '@types/jsan': 3.1.2 '@types/object-path': 0.11.1 '@types/react': 18.0.21 '@types/simple-diff': 1.6.1 - '@typescript-eslint/eslint-plugin': 5.39.0_cfd7h3iktziq6hcwahu2qxhjhy - '@typescript-eslint/parser': 5.39.0_z4bbprzjrhnsfa24uvmcbu7f5q + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q eslint: 8.25.0 eslint-config-prettier: 8.5.0_eslint@8.25.0 - eslint-plugin-jest: 27.1.1_or6kr3fag2h7rsusdfqwiniqvm - eslint-plugin-react: 7.31.9_eslint@8.25.0 + eslint-plugin-jest: 27.1.2_6co43ebcjfbpobjajqgjcmpkdi + eslint-plugin-react: 7.31.10_eslint@8.25.0 eslint-plugin-react-hooks: 4.6.0_eslint@8.25.0 - jest: 27.5.1 + jest: 29.2.2 + jest-environment-jsdom: 29.2.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.5_zgo3ukr7wfsrfu7w73hol4lxpy + ts-jest: 29.0.3_qutljtsb73gn6tigyw4fnh25am typescript: 4.8.4 packages/redux-devtools-inspector-monitor-test-tab/demo: specifiers: '@babel/core': ^7.19.3 - '@babel/preset-env': ^7.19.3 + '@babel/preset-env': ^7.19.4 '@babel/preset-react': ^7.18.6 '@babel/preset-typescript': ^7.18.6 '@redux-devtools/core': ^3.13.0 @@ -1365,20 +1375,20 @@ importers: '@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.64 + '@types/node': ^18.11.7 '@types/react': ^18.0.21 '@types/react-dom': ^18.0.6 '@types/redux-logger': ^3.0.9 '@types/styled-components': ^5.1.26 '@types/webpack-env': ^1.18.0 - '@typescript-eslint/eslint-plugin': ^5.39.0 - '@typescript-eslint/parser': ^5.39.0 - babel-loader: ^8.2.5 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 + babel-loader: ^9.0.0 cross-env: ^7.0.3 css-loader: ^6.7.1 eslint: ^8.25.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-react: ^7.31.9 + eslint-plugin-react: ^7.31.10 eslint-plugin-react-hooks: ^4.6.0 fork-ts-checker-webpack-plugin: ^7.2.13 html-webpack-plugin: ^5.5.0 @@ -1416,29 +1426,29 @@ importers: styled-components: 5.3.6_7i5myeigehqah43i5u7wbekgba devDependencies: '@babel/core': 7.19.3 - '@babel/preset-env': 7.19.3_@babel+core@7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 '@babel/preset-react': 7.18.6_@babel+core@7.19.3 '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 '@types/lodash.shuffle': 4.2.7 - '@types/node': 16.11.64 + '@types/node': 18.11.7 '@types/react': 18.0.21 '@types/react-dom': 18.0.6 '@types/redux-logger': 3.0.9 '@types/styled-components': 5.1.26 '@types/webpack-env': 1.18.0 - '@typescript-eslint/eslint-plugin': 5.39.0_cfd7h3iktziq6hcwahu2qxhjhy - '@typescript-eslint/parser': 5.39.0_z4bbprzjrhnsfa24uvmcbu7f5q - babel-loader: 8.2.5_wfdvla2jorjoj23kkavho2upde + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q + babel-loader: 9.0.0_wfdvla2jorjoj23kkavho2upde cross-env: 7.0.3 css-loader: 6.7.1_webpack@5.74.0 eslint: 8.25.0 eslint-config-prettier: 8.5.0_eslint@8.25.0 - eslint-plugin-react: 7.31.9_eslint@8.25.0 + eslint-plugin-react: 7.31.10_eslint@8.25.0 eslint-plugin-react-hooks: 4.6.0_eslint@8.25.0 fork-ts-checker-webpack-plugin: 7.2.13_qqxisngxjbp7lstdk7boexbu3e html-webpack-plugin: 5.5.0_webpack@5.74.0 style-loader: 3.3.1_webpack@5.74.0 - ts-node: 10.9.1_k2jc2lb6qrtdc3lulqxjwnbwoi + ts-node: 10.9.1_evej5wzm4hojmu6uzxwpspdmsu typescript: 4.8.4 webpack: 5.74.0_webpack-cli@4.10.0 webpack-cli: 4.10.0_vnmgq7jx5zjkzolvtfp7mdf5ri @@ -1451,32 +1461,33 @@ importers: '@babel/core': ^7.19.3 '@babel/eslint-parser': ^7.19.1 '@babel/plugin-transform-runtime': ^7.19.1 - '@babel/preset-env': ^7.19.3 + '@babel/preset-env': ^7.19.4 '@babel/preset-react': ^7.18.6 '@babel/preset-typescript': ^7.18.6 - '@babel/runtime': ^7.19.0 + '@babel/runtime': ^7.19.4 '@redux-devtools/core': ^3.13.0 '@redux-devtools/inspector-monitor': ^3.0.0 '@testing-library/react': ^13.4.0 '@types/babel__code-frame': ^7.0.3 - '@types/chrome': ^0.0.197 + '@types/chrome': ^0.0.198 '@types/html-entities': ^1.3.4 - '@types/jest': ^27.5.2 - '@types/node': ^16.11.64 + '@types/jest': ^29.2.0 + '@types/node': ^18.11.7 '@types/path-browserify': ^1.0.0 '@types/react': ^18.0.21 '@types/redux-devtools-themes': ^1.0.0 '@types/source-map': 0.5.2 - '@typescript-eslint/eslint-plugin': ^5.39.0 - '@typescript-eslint/parser': ^5.39.0 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 anser: ^2.1.1 eslint: ^8.25.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-jest: ^27.1.1 - eslint-plugin-react: ^7.31.9 + eslint-plugin-jest: ^27.1.2 + eslint-plugin-react: ^7.31.10 eslint-plugin-react-hooks: ^4.6.0 html-entities: ^2.3.3 - jest: ^27.5.1 + jest: ^29.2.2 + jest-environment-jsdom: ^29.2.2 path-browserify: ^1.0.1 react: ^18.2.0 react-dom: ^18.2.0 @@ -1485,12 +1496,12 @@ importers: redux-devtools-themes: ^1.0.0 rimraf: ^3.0.2 source-map: ^0.5.7 - ts-jest: ^27.1.5 + ts-jest: ^29.0.3 typescript: ~4.8.4 dependencies: '@babel/code-frame': 7.18.6 - '@babel/runtime': 7.19.0 - '@types/chrome': 0.0.197 + '@babel/runtime': 7.19.4 + '@types/chrome': 0.0.198 anser: 2.1.1 html-entities: 2.3.3 path-browserify: 1.0.1 @@ -1501,7 +1512,7 @@ importers: '@babel/core': 7.19.3 '@babel/eslint-parser': 7.19.1_v37dtiefj2fmp2s4n57pt7n35y '@babel/plugin-transform-runtime': 7.19.1_@babel+core@7.19.3 - '@babel/preset-env': 7.19.3_@babel+core@7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 '@babel/preset-react': 7.18.6_@babel+core@7.19.3 '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 '@redux-devtools/core': link:../redux-devtools @@ -1509,32 +1520,33 @@ importers: '@testing-library/react': 13.4.0_biqbaboplfbrettd7655fr4n2y '@types/babel__code-frame': 7.0.3 '@types/html-entities': 1.3.4 - '@types/jest': 27.5.2 - '@types/node': 16.11.64 + '@types/jest': 29.2.0 + '@types/node': 18.11.7 '@types/path-browserify': 1.0.0 '@types/react': 18.0.21 '@types/redux-devtools-themes': 1.0.0 '@types/source-map': 0.5.2 - '@typescript-eslint/eslint-plugin': 5.39.0_cfd7h3iktziq6hcwahu2qxhjhy - '@typescript-eslint/parser': 5.39.0_z4bbprzjrhnsfa24uvmcbu7f5q + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q eslint: 8.25.0 eslint-config-prettier: 8.5.0_eslint@8.25.0 - eslint-plugin-jest: 27.1.1_or6kr3fag2h7rsusdfqwiniqvm - eslint-plugin-react: 7.31.9_eslint@8.25.0 + eslint-plugin-jest: 27.1.2_6co43ebcjfbpobjajqgjcmpkdi + eslint-plugin-react: 7.31.10_eslint@8.25.0 eslint-plugin-react-hooks: 4.6.0_eslint@8.25.0 - jest: 27.5.1 + jest: 29.2.2_@types+node@18.11.7 + jest-environment-jsdom: 29.2.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.5_zgo3ukr7wfsrfu7w73hol4lxpy + ts-jest: 29.0.3_qutljtsb73gn6tigyw4fnh25am typescript: 4.8.4 packages/redux-devtools-inspector-monitor/demo: specifiers: '@babel/core': ^7.19.3 - '@babel/preset-env': ^7.19.3 + '@babel/preset-env': ^7.19.4 '@babel/preset-react': ^7.18.6 '@babel/preset-typescript': ^7.18.6 '@redux-devtools/core': ^3.13.0 @@ -1542,19 +1554,19 @@ importers: '@redux-devtools/inspector-monitor': ^3.0.0 '@types/base16': ^1.0.2 '@types/lodash.shuffle': ^4.2.7 - '@types/node': ^16.11.64 + '@types/node': ^18.11.7 '@types/react': ^18.0.21 '@types/react-dom': ^18.0.6 '@types/redux-logger': ^3.0.9 '@types/webpack-env': ^1.18.0 - '@typescript-eslint/eslint-plugin': ^5.39.0 - '@typescript-eslint/parser': ^5.39.0 - babel-loader: ^8.2.5 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 + babel-loader: ^9.0.0 base16: ^1.0.0 cross-env: ^7.0.3 eslint: ^8.25.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-react: ^7.31.9 + eslint-plugin-react: ^7.31.10 eslint-plugin-react-hooks: ^4.6.0 fork-ts-checker-webpack-plugin: ^7.2.13 html-webpack-plugin: ^5.5.0 @@ -1588,27 +1600,27 @@ importers: redux-logger: 3.0.6 devDependencies: '@babel/core': 7.19.3 - '@babel/preset-env': 7.19.3_@babel+core@7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 '@babel/preset-react': 7.18.6_@babel+core@7.19.3 '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 '@types/base16': 1.0.2 '@types/lodash.shuffle': 4.2.7 - '@types/node': 16.11.64 + '@types/node': 18.11.7 '@types/react': 18.0.21 '@types/react-dom': 18.0.6 '@types/redux-logger': 3.0.9 '@types/webpack-env': 1.18.0 - '@typescript-eslint/eslint-plugin': 5.39.0_cfd7h3iktziq6hcwahu2qxhjhy - '@typescript-eslint/parser': 5.39.0_z4bbprzjrhnsfa24uvmcbu7f5q - babel-loader: 8.2.5_wfdvla2jorjoj23kkavho2upde + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q + babel-loader: 9.0.0_wfdvla2jorjoj23kkavho2upde cross-env: 7.0.3 eslint: 8.25.0 eslint-config-prettier: 8.5.0_eslint@8.25.0 - eslint-plugin-react: 7.31.9_eslint@8.25.0 + eslint-plugin-react: 7.31.10_eslint@8.25.0 eslint-plugin-react-hooks: 4.6.0_eslint@8.25.0 fork-ts-checker-webpack-plugin: 7.2.13_qqxisngxjbp7lstdk7boexbu3e html-webpack-plugin: 5.5.0_webpack@5.74.0 - ts-node: 10.9.1_k2jc2lb6qrtdc3lulqxjwnbwoi + ts-node: 10.9.1_evej5wzm4hojmu6uzxwpspdmsu typescript: 4.8.4 webpack: 5.74.0_webpack-cli@4.10.0 webpack-cli: 4.10.0_vnmgq7jx5zjkzolvtfp7mdf5ri @@ -1620,47 +1632,47 @@ importers: '@babel/core': ^7.19.3 '@babel/eslint-parser': ^7.19.1 '@babel/plugin-transform-runtime': ^7.19.1 - '@babel/preset-env': ^7.19.3 + '@babel/preset-env': ^7.19.4 '@babel/preset-typescript': ^7.18.6 - '@babel/runtime': ^7.19.0 - '@types/jest': ^27.5.2 + '@babel/runtime': ^7.19.4 + '@types/jest': ^29.2.0 '@types/lodash': ^4.14.186 - '@types/node': ^16.11.64 - '@typescript-eslint/eslint-plugin': ^5.39.0 - '@typescript-eslint/parser': ^5.39.0 + '@types/node': ^18.11.7 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 eslint: ^8.25.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-jest: ^27.1.1 - jest: ^27.5.1 + eslint-plugin-jest: ^27.1.2 + jest: ^29.2.2 lodash: ^4.17.21 redux: ^4.2.0 rimraf: ^3.0.2 rxjs: ^7.5.7 - ts-jest: ^27.1.5 + ts-jest: ^29.0.3 typescript: ~4.8.4 dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 lodash: 4.17.21 devDependencies: '@babel/cli': 7.19.3_@babel+core@7.19.3 '@babel/core': 7.19.3 '@babel/eslint-parser': 7.19.1_v37dtiefj2fmp2s4n57pt7n35y '@babel/plugin-transform-runtime': 7.19.1_@babel+core@7.19.3 - '@babel/preset-env': 7.19.3_@babel+core@7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 - '@types/jest': 27.5.2 + '@types/jest': 29.2.0 '@types/lodash': 4.14.186 - '@types/node': 16.11.64 - '@typescript-eslint/eslint-plugin': 5.39.0_cfd7h3iktziq6hcwahu2qxhjhy - '@typescript-eslint/parser': 5.39.0_z4bbprzjrhnsfa24uvmcbu7f5q + '@types/node': 18.11.7 + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q eslint: 8.25.0 eslint-config-prettier: 8.5.0_eslint@8.25.0 - eslint-plugin-jest: 27.1.1_or6kr3fag2h7rsusdfqwiniqvm - jest: 27.5.1 + eslint-plugin-jest: 27.1.2_6co43ebcjfbpobjajqgjcmpkdi + jest: 29.2.2_@types+node@18.11.7 redux: 4.2.0 rimraf: 3.0.2 rxjs: 7.5.7 - ts-jest: 27.1.5_zgo3ukr7wfsrfu7w73hol4lxpy + ts-jest: 29.0.3_qutljtsb73gn6tigyw4fnh25am typescript: 4.8.4 packages/redux-devtools-log-monitor: @@ -1669,20 +1681,20 @@ importers: '@babel/core': ^7.19.3 '@babel/eslint-parser': ^7.19.1 '@babel/plugin-transform-runtime': ^7.19.1 - '@babel/preset-env': ^7.19.3 + '@babel/preset-env': ^7.19.4 '@babel/preset-react': ^7.18.6 '@babel/preset-typescript': ^7.18.6 - '@babel/runtime': ^7.19.0 + '@babel/runtime': ^7.19.4 '@redux-devtools/core': ^3.13.1 '@types/lodash.debounce': ^4.0.7 '@types/prop-types': ^15.7.5 '@types/react': ^18.0.21 '@types/redux-devtools-themes': ^1.0.0 - '@typescript-eslint/eslint-plugin': ^5.39.0 - '@typescript-eslint/parser': ^5.39.0 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 eslint: ^8.25.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-react: ^7.31.9 + eslint-plugin-react: ^7.31.10 eslint-plugin-react-hooks: ^4.6.0 lodash.debounce: ^4.0.8 prop-types: ^15.8.1 @@ -1693,7 +1705,7 @@ importers: rimraf: ^3.0.2 typescript: ~4.8.4 dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 '@types/lodash.debounce': 4.0.7 '@types/prop-types': 15.7.5 '@types/redux-devtools-themes': 1.0.0 @@ -1706,16 +1718,16 @@ importers: '@babel/core': 7.19.3 '@babel/eslint-parser': 7.19.1_v37dtiefj2fmp2s4n57pt7n35y '@babel/plugin-transform-runtime': 7.19.1_@babel+core@7.19.3 - '@babel/preset-env': 7.19.3_@babel+core@7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 '@babel/preset-react': 7.18.6_@babel+core@7.19.3 '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 '@redux-devtools/core': link:../redux-devtools '@types/react': 18.0.21 - '@typescript-eslint/eslint-plugin': 5.39.0_cfd7h3iktziq6hcwahu2qxhjhy - '@typescript-eslint/parser': 5.39.0_z4bbprzjrhnsfa24uvmcbu7f5q + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q eslint: 8.25.0 eslint-config-prettier: 8.5.0_eslint@8.25.0 - eslint-plugin-react: 7.31.9_eslint@8.25.0 + eslint-plugin-react: 7.31.10_eslint@8.25.0 eslint-plugin-react-hooks: 4.6.0_eslint@8.25.0 react: 18.2.0 redux: 4.2.0 @@ -1728,17 +1740,17 @@ importers: '@babel/core': ^7.19.3 '@babel/eslint-parser': ^7.19.1 '@babel/plugin-transform-runtime': ^7.19.1 - '@babel/preset-env': ^7.19.3 + '@babel/preset-env': ^7.19.4 '@babel/preset-typescript': ^7.18.6 - '@babel/runtime': ^7.19.0 + '@babel/runtime': ^7.19.4 '@redux-devtools/instrument': ^2.1.0 '@redux-devtools/utils': ^2.0.0 '@types/jsan': ^3.1.2 - '@types/node': ^16.11.64 + '@types/node': ^18.11.7 '@types/rn-host-detect': ^1.2.0 '@types/socketcluster-client': ^16.0.0 - '@typescript-eslint/eslint-plugin': ^5.39.0 - '@typescript-eslint/parser': ^5.39.0 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 eslint: ^8.25.0 eslint-config-prettier: ^8.5.0 jsan: ^3.1.14 @@ -1749,7 +1761,7 @@ importers: socketcluster-client: ^17.1.0 typescript: ~4.8.4 dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 '@redux-devtools/instrument': link:../redux-devtools-instrument '@redux-devtools/utils': link:../redux-devtools-utils jsan: 3.1.14 @@ -1761,14 +1773,14 @@ importers: '@babel/core': 7.19.3 '@babel/eslint-parser': 7.19.1_v37dtiefj2fmp2s4n57pt7n35y '@babel/plugin-transform-runtime': 7.19.1_@babel+core@7.19.3 - '@babel/preset-env': 7.19.3_@babel+core@7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 '@types/jsan': 3.1.2 - '@types/node': 16.11.64 + '@types/node': 18.11.7 '@types/rn-host-detect': 1.2.0 '@types/socketcluster-client': 16.0.0 - '@typescript-eslint/eslint-plugin': 5.39.0_cfd7h3iktziq6hcwahu2qxhjhy - '@typescript-eslint/parser': 5.39.0_z4bbprzjrhnsfa24uvmcbu7f5q + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q eslint: 8.25.0 eslint-config-prettier: 8.5.0_eslint@8.25.0 redux: 4.2.0 @@ -1781,32 +1793,33 @@ importers: '@babel/core': ^7.19.3 '@babel/eslint-parser': ^7.19.1 '@babel/plugin-transform-runtime': ^7.19.1 - '@babel/preset-env': ^7.19.3 + '@babel/preset-env': ^7.19.4 '@babel/preset-react': ^7.18.6 '@babel/preset-typescript': ^7.18.6 - '@babel/runtime': ^7.19.0 + '@babel/runtime': ^7.19.4 '@redux-devtools/core': ^3.13.1 '@redux-devtools/ui': ^1.3.0 '@reduxjs/toolkit': ^1.8.6 '@testing-library/jest-dom': ^5.16.5 '@testing-library/react': ^13.4.0 '@types/hex-rgba': ^1.0.1 - '@types/jest': ^27.5.2 + '@types/jest': ^29.2.0 '@types/lodash': ^4.14.186 '@types/lodash.debounce': ^4.0.7 '@types/prop-types': ^15.7.5 '@types/react': ^18.0.21 '@types/redux-devtools-themes': ^1.0.0 - '@typescript-eslint/eslint-plugin': ^5.39.0 - '@typescript-eslint/parser': ^5.39.0 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 eslint: ^8.25.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-jest: ^27.1.1 - eslint-plugin-react: ^7.31.9 + eslint-plugin-jest: ^27.1.2 + eslint-plugin-react: ^7.31.10 eslint-plugin-react-hooks: ^4.6.0 hex-rgba: ^1.0.2 immutable: ^4.1.0 - jest: ^27.5.1 + jest: ^29.2.2 + jest-environment-jsdom: ^29.2.2 jss: ^10.9.2 jss-preset-default: ^10.9.2 lodash.debounce: ^4.0.8 @@ -1819,10 +1832,10 @@ importers: redux: ^4.2.0 redux-devtools-themes: ^1.0.0 rimraf: ^3.0.2 - ts-jest: ^27.1.5 + ts-jest: ^29.0.3 typescript: ~4.8.4 dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 '@redux-devtools/ui': link:../redux-devtools-ui '@types/lodash': 4.14.186 '@types/prop-types': 15.7.5 @@ -1841,7 +1854,7 @@ importers: '@babel/core': 7.19.3 '@babel/eslint-parser': 7.19.1_v37dtiefj2fmp2s4n57pt7n35y '@babel/plugin-transform-runtime': 7.19.1_@babel+core@7.19.3 - '@babel/preset-env': 7.19.3_@babel+core@7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 '@babel/preset-react': 7.18.6_@babel+core@7.19.3 '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 '@redux-devtools/core': link:../redux-devtools @@ -1849,34 +1862,35 @@ importers: '@testing-library/jest-dom': 5.16.5 '@testing-library/react': 13.4.0_biqbaboplfbrettd7655fr4n2y '@types/hex-rgba': 1.0.1 - '@types/jest': 27.5.2 + '@types/jest': 29.2.0 '@types/lodash.debounce': 4.0.7 '@types/react': 18.0.21 - '@typescript-eslint/eslint-plugin': 5.39.0_cfd7h3iktziq6hcwahu2qxhjhy - '@typescript-eslint/parser': 5.39.0_z4bbprzjrhnsfa24uvmcbu7f5q + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q eslint: 8.25.0 eslint-config-prettier: 8.5.0_eslint@8.25.0 - eslint-plugin-jest: 27.1.1_or6kr3fag2h7rsusdfqwiniqvm - eslint-plugin-react: 7.31.9_eslint@8.25.0 + eslint-plugin-jest: 27.1.2_6co43ebcjfbpobjajqgjcmpkdi + eslint-plugin-react: 7.31.10_eslint@8.25.0 eslint-plugin-react-hooks: 4.6.0_eslint@8.25.0 - jest: 27.5.1 + jest: 29.2.2 + jest-environment-jsdom: 29.2.2 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 react-redux: 8.0.4_wr4jmv5xrjbe6vbq33me5wwo2a redux: 4.2.0 rimraf: 3.0.2 - ts-jest: 27.1.5_zgo3ukr7wfsrfu7w73hol4lxpy + ts-jest: 29.0.3_qutljtsb73gn6tigyw4fnh25am typescript: 4.8.4 packages/redux-devtools-rtk-query-monitor/demo: specifiers: '@babel/core': ^7.19.3 '@babel/plugin-transform-runtime': ^7.19.1 - '@babel/preset-env': ^7.19.3 + '@babel/preset-env': ^7.19.4 '@babel/preset-react': ^7.18.6 '@babel/preset-typescript': ^7.18.6 - '@babel/runtime': ^7.19.0 - '@chakra-ui/react': ^2.3.5 + '@babel/runtime': ^7.19.4 + '@chakra-ui/react': ^2.3.6 '@emotion/react': ^11.10.4 '@emotion/styled': ^11.10.4 '@mswjs/data': ^0.10.2 @@ -1885,27 +1899,27 @@ importers: '@redux-devtools/rtk-query-monitor': ^3.1.0 '@reduxjs/toolkit': ^1.8.6 '@types/copy-webpack-plugin': ^8.0.1 - '@types/node': ^16.11.64 + '@types/node': ^18.11.7 '@types/react': ^18.0.21 '@types/react-dom': ^18.0.6 '@types/styled-components': ^5.1.26 - '@typescript-eslint/eslint-plugin': ^5.39.0 - '@typescript-eslint/parser': ^5.39.0 - babel-loader: ^8.2.5 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 + babel-loader: ^9.0.0 copy-webpack-plugin: ^11.0.0 cross-env: ^7.0.3 css-loader: ^6.7.1 eslint: ^8.25.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-react: ^7.31.9 + eslint-plugin-react: ^7.31.10 eslint-plugin-react-hooks: ^4.6.0 fork-ts-checker-webpack-plugin: ^7.2.13 - framer-motion: ^7.5.3 + framer-motion: ^7.6.1 html-webpack-plugin: ^5.5.0 msw: ^0.47.4 react: ^18.2.0 react-dom: ^18.2.0 - react-icons: ^4.4.0 + react-icons: ^4.6.0 react-is: ^18.2.0 react-redux: ^8.0.4 react-router-dom: ^6.4.2 @@ -1917,8 +1931,8 @@ importers: webpack-cli: ^4.10.0 webpack-dev-server: ^4.11.1 dependencies: - '@babel/runtime': 7.19.0 - '@chakra-ui/react': 2.3.5_356kgaleomk4jdithf3bcp4v5i + '@babel/runtime': 7.19.4 + '@chakra-ui/react': 2.3.6_4a5gkdj7phvhqinmegnu2kpw7m '@emotion/react': 11.10.4_bjroym7kxlcs2vvwnej4p3gzwu '@emotion/styled': 11.10.4_ogudqqhlstsi7uge4lir7ff3ty '@mswjs/data': 0.10.2_typescript@4.8.4 @@ -1926,11 +1940,11 @@ importers: '@redux-devtools/dock-monitor': link:../../redux-devtools-dock-monitor '@redux-devtools/rtk-query-monitor': link:.. '@reduxjs/toolkit': 1.8.6_kuo2ie247izvzll3jejufdtq3q - framer-motion: 7.5.3_biqbaboplfbrettd7655fr4n2y + framer-motion: 7.6.1_biqbaboplfbrettd7655fr4n2y msw: 0.47.4_typescript@4.8.4 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - react-icons: 4.4.0_react@18.2.0 + react-icons: 4.6.0_react@18.2.0 react-is: 18.2.0 react-redux: 8.0.4_5uumaiclxbdbzaqafclbf6maf4 react-router-dom: 6.4.2_biqbaboplfbrettd7655fr4n2y @@ -1938,28 +1952,28 @@ importers: devDependencies: '@babel/core': 7.19.3 '@babel/plugin-transform-runtime': 7.19.1_@babel+core@7.19.3 - '@babel/preset-env': 7.19.3_@babel+core@7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 '@babel/preset-react': 7.18.6_@babel+core@7.19.3 '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 '@types/copy-webpack-plugin': 8.0.1_webpack-cli@4.10.0 - '@types/node': 16.11.64 + '@types/node': 18.11.7 '@types/react': 18.0.21 '@types/react-dom': 18.0.6 '@types/styled-components': 5.1.26 - '@typescript-eslint/eslint-plugin': 5.39.0_cfd7h3iktziq6hcwahu2qxhjhy - '@typescript-eslint/parser': 5.39.0_z4bbprzjrhnsfa24uvmcbu7f5q - babel-loader: 8.2.5_wfdvla2jorjoj23kkavho2upde + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q + babel-loader: 9.0.0_wfdvla2jorjoj23kkavho2upde copy-webpack-plugin: 11.0.0_webpack@5.74.0 cross-env: 7.0.3 css-loader: 6.7.1_webpack@5.74.0 eslint: 8.25.0 eslint-config-prettier: 8.5.0_eslint@8.25.0 - eslint-plugin-react: 7.31.9_eslint@8.25.0 + eslint-plugin-react: 7.31.10_eslint@8.25.0 eslint-plugin-react-hooks: 4.6.0_eslint@8.25.0 fork-ts-checker-webpack-plugin: 7.2.13_qqxisngxjbp7lstdk7boexbu3e html-webpack-plugin: 5.5.0_webpack@5.74.0 style-loader: 3.3.1_webpack@5.74.0 - ts-node: 10.9.1_k2jc2lb6qrtdc3lulqxjwnbwoi + ts-node: 10.9.1_evej5wzm4hojmu6uzxwpspdmsu typescript: 4.8.4 webpack: 5.74.0_webpack-cli@4.10.0 webpack-cli: 4.10.0_vnmgq7jx5zjkzolvtfp7mdf5ri @@ -1971,43 +1985,43 @@ importers: '@babel/core': ^7.19.3 '@babel/eslint-parser': ^7.19.1 '@babel/plugin-transform-runtime': ^7.19.1 - '@babel/preset-env': ^7.19.3 + '@babel/preset-env': ^7.19.4 '@babel/preset-typescript': ^7.18.6 - '@babel/runtime': ^7.19.0 - '@types/jest': ^27.5.2 + '@babel/runtime': ^7.19.4 + '@types/jest': ^29.2.0 '@types/jsan': ^3.1.2 - '@typescript-eslint/eslint-plugin': ^5.39.0 - '@typescript-eslint/parser': ^5.39.0 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 eslint: ^8.25.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-jest: ^27.1.1 + eslint-plugin-jest: ^27.1.2 immutable: ^4.1.0 - jest: ^27.5.1 + jest: ^29.2.2 jsan: ^3.1.14 rimraf: ^3.0.2 - ts-jest: ^27.1.5 + ts-jest: ^29.0.3 typescript: ~4.8.4 dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 jsan: 3.1.14 devDependencies: '@babel/cli': 7.19.3_@babel+core@7.19.3 '@babel/core': 7.19.3 '@babel/eslint-parser': 7.19.1_v37dtiefj2fmp2s4n57pt7n35y '@babel/plugin-transform-runtime': 7.19.1_@babel+core@7.19.3 - '@babel/preset-env': 7.19.3_@babel+core@7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 - '@types/jest': 27.5.2 + '@types/jest': 29.2.0 '@types/jsan': 3.1.2 - '@typescript-eslint/eslint-plugin': 5.39.0_cfd7h3iktziq6hcwahu2qxhjhy - '@typescript-eslint/parser': 5.39.0_z4bbprzjrhnsfa24uvmcbu7f5q + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q eslint: 8.25.0 eslint-config-prettier: 8.5.0_eslint@8.25.0 - eslint-plugin-jest: 27.1.1_or6kr3fag2h7rsusdfqwiniqvm + eslint-plugin-jest: 27.1.2_6co43ebcjfbpobjajqgjcmpkdi immutable: 4.1.0 - jest: 27.5.1 + jest: 29.2.2 rimraf: 3.0.2 - ts-jest: 27.1.5_zgo3ukr7wfsrfu7w73hol4lxpy + ts-jest: 29.0.3_qutljtsb73gn6tigyw4fnh25am typescript: 4.8.4 packages/redux-devtools-slider-monitor: @@ -2016,34 +2030,34 @@ importers: '@babel/core': ^7.19.3 '@babel/eslint-parser': ^7.19.1 '@babel/plugin-transform-runtime': ^7.19.1 - '@babel/preset-env': ^7.19.3 + '@babel/preset-env': ^7.19.4 '@babel/preset-react': ^7.18.6 '@babel/preset-typescript': ^7.18.6 - '@babel/runtime': ^7.19.0 + '@babel/runtime': ^7.19.4 '@redux-devtools/core': ^3.13.1 '@redux-devtools/ui': ^1.3.0 '@rollup/plugin-babel': ^6.0.0 - '@types/node': ^16.11.64 + '@types/node': ^18.11.7 '@types/prop-types': ^15.7.5 '@types/react': ^18.0.21 '@types/redux-devtools-themes': ^1.0.0 - '@typescript-eslint/eslint-plugin': ^5.39.0 - '@typescript-eslint/parser': ^5.39.0 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 eslint: ^8.25.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-react: ^7.31.9 + eslint-plugin-react: ^7.31.10 eslint-plugin-react-hooks: ^4.6.0 prop-types: ^15.8.1 react: ^18.2.0 redux: ^4.2.0 redux-devtools-themes: ^1.0.0 rimraf: ^3.0.2 - rollup: ^2.79.1 + rollup: ^3.2.3 rollup-plugin-typescript2: ^0.34.1 tslib: ^2.4.0 typescript: ~4.8.4 dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 '@redux-devtools/ui': link:../redux-devtools-ui '@types/prop-types': 15.7.5 '@types/redux-devtools-themes': 1.0.0 @@ -2054,31 +2068,31 @@ importers: '@babel/core': 7.19.3 '@babel/eslint-parser': 7.19.1_v37dtiefj2fmp2s4n57pt7n35y '@babel/plugin-transform-runtime': 7.19.1_@babel+core@7.19.3 - '@babel/preset-env': 7.19.3_@babel+core@7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 '@babel/preset-react': 7.18.6_@babel+core@7.19.3 '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 '@redux-devtools/core': link:../redux-devtools - '@rollup/plugin-babel': 6.0.0_vy4anxjpv2s44kyfi2kxqu576u - '@types/node': 16.11.64 + '@rollup/plugin-babel': 6.0.0_t2lseskayu4pmjc4spb5q7neyq + '@types/node': 18.11.7 '@types/react': 18.0.21 - '@typescript-eslint/eslint-plugin': 5.39.0_cfd7h3iktziq6hcwahu2qxhjhy - '@typescript-eslint/parser': 5.39.0_z4bbprzjrhnsfa24uvmcbu7f5q + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q eslint: 8.25.0 eslint-config-prettier: 8.5.0_eslint@8.25.0 - eslint-plugin-react: 7.31.9_eslint@8.25.0 + eslint-plugin-react: 7.31.10_eslint@8.25.0 eslint-plugin-react-hooks: 4.6.0_eslint@8.25.0 react: 18.2.0 redux: 4.2.0 rimraf: 3.0.2 - rollup: 2.79.1 - rollup-plugin-typescript2: 0.34.1_gypgyaqhine6mwjfvh7icfhviq + rollup: 3.2.3 + rollup-plugin-typescript2: 0.34.1_655ssj4e7sdqlljrreeiqtltve tslib: 2.4.0 typescript: 4.8.4 packages/redux-devtools-slider-monitor/examples/todomvc: specifiers: '@babel/core': ^7.19.3 - '@babel/preset-env': ^7.19.3 + '@babel/preset-env': ^7.19.4 '@babel/preset-react': ^7.18.6 '@babel/preset-typescript': ^7.18.6 '@redux-devtools/core': ^3.13.0 @@ -2086,21 +2100,21 @@ importers: '@redux-devtools/log-monitor': ^4.0.0 '@redux-devtools/slider-monitor': ^4.0.0 '@types/classnames': ^2.3.1 - '@types/node': ^16.11.64 + '@types/node': ^18.11.7 '@types/prop-types': ^15.7.5 '@types/react': ^18.0.21 '@types/react-dom': ^18.0.6 '@types/styled-components': ^5.1.26 '@types/webpack-env': ^1.18.0 - '@typescript-eslint/eslint-plugin': ^5.39.0 - '@typescript-eslint/parser': ^5.39.0 - babel-loader: ^8.2.5 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 + babel-loader: ^9.0.0 classnames: ^2.3.2 cross-env: ^7.0.3 css-loader: ^6.7.1 eslint: ^8.25.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-react: ^7.31.9 + eslint-plugin-react: ^7.31.10 eslint-plugin-react-hooks: ^4.6.0 fork-ts-checker-webpack-plugin: ^7.2.13 html-webpack-plugin: ^5.5.0 @@ -2134,29 +2148,29 @@ importers: todomvc-app-css: 2.4.2 devDependencies: '@babel/core': 7.19.3 - '@babel/preset-env': 7.19.3_@babel+core@7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 '@babel/preset-react': 7.18.6_@babel+core@7.19.3 '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 '@types/classnames': 2.3.1 - '@types/node': 16.11.64 + '@types/node': 18.11.7 '@types/prop-types': 15.7.5 '@types/react': 18.0.21 '@types/react-dom': 18.0.6 '@types/styled-components': 5.1.26 '@types/webpack-env': 1.18.0 - '@typescript-eslint/eslint-plugin': 5.39.0_cfd7h3iktziq6hcwahu2qxhjhy - '@typescript-eslint/parser': 5.39.0_z4bbprzjrhnsfa24uvmcbu7f5q - babel-loader: 8.2.5_wfdvla2jorjoj23kkavho2upde + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q + babel-loader: 9.0.0_wfdvla2jorjoj23kkavho2upde cross-env: 7.0.3 css-loader: 6.7.1_webpack@5.74.0 eslint: 8.25.0 eslint-config-prettier: 8.5.0_eslint@8.25.0 - eslint-plugin-react: 7.31.9_eslint@8.25.0 + eslint-plugin-react: 7.31.10_eslint@8.25.0 eslint-plugin-react-hooks: 4.6.0_eslint@8.25.0 fork-ts-checker-webpack-plugin: 7.2.13_qqxisngxjbp7lstdk7boexbu3e html-webpack-plugin: 5.5.0_webpack@5.74.0 style-loader: 3.3.1_webpack@5.74.0 - ts-node: 10.9.1_k2jc2lb6qrtdc3lulqxjwnbwoi + ts-node: 10.9.1_evej5wzm4hojmu6uzxwpspdmsu typescript: 4.8.4 webpack: 5.74.0_webpack-cli@4.10.0 webpack-cli: 4.10.0_vnmgq7jx5zjkzolvtfp7mdf5ri @@ -2168,12 +2182,14 @@ importers: '@babel/core': ^7.19.3 '@babel/eslint-parser': ^7.19.1 '@babel/plugin-transform-runtime': ^7.19.1 - '@babel/preset-env': ^7.19.3 + '@babel/preset-env': ^7.19.4 '@babel/preset-react': ^7.18.6 '@babel/preset-typescript': ^7.18.6 - '@babel/runtime': ^7.19.0 + '@babel/runtime': ^7.19.4 '@rjsf/core': ^4.2.3 '@storybook/addon-essentials': ^6.5.12 + '@storybook/builder-webpack5': ^6.5.13 + '@storybook/manager-webpack5': ^6.5.13 '@storybook/react': ^6.5.12 '@testing-library/dom': ^8.19.0 '@testing-library/react': ^13.4.0 @@ -2181,48 +2197,49 @@ importers: '@types/base16': ^1.0.2 '@types/codemirror': ^5.60.5 '@types/color': ^3.0.3 - '@types/jest': ^27.5.2 + '@types/jest': ^29.2.0 '@types/json-schema': ^7.0.11 '@types/prop-types': ^15.7.5 '@types/react': ^18.0.21 '@types/redux-devtools-themes': ^1.0.0 '@types/simple-element-resize-detector': ^1.3.0 '@types/styled-components': ^5.1.26 - '@typescript-eslint/eslint-plugin': ^5.39.0 - '@typescript-eslint/parser': ^5.39.0 - babel-loader: ^8.2.5 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 + babel-loader: ^9.0.0 base16: ^1.0.0 codemirror: ^5.65.9 color: ^4.2.3 csstype: ^3.1.1 eslint: ^8.25.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-jest: ^27.1.1 - eslint-plugin-react: ^7.31.9 + eslint-plugin-jest: ^27.1.2 + eslint-plugin-react: ^7.31.10 eslint-plugin-react-hooks: ^4.6.0 - jest: ^27.5.1 + jest: ^29.2.2 + jest-environment-jsdom: ^29.2.2 ncp: ^2.0.0 prop-types: ^15.8.1 react: ^18.2.0 react-dom: ^18.2.0 - react-icons: ^4.4.0 + react-icons: ^4.6.0 react-is: ^18.2.0 - react-select: ^5.4.0 + react-select: ^5.5.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.6 - stylelint: ^14.13.0 + stylelint: ^14.14.0 stylelint-config-prettier: ^9.0.3 - stylelint-config-standard: ^28.0.0 + stylelint-config-standard: ^29.0.0 stylelint-config-styled-components: ^0.1.1 stylelint-processor-styled-components: ^1.10.0 - ts-jest: ^27.1.5 + ts-jest: ^29.0.3 typescript: ~4.8.4 webpack: ^5.74.0 dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 '@rjsf/core': 4.2.3_react@18.2.0 '@types/base16': 1.0.2 '@types/codemirror': 5.60.5 @@ -2234,8 +2251,8 @@ importers: codemirror: 5.65.9 color: 4.2.3 prop-types: 15.8.1 - react-icons: 4.4.0_react@18.2.0 - react-select: 5.4.0_eat7hc23gfabdflnphmz6xfchm + react-icons: 4.6.0_react@18.2.0 + react-select: 5.5.2_eat7hc23gfabdflnphmz6xfchm redux-devtools-themes: 1.0.0 simple-element-resize-detector: 1.3.0 devDependencies: @@ -2243,28 +2260,31 @@ importers: '@babel/core': 7.19.3 '@babel/eslint-parser': 7.19.1_v37dtiefj2fmp2s4n57pt7n35y '@babel/plugin-transform-runtime': 7.19.1_@babel+core@7.19.3 - '@babel/preset-env': 7.19.3_@babel+core@7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 '@babel/preset-react': 7.18.6_@babel+core@7.19.3 '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 - '@storybook/addon-essentials': 6.5.12_midmk4q7nq6bankjng5gmclke4 - '@storybook/react': 6.5.12_yqxcvbtk6e2nsx45qlxuze54wa + '@storybook/addon-essentials': 6.5.12_fozf472gp4suu37hs2nje52g7q + '@storybook/builder-webpack5': 6.5.13_ceius3krcep667lesqygbylwku + '@storybook/manager-webpack5': 6.5.13_ceius3krcep667lesqygbylwku + '@storybook/react': 6.5.12_z7mbqtlf63qmqxqctdyj6vphwm '@testing-library/dom': 8.19.0 '@testing-library/react': 13.4.0_biqbaboplfbrettd7655fr4n2y '@testing-library/user-event': 14.4.3_aaq3sbffpfe3jnxzm2zngsddei '@types/color': 3.0.3 - '@types/jest': 27.5.2 + '@types/jest': 29.2.0 '@types/react': 18.0.21 '@types/styled-components': 5.1.26 - '@typescript-eslint/eslint-plugin': 5.39.0_cfd7h3iktziq6hcwahu2qxhjhy - '@typescript-eslint/parser': 5.39.0_z4bbprzjrhnsfa24uvmcbu7f5q - babel-loader: 8.2.5_wfdvla2jorjoj23kkavho2upde + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q + babel-loader: 9.0.0_wfdvla2jorjoj23kkavho2upde csstype: 3.1.1 eslint: 8.25.0 eslint-config-prettier: 8.5.0_eslint@8.25.0 - eslint-plugin-jest: 27.1.1_or6kr3fag2h7rsusdfqwiniqvm - eslint-plugin-react: 7.31.9_eslint@8.25.0 + eslint-plugin-jest: 27.1.2_6co43ebcjfbpobjajqgjcmpkdi + eslint-plugin-react: 7.31.10_eslint@8.25.0 eslint-plugin-react-hooks: 4.6.0_eslint@8.25.0 - jest: 27.5.1 + jest: 29.2.2 + jest-environment-jsdom: 29.2.2 ncp: 2.0.0 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 @@ -2272,12 +2292,12 @@ importers: require-from-string: 2.0.2 rimraf: 3.0.2 styled-components: 5.3.6_7i5myeigehqah43i5u7wbekgba - stylelint: 14.13.0 - stylelint-config-prettier: 9.0.3_stylelint@14.13.0 - stylelint-config-standard: 28.0.0_stylelint@14.13.0 + stylelint: 14.14.0 + stylelint-config-prettier: 9.0.3_stylelint@14.14.0 + stylelint-config-standard: 29.0.0_stylelint@14.14.0 stylelint-config-styled-components: 0.1.1 stylelint-processor-styled-components: 1.10.0 - ts-jest: 27.1.5_zgo3ukr7wfsrfu7w73hol4lxpy + ts-jest: 29.0.3_qutljtsb73gn6tigyw4fnh25am typescript: 4.8.4 webpack: 5.74.0 @@ -2287,17 +2307,17 @@ importers: '@babel/core': ^7.19.3 '@babel/eslint-parser': ^7.19.1 '@babel/plugin-transform-runtime': ^7.19.1 - '@babel/preset-env': ^7.19.3 + '@babel/preset-env': ^7.19.4 '@babel/preset-typescript': ^7.18.6 - '@babel/runtime': ^7.19.0 + '@babel/runtime': ^7.19.4 '@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.186 - '@types/node': ^16.11.64 - '@typescript-eslint/eslint-plugin': ^5.39.0 - '@typescript-eslint/parser': ^5.39.0 + '@types/node': ^18.11.7 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 eslint: ^8.25.0 eslint-config-prettier: ^8.5.0 get-params: ^0.1.2 @@ -2309,7 +2329,7 @@ importers: rimraf: ^3.0.2 typescript: ~4.8.4 dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 '@redux-devtools/core': link:../redux-devtools '@redux-devtools/serialize': link:../redux-devtools-serialize '@types/get-params': 0.1.0 @@ -2324,13 +2344,13 @@ importers: '@babel/core': 7.19.3 '@babel/eslint-parser': 7.19.1_v37dtiefj2fmp2s4n57pt7n35y '@babel/plugin-transform-runtime': 7.19.1_@babel+core@7.19.3 - '@babel/preset-env': 7.19.3_@babel+core@7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 '@types/jsan': 3.1.2 '@types/lodash': 4.14.186 - '@types/node': 16.11.64 - '@typescript-eslint/eslint-plugin': 5.39.0_cfd7h3iktziq6hcwahu2qxhjhy - '@typescript-eslint/parser': 5.39.0_z4bbprzjrhnsfa24uvmcbu7f5q + '@types/node': 18.11.7 + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q eslint: 8.25.0 eslint-config-prettier: 8.5.0_eslint@8.25.0 rimraf: 3.0.2 @@ -2339,24 +2359,24 @@ importers: packages/redux-devtools/examples/counter: specifiers: '@babel/core': ^7.19.3 - '@babel/preset-env': ^7.19.3 + '@babel/preset-env': ^7.19.4 '@babel/preset-react': ^7.18.6 '@babel/preset-typescript': ^7.18.6 '@redux-devtools/core': ^3.13.0 '@redux-devtools/dock-monitor': ^3.0.0 '@redux-devtools/log-monitor': ^4.0.0 - '@types/node': ^16.11.64 + '@types/node': ^18.11.7 '@types/prop-types': ^15.7.5 '@types/react': ^18.0.21 '@types/react-dom': ^18.0.6 '@types/webpack-env': ^1.18.0 - '@typescript-eslint/eslint-plugin': ^5.39.0 - '@typescript-eslint/parser': ^5.39.0 - babel-loader: ^8.2.5 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 + babel-loader: ^9.0.0 cross-env: ^7.0.3 eslint: ^8.25.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-react: ^7.31.9 + eslint-plugin-react: ^7.31.10 eslint-plugin-react-hooks: ^4.6.0 fork-ts-checker-webpack-plugin: ^7.2.13 html-webpack-plugin: ^5.5.0 @@ -2383,25 +2403,25 @@ importers: redux-thunk: 2.4.1_redux@4.2.0 devDependencies: '@babel/core': 7.19.3 - '@babel/preset-env': 7.19.3_@babel+core@7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 '@babel/preset-react': 7.18.6_@babel+core@7.19.3 '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 - '@types/node': 16.11.64 + '@types/node': 18.11.7 '@types/prop-types': 15.7.5 '@types/react': 18.0.21 '@types/react-dom': 18.0.6 '@types/webpack-env': 1.18.0 - '@typescript-eslint/eslint-plugin': 5.39.0_cfd7h3iktziq6hcwahu2qxhjhy - '@typescript-eslint/parser': 5.39.0_z4bbprzjrhnsfa24uvmcbu7f5q - babel-loader: 8.2.5_wfdvla2jorjoj23kkavho2upde + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q + babel-loader: 9.0.0_wfdvla2jorjoj23kkavho2upde cross-env: 7.0.3 eslint: 8.25.0 eslint-config-prettier: 8.5.0_eslint@8.25.0 - eslint-plugin-react: 7.31.9_eslint@8.25.0 + eslint-plugin-react: 7.31.10_eslint@8.25.0 eslint-plugin-react-hooks: 4.6.0_eslint@8.25.0 fork-ts-checker-webpack-plugin: 7.2.13_qqxisngxjbp7lstdk7boexbu3e html-webpack-plugin: 5.5.0_webpack@5.74.0 - ts-node: 10.9.1_k2jc2lb6qrtdc3lulqxjwnbwoi + ts-node: 10.9.1_evej5wzm4hojmu6uzxwpspdmsu typescript: 4.8.4 webpack: 5.74.0_webpack-cli@4.10.0 webpack-cli: 4.10.0_vnmgq7jx5zjkzolvtfp7mdf5ri @@ -2410,27 +2430,27 @@ importers: packages/redux-devtools/examples/todomvc: specifiers: '@babel/core': ^7.19.3 - '@babel/preset-env': ^7.19.3 + '@babel/preset-env': ^7.19.4 '@babel/preset-react': ^7.18.6 '@babel/preset-typescript': ^7.18.6 '@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.64 + '@types/node': ^18.11.7 '@types/prop-types': ^15.7.5 '@types/react': ^18.0.21 '@types/react-dom': ^18.0.6 '@types/webpack-env': ^1.18.0 - '@typescript-eslint/eslint-plugin': ^5.39.0 - '@typescript-eslint/parser': ^5.39.0 - babel-loader: ^8.2.5 + '@typescript-eslint/eslint-plugin': ^5.40.1 + '@typescript-eslint/parser': ^5.40.1 + babel-loader: ^9.0.0 classnames: ^2.3.2 cross-env: ^7.0.3 css-loader: ^6.7.1 eslint: ^8.25.0 eslint-config-prettier: ^8.5.0 - eslint-plugin-react: ^7.31.9 + eslint-plugin-react: ^7.31.10 eslint-plugin-react-hooks: ^4.6.0 fork-ts-checker-webpack-plugin: ^7.2.13 html-webpack-plugin: ^5.5.0 @@ -2459,28 +2479,28 @@ importers: todomvc-app-css: 2.4.2 devDependencies: '@babel/core': 7.19.3 - '@babel/preset-env': 7.19.3_@babel+core@7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 '@babel/preset-react': 7.18.6_@babel+core@7.19.3 '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 '@types/classnames': 2.3.1 - '@types/node': 16.11.64 + '@types/node': 18.11.7 '@types/prop-types': 15.7.5 '@types/react': 18.0.21 '@types/react-dom': 18.0.6 '@types/webpack-env': 1.18.0 - '@typescript-eslint/eslint-plugin': 5.39.0_cfd7h3iktziq6hcwahu2qxhjhy - '@typescript-eslint/parser': 5.39.0_z4bbprzjrhnsfa24uvmcbu7f5q - babel-loader: 8.2.5_wfdvla2jorjoj23kkavho2upde + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q + babel-loader: 9.0.0_wfdvla2jorjoj23kkavho2upde cross-env: 7.0.3 css-loader: 6.7.1_webpack@5.74.0 eslint: 8.25.0 eslint-config-prettier: 8.5.0_eslint@8.25.0 - eslint-plugin-react: 7.31.9_eslint@8.25.0 + eslint-plugin-react: 7.31.10_eslint@8.25.0 eslint-plugin-react-hooks: 4.6.0_eslint@8.25.0 fork-ts-checker-webpack-plugin: 7.2.13_qqxisngxjbp7lstdk7boexbu3e html-webpack-plugin: 5.5.0_webpack@5.74.0 style-loader: 3.3.1_webpack@5.74.0 - ts-node: 10.9.1_k2jc2lb6qrtdc3lulqxjwnbwoi + ts-node: 10.9.1_evej5wzm4hojmu6uzxwpspdmsu typescript: 4.8.4 webpack: 5.74.0_webpack-cli@4.10.0 webpack-cli: 4.10.0_vnmgq7jx5zjkzolvtfp7mdf5ri @@ -2497,7 +2517,7 @@ packages: engines: {node: '>=6.0.0'} dependencies: '@jridgewell/gen-mapping': 0.1.1 - '@jridgewell/trace-mapping': 0.3.16 + '@jridgewell/trace-mapping': 0.3.17 /@apollo/protobufjs/1.2.6: resolution: {integrity: sha512-Wqo1oSHNUj/jxmsVp4iR3I480p6qdqHikn38lKrFhfzcDJ7lwd7Ck7cHRl4JE81tWNArl77xhnG/OkZhxKBYOw==} @@ -2531,12 +2551,12 @@ packages: /@apollo/utils.keyvaluecache/1.0.1: resolution: {integrity: sha512-nLgYLomqjVimEzQ4cdvVQkcryi970NDvcRVPfd0OPeXhBfda38WjBq+WhQFk+czSHrmrSp34YHBxpat0EtiowA==} dependencies: - '@apollo/utils.logger': 1.0.0 + '@apollo/utils.logger': 1.0.1 lru-cache: 7.14.0 dev: false - /@apollo/utils.logger/1.0.0: - resolution: {integrity: sha512-dx9XrjyisD2pOa+KsB5RcDbWIAdgC91gJfeyLCgy0ctJMjQe7yZK5kdWaWlaOoCeX0z6YI9iYlg7vMPyMpQF3Q==} + /@apollo/utils.logger/1.0.1: + resolution: {integrity: sha512-XdlzoY7fYNK4OIcvMD2G94RoFZbzTQaNP0jozmqqMudmaGo2I/2Jx71xlDJ801mWA/mbYRihyaw6KJii7k5RVA==} dev: false /@apollo/utils.printwithreducedwhitespace/1.1.0_graphql@16.6.0: @@ -2614,9 +2634,9 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.19.3 - '@jridgewell/trace-mapping': 0.3.16 + '@jridgewell/trace-mapping': 0.3.17 commander: 4.1.1 - convert-source-map: 1.8.0 + convert-source-map: 1.9.0 fs-readdir-recursive: 1.1.0 glob: 7.2.3 make-dir: 2.1.0 @@ -2632,8 +2652,8 @@ packages: dependencies: '@babel/highlight': 7.18.6 - /@babel/compat-data/7.19.3: - resolution: {integrity: sha512-prBHMK4JYYK+wDjJF1q99KK4JLL+egWS4nmNqdlMUgCExMZ+iZW0hGhyC3VEbsPjvaN0TBhW//VIFwBrk8sEiw==} + /@babel/compat-data/7.19.4: + resolution: {integrity: sha512-CHIGpJcUQ5lU9KrPHTjBMhVwQG6CQjxfg36fGXl3qk/Gik1WwWachaXFuo0uCWJT/mStOKtcbFJCaVLihC1CMw==} engines: {node: '>=6.9.0'} /@babel/core/7.12.9: @@ -2641,14 +2661,14 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.18.6 - '@babel/generator': 7.19.3 + '@babel/generator': 7.19.5 '@babel/helper-module-transforms': 7.19.0 - '@babel/helpers': 7.19.0 - '@babel/parser': 7.19.3 + '@babel/helpers': 7.19.4 + '@babel/parser': 7.19.4 '@babel/template': 7.18.10 - '@babel/traverse': 7.19.3 - '@babel/types': 7.19.3 - convert-source-map: 1.8.0 + '@babel/traverse': 7.19.4 + '@babel/types': 7.19.4 + convert-source-map: 1.9.0 debug: 4.3.4 gensync: 1.0.0-beta.2 json5: 2.2.1 @@ -2666,15 +2686,15 @@ packages: dependencies: '@ampproject/remapping': 2.2.0 '@babel/code-frame': 7.18.6 - '@babel/generator': 7.19.3 + '@babel/generator': 7.19.5 '@babel/helper-compilation-targets': 7.19.3_@babel+core@7.19.3 '@babel/helper-module-transforms': 7.19.0 - '@babel/helpers': 7.19.0 - '@babel/parser': 7.19.3 + '@babel/helpers': 7.19.4 + '@babel/parser': 7.19.4 '@babel/template': 7.18.10 - '@babel/traverse': 7.19.3 - '@babel/types': 7.19.3 - convert-source-map: 1.8.0 + '@babel/traverse': 7.19.4 + '@babel/types': 7.19.4 + convert-source-map: 1.9.0 debug: 4.3.4 gensync: 1.0.0-beta.2 json5: 2.2.1 @@ -2696,11 +2716,11 @@ packages: semver: 6.3.0 dev: true - /@babel/generator/7.19.3: - resolution: {integrity: sha512-fqVZnmp1ncvZU757UzDheKZpfPgatqY59XtW2/j/18H7u76akb8xqvjw82f+i2UKd/ksYsSick/BCLQUUtJ/qQ==} + /@babel/generator/7.19.5: + resolution: {integrity: sha512-DxbNz9Lz4aMZ99qPpO1raTbcrI1ZeYh+9NR9qhfkQIbFtVEqotHojEBxHzmxhVONkGt6VyrqVQcgpefMy9pqcg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.19.3 + '@babel/types': 7.19.4 '@jridgewell/gen-mapping': 0.3.2 jsesc: 2.5.2 @@ -2708,14 +2728,14 @@ packages: resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.19.3 + '@babel/types': 7.19.4 /@babel/helper-builder-binary-assignment-operator-visitor/7.18.9: resolution: {integrity: sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==} engines: {node: '>=6.9.0'} dependencies: '@babel/helper-explode-assignable-expression': 7.18.6 - '@babel/types': 7.19.3 + '@babel/types': 7.19.4 dev: true /@babel/helper-compilation-targets/7.19.3_@babel+core@7.19.3: @@ -2724,7 +2744,7 @@ packages: peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/compat-data': 7.19.3 + '@babel/compat-data': 7.19.4 '@babel/core': 7.19.3 '@babel/helper-validator-option': 7.18.6 browserslist: 4.21.4 @@ -2768,7 +2788,7 @@ packages: '@babel/helper-compilation-targets': 7.19.3_@babel+core@7.19.3 '@babel/helper-module-imports': 7.18.6 '@babel/helper-plugin-utils': 7.19.0 - '@babel/traverse': 7.19.3 + '@babel/traverse': 7.19.4 debug: 4.3.4 lodash.debounce: 4.0.8 resolve: 1.22.1 @@ -2801,7 +2821,7 @@ packages: resolution: {integrity: sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.19.3 + '@babel/types': 7.19.4 dev: true /@babel/helper-function-name/7.19.0: @@ -2809,26 +2829,26 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/template': 7.18.10 - '@babel/types': 7.19.3 + '@babel/types': 7.19.4 /@babel/helper-hoist-variables/7.18.6: resolution: {integrity: sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.19.3 + '@babel/types': 7.19.4 /@babel/helper-member-expression-to-functions/7.18.9: resolution: {integrity: sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.19.3 + '@babel/types': 7.19.4 dev: true /@babel/helper-module-imports/7.18.6: resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.19.3 + '@babel/types': 7.19.4 /@babel/helper-module-transforms/7.19.0: resolution: {integrity: sha512-3HBZ377Fe14RbLIA+ac3sY4PTgpxHVkFrESaWhoI5PuyXPBBX8+C34qblV9G89ZtycGJCmCI/Ut+VUDK4bltNQ==} @@ -2836,12 +2856,12 @@ packages: dependencies: '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-module-imports': 7.18.6 - '@babel/helper-simple-access': 7.18.6 + '@babel/helper-simple-access': 7.19.4 '@babel/helper-split-export-declaration': 7.18.6 '@babel/helper-validator-identifier': 7.19.1 '@babel/template': 7.18.10 - '@babel/traverse': 7.19.3 - '@babel/types': 7.19.3 + '@babel/traverse': 7.19.4 + '@babel/types': 7.19.4 transitivePeerDependencies: - supports-color @@ -2849,7 +2869,7 @@ packages: resolution: {integrity: sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.19.3 + '@babel/types': 7.19.4 dev: true /@babel/helper-plugin-utils/7.10.4: @@ -2870,7 +2890,7 @@ packages: '@babel/helper-annotate-as-pure': 7.18.6 '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-wrap-function': 7.19.0 - '@babel/types': 7.19.3 + '@babel/types': 7.19.4 transitivePeerDependencies: - supports-color dev: true @@ -2882,33 +2902,33 @@ packages: '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-member-expression-to-functions': 7.18.9 '@babel/helper-optimise-call-expression': 7.18.6 - '@babel/traverse': 7.19.3 - '@babel/types': 7.19.3 + '@babel/traverse': 7.19.4 + '@babel/types': 7.19.4 transitivePeerDependencies: - supports-color dev: true - /@babel/helper-simple-access/7.18.6: - resolution: {integrity: sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==} + /@babel/helper-simple-access/7.19.4: + resolution: {integrity: sha512-f9Xq6WqBFqaDfbCzn2w85hwklswz5qsKlh7f08w4Y9yhJHpnNC0QemtSkK5YyOY8kPGvyiwdzZksGUhnGdaUIg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.19.3 + '@babel/types': 7.19.4 /@babel/helper-skip-transparent-expression-wrappers/7.18.9: resolution: {integrity: sha512-imytd2gHi3cJPsybLRbmFrF7u5BIEuI2cNheyKi3/iOBC63kNn3q8Crn2xVuESli0aM4KYsyEqKyS7lFL8YVtw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.19.3 + '@babel/types': 7.19.4 dev: true /@babel/helper-split-export-declaration/7.18.6: resolution: {integrity: sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.19.3 + '@babel/types': 7.19.4 - /@babel/helper-string-parser/7.18.10: - resolution: {integrity: sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw==} + /@babel/helper-string-parser/7.19.4: + resolution: {integrity: sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==} engines: {node: '>=6.9.0'} /@babel/helper-validator-identifier/7.19.1: @@ -2925,19 +2945,19 @@ packages: dependencies: '@babel/helper-function-name': 7.19.0 '@babel/template': 7.18.10 - '@babel/traverse': 7.19.3 - '@babel/types': 7.19.3 + '@babel/traverse': 7.19.4 + '@babel/types': 7.19.4 transitivePeerDependencies: - supports-color dev: true - /@babel/helpers/7.19.0: - resolution: {integrity: sha512-DRBCKGwIEdqY3+rPJgG/dKfQy9+08rHIAJx8q2p+HSWP87s2HCrQmaAMMyMll2kIXKCW0cO1RdQskx15Xakftg==} + /@babel/helpers/7.19.4: + resolution: {integrity: sha512-G+z3aOx2nfDHwX/kyVii5fJq+bgscg89/dJNWpYeKeBv3v9xX8EIabmx1k6u9LS04H7nROFVRVK+e3k0VHp+sw==} engines: {node: '>=6.9.0'} dependencies: '@babel/template': 7.18.10 - '@babel/traverse': 7.19.3 - '@babel/types': 7.19.3 + '@babel/traverse': 7.19.4 + '@babel/types': 7.19.4 transitivePeerDependencies: - supports-color @@ -2949,12 +2969,12 @@ packages: chalk: github.com/Methuselah96/chalk/7e66d0ff681fc10462ce327f1c4f82bfa13193e2 js-tokens: 4.0.0 - /@babel/parser/7.19.3: - resolution: {integrity: sha512-pJ9xOlNWHiy9+FuFP09DEAFbAn4JskgRsVcc169w2xRBC3FRGuQEwjeIMMND9L2zc0iEhO/tGv4Zq+km+hxNpQ==} + /@babel/parser/7.19.4: + resolution: {integrity: sha512-qpVT7gtuOLjWeDTKLkJ6sryqLliBaFpAtGeqw5cs5giLldvh+Ch0plqnUMKoVAUS6ZEueQQiZV+p5pxtPitEsA==} engines: {node: '>=6.0.0'} hasBin: true dependencies: - '@babel/types': 7.19.3 + '@babel/types': 7.19.4 /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.19.3: resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==} @@ -3119,18 +3139,18 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.10.4 + '@babel/helper-plugin-utils': 7.19.0 '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.12.9 '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.12.9 dev: true - /@babel/plugin-proposal-object-rest-spread/7.18.9_@babel+core@7.19.3: - resolution: {integrity: sha512-kDDHQ5rflIeY5xl69CEqGEZ0KY369ehsCIEbTGb4siHG5BE9sga/T0r0OUwyZNLMmZE79E1kbsqAjwFCW4ds6Q==} + /@babel/plugin-proposal-object-rest-spread/7.19.4_@babel+core@7.19.3: + resolution: {integrity: sha512-wHmj6LDxVDnL+3WhXteUBaoM1aVILZODAUjg11kHqG4cOlfgMQGxw6aCgvrXrmaJR3Bn14oZhImyCPZzRpC93Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.19.3 + '@babel/compat-data': 7.19.4 '@babel/core': 7.19.3 '@babel/helper-compilation-targets': 7.19.3_@babel+core@7.19.3 '@babel/helper-plugin-utils': 7.19.0 @@ -3458,8 +3478,8 @@ packages: '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-transform-block-scoping/7.18.9_@babel+core@7.19.3: - resolution: {integrity: sha512-5sDIJRV1KtQVEbt/EIBwGy4T01uYIo4KRB3VUqzkhrAIOGx7AoctL9+Ux88btY0zXdDyPJ9mW+bg+v+XEkGmtw==} + /@babel/plugin-transform-block-scoping/7.19.4_@babel+core@7.19.3: + resolution: {integrity: sha512-934S2VLLlt2hRJwPf4MczaOr4hYF0z+VKPwqTNxyKX7NthTiPfhuKFWQZHXRM0vh/wo/VyXB3s4bZUNA08l+tQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -3498,8 +3518,8 @@ packages: '@babel/helper-plugin-utils': 7.19.0 dev: true - /@babel/plugin-transform-destructuring/7.18.13_@babel+core@7.19.3: - resolution: {integrity: sha512-TodpQ29XekIsex2A+YJPj5ax2plkGa8YYY6mFjCohk/IG9IY42Rtuj1FuDeemfg2ipxIFLzPeA83SIBnlhSIow==} + /@babel/plugin-transform-destructuring/7.19.4_@babel+core@7.19.3: + resolution: {integrity: sha512-t0j0Hgidqf0aM86dF8U+vXYReUgJnlv4bZLsyoPnwZNrGY+7/38o8YjaELrvHeVfTZao15kjR0PVv0nju2iduA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -3616,7 +3636,7 @@ packages: '@babel/core': 7.19.3 '@babel/helper-module-transforms': 7.19.0 '@babel/helper-plugin-utils': 7.19.0 - '@babel/helper-simple-access': 7.18.6 + '@babel/helper-simple-access': 7.19.4 babel-plugin-dynamic-import-node: 2.3.3 transitivePeerDependencies: - supports-color @@ -3746,7 +3766,7 @@ packages: '@babel/helper-module-imports': 7.18.6 '@babel/helper-plugin-utils': 7.19.0 '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.19.3 - '@babel/types': 7.19.3 + '@babel/types': 7.19.4 dev: true /@babel/plugin-transform-react-pure-annotations/7.18.6_@babel+core@7.19.3: @@ -3889,16 +3909,16 @@ packages: deprecated: 🚨 This package has been deprecated in favor of separate inclusion of a polyfill and regenerator-runtime (when needed). See the @babel/polyfill docs (https://babeljs.io/docs/en/babel-polyfill) for more information. dependencies: core-js: 2.6.12 - regenerator-runtime: 0.13.9 + regenerator-runtime: 0.13.10 dev: false - /@babel/preset-env/7.19.3_@babel+core@7.19.3: - resolution: {integrity: sha512-ziye1OTc9dGFOAXSWKUqQblYHNlBOaDl8wzqf2iKXJAltYiR3hKHUKmkt+S9PppW7RQpq4fFCrwwpIDj/f5P4w==} + /@babel/preset-env/7.19.4_@babel+core@7.19.3: + resolution: {integrity: sha512-5QVOTXUdqTCjQuh2GGtdd7YEhoRXBMVGROAtsBeLGIbIz3obCBIfRMT1I3ZKkMgNzwkyCkftDXSSkHxnfVf4qg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.19.3 + '@babel/compat-data': 7.19.4 '@babel/core': 7.19.3 '@babel/helper-compilation-targets': 7.19.3_@babel+core@7.19.3 '@babel/helper-plugin-utils': 7.19.0 @@ -3914,7 +3934,7 @@ packages: '@babel/plugin-proposal-logical-assignment-operators': 7.18.9_@babel+core@7.19.3 '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.19.3 '@babel/plugin-proposal-numeric-separator': 7.18.6_@babel+core@7.19.3 - '@babel/plugin-proposal-object-rest-spread': 7.18.9_@babel+core@7.19.3 + '@babel/plugin-proposal-object-rest-spread': 7.19.4_@babel+core@7.19.3 '@babel/plugin-proposal-optional-catch-binding': 7.18.6_@babel+core@7.19.3 '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.19.3 '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.19.3 @@ -3938,10 +3958,10 @@ packages: '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.19.3 '@babel/plugin-transform-async-to-generator': 7.18.6_@babel+core@7.19.3 '@babel/plugin-transform-block-scoped-functions': 7.18.6_@babel+core@7.19.3 - '@babel/plugin-transform-block-scoping': 7.18.9_@babel+core@7.19.3 + '@babel/plugin-transform-block-scoping': 7.19.4_@babel+core@7.19.3 '@babel/plugin-transform-classes': 7.19.0_@babel+core@7.19.3 '@babel/plugin-transform-computed-properties': 7.18.9_@babel+core@7.19.3 - '@babel/plugin-transform-destructuring': 7.18.13_@babel+core@7.19.3 + '@babel/plugin-transform-destructuring': 7.19.4_@babel+core@7.19.3 '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.19.3 '@babel/plugin-transform-duplicate-keys': 7.18.9_@babel+core@7.19.3 '@babel/plugin-transform-exponentiation-operator': 7.18.6_@babel+core@7.19.3 @@ -3968,7 +3988,7 @@ packages: '@babel/plugin-transform-unicode-escapes': 7.18.10_@babel+core@7.19.3 '@babel/plugin-transform-unicode-regex': 7.18.6_@babel+core@7.19.3 '@babel/preset-modules': 0.1.5_@babel+core@7.19.3 - '@babel/types': 7.19.3 + '@babel/types': 7.19.4 babel-plugin-polyfill-corejs2: 0.3.3_@babel+core@7.19.3 babel-plugin-polyfill-corejs3: 0.6.0_@babel+core@7.19.3 babel-plugin-polyfill-regenerator: 0.4.1_@babel+core@7.19.3 @@ -3999,7 +4019,7 @@ packages: '@babel/helper-plugin-utils': 7.19.0 '@babel/plugin-proposal-unicode-property-regex': 7.18.6_@babel+core@7.19.3 '@babel/plugin-transform-dotall-regex': 7.18.6_@babel+core@7.19.3 - '@babel/types': 7.19.3 + '@babel/types': 7.19.4 esutils: 2.0.3 dev: true @@ -4046,67 +4066,67 @@ packages: source-map-support: 0.5.21 dev: true - /@babel/runtime-corejs3/7.19.1: - resolution: {integrity: sha512-j2vJGnkopRzH+ykJ8h68wrHnEUmtK//E723jjixiAl/PPf6FhqY/vYRcMVlNydRKQjQsTsYEjpx+DZMIvnGk/g==} + /@babel/runtime-corejs3/7.19.4: + resolution: {integrity: sha512-HzjQ8+dzdx7dmZy4DQ8KV8aHi/74AjEbBGTFutBmg/pd3dY5/q1sfuOGPTFGEytlQhWoeVXqcK5BwMgIkRkNDQ==} engines: {node: '>=6.9.0'} dependencies: core-js-pure: 3.25.5 - regenerator-runtime: 0.13.9 + regenerator-runtime: 0.13.10 dev: true - /@babel/runtime/7.19.0: - resolution: {integrity: sha512-eR8Lo9hnDS7tqkO7NsV+mKvCmv5boaXFSZ70DnfhcgiEne8hv9oCEd36Klw74EtizEqLsy4YnW8UWwpBVolHZA==} + /@babel/runtime/7.19.4: + resolution: {integrity: sha512-EXpLCrk55f+cYqmHsSR+yD/0gAIMxxA9QK9lnQWzhMCvt+YmoBN7Zx94s++Kv0+unHk39vxNO8t+CMA2WSS3wA==} engines: {node: '>=6.9.0'} dependencies: - regenerator-runtime: 0.13.9 + regenerator-runtime: 0.13.10 /@babel/template/7.18.10: resolution: {integrity: sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==} engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.18.6 - '@babel/parser': 7.19.3 - '@babel/types': 7.19.3 + '@babel/parser': 7.19.4 + '@babel/types': 7.19.4 - /@babel/traverse/7.19.3: - resolution: {integrity: sha512-qh5yf6149zhq2sgIXmwjnsvmnNQC2iw70UFjp4olxucKrWd/dvlUsBI88VSLUsnMNF7/vnOiA+nk1+yLoCqROQ==} + /@babel/traverse/7.19.4: + resolution: {integrity: sha512-w3K1i+V5u2aJUOXBFFC5pveFLmtq1s3qcdDNC2qRI6WPBQIDaKFqXxDEqDO/h1dQ3HjsZoZMyIy6jGLq0xtw+g==} engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.18.6 - '@babel/generator': 7.19.3 + '@babel/generator': 7.19.5 '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-function-name': 7.19.0 '@babel/helper-hoist-variables': 7.18.6 '@babel/helper-split-export-declaration': 7.18.6 - '@babel/parser': 7.19.3 - '@babel/types': 7.19.3 + '@babel/parser': 7.19.4 + '@babel/types': 7.19.4 debug: 4.3.4 globals: 11.12.0 transitivePeerDependencies: - supports-color - /@babel/traverse/7.19.3_supports-color@5.5.0: - resolution: {integrity: sha512-qh5yf6149zhq2sgIXmwjnsvmnNQC2iw70UFjp4olxucKrWd/dvlUsBI88VSLUsnMNF7/vnOiA+nk1+yLoCqROQ==} + /@babel/traverse/7.19.4_supports-color@5.5.0: + resolution: {integrity: sha512-w3K1i+V5u2aJUOXBFFC5pveFLmtq1s3qcdDNC2qRI6WPBQIDaKFqXxDEqDO/h1dQ3HjsZoZMyIy6jGLq0xtw+g==} engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.18.6 - '@babel/generator': 7.19.3 + '@babel/generator': 7.19.5 '@babel/helper-environment-visitor': 7.18.9 '@babel/helper-function-name': 7.19.0 '@babel/helper-hoist-variables': 7.18.6 '@babel/helper-split-export-declaration': 7.18.6 - '@babel/parser': 7.19.3 - '@babel/types': 7.19.3 + '@babel/parser': 7.19.4 + '@babel/types': 7.19.4 debug: 4.3.4_supports-color@5.5.0 globals: 11.12.0 transitivePeerDependencies: - supports-color - /@babel/types/7.19.3: - resolution: {integrity: sha512-hGCaQzIY22DJlDh9CH7NOxgKkFjBk0Cw9xDO1Xmh2151ti7wiGfQ3LauXzL4HP1fmFlTX6XjpRETTpUcv7wQLw==} + /@babel/types/7.19.4: + resolution: {integrity: sha512-M5LK7nAeS6+9j7hAq+b3fQs+pNfUtTGq+yFFfHnauFA8zQtLRfmuipmsKDKKLuyG+wC8ABW43A153YNawNTEtw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-string-parser': 7.18.10 + '@babel/helper-string-parser': 7.19.4 '@babel/helper-validator-identifier': 7.19.1 to-fast-properties: 2.0.0 @@ -4118,34 +4138,34 @@ packages: resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} dev: true - /@chakra-ui/accordion/2.1.1_yxtycg2t66eeo2pchgyrvsgrfm: - resolution: {integrity: sha512-5f4QBl/0EgU/9EVvzlj8ZU7SWwG6nUHCE9moGBCbgiIOVBEySxZ5Robsk6+T7sXmzQ41db04GcUE9NRKdalgIA==} + /@chakra-ui/accordion/2.1.2_p6srbiuyedikxn6f24tx2pmeqe: + resolution: {integrity: sha512-Jf7A6I0eIGk34zO5TiTW8orJOFQb5A/D1ekNYbaukNccoUPKJg/xdQ/b00oIR6LT93nJxggkoP/vszfmmTHuFg==} peerDependencies: '@chakra-ui/system': '>=2.0.0' framer-motion: '>=4.0.0' react: '>=18 || 18' dependencies: '@chakra-ui/descendant': 3.0.10_react@18.2.0 - '@chakra-ui/icon': 3.0.11_e25o37k4ko3jrmpkbvnp56dnfq + '@chakra-ui/icon': 3.0.11_e5d2utcogkjxxdp5h2rcoxuz2u '@chakra-ui/react-context': 2.0.4_react@18.2.0 '@chakra-ui/react-use-controllable-state': 2.0.5_react@18.2.0 '@chakra-ui/react-use-merge-refs': 2.0.4_react@18.2.0 - '@chakra-ui/system': 2.2.12_hfzxdiydbrbhhfpkwuv3jhvwmq - '@chakra-ui/transition': 2.0.10_3scsim3kjm5bnetripeelcaw6u - framer-motion: 7.5.3_biqbaboplfbrettd7655fr4n2y + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq + '@chakra-ui/transition': 2.0.11_fptlbzezisbmawh6uxpkk3xo6a + framer-motion: 7.6.1_biqbaboplfbrettd7655fr4n2y react: 18.2.0 dev: false - /@chakra-ui/alert/2.0.11_e25o37k4ko3jrmpkbvnp56dnfq: + /@chakra-ui/alert/2.0.11_e5d2utcogkjxxdp5h2rcoxuz2u: resolution: {integrity: sha512-n40KHU3j1H6EbIdgptjEad92V7Fpv7YD++ZBjy2g1h4w9ay9nw4kGHib3gaIkBupLf52CfLqySEc8w0taoIlXQ==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18 || 18' dependencies: - '@chakra-ui/icon': 3.0.11_e25o37k4ko3jrmpkbvnp56dnfq + '@chakra-ui/icon': 3.0.11_e5d2utcogkjxxdp5h2rcoxuz2u '@chakra-ui/react-context': 2.0.4_react@18.2.0 - '@chakra-ui/spinner': 2.0.10_e25o37k4ko3jrmpkbvnp56dnfq - '@chakra-ui/system': 2.2.12_hfzxdiydbrbhhfpkwuv3jhvwmq + '@chakra-ui/spinner': 2.0.10_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq react: 18.2.0 dev: false @@ -4153,28 +4173,28 @@ packages: resolution: {integrity: sha512-vzcB2gcsGCxhrKbldQQV6LnBPys4eSSsH2UA2mLsT+J3WlXw0aodZw0eE/nH7yLxe4zaQ4Gnc0KjkFW4EWNKSg==} dev: false - /@chakra-ui/avatar/2.1.1_e25o37k4ko3jrmpkbvnp56dnfq: - resolution: {integrity: sha512-lTZPUq4Pefxgv3ndyJMxIHgFrXwdz2VZFCLF/aKcuGaUlB7TBYaCurQ7TNbME8j8VkJWNX+vKiVHPYvxsrITwQ==} + /@chakra-ui/avatar/2.2.0_e5d2utcogkjxxdp5h2rcoxuz2u: + resolution: {integrity: sha512-mpAkfr/JG+BNBw2WvU55CSRFYKeFBUyAQAu3YulznLzi2U3e7k3IA0J8ofbrDYlSH/9KqkDuuSrxqGZgct+Nug==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18 || 18' dependencies: - '@chakra-ui/image': 2.0.11_e25o37k4ko3jrmpkbvnp56dnfq - '@chakra-ui/react-children-utils': 2.0.2 + '@chakra-ui/image': 2.0.11_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/react-children-utils': 2.0.3_react@18.2.0 '@chakra-ui/react-context': 2.0.4_react@18.2.0 - '@chakra-ui/system': 2.2.12_hfzxdiydbrbhhfpkwuv3jhvwmq + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq react: 18.2.0 dev: false - /@chakra-ui/breadcrumb/2.0.10_e25o37k4ko3jrmpkbvnp56dnfq: - resolution: {integrity: sha512-roKFA7nheq18eWNAdrHV6w8A9vZMSQTEEsbL6eU0lhUkolW9RlDjBl1bZvE7icFkNFXlJ33n8+0QAezLI+mMrQ==} + /@chakra-ui/breadcrumb/2.1.0_e5d2utcogkjxxdp5h2rcoxuz2u: + resolution: {integrity: sha512-khBR579SLDEo6Wuo3tETRY6m0yJD/WCvSR7Res2g1B6OJgc9OQGM7yIMu4OdLUTwfXsCnlHTDoSQPUxFOVAMIQ==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18 || 18' dependencies: - '@chakra-ui/react-children-utils': 2.0.2 + '@chakra-ui/react-children-utils': 2.0.3_react@18.2.0 '@chakra-ui/react-context': 2.0.4_react@18.2.0 - '@chakra-ui/system': 2.2.12_hfzxdiydbrbhhfpkwuv3jhvwmq + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq react: 18.2.0 dev: false @@ -4182,7 +4202,7 @@ packages: resolution: {integrity: sha512-SUUEYnA/FCIKYDHMuEXcnBMwet+6RAAjQ+CqGD1hlwKPTfh7EK9fS8FoVAJa9KpRKAc/AawzPkgwvorzPj8NSg==} dev: false - /@chakra-ui/button/2.0.11_e25o37k4ko3jrmpkbvnp56dnfq: + /@chakra-ui/button/2.0.11_e5d2utcogkjxxdp5h2rcoxuz2u: resolution: {integrity: sha512-J6iMRITqxTxa0JexHUY9c7BXUrTZtSkl3jZ2hxiFybB4MQL8J2wZ24O846B6M+WTYqy7XVuHRuVURnH4czWesw==} peerDependencies: '@chakra-ui/system': '>=2.0.0' @@ -4190,19 +4210,19 @@ packages: dependencies: '@chakra-ui/react-context': 2.0.4_react@18.2.0 '@chakra-ui/react-use-merge-refs': 2.0.4_react@18.2.0 - '@chakra-ui/spinner': 2.0.10_e25o37k4ko3jrmpkbvnp56dnfq - '@chakra-ui/system': 2.2.12_hfzxdiydbrbhhfpkwuv3jhvwmq + '@chakra-ui/spinner': 2.0.10_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq react: 18.2.0 dev: false - /@chakra-ui/checkbox/2.2.1_yxtycg2t66eeo2pchgyrvsgrfm: - resolution: {integrity: sha512-soTeXEI+4UZSA4B4rRLpdh3cIW/gdhY6k0eXF4ZWExPb+dJ5Giv497S96vS4IGE7SJ7Ugw9kaWS+do2lSiPJew==} + /@chakra-ui/checkbox/2.2.2_p6srbiuyedikxn6f24tx2pmeqe: + resolution: {integrity: sha512-Y6Zbkkk5VNoe0RzqU6F+rKlFVPlubz1KIgYcb7CCNHGOM97dLtRm78eAvJ+7Xmpitr+7zZ4hJLLjfAz+e1X7rA==} peerDependencies: '@chakra-ui/system': '>=2.0.0' framer-motion: '>=4.0.0' react: '>=18 || 18' dependencies: - '@chakra-ui/form-control': 2.0.11_e25o37k4ko3jrmpkbvnp56dnfq + '@chakra-ui/form-control': 2.0.11_e5d2utcogkjxxdp5h2rcoxuz2u '@chakra-ui/react-context': 2.0.4_react@18.2.0 '@chakra-ui/react-types': 2.0.3_react@18.2.0 '@chakra-ui/react-use-callback-ref': 2.0.4_react@18.2.0 @@ -4210,10 +4230,10 @@ packages: '@chakra-ui/react-use-merge-refs': 2.0.4_react@18.2.0 '@chakra-ui/react-use-safe-layout-effect': 2.0.2_react@18.2.0 '@chakra-ui/react-use-update-effect': 2.0.4_react@18.2.0 - '@chakra-ui/system': 2.2.12_hfzxdiydbrbhhfpkwuv3jhvwmq - '@chakra-ui/visually-hidden': 2.0.11_e25o37k4ko3jrmpkbvnp56dnfq + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq + '@chakra-ui/visually-hidden': 2.0.11_e5d2utcogkjxxdp5h2rcoxuz2u '@zag-js/focus-visible': 0.1.0 - framer-motion: 7.5.3_biqbaboplfbrettd7655fr4n2y + framer-motion: 7.6.1_biqbaboplfbrettd7655fr4n2y react: 18.2.0 dev: false @@ -4226,14 +4246,14 @@ packages: react: 18.2.0 dev: false - /@chakra-ui/close-button/2.0.11_e25o37k4ko3jrmpkbvnp56dnfq: + /@chakra-ui/close-button/2.0.11_e5d2utcogkjxxdp5h2rcoxuz2u: resolution: {integrity: sha512-9WF/nwwK9BldS89WQ5PtXK2nFS4r8QOgKls2BOwXfE+rGmOUZtOsu8ne/drXRjgkiBRETR6CxdyUjm7EPzXllw==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18 || 18' dependencies: - '@chakra-ui/icon': 3.0.11_e25o37k4ko3jrmpkbvnp56dnfq - '@chakra-ui/system': 2.2.12_hfzxdiydbrbhhfpkwuv3jhvwmq + '@chakra-ui/icon': 3.0.11_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq react: 18.2.0 dev: false @@ -4246,13 +4266,13 @@ packages: react: 18.2.0 dev: false - /@chakra-ui/control-box/2.0.10_e25o37k4ko3jrmpkbvnp56dnfq: + /@chakra-ui/control-box/2.0.10_e5d2utcogkjxxdp5h2rcoxuz2u: resolution: {integrity: sha512-sHmZanFLEv4IDATl19ZTxq8Bi8PtjfvnsN6xF4k7JGSYUnk1YXUf1coyW7WKdcsczOASrMikfsLc3iEVAzx4Ng==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18 || 18' dependencies: - '@chakra-ui/system': 2.2.12_hfzxdiydbrbhhfpkwuv3jhvwmq + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq react: 18.2.0 dev: false @@ -4290,8 +4310,8 @@ packages: resolution: {integrity: sha512-aeGlRmTxcv0cvW44DyeZHru1i68ZDQsXpfX2dnG1I1yBlT6GlVx1xYjCULis9mjhgvd2O3NfcYPRTkjNWTDUbA==} dev: false - /@chakra-ui/editable/2.0.12_e25o37k4ko3jrmpkbvnp56dnfq: - resolution: {integrity: sha512-37bDqm+j2JTN2XR443KRK9MmHHIQuS6fN+2TRuFgjfG8TomxxCJnhJ3GIfQSKh5Yjtnt4sXDmL4L0tyDpNrrrw==} + /@chakra-ui/editable/2.0.13_e5d2utcogkjxxdp5h2rcoxuz2u: + resolution: {integrity: sha512-GM3n8t3/TOFFcDOWF/tuKsnqn66isZLsU+FkMRY2o0E8XjLBGjCKuXInPW5SRBqhje7EHC+kwViLE780PfwXbw==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18 || 18' @@ -4305,7 +4325,7 @@ packages: '@chakra-ui/react-use-safe-layout-effect': 2.0.2_react@18.2.0 '@chakra-ui/react-use-update-effect': 2.0.4_react@18.2.0 '@chakra-ui/shared-utils': 2.0.2 - '@chakra-ui/system': 2.2.12_hfzxdiydbrbhhfpkwuv3jhvwmq + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq react: 18.2.0 dev: false @@ -4325,22 +4345,22 @@ packages: - '@types/react' dev: false - /@chakra-ui/form-control/2.0.11_e25o37k4ko3jrmpkbvnp56dnfq: + /@chakra-ui/form-control/2.0.11_e5d2utcogkjxxdp5h2rcoxuz2u: resolution: {integrity: sha512-MVhIe0xY4Zn06IXRXFmS9tCa93snppK1SdUQb1P99Ipo424RrL5ykzLnJ8CAkQrhoVP3sxF7z3eOSzk8/iRfow==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18 || 18' dependencies: - '@chakra-ui/icon': 3.0.11_e25o37k4ko3jrmpkbvnp56dnfq + '@chakra-ui/icon': 3.0.11_e5d2utcogkjxxdp5h2rcoxuz2u '@chakra-ui/react-context': 2.0.4_react@18.2.0 '@chakra-ui/react-types': 2.0.3_react@18.2.0 '@chakra-ui/react-use-merge-refs': 2.0.4_react@18.2.0 - '@chakra-ui/system': 2.2.12_hfzxdiydbrbhhfpkwuv3jhvwmq + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq react: 18.2.0 dev: false - /@chakra-ui/hooks/2.0.11_react@18.2.0: - resolution: {integrity: sha512-mYN4u9lbjDjEr/VucrVcLGg/sIO6gA9ZprcT3n9CBGSWt3xih7fCOJmE+yRcCNbL7335AMrv7a/M5Q30aRArcA==} + /@chakra-ui/hooks/2.1.0_react@18.2.0: + resolution: {integrity: sha512-4H6BDITq/YrStW99LXurgPkcz4qHSVy9V/QWXCvt1pCuiDTqNztiW4r508H3ApAOsL9NEbyXcM/zWYD7r5VDjA==} peerDependencies: react: '>=18 || 18' dependencies: @@ -4351,56 +4371,56 @@ packages: react: 18.2.0 dev: false - /@chakra-ui/icon/3.0.11_e25o37k4ko3jrmpkbvnp56dnfq: + /@chakra-ui/icon/3.0.11_e5d2utcogkjxxdp5h2rcoxuz2u: resolution: {integrity: sha512-RG4jf/XmBdaxOYI5J5QstEtTCPoVlmrQ/XiWhvN0LTgAnmZIqVwFl3Uw+satArdStHAs0GmJZg/E/soFTWuFmw==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18 || 18' dependencies: '@chakra-ui/shared-utils': 2.0.2 - '@chakra-ui/system': 2.2.12_hfzxdiydbrbhhfpkwuv3jhvwmq + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq react: 18.2.0 dev: false - /@chakra-ui/image/2.0.11_e25o37k4ko3jrmpkbvnp56dnfq: + /@chakra-ui/image/2.0.11_e5d2utcogkjxxdp5h2rcoxuz2u: resolution: {integrity: sha512-S6NqAprPcbHnck/J+2wg06r9SSol62v5A01O8Kke2PnAyjalMcS+6P59lDRO7wvPqsdxq4PPbSTZP6Dww2CvcA==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18 || 18' dependencies: '@chakra-ui/react-use-safe-layout-effect': 2.0.2_react@18.2.0 - '@chakra-ui/system': 2.2.12_hfzxdiydbrbhhfpkwuv3jhvwmq + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq react: 18.2.0 dev: false - /@chakra-ui/input/2.0.11_e25o37k4ko3jrmpkbvnp56dnfq: - resolution: {integrity: sha512-kaV0VCz6/yzoCKQnh/tMUVgh+Rp6EnM+WzJ37SVX1gDvErON2bmmVLU45BiRoWUcd50wOhDlpsNVUWP0sLlCDA==} + /@chakra-ui/input/2.0.12_e5d2utcogkjxxdp5h2rcoxuz2u: + resolution: {integrity: sha512-lJ5necu+Wt698HdCTC7L/ErA2nNVJAra7+knPe0qMR+AizGEL7LKCV/bdQe7eggjvKsDGD4alJIEczUvm3JVUQ==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18 || 18' dependencies: - '@chakra-ui/form-control': 2.0.11_e25o37k4ko3jrmpkbvnp56dnfq + '@chakra-ui/form-control': 2.0.11_e5d2utcogkjxxdp5h2rcoxuz2u '@chakra-ui/object-utils': 2.0.4 - '@chakra-ui/react-children-utils': 2.0.2 + '@chakra-ui/react-children-utils': 2.0.3_react@18.2.0 '@chakra-ui/react-context': 2.0.4_react@18.2.0 '@chakra-ui/shared-utils': 2.0.2 - '@chakra-ui/system': 2.2.12_hfzxdiydbrbhhfpkwuv3jhvwmq + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq react: 18.2.0 dev: false - /@chakra-ui/layout/2.1.8_e25o37k4ko3jrmpkbvnp56dnfq: - resolution: {integrity: sha512-pcNUNgMh+e4wepNOlCg5iDrxGg4VFBpqZPmSHoP4TyPN2ddEnDRLoMLaREMoX7gEVyTsqEFOFg+wa3JZK32H4A==} + /@chakra-ui/layout/2.1.9_e5d2utcogkjxxdp5h2rcoxuz2u: + resolution: {integrity: sha512-ztsavtirtdtjxdqIkGR6fVcrffHp6hs1twRFO/dK14FGXrX3Nn9mi3J1fr1ITBHJq6y5B3yFEj0LHN2fO8dYyw==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18 || 18' dependencies: '@chakra-ui/breakpoint-utils': 2.0.4 - '@chakra-ui/icon': 3.0.11_e25o37k4ko3jrmpkbvnp56dnfq + '@chakra-ui/icon': 3.0.11_e5d2utcogkjxxdp5h2rcoxuz2u '@chakra-ui/object-utils': 2.0.4 - '@chakra-ui/react-children-utils': 2.0.2 + '@chakra-ui/react-children-utils': 2.0.3_react@18.2.0 '@chakra-ui/react-context': 2.0.4_react@18.2.0 '@chakra-ui/shared-utils': 2.0.2 - '@chakra-ui/system': 2.2.12_hfzxdiydbrbhhfpkwuv3jhvwmq + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq react: 18.2.0 dev: false @@ -4416,7 +4436,7 @@ packages: react: 18.2.0 dev: false - /@chakra-ui/media-query/3.2.7_e25o37k4ko3jrmpkbvnp56dnfq: + /@chakra-ui/media-query/3.2.7_e5d2utcogkjxxdp5h2rcoxuz2u: resolution: {integrity: sha512-hbgm6JCe0kYU3PAhxASYYDopFQI26cW9kZnbp+5tRL1fykkVWNMPwoGC8FEZPur9JjXp7aoL6H4Jk7nrxY/XWw==} peerDependencies: '@chakra-ui/system': '>=2.0.0' @@ -4424,12 +4444,12 @@ packages: dependencies: '@chakra-ui/breakpoint-utils': 2.0.4 '@chakra-ui/react-env': 2.0.10_react@18.2.0 - '@chakra-ui/system': 2.2.12_hfzxdiydbrbhhfpkwuv3jhvwmq + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq react: 18.2.0 dev: false - /@chakra-ui/menu/2.1.1_yxtycg2t66eeo2pchgyrvsgrfm: - resolution: {integrity: sha512-9fpCyV3vufLV5Rvv/oYC3LyCIkNqh0bEdYFVOLiqCZ6mt6NLFxL2jgE25nROYfDXQuBkY0qPC9IopYU198G4nw==} + /@chakra-ui/menu/2.1.2_p6srbiuyedikxn6f24tx2pmeqe: + resolution: {integrity: sha512-6Z7ecXjp6BtZ1ExbFggfxsAj1hwtcathXekmCTxHpXOD+BdjAC/13+oLclwXeuBO85aoTmQrQ2ovfTkO31bzRQ==} peerDependencies: '@chakra-ui/system': '>=2.0.0' framer-motion: '>=4.0.0' @@ -4439,7 +4459,7 @@ packages: '@chakra-ui/descendant': 3.0.10_react@18.2.0 '@chakra-ui/lazy-utils': 2.0.2 '@chakra-ui/popper': 3.0.8_react@18.2.0 - '@chakra-ui/react-children-utils': 2.0.2 + '@chakra-ui/react-children-utils': 2.0.3_react@18.2.0 '@chakra-ui/react-context': 2.0.4_react@18.2.0 '@chakra-ui/react-use-animation-state': 2.0.5_react@18.2.0 '@chakra-ui/react-use-controllable-state': 2.0.5_react@18.2.0 @@ -4448,30 +4468,30 @@ packages: '@chakra-ui/react-use-merge-refs': 2.0.4_react@18.2.0 '@chakra-ui/react-use-outside-click': 2.0.4_react@18.2.0 '@chakra-ui/react-use-update-effect': 2.0.4_react@18.2.0 - '@chakra-ui/system': 2.2.12_hfzxdiydbrbhhfpkwuv3jhvwmq - '@chakra-ui/transition': 2.0.10_3scsim3kjm5bnetripeelcaw6u - framer-motion: 7.5.3_biqbaboplfbrettd7655fr4n2y + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq + '@chakra-ui/transition': 2.0.11_fptlbzezisbmawh6uxpkk3xo6a + framer-motion: 7.6.1_biqbaboplfbrettd7655fr4n2y react: 18.2.0 dev: false - /@chakra-ui/modal/2.2.1_fhvivh6d3co4nbcuohiwtac254: - resolution: {integrity: sha512-+zfiUG/yZqUQ0wY7syoZg01cpBf54lbKUe7+ANEx558UQGbsI4bbcHSkY9l5lsprQ8teInvhjb6BekeCA0e7TA==} + /@chakra-ui/modal/2.2.2_atjqpbku7q7yrg5rd36sdz5ug4: + resolution: {integrity: sha512-cCYuqLZO4QqFUI1H+uEqixDk6UiCP3yC+sxkhFTXHIApSG9Z44v5np7BVTd6LKdmAN8pAWcc8Oxf14RvD6LWLw==} peerDependencies: '@chakra-ui/system': '>=2.0.0' framer-motion: '>=4.0.0' react: '>=18 || 18' react-dom: '>=18 || 18' dependencies: - '@chakra-ui/close-button': 2.0.11_e25o37k4ko3jrmpkbvnp56dnfq + '@chakra-ui/close-button': 2.0.11_e5d2utcogkjxxdp5h2rcoxuz2u '@chakra-ui/focus-lock': 2.0.12_iapumuv4e6jcjznwuxpf4tt22e '@chakra-ui/portal': 2.0.10_biqbaboplfbrettd7655fr4n2y '@chakra-ui/react-context': 2.0.4_react@18.2.0 '@chakra-ui/react-types': 2.0.3_react@18.2.0 '@chakra-ui/react-use-merge-refs': 2.0.4_react@18.2.0 - '@chakra-ui/system': 2.2.12_hfzxdiydbrbhhfpkwuv3jhvwmq - '@chakra-ui/transition': 2.0.10_3scsim3kjm5bnetripeelcaw6u + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq + '@chakra-ui/transition': 2.0.11_fptlbzezisbmawh6uxpkk3xo6a aria-hidden: 1.2.1_iapumuv4e6jcjznwuxpf4tt22e - framer-motion: 7.5.3_biqbaboplfbrettd7655fr4n2y + framer-motion: 7.6.1_biqbaboplfbrettd7655fr4n2y react: 18.2.0 react-dom: 18.2.0_react@18.2.0 react-remove-scroll: 2.5.5_iapumuv4e6jcjznwuxpf4tt22e @@ -4479,15 +4499,15 @@ packages: - '@types/react' dev: false - /@chakra-ui/number-input/2.0.12_e25o37k4ko3jrmpkbvnp56dnfq: + /@chakra-ui/number-input/2.0.12_e5d2utcogkjxxdp5h2rcoxuz2u: resolution: {integrity: sha512-3owLjl01sCYpTd3xbq//fJo9QJ0Q3PVYSx9JeOzlXnnTW8ws+yHPrqQzPe7G+tO4yOYynWuUT+NJ9oyCeAJIxA==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18 || 18' dependencies: '@chakra-ui/counter': 2.0.10_react@18.2.0 - '@chakra-ui/form-control': 2.0.11_e25o37k4ko3jrmpkbvnp56dnfq - '@chakra-ui/icon': 3.0.11_e25o37k4ko3jrmpkbvnp56dnfq + '@chakra-ui/form-control': 2.0.11_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/icon': 3.0.11_e5d2utcogkjxxdp5h2rcoxuz2u '@chakra-ui/react-context': 2.0.4_react@18.2.0 '@chakra-ui/react-types': 2.0.3_react@18.2.0 '@chakra-ui/react-use-callback-ref': 2.0.4_react@18.2.0 @@ -4496,7 +4516,7 @@ packages: '@chakra-ui/react-use-merge-refs': 2.0.4_react@18.2.0 '@chakra-ui/react-use-safe-layout-effect': 2.0.2_react@18.2.0 '@chakra-ui/react-use-update-effect': 2.0.4_react@18.2.0 - '@chakra-ui/system': 2.2.12_hfzxdiydbrbhhfpkwuv3jhvwmq + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq react: 18.2.0 dev: false @@ -4508,29 +4528,29 @@ packages: resolution: {integrity: sha512-sY98L4v2wcjpwRX8GCXqT+WzpL0i5FHVxT1Okxw0360T2tGnZt7toAwpMfIOR3dzkemP9LfXMCyBmWR5Hi2zpQ==} dev: false - /@chakra-ui/pin-input/2.0.14_e25o37k4ko3jrmpkbvnp56dnfq: - resolution: {integrity: sha512-gFNlTUjU1xIuOErR/d/HrNNh1mS0erjNJSt5C6RU/My4lShzgCczmwnil7TuEx3k7lPqHKLEf/CGeCxBSUjaGA==} + /@chakra-ui/pin-input/2.0.15_e5d2utcogkjxxdp5h2rcoxuz2u: + resolution: {integrity: sha512-Ha8siSZm9gyjHHBK8ejwhKT6+75U12I/hNiYFvl2JHhc+Uh8tdi7+N+9SILO5vqbIv9kb+WGitvZ67I0cHjSfw==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18 || 18' dependencies: '@chakra-ui/descendant': 3.0.10_react@18.2.0 - '@chakra-ui/react-children-utils': 2.0.2 + '@chakra-ui/react-children-utils': 2.0.3_react@18.2.0 '@chakra-ui/react-context': 2.0.4_react@18.2.0 '@chakra-ui/react-use-controllable-state': 2.0.5_react@18.2.0 '@chakra-ui/react-use-merge-refs': 2.0.4_react@18.2.0 - '@chakra-ui/system': 2.2.12_hfzxdiydbrbhhfpkwuv3jhvwmq + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq react: 18.2.0 dev: false - /@chakra-ui/popover/2.1.1_yxtycg2t66eeo2pchgyrvsgrfm: + /@chakra-ui/popover/2.1.1_p6srbiuyedikxn6f24tx2pmeqe: resolution: {integrity: sha512-j09NsesfT+eaYITkITYJXDlRcPoOeQUM80neJZKOBgul2iHkVsEoii8dwS5Ip5ONeu4ane1b6zEOlYvYj2SrkA==} peerDependencies: '@chakra-ui/system': '>=2.0.0' framer-motion: '>=4.0.0' react: '>=18 || 18' dependencies: - '@chakra-ui/close-button': 2.0.11_e25o37k4ko3jrmpkbvnp56dnfq + '@chakra-ui/close-button': 2.0.11_e5d2utcogkjxxdp5h2rcoxuz2u '@chakra-ui/lazy-utils': 2.0.2 '@chakra-ui/popper': 3.0.8_react@18.2.0 '@chakra-ui/react-context': 2.0.4_react@18.2.0 @@ -4540,8 +4560,8 @@ packages: '@chakra-ui/react-use-focus-effect': 2.0.5_react@18.2.0 '@chakra-ui/react-use-focus-on-pointer-down': 2.0.3_react@18.2.0 '@chakra-ui/react-use-merge-refs': 2.0.4_react@18.2.0 - '@chakra-ui/system': 2.2.12_hfzxdiydbrbhhfpkwuv3jhvwmq - framer-motion: 7.5.3_biqbaboplfbrettd7655fr4n2y + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq + framer-motion: 7.6.1_biqbaboplfbrettd7655fr4n2y react: 18.2.0 dev: false @@ -4568,19 +4588,19 @@ packages: react-dom: 18.2.0_react@18.2.0 dev: false - /@chakra-ui/progress/2.0.11_e25o37k4ko3jrmpkbvnp56dnfq: - resolution: {integrity: sha512-2OwxGxI6W757QpDB6b++B4b2+t0oBgaQdHnd4/y35n3+mOFj++Wg7XpW4/iDHn+x3LkM+X3NIgdBWQFlmGx+6w==} + /@chakra-ui/progress/2.0.12_e5d2utcogkjxxdp5h2rcoxuz2u: + resolution: {integrity: sha512-9qtZimZosTliI7siAZkLeCVdCpXCTxmSETCudHcCUsC+FtcFacmA65+We8qij1nOIqmsbm+NYU6PP89TU2n4Hg==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18 || 18' dependencies: '@chakra-ui/react-context': 2.0.4_react@18.2.0 - '@chakra-ui/system': 2.2.12_hfzxdiydbrbhhfpkwuv3jhvwmq + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq react: 18.2.0 dev: false - /@chakra-ui/provider/2.0.19_6xnkn2aqnlmdvuspwqrjexfduy: - resolution: {integrity: sha512-V+p0OePre0OgYmNxLbfiPWWbzaJ/EM2sfaRtD7E6ZA4TjUl2m4pWdC6OPMOiklu7EALfSgVk9X6Jh5pc+moH1g==} + /@chakra-ui/provider/2.0.20_6xnkn2aqnlmdvuspwqrjexfduy: + resolution: {integrity: sha512-mNNfsgm05G4x1VzvHVR9+PNEiuxNnn9xUKDuEwoaO7+IHCMzCRMtPbSJjwmv0xvHUGB9+JChjPpZI5RuHQziJQ==} peerDependencies: '@emotion/react': ^11.0.0 '@emotion/styled': ^11.0.0 @@ -4590,7 +4610,7 @@ packages: '@chakra-ui/css-reset': 2.0.8_gyryel6m34lsxtsejhafetjriq '@chakra-ui/portal': 2.0.10_biqbaboplfbrettd7655fr4n2y '@chakra-ui/react-env': 2.0.10_react@18.2.0 - '@chakra-ui/system': 2.2.12_hfzxdiydbrbhhfpkwuv3jhvwmq + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq '@chakra-ui/utils': 2.0.11 '@emotion/react': 11.10.4_bjroym7kxlcs2vvwnej4p3gzwu '@emotion/styled': 11.10.4_ogudqqhlstsi7uge4lir7ff3ty @@ -4598,23 +4618,27 @@ packages: react-dom: 18.2.0_react@18.2.0 dev: false - /@chakra-ui/radio/2.0.12_e25o37k4ko3jrmpkbvnp56dnfq: + /@chakra-ui/radio/2.0.12_e5d2utcogkjxxdp5h2rcoxuz2u: resolution: {integrity: sha512-871hqAGQaufxyUzPP3aautPBIRZQmpi3fw5XPZ6SbY62dV61M4sjcttd46HfCf5SrAonoOADFQLMGQafznjhaA==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18 || 18' dependencies: - '@chakra-ui/form-control': 2.0.11_e25o37k4ko3jrmpkbvnp56dnfq + '@chakra-ui/form-control': 2.0.11_e5d2utcogkjxxdp5h2rcoxuz2u '@chakra-ui/react-context': 2.0.4_react@18.2.0 '@chakra-ui/react-types': 2.0.3_react@18.2.0 '@chakra-ui/react-use-merge-refs': 2.0.4_react@18.2.0 - '@chakra-ui/system': 2.2.12_hfzxdiydbrbhhfpkwuv3jhvwmq + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq '@zag-js/focus-visible': 0.1.0 react: 18.2.0 dev: false - /@chakra-ui/react-children-utils/2.0.2: - resolution: {integrity: sha512-mRTGAZ3DBXB3hgVwS2DVJe3Nlc0qGvMN0PAo4tD/3fj2op2IwspLcYPAWC5D/rI2xj2JlwE6szAtbvxdAfLCNw==} + /@chakra-ui/react-children-utils/2.0.3_react@18.2.0: + resolution: {integrity: sha512-tPQjLEEuAw/DYLRw0cNs/g8tcdhZ3r21Sr9dTAzoyvfk0vbZ24gCXRElltW2GZLiFA63mAidzhPmc+yQF3Wtgg==} + peerDependencies: + react: '>=18 || 18' + dependencies: + react: 18.2.0 dev: false /@chakra-ui/react-context/2.0.4_react@18.2.0: @@ -4802,8 +4826,8 @@ packages: react: 18.2.0 dev: false - /@chakra-ui/react/2.3.5_356kgaleomk4jdithf3bcp4v5i: - resolution: {integrity: sha512-bQDRV23M3IvF0+AorTvqJmG/4T6KKQIb+1XGA2RyxonoSHVt89HbN3qnygHJw06Sdgpclxdbr/1qZ4o8+SMbpA==} + /@chakra-ui/react/2.3.6_4a5gkdj7phvhqinmegnu2kpw7m: + resolution: {integrity: sha512-xo43UU+yMqRGHZLU4fSgzojeRl5stlIfT+GLbT9CUVEm0HMJCt2m8RsNPBvGOMzANdC+bzwSiOm+MNzQBi9IBQ==} peerDependencies: '@emotion/react': ^11.0.0 '@emotion/styled': ^11.0.0 @@ -4811,71 +4835,72 @@ packages: react: '>=18 || 18' react-dom: '>=18 || 18' dependencies: - '@chakra-ui/accordion': 2.1.1_yxtycg2t66eeo2pchgyrvsgrfm - '@chakra-ui/alert': 2.0.11_e25o37k4ko3jrmpkbvnp56dnfq - '@chakra-ui/avatar': 2.1.1_e25o37k4ko3jrmpkbvnp56dnfq - '@chakra-ui/breadcrumb': 2.0.10_e25o37k4ko3jrmpkbvnp56dnfq - '@chakra-ui/button': 2.0.11_e25o37k4ko3jrmpkbvnp56dnfq - '@chakra-ui/checkbox': 2.2.1_yxtycg2t66eeo2pchgyrvsgrfm - '@chakra-ui/close-button': 2.0.11_e25o37k4ko3jrmpkbvnp56dnfq - '@chakra-ui/control-box': 2.0.10_e25o37k4ko3jrmpkbvnp56dnfq + '@chakra-ui/accordion': 2.1.2_p6srbiuyedikxn6f24tx2pmeqe + '@chakra-ui/alert': 2.0.11_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/avatar': 2.2.0_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/breadcrumb': 2.1.0_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/button': 2.0.11_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/checkbox': 2.2.2_p6srbiuyedikxn6f24tx2pmeqe + '@chakra-ui/close-button': 2.0.11_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/control-box': 2.0.10_e5d2utcogkjxxdp5h2rcoxuz2u '@chakra-ui/counter': 2.0.10_react@18.2.0 '@chakra-ui/css-reset': 2.0.8_gyryel6m34lsxtsejhafetjriq - '@chakra-ui/editable': 2.0.12_e25o37k4ko3jrmpkbvnp56dnfq - '@chakra-ui/form-control': 2.0.11_e25o37k4ko3jrmpkbvnp56dnfq - '@chakra-ui/hooks': 2.0.11_react@18.2.0 - '@chakra-ui/icon': 3.0.11_e25o37k4ko3jrmpkbvnp56dnfq - '@chakra-ui/image': 2.0.11_e25o37k4ko3jrmpkbvnp56dnfq - '@chakra-ui/input': 2.0.11_e25o37k4ko3jrmpkbvnp56dnfq - '@chakra-ui/layout': 2.1.8_e25o37k4ko3jrmpkbvnp56dnfq + '@chakra-ui/editable': 2.0.13_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/form-control': 2.0.11_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/hooks': 2.1.0_react@18.2.0 + '@chakra-ui/icon': 3.0.11_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/image': 2.0.11_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/input': 2.0.12_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/layout': 2.1.9_e5d2utcogkjxxdp5h2rcoxuz2u '@chakra-ui/live-region': 2.0.10_react@18.2.0 - '@chakra-ui/media-query': 3.2.7_e25o37k4ko3jrmpkbvnp56dnfq - '@chakra-ui/menu': 2.1.1_yxtycg2t66eeo2pchgyrvsgrfm - '@chakra-ui/modal': 2.2.1_fhvivh6d3co4nbcuohiwtac254 - '@chakra-ui/number-input': 2.0.12_e25o37k4ko3jrmpkbvnp56dnfq - '@chakra-ui/pin-input': 2.0.14_e25o37k4ko3jrmpkbvnp56dnfq - '@chakra-ui/popover': 2.1.1_yxtycg2t66eeo2pchgyrvsgrfm + '@chakra-ui/media-query': 3.2.7_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/menu': 2.1.2_p6srbiuyedikxn6f24tx2pmeqe + '@chakra-ui/modal': 2.2.2_atjqpbku7q7yrg5rd36sdz5ug4 + '@chakra-ui/number-input': 2.0.12_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/pin-input': 2.0.15_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/popover': 2.1.1_p6srbiuyedikxn6f24tx2pmeqe '@chakra-ui/popper': 3.0.8_react@18.2.0 '@chakra-ui/portal': 2.0.10_biqbaboplfbrettd7655fr4n2y - '@chakra-ui/progress': 2.0.11_e25o37k4ko3jrmpkbvnp56dnfq - '@chakra-ui/provider': 2.0.19_6xnkn2aqnlmdvuspwqrjexfduy - '@chakra-ui/radio': 2.0.12_e25o37k4ko3jrmpkbvnp56dnfq + '@chakra-ui/progress': 2.0.12_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/provider': 2.0.20_6xnkn2aqnlmdvuspwqrjexfduy + '@chakra-ui/radio': 2.0.12_e5d2utcogkjxxdp5h2rcoxuz2u '@chakra-ui/react-env': 2.0.10_react@18.2.0 - '@chakra-ui/select': 2.0.12_e25o37k4ko3jrmpkbvnp56dnfq - '@chakra-ui/skeleton': 2.0.17_e25o37k4ko3jrmpkbvnp56dnfq - '@chakra-ui/slider': 2.0.12_e25o37k4ko3jrmpkbvnp56dnfq - '@chakra-ui/spinner': 2.0.10_e25o37k4ko3jrmpkbvnp56dnfq - '@chakra-ui/stat': 2.0.11_e25o37k4ko3jrmpkbvnp56dnfq + '@chakra-ui/select': 2.0.12_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/skeleton': 2.0.17_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/slider': 2.0.12_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/spinner': 2.0.10_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/stat': 2.0.11_e5d2utcogkjxxdp5h2rcoxuz2u '@chakra-ui/styled-system': 2.3.4 - '@chakra-ui/switch': 2.0.13_yxtycg2t66eeo2pchgyrvsgrfm - '@chakra-ui/system': 2.2.12_hfzxdiydbrbhhfpkwuv3jhvwmq - '@chakra-ui/table': 2.0.11_e25o37k4ko3jrmpkbvnp56dnfq - '@chakra-ui/tabs': 2.1.3_e25o37k4ko3jrmpkbvnp56dnfq - '@chakra-ui/tag': 2.0.11_e25o37k4ko3jrmpkbvnp56dnfq - '@chakra-ui/textarea': 2.0.12_e25o37k4ko3jrmpkbvnp56dnfq - '@chakra-ui/theme': 2.1.13_kzevwk2hxgy6fnrjqv25jdmqp4 - '@chakra-ui/toast': 3.0.13_svvprik4kmnbjwafrq4cgb4wou - '@chakra-ui/tooltip': 2.2.0_svvprik4kmnbjwafrq4cgb4wou - '@chakra-ui/transition': 2.0.10_3scsim3kjm5bnetripeelcaw6u + '@chakra-ui/switch': 2.0.14_p6srbiuyedikxn6f24tx2pmeqe + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq + '@chakra-ui/table': 2.0.11_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/tabs': 2.1.4_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/tag': 2.0.11_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/textarea': 2.0.12_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/theme': 2.1.14_kzevwk2hxgy6fnrjqv25jdmqp4 + '@chakra-ui/theme-utils': 2.0.1 + '@chakra-ui/toast': 4.0.0_nx5unifb7niehzuoy5sk3t3nim + '@chakra-ui/tooltip': 2.2.0_nx5unifb7niehzuoy5sk3t3nim + '@chakra-ui/transition': 2.0.11_fptlbzezisbmawh6uxpkk3xo6a '@chakra-ui/utils': 2.0.11 - '@chakra-ui/visually-hidden': 2.0.11_e25o37k4ko3jrmpkbvnp56dnfq + '@chakra-ui/visually-hidden': 2.0.11_e5d2utcogkjxxdp5h2rcoxuz2u '@emotion/react': 11.10.4_bjroym7kxlcs2vvwnej4p3gzwu '@emotion/styled': 11.10.4_ogudqqhlstsi7uge4lir7ff3ty - framer-motion: 7.5.3_biqbaboplfbrettd7655fr4n2y + framer-motion: 7.6.1_biqbaboplfbrettd7655fr4n2y react: 18.2.0 react-dom: 18.2.0_react@18.2.0 transitivePeerDependencies: - '@types/react' dev: false - /@chakra-ui/select/2.0.12_e25o37k4ko3jrmpkbvnp56dnfq: + /@chakra-ui/select/2.0.12_e5d2utcogkjxxdp5h2rcoxuz2u: resolution: {integrity: sha512-NCDMb0w48GYCHmazVSQ7/ysEpbnri+Up6n+v7yytf6g43TPRkikvK5CsVgLnAEj0lIdCJhWXTcZer5wG5KOEgA==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18 || 18' dependencies: - '@chakra-ui/form-control': 2.0.11_e25o37k4ko3jrmpkbvnp56dnfq - '@chakra-ui/system': 2.2.12_hfzxdiydbrbhhfpkwuv3jhvwmq + '@chakra-ui/form-control': 2.0.11_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq react: 18.2.0 dev: false @@ -4883,19 +4908,19 @@ packages: resolution: {integrity: sha512-wC58Fh6wCnFFQyiebVZ0NI7PFW9+Vch0QE6qN7iR+bLseOzQY9miYuzPJ1kMYiFd6QTOmPJkI39M3wHqrPYiOg==} dev: false - /@chakra-ui/skeleton/2.0.17_e25o37k4ko3jrmpkbvnp56dnfq: + /@chakra-ui/skeleton/2.0.17_e5d2utcogkjxxdp5h2rcoxuz2u: resolution: {integrity: sha512-dL7viXEKDEzmAJGbHMj+QbGl9PAd0VWztEcWcz5wOGfmAcJllA0lVh6NmG/yqLb6iXPCX4Y1Y0Yurm459TEYWg==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18 || 18' dependencies: - '@chakra-ui/media-query': 3.2.7_e25o37k4ko3jrmpkbvnp56dnfq + '@chakra-ui/media-query': 3.2.7_e5d2utcogkjxxdp5h2rcoxuz2u '@chakra-ui/react-use-previous': 2.0.2_react@18.2.0 - '@chakra-ui/system': 2.2.12_hfzxdiydbrbhhfpkwuv3jhvwmq + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq react: 18.2.0 dev: false - /@chakra-ui/slider/2.0.12_e25o37k4ko3jrmpkbvnp56dnfq: + /@chakra-ui/slider/2.0.12_e5d2utcogkjxxdp5h2rcoxuz2u: resolution: {integrity: sha512-Cna04J7e4+F3tJNb7tRNfPP+koicbDsKJBp+f1NpR32JbRzIfrf2Vdr4hfD5/uOfC4RGxnVInNZzZLGBelLtLw==} peerDependencies: '@chakra-ui/system': '>=2.0.0' @@ -4911,29 +4936,29 @@ packages: '@chakra-ui/react-use-pan-event': 2.0.5_react@18.2.0 '@chakra-ui/react-use-size': 2.0.4_react@18.2.0 '@chakra-ui/react-use-update-effect': 2.0.4_react@18.2.0 - '@chakra-ui/system': 2.2.12_hfzxdiydbrbhhfpkwuv3jhvwmq + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq react: 18.2.0 dev: false - /@chakra-ui/spinner/2.0.10_e25o37k4ko3jrmpkbvnp56dnfq: + /@chakra-ui/spinner/2.0.10_e5d2utcogkjxxdp5h2rcoxuz2u: resolution: {integrity: sha512-SwId1xPaaFAaEYrR9eHkQHAuB66CbxwjWaQonEjeEUSh9ecxkd5WbXlsQSyf2hVRIqXJg0m3HIYblcKUsQt9Rw==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18 || 18' dependencies: - '@chakra-ui/system': 2.2.12_hfzxdiydbrbhhfpkwuv3jhvwmq + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq react: 18.2.0 dev: false - /@chakra-ui/stat/2.0.11_e25o37k4ko3jrmpkbvnp56dnfq: + /@chakra-ui/stat/2.0.11_e5d2utcogkjxxdp5h2rcoxuz2u: resolution: {integrity: sha512-ZPFK2fKufDSHD8bp/KhO3jLgW/b3PzdG4zV+7iTO7OYjxm5pkBfBAeMqfXGx4cl51rtWUKzsY0HV4vLLjcSjHw==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18 || 18' dependencies: - '@chakra-ui/icon': 3.0.11_e25o37k4ko3jrmpkbvnp56dnfq + '@chakra-ui/icon': 3.0.11_e5d2utcogkjxxdp5h2rcoxuz2u '@chakra-ui/react-context': 2.0.4_react@18.2.0 - '@chakra-ui/system': 2.2.12_hfzxdiydbrbhhfpkwuv3jhvwmq + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq react: 18.2.0 dev: false @@ -4944,21 +4969,21 @@ packages: lodash.mergewith: 4.6.2 dev: false - /@chakra-ui/switch/2.0.13_yxtycg2t66eeo2pchgyrvsgrfm: - resolution: {integrity: sha512-Ikj0L+SLLs/SnfGCiUChaldLIr/aizA1Q9D5+X6LtxpBnixFK/+fNXU+3juPDi9G1IFuNz2IAG51souO7C4nSQ==} + /@chakra-ui/switch/2.0.14_p6srbiuyedikxn6f24tx2pmeqe: + resolution: {integrity: sha512-6lzhCkJq7vbD3yGaorGLp0ZZU4ewdKwAu0e62qR8TfYZwbcbpkXbBKloIHbA2XKOduISzS2WYqjmoP6jSKIxrA==} peerDependencies: '@chakra-ui/system': '>=2.0.0' framer-motion: '>=4.0.0' react: '>=18 || 18' dependencies: - '@chakra-ui/checkbox': 2.2.1_yxtycg2t66eeo2pchgyrvsgrfm - '@chakra-ui/system': 2.2.12_hfzxdiydbrbhhfpkwuv3jhvwmq - framer-motion: 7.5.3_biqbaboplfbrettd7655fr4n2y + '@chakra-ui/checkbox': 2.2.2_p6srbiuyedikxn6f24tx2pmeqe + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq + framer-motion: 7.6.1_biqbaboplfbrettd7655fr4n2y react: 18.2.0 dev: false - /@chakra-ui/system/2.2.12_hfzxdiydbrbhhfpkwuv3jhvwmq: - resolution: {integrity: sha512-I7hFQswp8tG6ogjEMFs5TsCItdCYuNxpLAULgUrLdOlsQeNnHNQhlL4zpIfD+VzguhsNy5lisbegAMKjdghTYg==} + /@chakra-ui/system/2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq: + resolution: {integrity: sha512-BxikahglBI0uU8FE3anEorDTU5oKTUuBIEKVcQrEVnrbNuRJEy1OVYyCNXfqW3MpruRO9ypYV2bWt02AZZWEaQ==} peerDependencies: '@emotion/react': ^11.0.0 '@emotion/styled': ^11.0.0 @@ -4967,6 +4992,7 @@ packages: '@chakra-ui/color-mode': 2.1.9_react@18.2.0 '@chakra-ui/react-utils': 2.0.8_react@18.2.0 '@chakra-ui/styled-system': 2.3.4 + '@chakra-ui/theme-utils': 2.0.1 '@chakra-ui/utils': 2.0.11 '@emotion/react': 11.10.4_bjroym7kxlcs2vvwnej4p3gzwu '@emotion/styled': 11.10.4_ogudqqhlstsi7uge4lir7ff3ty @@ -4974,19 +5000,19 @@ packages: react-fast-compare: 3.2.0 dev: false - /@chakra-ui/table/2.0.11_e25o37k4ko3jrmpkbvnp56dnfq: + /@chakra-ui/table/2.0.11_e5d2utcogkjxxdp5h2rcoxuz2u: resolution: {integrity: sha512-zQTiqPKEgjdeO/PG0FByn0fH4sPF7dLJF+YszrIzDc6wvpD96iY6MYLeV+CSelbH1g0/uibcJ10PSaFStfGUZg==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18 || 18' dependencies: '@chakra-ui/react-context': 2.0.4_react@18.2.0 - '@chakra-ui/system': 2.2.12_hfzxdiydbrbhhfpkwuv3jhvwmq + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq react: 18.2.0 dev: false - /@chakra-ui/tabs/2.1.3_e25o37k4ko3jrmpkbvnp56dnfq: - resolution: {integrity: sha512-9gUcj49LMt5QQnfJHR/ctr9VPttJ97CtQWuH2Irjb3RXkq1TRrz6wjythPImNQUv1/DYyXp2jsUhoEQc4Oz14Q==} + /@chakra-ui/tabs/2.1.4_e5d2utcogkjxxdp5h2rcoxuz2u: + resolution: {integrity: sha512-/CQGj1lC9lvruT5BCYZH6Ok64W4CDSysDXuR2XPZXIih9kVOdXQEMXxG8+3vc63WqTBjHuURtZI0g8ouOy84ew==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18 || 18' @@ -4994,35 +5020,35 @@ packages: '@chakra-ui/clickable': 2.0.10_react@18.2.0 '@chakra-ui/descendant': 3.0.10_react@18.2.0 '@chakra-ui/lazy-utils': 2.0.2 - '@chakra-ui/react-children-utils': 2.0.2 + '@chakra-ui/react-children-utils': 2.0.3_react@18.2.0 '@chakra-ui/react-context': 2.0.4_react@18.2.0 '@chakra-ui/react-use-controllable-state': 2.0.5_react@18.2.0 '@chakra-ui/react-use-merge-refs': 2.0.4_react@18.2.0 '@chakra-ui/react-use-safe-layout-effect': 2.0.2_react@18.2.0 - '@chakra-ui/system': 2.2.12_hfzxdiydbrbhhfpkwuv3jhvwmq + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq react: 18.2.0 dev: false - /@chakra-ui/tag/2.0.11_e25o37k4ko3jrmpkbvnp56dnfq: + /@chakra-ui/tag/2.0.11_e5d2utcogkjxxdp5h2rcoxuz2u: resolution: {integrity: sha512-iJJcX+4hl+6Se/8eCRzG+xxDwZfiYgc4Ly/8s93M0uW2GLb+ybbfSE2DjeKSyk3mQVeGzuxGkBfDHH2c2v26ew==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18 || 18' dependencies: - '@chakra-ui/icon': 3.0.11_e25o37k4ko3jrmpkbvnp56dnfq + '@chakra-ui/icon': 3.0.11_e5d2utcogkjxxdp5h2rcoxuz2u '@chakra-ui/react-context': 2.0.4_react@18.2.0 - '@chakra-ui/system': 2.2.12_hfzxdiydbrbhhfpkwuv3jhvwmq + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq react: 18.2.0 dev: false - /@chakra-ui/textarea/2.0.12_e25o37k4ko3jrmpkbvnp56dnfq: + /@chakra-ui/textarea/2.0.12_e5d2utcogkjxxdp5h2rcoxuz2u: resolution: {integrity: sha512-msR9YMynRXwZIqR6DgjQ2MogA/cW1syBx/R0v3es+9Zx8zlbuKdoLhYqajHteCup8dUzTeIH2Vs2vAwgq4wu5A==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18 || 18' dependencies: - '@chakra-ui/form-control': 2.0.11_e25o37k4ko3jrmpkbvnp56dnfq - '@chakra-ui/system': 2.2.12_hfzxdiydbrbhhfpkwuv3jhvwmq + '@chakra-ui/form-control': 2.0.11_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq react: 18.2.0 dev: false @@ -5036,8 +5062,16 @@ packages: '@ctrl/tinycolor': 3.4.1 dev: false - /@chakra-ui/theme/2.1.13_kzevwk2hxgy6fnrjqv25jdmqp4: - resolution: {integrity: sha512-qbrrvn9JstyLFV2qyhwgnhwzVs4zSJ4PcS3ScL8kafXJazTRU6onbCcjEZ5mVCw6z8uEz3jcE8Y5KIhVzaB+Xw==} + /@chakra-ui/theme-utils/2.0.1: + resolution: {integrity: sha512-NDwzgTPxm+v3PAJlSSU1MORHLMqO9vsRJ+ObELD5wpvE9aEyRziN/AZSoK2oLwCQMPEiU7R99K5ij1E6ptMt7w==} + dependencies: + '@chakra-ui/styled-system': 2.3.4 + '@chakra-ui/theme': 2.1.14_kzevwk2hxgy6fnrjqv25jdmqp4 + lodash.mergewith: 4.6.2 + dev: false + + /@chakra-ui/theme/2.1.14_kzevwk2hxgy6fnrjqv25jdmqp4: + resolution: {integrity: sha512-6EYJCQlrjSjNAJvZmw1un50F8+sQDFsdwu/7UzWe+TeANpKlz4ZcHbh0gkl3PD62lGis+ehITUwqRm8htvDOjw==} peerDependencies: '@chakra-ui/styled-system': '>=2.0.0' dependencies: @@ -5046,28 +5080,28 @@ packages: '@chakra-ui/theme-tools': 2.0.12_kzevwk2hxgy6fnrjqv25jdmqp4 dev: false - /@chakra-ui/toast/3.0.13_svvprik4kmnbjwafrq4cgb4wou: - resolution: {integrity: sha512-5GADso5l5Tv1PAL1iocEneLs6U7I8HHMHSMvWdPFSmmJJh0XCH3fboh0C9LiFNIcnEGJmn+A5yGc4vjedA0h2A==} + /@chakra-ui/toast/4.0.0_nx5unifb7niehzuoy5sk3t3nim: + resolution: {integrity: sha512-abeeloJac5T9WK2IN76fEM5FSRH+erNXln2HqDf5wLBn33avSBXWyTiUL8riVSUqto0lrIn6FuK/MmKo0DH4og==} peerDependencies: - '@chakra-ui/system': 2.2.12 + '@chakra-ui/system': 2.3.0 framer-motion: '>=4.0.0' react: '>=18 || 18' react-dom: '>=18 || 18' dependencies: - '@chakra-ui/alert': 2.0.11_e25o37k4ko3jrmpkbvnp56dnfq - '@chakra-ui/close-button': 2.0.11_e25o37k4ko3jrmpkbvnp56dnfq + '@chakra-ui/alert': 2.0.11_e5d2utcogkjxxdp5h2rcoxuz2u + '@chakra-ui/close-button': 2.0.11_e5d2utcogkjxxdp5h2rcoxuz2u '@chakra-ui/portal': 2.0.10_biqbaboplfbrettd7655fr4n2y '@chakra-ui/react-use-timeout': 2.0.2_react@18.2.0 '@chakra-ui/react-use-update-effect': 2.0.4_react@18.2.0 '@chakra-ui/styled-system': 2.3.4 - '@chakra-ui/system': 2.2.12_hfzxdiydbrbhhfpkwuv3jhvwmq - '@chakra-ui/theme': 2.1.13_kzevwk2hxgy6fnrjqv25jdmqp4 - framer-motion: 7.5.3_biqbaboplfbrettd7655fr4n2y + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq + '@chakra-ui/theme': 2.1.14_kzevwk2hxgy6fnrjqv25jdmqp4 + framer-motion: 7.6.1_biqbaboplfbrettd7655fr4n2y react: 18.2.0 react-dom: 18.2.0_react@18.2.0 dev: false - /@chakra-ui/tooltip/2.2.0_svvprik4kmnbjwafrq4cgb4wou: + /@chakra-ui/tooltip/2.2.0_nx5unifb7niehzuoy5sk3t3nim: resolution: {integrity: sha512-oB97aQJBW+U3rRIt1ct7NaDRMnbW16JQ5ZBCl3BzN1VJWO3djiNuscpjVdZSceb+FdGSFo+GoDozp1ZwqdfFeQ==} peerDependencies: '@chakra-ui/system': '>=2.0.0' @@ -5081,19 +5115,19 @@ packages: '@chakra-ui/react-use-disclosure': 2.0.5_react@18.2.0 '@chakra-ui/react-use-event-listener': 2.0.4_react@18.2.0 '@chakra-ui/react-use-merge-refs': 2.0.4_react@18.2.0 - '@chakra-ui/system': 2.2.12_hfzxdiydbrbhhfpkwuv3jhvwmq - framer-motion: 7.5.3_biqbaboplfbrettd7655fr4n2y + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq + framer-motion: 7.6.1_biqbaboplfbrettd7655fr4n2y react: 18.2.0 react-dom: 18.2.0_react@18.2.0 dev: false - /@chakra-ui/transition/2.0.10_3scsim3kjm5bnetripeelcaw6u: - resolution: {integrity: sha512-Tkkne8pIIY7f95TKt2aH+IAuQqzHmEt+ICPqvg74QbmIpKE5ptX0cd+P3swBANw4ACnJcCc2vWIaKmVBQ9clLw==} + /@chakra-ui/transition/2.0.11_fptlbzezisbmawh6uxpkk3xo6a: + resolution: {integrity: sha512-O0grc162LARPurjz1R+J+zr4AAKsVwN5+gaqLfZLMWg6TpvczJhwEA2fLCNAdkC/gomere390bJsy52xfUacUw==} peerDependencies: framer-motion: '>=4.0.0' react: '>=18 || 18' dependencies: - framer-motion: 7.5.3_biqbaboplfbrettd7655fr4n2y + framer-motion: 7.6.1_biqbaboplfbrettd7655fr4n2y react: 18.2.0 dev: false @@ -5106,20 +5140,20 @@ packages: lodash.mergewith: 4.6.2 dev: false - /@chakra-ui/visually-hidden/2.0.11_e25o37k4ko3jrmpkbvnp56dnfq: + /@chakra-ui/visually-hidden/2.0.11_e5d2utcogkjxxdp5h2rcoxuz2u: resolution: {integrity: sha512-e+5amYvnsmEQdiWH4XMyvrtGTdwz//+48vwj5CsNWWcselzkwqodmciy5rIrT71/SCQDOtmgnL7ZWAUOffxfsQ==} peerDependencies: '@chakra-ui/system': '>=2.0.0' react: '>=18 || 18' dependencies: - '@chakra-ui/system': 2.2.12_hfzxdiydbrbhhfpkwuv3jhvwmq + '@chakra-ui/system': 2.3.0_hfzxdiydbrbhhfpkwuv3jhvwmq react: 18.2.0 dev: false /@changesets/apply-release-plan/6.1.1: resolution: {integrity: sha512-LaQiP/Wf0zMVR0HNrLQAjz3rsNsr0d/RlnP6Ef4oi8VafOwnY1EoWdK4kssuUJGgNgDyHpomS50dm8CU3D7k7g==} dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 '@changesets/config': 2.2.0 '@changesets/get-version-range-type': 0.3.2 '@changesets/git': 1.5.0 @@ -5137,7 +5171,7 @@ packages: /@changesets/assemble-release-plan/5.2.2: resolution: {integrity: sha512-B1qxErQd85AeZgZFZw2bDKyOfdXHhG+X5S+W3Da2yCem8l/pRy4G/S7iOpEcMwg6lH8q2ZhgbZZwZ817D+aLuQ==} dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 '@changesets/errors': 0.1.4 '@changesets/get-dependents-graph': 1.3.4 '@changesets/types': 5.2.0 @@ -5155,7 +5189,7 @@ packages: resolution: {integrity: sha512-Svu5KD2enurVHGEEzCRlaojrHjVYgF9srmMP9VQSy9c1TspX6C9lDPpulsSNIjYY9BuU/oiWpjBgR7RI9eQiAA==} hasBin: true dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 '@changesets/apply-release-plan': 6.1.1 '@changesets/assemble-release-plan': 5.2.2 '@changesets/changelog-git': 0.1.13 @@ -5221,7 +5255,7 @@ packages: /@changesets/get-release-plan/3.0.15: resolution: {integrity: sha512-W1tFwxE178/en+zSj/Nqbc3mvz88mcdqUMJhRzN1jDYqN3QI4ifVaRF9mcWUU+KI0gyYEtYR65tour690PqTcA==} dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 '@changesets/assemble-release-plan': 5.2.2 '@changesets/config': 2.2.0 '@changesets/pre': 1.0.13 @@ -5237,7 +5271,7 @@ packages: /@changesets/git/1.5.0: resolution: {integrity: sha512-Xo8AT2G7rQJSwV87c8PwMm6BAc98BnufRMsML7m7Iw8Or18WFvFmxqG5aOL5PBvhgq9KrKvaeIBNIymracSuHg==} dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 '@changesets/errors': 0.1.4 '@changesets/types': 5.2.0 '@manypkg/get-packages': 1.1.3 @@ -5261,7 +5295,7 @@ packages: /@changesets/pre/1.0.13: resolution: {integrity: sha512-jrZc766+kGZHDukjKhpBXhBJjVQMied4Fu076y9guY1D3H622NOw8AQaLV3oQsDtKBTrT2AUFjt9Z2Y9Qx+GfA==} dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 '@changesets/errors': 0.1.4 '@changesets/types': 5.2.0 '@manypkg/get-packages': 1.1.3 @@ -5271,7 +5305,7 @@ packages: /@changesets/read/0.5.8: resolution: {integrity: sha512-eYaNfxemgX7f7ELC58e7yqQICW5FB7V+bd1lKt7g57mxUrTveYME+JPaBPpYx02nP53XI6CQp6YxnR9NfmFPKw==} dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 '@changesets/git': 1.5.0 '@changesets/logger': 0.0.5 '@changesets/parse': 0.3.15 @@ -5292,7 +5326,7 @@ packages: /@changesets/write/0.2.1: resolution: {integrity: sha512-KUd49nt2fnYdGixIqTi1yVE1nAoZYUMdtB3jBfp77IMqjZ65hrmZE5HdccDlTeClZN0420ffpnfET3zzeY8pdw==} dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 '@changesets/types': 5.2.0 fs-extra: 7.0.1 human-id: 1.0.2 @@ -5305,7 +5339,7 @@ packages: hasBin: true dependencies: exec-sh: 0.3.6 - minimist: 1.2.6 + minimist: 1.2.7 dev: true /@colors/colors/1.5.0: @@ -5322,14 +5356,14 @@ packages: '@jridgewell/trace-mapping': 0.3.9 dev: true - /@csstools/selector-specificity/2.0.2_zurzgjffv23ohtxa7nq7nizuja: + /@csstools/selector-specificity/2.0.2_dvkg4kkb622mvceygg47xxdz3a: resolution: {integrity: sha512-IkpVW/ehM1hWKln4fCA3NzJU8KwD+kIOvPZA4cqxoJHtE21CCzjyp+Kxbu0i5I4tBNOlXPL9mjwnWlL0VEG4Fg==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 postcss-selector-parser: ^6.0.10 dependencies: - postcss: 8.4.17 + postcss: 8.4.18 postcss-selector-parser: 6.0.10 dev: true @@ -5368,12 +5402,12 @@ packages: '@babel/core': 7.19.3 '@babel/helper-module-imports': 7.18.6 '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.19.3 - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 '@emotion/hash': 0.9.0 '@emotion/memoize': 0.8.0 '@emotion/serialize': 1.1.0 babel-plugin-macros: 3.1.0 - convert-source-map: 1.8.0 + convert-source-map: 1.9.0 escape-string-regexp: 4.0.0 find-root: 1.1.0 source-map: 0.5.7 @@ -5428,7 +5462,7 @@ packages: optional: true dependencies: '@babel/core': 7.19.3 - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 '@emotion/babel-plugin': 11.10.2_@babel+core@7.19.3 '@emotion/cache': 11.10.3 '@emotion/serialize': 1.1.0 @@ -5468,7 +5502,7 @@ packages: optional: true dependencies: '@babel/core': 7.19.3 - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 '@emotion/babel-plugin': 11.10.2_@babel+core@7.19.3 '@emotion/is-prop-valid': 1.2.0 '@emotion/react': 11.10.4_bjroym7kxlcs2vvwnej4p3gzwu @@ -5522,6 +5556,16 @@ packages: - supports-color dev: true + /@floating-ui/core/1.0.1: + resolution: {integrity: sha512-bO37brCPfteXQfFY0DyNDGB3+IMe4j150KFQcgJ5aBP295p9nBGeHEs/p0czrRbtlHq4Px/yoPXO/+dOCcF4uA==} + dev: false + + /@floating-ui/dom/1.0.2: + resolution: {integrity: sha512-5X9WSvZ8/fjy3gDu8yx9HAA4KG1lazUN2P4/VnaXLxTO9Dz53HI1oYoh1OlhqFNlHgGDiwFX5WhFCc2ljbW3yA==} + dependencies: + '@floating-ui/core': 1.0.1 + dev: false + /@gar/promisify/1.1.3: resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==} @@ -5635,142 +5679,156 @@ packages: engines: {node: '>=8'} dev: true - /@jest/console/27.5.1: - resolution: {integrity: sha512-kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /@jest/console/29.2.1: + resolution: {integrity: sha512-MF8Adcw+WPLZGBiNxn76DOuczG3BhODTcMlDCA4+cFi41OkaY/lyI0XUUhi73F88Y+7IHoGmD80pN5CtxQUdSw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/types': 27.5.1 - '@types/node': 18.8.3 + '@jest/types': 29.2.1 + '@types/node': 18.11.7 chalk: 4.1.2 - jest-message-util: 27.5.1 - jest-util: 27.5.1 + jest-message-util: 29.2.1 + jest-util: 29.2.1 slash: 3.0.0 dev: true - /@jest/core/27.5.1: - resolution: {integrity: sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /@jest/core/29.2.2: + resolution: {integrity: sha512-susVl8o2KYLcZhhkvSB+b7xX575CX3TmSvxfeDjpRko7KmT89rHkXj6XkDkNpSeFMBzIENw5qIchO9HC9Sem+A==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 peerDependenciesMeta: node-notifier: optional: true dependencies: - '@jest/console': 27.5.1 - '@jest/reporters': 27.5.1 - '@jest/test-result': 27.5.1 - '@jest/transform': 27.5.1 - '@jest/types': 27.5.1 - '@types/node': 16.11.64 + '@jest/console': 29.2.1 + '@jest/reporters': 29.2.2 + '@jest/test-result': 29.2.1 + '@jest/transform': 29.2.2 + '@jest/types': 29.2.1 + '@types/node': 18.11.7 ansi-escapes: 4.3.2 chalk: 4.1.2 - emittery: 0.8.1 + ci-info: 3.5.0 exit: 0.1.2 graceful-fs: 4.2.10 - jest-changed-files: 27.5.1 - jest-config: 27.5.1 - jest-haste-map: 27.5.1 - jest-message-util: 27.5.1 - jest-regex-util: 27.5.1 - jest-resolve: 27.5.1 - jest-resolve-dependencies: 27.5.1 - jest-runner: 27.5.1 - jest-runtime: 27.5.1 - jest-snapshot: 27.5.1 - jest-util: 27.5.1 - jest-validate: 27.5.1 - jest-watcher: 27.5.1 + jest-changed-files: 29.2.0 + jest-config: 29.2.2_@types+node@18.11.7 + jest-haste-map: 29.2.1 + jest-message-util: 29.2.1 + jest-regex-util: 29.2.0 + jest-resolve: 29.2.2 + jest-resolve-dependencies: 29.2.2 + jest-runner: 29.2.2 + jest-runtime: 29.2.2 + jest-snapshot: 29.2.2 + jest-util: 29.2.1 + jest-validate: 29.2.2 + jest-watcher: 29.2.2 micromatch: 4.0.5 - rimraf: 3.0.2 + pretty-format: 29.2.1 slash: 3.0.0 strip-ansi: 6.0.1 transitivePeerDependencies: - - bufferutil - - canvas - supports-color - ts-node - - utf-8-validate dev: true - /@jest/core/27.5.1_ts-node@10.9.1: - resolution: {integrity: sha512-AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /@jest/core/29.2.2_ts-node@10.9.1: + resolution: {integrity: sha512-susVl8o2KYLcZhhkvSB+b7xX575CX3TmSvxfeDjpRko7KmT89rHkXj6XkDkNpSeFMBzIENw5qIchO9HC9Sem+A==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 peerDependenciesMeta: node-notifier: optional: true dependencies: - '@jest/console': 27.5.1 - '@jest/reporters': 27.5.1 - '@jest/test-result': 27.5.1 - '@jest/transform': 27.5.1 - '@jest/types': 27.5.1 - '@types/node': 16.11.64 + '@jest/console': 29.2.1 + '@jest/reporters': 29.2.2 + '@jest/test-result': 29.2.1 + '@jest/transform': 29.2.2 + '@jest/types': 29.2.1 + '@types/node': 18.11.7 ansi-escapes: 4.3.2 chalk: 4.1.2 - emittery: 0.8.1 + ci-info: 3.5.0 exit: 0.1.2 graceful-fs: 4.2.10 - jest-changed-files: 27.5.1 - jest-config: 27.5.1_ts-node@10.9.1 - jest-haste-map: 27.5.1 - jest-message-util: 27.5.1 - jest-regex-util: 27.5.1 - jest-resolve: 27.5.1 - jest-resolve-dependencies: 27.5.1 - jest-runner: 27.5.1 - jest-runtime: 27.5.1 - jest-snapshot: 27.5.1 - jest-util: 27.5.1 - jest-validate: 27.5.1 - jest-watcher: 27.5.1 + jest-changed-files: 29.2.0 + jest-config: 29.2.2_4pb6an67rakrle6rtido6z2a34 + jest-haste-map: 29.2.1 + jest-message-util: 29.2.1 + jest-regex-util: 29.2.0 + jest-resolve: 29.2.2 + jest-resolve-dependencies: 29.2.2 + jest-runner: 29.2.2 + jest-runtime: 29.2.2 + jest-snapshot: 29.2.2 + jest-util: 29.2.1 + jest-validate: 29.2.2 + jest-watcher: 29.2.2 micromatch: 4.0.5 - rimraf: 3.0.2 + pretty-format: 29.2.1 slash: 3.0.0 strip-ansi: 6.0.1 transitivePeerDependencies: - - bufferutil - - canvas - supports-color - ts-node - - utf-8-validate dev: true - /@jest/environment/27.5.1: - resolution: {integrity: sha512-/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /@jest/environment/29.2.2: + resolution: {integrity: sha512-OWn+Vhu0I1yxuGBJEFFekMYc8aGBGrY4rt47SOh/IFaI+D7ZHCk7pKRiSoZ2/Ml7b0Ony3ydmEHRx/tEOC7H1A==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/fake-timers': 27.5.1 - '@jest/types': 27.5.1 - '@types/node': 18.8.3 - jest-mock: 27.5.1 + '@jest/fake-timers': 29.2.2 + '@jest/types': 29.2.1 + '@types/node': 18.11.7 + jest-mock: 29.2.2 dev: true - /@jest/fake-timers/27.5.1: - resolution: {integrity: sha512-/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /@jest/expect-utils/29.2.2: + resolution: {integrity: sha512-vwnVmrVhTmGgQzyvcpze08br91OL61t9O0lJMDyb6Y/D8EKQ9V7rGUb/p7PDt0GPzK0zFYqXWFo4EO2legXmkg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/types': 27.5.1 - '@sinonjs/fake-timers': 8.1.0 - '@types/node': 18.8.3 - jest-message-util: 27.5.1 - jest-mock: 27.5.1 - jest-util: 27.5.1 + jest-get-type: 29.2.0 dev: true - /@jest/globals/27.5.1: - resolution: {integrity: sha512-ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /@jest/expect/29.2.2: + resolution: {integrity: sha512-zwblIZnrIVt8z/SiEeJ7Q9wKKuB+/GS4yZe9zw7gMqfGf4C5hBLGrVyxu1SzDbVSqyMSlprKl3WL1r80cBNkgg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/environment': 27.5.1 - '@jest/types': 27.5.1 - expect: 27.5.1 + expect: 29.2.2 + jest-snapshot: 29.2.2 + transitivePeerDependencies: + - supports-color dev: true - /@jest/reporters/27.5.1: - resolution: {integrity: sha512-cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /@jest/fake-timers/29.2.2: + resolution: {integrity: sha512-nqaW3y2aSyZDl7zQ7t1XogsxeavNpH6kkdq+EpXncIDvAkjvFD7hmhcIs1nWloengEWUoWqkqSA6MSbf9w6DgA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@jest/types': 29.2.1 + '@sinonjs/fake-timers': 9.1.2 + '@types/node': 18.11.7 + jest-message-util: 29.2.1 + jest-mock: 29.2.2 + jest-util: 29.2.1 + dev: true + + /@jest/globals/29.2.2: + resolution: {integrity: sha512-/nt+5YMh65kYcfBhj38B3Hm0Trk4IsuMXNDGKE/swp36yydBWfz3OXkLqkSvoAtPW8IJMSJDFCbTM2oj5SNprw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@jest/environment': 29.2.2 + '@jest/expect': 29.2.2 + '@jest/types': 29.2.1 + jest-mock: 29.2.2 + transitivePeerDependencies: + - supports-color + dev: true + + /@jest/reporters/29.2.2: + resolution: {integrity: sha512-AzjL2rl2zJC0njIzcooBvjA4sJjvdoq98sDuuNs4aNugtLPSQ+91nysGKRF0uY1to5k0MdGMdOBggUsPqvBcpA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 peerDependenciesMeta: @@ -5778,11 +5836,12 @@ packages: optional: true dependencies: '@bcoe/v8-coverage': 0.2.3 - '@jest/console': 27.5.1 - '@jest/test-result': 27.5.1 - '@jest/transform': 27.5.1 - '@jest/types': 27.5.1 - '@types/node': 18.8.3 + '@jest/console': 29.2.1 + '@jest/test-result': 29.2.1 + '@jest/transform': 29.2.2 + '@jest/types': 29.2.1 + '@jridgewell/trace-mapping': 0.3.17 + '@types/node': 18.11.7 chalk: 4.1.2 collect-v8-coverage: 1.0.1 exit: 0.1.2 @@ -5793,48 +5852,51 @@ packages: istanbul-lib-report: 3.0.0 istanbul-lib-source-maps: 4.0.1 istanbul-reports: 3.1.5 - jest-haste-map: 27.5.1 - jest-resolve: 27.5.1 - jest-util: 27.5.1 - jest-worker: 27.5.1 + jest-message-util: 29.2.1 + jest-util: 29.2.1 + jest-worker: 29.2.1 slash: 3.0.0 - source-map: 0.6.1 string-length: 4.0.2 - terminal-link: 2.1.1 - v8-to-istanbul: 8.1.1 + strip-ansi: 6.0.1 + v8-to-istanbul: 9.0.1 transitivePeerDependencies: - supports-color dev: true - /@jest/source-map/27.5.1: - resolution: {integrity: sha512-y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /@jest/schemas/29.0.0: + resolution: {integrity: sha512-3Ab5HgYIIAnS0HjqJHQYZS+zXc4tUmTmBH3z83ajI6afXp8X3ZtdLX+nXx+I7LNkJD7uN9LAVhgnjDgZa2z0kA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - callsites: 3.1.0 - graceful-fs: 4.2.10 - source-map: 0.6.1 + '@sinclair/typebox': 0.24.51 dev: true - /@jest/test-result/27.5.1: - resolution: {integrity: sha512-EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /@jest/source-map/29.2.0: + resolution: {integrity: sha512-1NX9/7zzI0nqa6+kgpSdKPK+WU1p+SJk3TloWZf5MzPbxri9UEeXX5bWZAPCzbQcyuAzubcdUHA7hcNznmRqWQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/console': 27.5.1 - '@jest/types': 27.5.1 + '@jridgewell/trace-mapping': 0.3.17 + callsites: 3.1.0 + graceful-fs: 4.2.10 + dev: true + + /@jest/test-result/29.2.1: + resolution: {integrity: sha512-lS4+H+VkhbX6z64tZP7PAUwPqhwj3kbuEHcaLuaBuB+riyaX7oa1txe0tXgrFj5hRWvZKvqO7LZDlNWeJ7VTPA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@jest/console': 29.2.1 + '@jest/types': 29.2.1 '@types/istanbul-lib-coverage': 2.0.4 collect-v8-coverage: 1.0.1 dev: true - /@jest/test-sequencer/27.5.1: - resolution: {integrity: sha512-LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /@jest/test-sequencer/29.2.2: + resolution: {integrity: sha512-Cuc1znc1pl4v9REgmmLf0jBd3Y65UXJpioGYtMr/JNpQEIGEzkmHhy6W6DLbSsXeUA13TDzymPv0ZGZ9jH3eIw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/test-result': 27.5.1 + '@jest/test-result': 29.2.1 graceful-fs: 4.2.10 - jest-haste-map: 27.5.1 - jest-runtime: 27.5.1 - transitivePeerDependencies: - - supports-color + jest-haste-map: 29.2.1 + slash: 3.0.0 dev: true /@jest/transform/26.6.2: @@ -5845,7 +5907,7 @@ packages: '@jest/types': 26.6.2 babel-plugin-istanbul: 6.1.1 chalk: 4.1.2 - convert-source-map: 1.8.0 + convert-source-map: 1.9.0 fast-json-stable-stringify: 2.1.0 graceful-fs: 4.2.10 jest-haste-map: 26.6.2 @@ -5860,25 +5922,25 @@ packages: - supports-color dev: true - /@jest/transform/27.5.1: - resolution: {integrity: sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /@jest/transform/29.2.2: + resolution: {integrity: sha512-aPe6rrletyuEIt2axxgdtxljmzH8O/nrov4byy6pDw9S8inIrTV+2PnjyP/oFHMSynzGxJ2s6OHowBNMXp/Jzg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@babel/core': 7.19.3 - '@jest/types': 27.5.1 + '@jest/types': 29.2.1 + '@jridgewell/trace-mapping': 0.3.17 babel-plugin-istanbul: 6.1.1 chalk: 4.1.2 - convert-source-map: 1.8.0 + convert-source-map: 1.9.0 fast-json-stable-stringify: 2.1.0 graceful-fs: 4.2.10 - jest-haste-map: 27.5.1 - jest-regex-util: 27.5.1 - jest-util: 27.5.1 + jest-haste-map: 29.2.1 + jest-regex-util: 29.2.0 + jest-util: 29.2.1 micromatch: 4.0.5 pirates: 4.0.5 slash: 3.0.0 - source-map: 0.6.1 - write-file-atomic: 3.0.3 + write-file-atomic: 4.0.2 transitivePeerDependencies: - supports-color dev: true @@ -5889,19 +5951,20 @@ packages: dependencies: '@types/istanbul-lib-coverage': 2.0.4 '@types/istanbul-reports': 3.0.1 - '@types/node': 18.8.3 + '@types/node': 18.11.7 '@types/yargs': 15.0.14 chalk: 4.1.2 dev: true - /@jest/types/27.5.1: - resolution: {integrity: sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /@jest/types/29.2.1: + resolution: {integrity: sha512-O/QNDQODLnINEPAI0cl9U6zUIDXEWXt6IC1o2N2QENuos7hlGUIthlKyV4p6ki3TvXFX071blj8HUhgLGquPjw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: + '@jest/schemas': 29.0.0 '@types/istanbul-lib-coverage': 2.0.4 '@types/istanbul-reports': 3.0.1 - '@types/node': 18.8.3 - '@types/yargs': 16.0.4 + '@types/node': 18.11.7 + '@types/yargs': 17.0.13 chalk: 4.1.2 dev: true @@ -5922,7 +5985,7 @@ packages: dependencies: '@jridgewell/set-array': 1.1.2 '@jridgewell/sourcemap-codec': 1.4.14 - '@jridgewell/trace-mapping': 0.3.16 + '@jridgewell/trace-mapping': 0.3.17 /@jridgewell/resolve-uri/3.1.0: resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==} @@ -5936,14 +5999,14 @@ packages: resolution: {integrity: sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==} dependencies: '@jridgewell/gen-mapping': 0.3.2 - '@jridgewell/trace-mapping': 0.3.16 + '@jridgewell/trace-mapping': 0.3.17 dev: true /@jridgewell/sourcemap-codec/1.4.14: resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==} - /@jridgewell/trace-mapping/0.3.16: - resolution: {integrity: sha512-LCQ+NeThyJ4k1W2d+vIKdxuSt9R3pQSZ4P92m7EakaYuXcVWbHuT5bjNcqLd4Rdgi6xYWYDvBJZJLZSLanjDcA==} + /@jridgewell/trace-mapping/0.3.17: + resolution: {integrity: sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==} dependencies: '@jridgewell/resolve-uri': 3.1.0 '@jridgewell/sourcemap-codec': 1.4.14 @@ -5962,7 +6025,7 @@ packages: /@manypkg/find-root/1.1.0: resolution: {integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==} dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 '@types/node': 12.20.55 find-up: 4.1.0 fs-extra: 8.1.0 @@ -5971,7 +6034,7 @@ packages: /@manypkg/get-packages/1.1.3: resolution: {integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==} dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 '@changesets/types': 4.1.0 '@manypkg/find-root': 1.1.0 fs-extra: 8.1.0 @@ -6122,13 +6185,13 @@ packages: - typescript dev: false - /@mswjs/interceptors/0.17.5: - resolution: {integrity: sha512-/uZkyPUZMRExZs+DZQVnc+uoDwLfs1gFNvcRY5S3Gu78U+uhovaSEUW3tuyld1e7Oke5Qphfseb8v66V+H1zWQ==} + /@mswjs/interceptors/0.17.6: + resolution: {integrity: sha512-201pBIWehTURb6q8Gheu4Zhvd3Ox1U4BJq5KiOQsYzkWyfiOG4pwcz5hPZIEryztgrf8/sdwABpvY757xMmfrQ==} engines: {node: '>=14'} dependencies: '@open-draft/until': 1.0.3 '@types/debug': 4.1.7 - '@xmldom/xmldom': 0.7.5 + '@xmldom/xmldom': 0.8.3 debug: 4.3.4 headers-polyfill: 3.1.2 outvariant: 1.3.0 @@ -6189,18 +6252,18 @@ packages: mkdirp: 1.0.4 rimraf: 3.0.2 - /@nrwl/cli/14.8.3: - resolution: {integrity: sha512-a8URAbqyZvegXMYU8pCA3Hfv0UdiDJc6HboazxinCJJgZWyqKYxRIWmKiWnfpXsr+qF6ntmBR/tC6yHbOL22gQ==} + /@nrwl/cli/15.0.0: + resolution: {integrity: sha512-D0zAhZ375bQnoUM2HLifMzAa75A3/lC9OkkewsiVVbqaznjEIry8ezHZepgfjFRVzLr3ue7FIpDEH3iJIYzvVw==} dependencies: - nx: 14.8.3 + nx: 15.0.0 transitivePeerDependencies: - '@swc-node/register' - '@swc/core' - debug dev: true - /@nrwl/nx-cloud/14.7.0: - resolution: {integrity: sha512-sEGK5Ire5DC2liIsT89qR6SzZa46uinmWEAMz8ocMuu7nIMnwV9m15qajxhmYKasYsq9vTeT+x7BlZ4fnxPrNg==} + /@nrwl/nx-cloud/15.0.0: + resolution: {integrity: sha512-KAYmbx8M4we9gUn14rDnt5vMz+yYwIa4xJNsByWf7mjzC4lvBVZKqFzFGaklWzp/gJN/xyNleZt/Fg64k/kF+A==} hasBin: true dependencies: axios: 0.21.4 @@ -6215,11 +6278,11 @@ packages: - debug dev: true - /@nrwl/tao/14.8.3: - resolution: {integrity: sha512-lN7+1biSM/7PYMMgh3jjOXJ9fe6VjhVrtZsDcB6lcklpShjXfHXqlpXDM7vjlw19aLeZMdFWHFoU2C5BTBtzgQ==} + /@nrwl/tao/15.0.0: + resolution: {integrity: sha512-qup1eSWYwp/KVrw/wxeWBvYttQ9dcbQnqpXb5NQMD31SpXEZSpJB1i3GV/o6CF5qQQSNLwICXZx25rNTTQAqpg==} hasBin: true dependencies: - nx: 14.8.3 + nx: 15.0.0 transitivePeerDependencies: - '@swc-node/register' - '@swc/core' @@ -6330,7 +6393,7 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || 18 dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 react: 18.2.0 dev: false @@ -6347,7 +6410,7 @@ packages: dependencies: immer: 9.0.15 react: 18.2.0 - react-redux: 8.0.4_wr4jmv5xrjbe6vbq33me5wwo2a + react-redux: 8.0.4_yfr4m6wk75wdra335rld4tkrbu redux: 4.2.0 redux-thunk: 2.4.1_redux@4.2.0 reselect: 4.1.6 @@ -6372,7 +6435,7 @@ packages: react: '>=16.14.0 || 18' react-dom: '>=16.14.0 || 18' dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 '@popperjs/core': 2.11.6 '@react-aria/ssr': 3.3.0_react@18.2.0 '@restart/hooks': 0.4.7_react@18.2.0 @@ -6403,7 +6466,7 @@ packages: react: 18.2.0 react-is: 16.9.0 - /@rollup/plugin-babel/6.0.0_vy4anxjpv2s44kyfi2kxqu576u: + /@rollup/plugin-babel/6.0.0_t2lseskayu4pmjc4spb5q7neyq: resolution: {integrity: sha512-qM8YIt/2fVxw5O0wUgAeglyC+qx9mg3UtCCLoSqetmQOKipmnQ/X3I0L2sjjb6BswaYpv2tun25lHViU7JPxLQ==} engines: {node: '>=14.0.0'} peerDependencies: @@ -6419,10 +6482,10 @@ packages: '@babel/core': 7.19.3 '@babel/helper-module-imports': 7.18.6 '@rollup/pluginutils': 4.2.1 - rollup: 2.79.1 + rollup: 3.2.3 dev: true - /@rollup/plugin-commonjs/23.0.0_rollup@2.79.1: + /@rollup/plugin-commonjs/23.0.0_rollup@3.2.3: resolution: {integrity: sha512-JbrTRyDNtLQj/rhl7RFUuYXwQ2fac+33oLDAu2k++WD95zweyo28UAomLVA0JMGx4vmCa7Nw4T6k/1F6lelExg==} engines: {node: '>=14.0.0'} peerDependencies: @@ -6437,10 +6500,10 @@ packages: glob: 8.0.3 is-reference: 1.2.1 magic-string: 0.26.7 - rollup: 2.79.1 + rollup: 3.2.3 dev: true - /@rollup/plugin-node-resolve/15.0.0_rollup@2.79.1: + /@rollup/plugin-node-resolve/15.0.0_rollup@3.2.3: resolution: {integrity: sha512-iwJbzfTzlzDDQcGmkS7EkCKwe2kSkdBrjX87Fy/KrNjr6UNnLpod0t6X66e502LRe5JJCA4FFqrEscWPnZAkig==} engines: {node: '>=14.0.0'} peerDependencies: @@ -6455,7 +6518,20 @@ packages: is-builtin-module: 3.2.0 is-module: 1.0.0 resolve: 1.22.1 - rollup: 2.79.1 + rollup: 3.2.3 + dev: true + + /@rollup/plugin-terser/0.1.0_rollup@3.2.3: + resolution: {integrity: sha512-N2KK+qUfHX2hBzVzM41UWGLrEmcjVC37spC8R3c9mt3oEDFKh3N2e12/lLp9aVSt86veR0TQiCNQXrm8C6aiUQ==} + engines: {node: '>=14.0.0'} + peerDependencies: + rollup: ^2.x || ^3.x + peerDependenciesMeta: + rollup: + optional: true + dependencies: + rollup: 3.2.3 + terser: 5.15.1 dev: true /@rollup/pluginutils/4.2.1: @@ -6466,6 +6542,10 @@ packages: picomatch: 2.3.1 dev: true + /@sinclair/typebox/0.24.51: + resolution: {integrity: sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==} + dev: true + /@sindresorhus/is/0.14.0: resolution: {integrity: sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==} engines: {node: '>=6'} @@ -6476,8 +6556,8 @@ packages: type-detect: 4.0.8 dev: true - /@sinonjs/fake-timers/8.1.0: - resolution: {integrity: sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==} + /@sinonjs/fake-timers/9.1.2: + resolution: {integrity: sha512-BPS4ynJW/o92PUR4wgriz2Ud5gpST5vz6GQfMixEDK0Z8ZCUv2M7SkBLykH56T++Xs+8ln9zTGbOvNGIe02/jw==} dependencies: '@sinonjs/commons': 1.8.3 dev: true @@ -6528,7 +6608,7 @@ packages: react: 18.2.0 react-dom: 18.2.0_react@18.2.0 react-inspector: 5.1.1_react@18.2.0 - regenerator-runtime: 0.13.9 + regenerator-runtime: 0.13.10 telejson: 6.0.8 ts-dedent: 2.2.0 util-deprecate: 1.0.2 @@ -6558,7 +6638,7 @@ packages: memoizerific: 1.11.3 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - regenerator-runtime: 0.13.9 + regenerator-runtime: 0.13.10 ts-dedent: 2.2.0 util-deprecate: 1.0.2 dev: true @@ -6612,7 +6692,7 @@ packages: optional: true dependencies: '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.19.3 - '@babel/preset-env': 7.19.3_@babel+core@7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 '@jest/transform': 26.6.2 '@mdx-js/react': 1.6.22_react@18.2.0 '@storybook/addons': 6.5.12_biqbaboplfbrettd7655fr4n2y @@ -6636,7 +6716,7 @@ packages: lodash: 4.17.21 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - regenerator-runtime: 0.13.9 + regenerator-runtime: 0.13.10 remark-external-links: 8.0.0 remark-slug: 6.1.0 ts-dedent: 2.2.0 @@ -6652,7 +6732,7 @@ packages: - webpack-command dev: true - /@storybook/addon-essentials/6.5.12_midmk4q7nq6bankjng5gmclke4: + /@storybook/addon-essentials/6.5.12_fozf472gp4suu37hs2nje52g7q: resolution: {integrity: sha512-4AAV0/mQPSk3V0Pie1NIqqgBgScUc0VtBEXDm8BgPeuDNVhPEupnaZgVt+I3GkzzPPo6JjdCsp2L11f3bBSEjw==} peerDependencies: '@babel/core': ^7.9.6 @@ -6720,12 +6800,13 @@ packages: '@storybook/addon-viewport': 6.5.12_biqbaboplfbrettd7655fr4n2y '@storybook/addons': 6.5.12_biqbaboplfbrettd7655fr4n2y '@storybook/api': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/builder-webpack5': 6.5.13_ceius3krcep667lesqygbylwku '@storybook/core-common': 6.5.12_ceius3krcep667lesqygbylwku '@storybook/node-logger': 6.5.12 core-js: 3.25.5 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - regenerator-runtime: 0.13.9 + regenerator-runtime: 0.13.10 ts-dedent: 2.2.0 webpack: 5.74.0 transitivePeerDependencies: @@ -6782,7 +6863,7 @@ packages: global: 4.4.0 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - regenerator-runtime: 0.13.9 + regenerator-runtime: 0.13.10 ts-dedent: 2.2.0 dev: true @@ -6805,7 +6886,7 @@ packages: core-js: 3.25.5 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - regenerator-runtime: 0.13.9 + regenerator-runtime: 0.13.10 dev: true /@storybook/addon-viewport/6.5.12_biqbaboplfbrettd7655fr4n2y: @@ -6831,7 +6912,7 @@ packages: prop-types: 15.8.1 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - regenerator-runtime: 0.13.9 + regenerator-runtime: 0.13.10 dev: true /@storybook/addons/6.5.12_biqbaboplfbrettd7655fr4n2y: @@ -6852,7 +6933,28 @@ packages: global: 4.4.0 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - regenerator-runtime: 0.13.9 + regenerator-runtime: 0.13.10 + dev: true + + /@storybook/addons/6.5.13_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-18CqzNnrGMfeZtiKz+R/3rHtSNnfNwz6y6prIQIbWseK16jY8ELTfIFGviwO5V2OqpbHDQi5+xQQ63QAIb89YA==} + 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/api': 6.5.13_biqbaboplfbrettd7655fr4n2y + '@storybook/channels': 6.5.13 + '@storybook/client-logger': 6.5.13 + '@storybook/core-events': 6.5.13 + '@storybook/csf': 0.0.2--canary.4566f4d.1 + '@storybook/router': 6.5.13_biqbaboplfbrettd7655fr4n2y + '@storybook/theming': 6.5.13_biqbaboplfbrettd7655fr4n2y + '@types/webpack-env': 1.18.0 + core-js: 3.25.5 + global: 4.4.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + regenerator-runtime: 0.13.10 dev: true /@storybook/api/6.5.12_biqbaboplfbrettd7655fr4n2y: @@ -6875,7 +6977,34 @@ packages: memoizerific: 1.11.3 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - regenerator-runtime: 0.13.9 + regenerator-runtime: 0.13.10 + store2: 2.14.2 + telejson: 6.0.8 + ts-dedent: 2.2.0 + util-deprecate: 1.0.2 + dev: true + + /@storybook/api/6.5.13_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-xVSmB7/IuFd6G7eiJjbI2MuS7SZunoUM6d+YCWpjiehfMeX47MXt1gZtOwFrgJC1ShZlefXFahq/dvxwtmWs+w==} + 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/channels': 6.5.13 + '@storybook/client-logger': 6.5.13 + '@storybook/core-events': 6.5.13 + '@storybook/csf': 0.0.2--canary.4566f4d.1 + '@storybook/router': 6.5.13_biqbaboplfbrettd7655fr4n2y + '@storybook/semver': 7.3.2 + '@storybook/theming': 6.5.13_biqbaboplfbrettd7655fr4n2y + core-js: 3.25.5 + fast-deep-equal: 3.1.3 + global: 4.4.0 + lodash: 4.17.21 + memoizerific: 1.11.3 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + regenerator-runtime: 0.13.10 store2: 2.14.2 telejson: 6.0.8 ts-dedent: 2.2.0 @@ -6909,8 +7038,8 @@ packages: '@storybook/store': 6.5.12_biqbaboplfbrettd7655fr4n2y '@storybook/theming': 6.5.12_biqbaboplfbrettd7655fr4n2y '@storybook/ui': 6.5.12_biqbaboplfbrettd7655fr4n2y - '@types/node': 16.11.64 - '@types/webpack': 4.41.32 + '@types/node': 16.11.66 + '@types/webpack': 4.41.33 autoprefixer: 9.8.8 babel-loader: 8.2.5_jeg5564y5etyvi3ajplf6yhqg4 case-sensitive-paths-webpack-plugin: 2.4.0 @@ -6951,6 +7080,68 @@ packages: - webpack-command dev: true + /@storybook/builder-webpack5/6.5.13_ceius3krcep667lesqygbylwku: + resolution: {integrity: sha512-juNH31ZljWbaoBD6Yx2/iQ4G66UBkwq+cFUqLzgVROKMXmYaT0AJYbfyY8CgGqcXkc+sqNA63yWaLWd8/K9vTg==} + peerDependencies: + 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.19.3 + '@storybook/addons': 6.5.13_biqbaboplfbrettd7655fr4n2y + '@storybook/api': 6.5.13_biqbaboplfbrettd7655fr4n2y + '@storybook/channel-postmessage': 6.5.13 + '@storybook/channels': 6.5.13 + '@storybook/client-api': 6.5.13_biqbaboplfbrettd7655fr4n2y + '@storybook/client-logger': 6.5.13 + '@storybook/components': 6.5.13_biqbaboplfbrettd7655fr4n2y + '@storybook/core-common': 6.5.13_ceius3krcep667lesqygbylwku + '@storybook/core-events': 6.5.13 + '@storybook/node-logger': 6.5.13 + '@storybook/preview-web': 6.5.13_biqbaboplfbrettd7655fr4n2y + '@storybook/router': 6.5.13_biqbaboplfbrettd7655fr4n2y + '@storybook/semver': 7.3.2 + '@storybook/store': 6.5.13_biqbaboplfbrettd7655fr4n2y + '@storybook/theming': 6.5.13_biqbaboplfbrettd7655fr4n2y + '@types/node': 16.11.66 + babel-loader: 8.2.5_wfdvla2jorjoj23kkavho2upde + babel-plugin-named-exports-order: 0.0.2 + browser-assert: 1.2.1 + case-sensitive-paths-webpack-plugin: 2.4.0 + core-js: 3.25.5 + css-loader: 5.2.7_webpack@5.74.0 + fork-ts-checker-webpack-plugin: 6.5.2_iphotpp42ipt4ovquw5uqijhcq + glob: 7.2.3 + glob-promise: 3.4.0_glob@7.2.3 + html-webpack-plugin: 5.5.0_webpack@5.74.0 + path-browserify: 1.0.1 + process: 0.11.10 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + stable: 0.1.8 + style-loader: 2.0.0_webpack@5.74.0 + terser-webpack-plugin: 5.3.6_webpack@5.74.0 + ts-dedent: 2.2.0 + typescript: 4.8.4 + util-deprecate: 1.0.2 + webpack: 5.74.0 + webpack-dev-middleware: 4.3.0_webpack@5.74.0 + webpack-hot-middleware: 2.25.2 + webpack-virtual-modules: 0.4.5 + transitivePeerDependencies: + - '@swc/core' + - esbuild + - eslint + - supports-color + - uglify-js + - vue-template-compiler + - webpack-cli + - webpack-command + dev: true + /@storybook/channel-postmessage/6.5.12: resolution: {integrity: sha512-SL/tJBLOdDlbUAAxhiZWOEYd5HI4y8rN50r6jeed5nD8PlocZjxJ6mO0IxnePqIL9Yu3nSrQRHrtp8AJvPX0Yg==} dependencies: @@ -6963,6 +7154,18 @@ packages: telejson: 6.0.8 dev: true + /@storybook/channel-postmessage/6.5.13: + resolution: {integrity: sha512-R79MBs0mQ7TV8M/a6x/SiTRyvZBidDfMEEthG7Cyo9p35JYiKOhj2535zhW4qlVMESBu95pwKYBibTjASoStPw==} + dependencies: + '@storybook/channels': 6.5.13 + '@storybook/client-logger': 6.5.13 + '@storybook/core-events': 6.5.13 + core-js: 3.25.5 + global: 4.4.0 + qs: 6.11.0 + telejson: 6.0.8 + dev: true + /@storybook/channel-websocket/6.5.12: resolution: {integrity: sha512-0t5dLselHVKTRYaphxx1dRh4pmOFCfR7h8oNJlOvJ29Qy5eNyVujDG9nhwWbqU6IKayuP4nZrAbe9Req9YZYlQ==} dependencies: @@ -6973,6 +7176,16 @@ packages: telejson: 6.0.8 dev: true + /@storybook/channel-websocket/6.5.13: + resolution: {integrity: sha512-kwh667H+tzCiNvs92GNwYOwVXdj9uHZyieRAN5rJtTBJ7XgLzGkpTEU50mWlbc0nDKhgE0qYvzyr5H393Iy5ug==} + dependencies: + '@storybook/channels': 6.5.13 + '@storybook/client-logger': 6.5.13 + core-js: 3.25.5 + global: 4.4.0 + telejson: 6.0.8 + dev: true + /@storybook/channels/6.5.12: resolution: {integrity: sha512-X5XaKbe4b7LXJ4sUakBo00x6pXnW78JkOonHoaKoWsccHLlEzwfBZpVVekhVZnqtCoLT23dB8wjKgA71RYWoiw==} dependencies: @@ -6981,6 +7194,14 @@ packages: util-deprecate: 1.0.2 dev: true + /@storybook/channels/6.5.13: + resolution: {integrity: sha512-sGYSilE30bz0jG+HdHnkv0B4XkAv2hP+KRZr4xmnv+MOOQpRnZpJ5Z3HVU16s17cj/83NWihKj6BuKcEVzyilg==} + dependencies: + core-js: 3.25.5 + ts-dedent: 2.2.0 + util-deprecate: 1.0.2 + dev: true + /@storybook/client-api/6.5.12_biqbaboplfbrettd7655fr4n2y: resolution: {integrity: sha512-+JiRSgiU829KPc25nG/k0+Ao2nUelHUe8Y/9cRoKWbCAGzi4xd0JLhHAOr9Oi2szWx/OI1L08lxVv1+WTveAeA==} peerDependencies: @@ -7004,7 +7225,37 @@ packages: qs: 6.11.0 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - regenerator-runtime: 0.13.9 + regenerator-runtime: 0.13.10 + store2: 2.14.2 + synchronous-promise: 2.0.16 + ts-dedent: 2.2.0 + util-deprecate: 1.0.2 + dev: true + + /@storybook/client-api/6.5.13_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-uH1mAWbidPiuuTdMUVEiuaNOfrYXm+9QLSP1MMYTKULqEOZI5MSOGkEDqRfVWxbYv/iWBOPTQ+OM9TQ6ecYacg==} + 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.13_biqbaboplfbrettd7655fr4n2y + '@storybook/channel-postmessage': 6.5.13 + '@storybook/channels': 6.5.13 + '@storybook/client-logger': 6.5.13 + '@storybook/core-events': 6.5.13 + '@storybook/csf': 0.0.2--canary.4566f4d.1 + '@storybook/store': 6.5.13_biqbaboplfbrettd7655fr4n2y + '@types/qs': 6.9.7 + '@types/webpack-env': 1.18.0 + core-js: 3.25.5 + fast-deep-equal: 3.1.3 + global: 4.4.0 + lodash: 4.17.21 + memoizerific: 1.11.3 + qs: 6.11.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + regenerator-runtime: 0.13.10 store2: 2.14.2 synchronous-promise: 2.0.16 ts-dedent: 2.2.0 @@ -7018,6 +7269,13 @@ packages: global: 4.4.0 dev: true + /@storybook/client-logger/6.5.13: + resolution: {integrity: sha512-F2SMW3LWFGXLm2ENTwTitrLWJgmMXRf3CWQXdN2EbkNCIBHy5Zcbt+91K4OX8e2e5h9gjGfrdYbyYDYOoUCEfA==} + dependencies: + core-js: 3.25.5 + global: 4.4.0 + dev: true + /@storybook/components/6.5.12_biqbaboplfbrettd7655fr4n2y: resolution: {integrity: sha512-NAAGl5PDXaHdVLd6hA+ttmLwH3zAVGXeUmEubzKZ9bJzb+duhFKxDa9blM4YEkI+palumvgAMm0UgS7ou680Ig==} peerDependencies: @@ -7032,7 +7290,25 @@ packages: qs: 6.11.0 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - regenerator-runtime: 0.13.9 + regenerator-runtime: 0.13.10 + util-deprecate: 1.0.2 + dev: true + + /@storybook/components/6.5.13_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-6Hhx70JK5pGfKCkqMU4yq/BBH+vRTmzj7tZKfPwba+f8VmTMoOr/2ysTQFRtXryiHB6Z15xBYgfq5x2pIwQzLQ==} + 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/client-logger': 6.5.13 + '@storybook/csf': 0.0.2--canary.4566f4d.1 + '@storybook/theming': 6.5.13_biqbaboplfbrettd7655fr4n2y + core-js: 3.25.5 + memoizerific: 1.11.3 + qs: 6.11.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + regenerator-runtime: 0.13.10 util-deprecate: 1.0.2 dev: true @@ -7065,7 +7341,7 @@ packages: qs: 6.11.0 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - regenerator-runtime: 0.13.9 + regenerator-runtime: 0.13.10 ts-dedent: 2.2.0 typescript: 4.8.4 unfetch: 4.2.0 @@ -7102,7 +7378,7 @@ packages: qs: 6.11.0 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - regenerator-runtime: 0.13.9 + regenerator-runtime: 0.13.10 ts-dedent: 2.2.0 typescript: 4.8.4 unfetch: 4.2.0 @@ -7110,6 +7386,43 @@ packages: webpack: 4.46.0 dev: true + /@storybook/core-client/6.5.13_glstf7nzdgkpv4airl4j7svpo4: + resolution: {integrity: sha512-YuELbRokTBdqjbx/R4/7O4rou9kvbBIOJjlUkor9hdLLuJ3P0yGianERGNkZFfvcfMBAxU0p52o7QvDldSR3kA==} + peerDependencies: + 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.5.13_biqbaboplfbrettd7655fr4n2y + '@storybook/channel-postmessage': 6.5.13 + '@storybook/channel-websocket': 6.5.13 + '@storybook/client-api': 6.5.13_biqbaboplfbrettd7655fr4n2y + '@storybook/client-logger': 6.5.13 + '@storybook/core-events': 6.5.13 + '@storybook/csf': 0.0.2--canary.4566f4d.1 + '@storybook/preview-web': 6.5.13_biqbaboplfbrettd7655fr4n2y + '@storybook/store': 6.5.13_biqbaboplfbrettd7655fr4n2y + '@storybook/ui': 6.5.13_biqbaboplfbrettd7655fr4n2y + airbnb-js-shims: 2.2.1 + ansi-to-html: 0.6.15 + core-js: 3.25.5 + global: 4.4.0 + lodash: 4.17.21 + qs: 6.11.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + regenerator-runtime: 0.13.10 + ts-dedent: 2.2.0 + typescript: 4.8.4 + unfetch: 4.2.0 + util-deprecate: 1.0.2 + webpack: 5.74.0 + dev: true + /@storybook/core-common/6.5.12_ceius3krcep667lesqygbylwku: resolution: {integrity: sha512-gG20+eYdIhwQNu6Xs805FLrOCWtkoc8Rt8gJiRt8yXzZh9EZkU4xgCRoCxrrJ03ys/gTiCFbBOfRi749uM3z4w==} peerDependencies: @@ -7125,26 +7438,97 @@ packages: '@babel/plugin-proposal-decorators': 7.19.3_@babel+core@7.19.3 '@babel/plugin-proposal-export-default-from': 7.18.10_@babel+core@7.19.3 '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.19.3 - '@babel/plugin-proposal-object-rest-spread': 7.18.9_@babel+core@7.19.3 + '@babel/plugin-proposal-object-rest-spread': 7.19.4_@babel+core@7.19.3 '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.19.3 '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.19.3 '@babel/plugin-proposal-private-property-in-object': 7.18.6_@babel+core@7.19.3 '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.19.3 '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.19.3 - '@babel/plugin-transform-block-scoping': 7.18.9_@babel+core@7.19.3 + '@babel/plugin-transform-block-scoping': 7.19.4_@babel+core@7.19.3 '@babel/plugin-transform-classes': 7.19.0_@babel+core@7.19.3 - '@babel/plugin-transform-destructuring': 7.18.13_@babel+core@7.19.3 + '@babel/plugin-transform-destructuring': 7.19.4_@babel+core@7.19.3 '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.19.3 '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.19.3 '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.19.3 '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.19.3 - '@babel/preset-env': 7.19.3_@babel+core@7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 '@babel/preset-react': 7.18.6_@babel+core@7.19.3 '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 '@babel/register': 7.18.9_@babel+core@7.19.3 '@storybook/node-logger': 6.5.12 '@storybook/semver': 7.3.2 - '@types/node': 16.11.64 + '@types/node': 16.11.66 + '@types/pretty-hrtime': 1.0.1 + babel-loader: 8.2.5_jeg5564y5etyvi3ajplf6yhqg4 + babel-plugin-macros: 3.1.0 + babel-plugin-polyfill-corejs3: 0.1.7_@babel+core@7.19.3 + chalk: 4.1.2 + core-js: 3.25.5 + express: 4.18.2 + file-system-cache: 1.1.0 + find-up: 5.0.0 + fork-ts-checker-webpack-plugin: 6.5.2_ybeu3d6gzlmqceoto3zzmxyiwi + fs-extra: 9.1.0 + glob: 7.2.3 + handlebars: 4.7.7 + interpret: 2.2.0 + json5: 2.2.1 + lazy-universal-dotenv: 3.0.1 + picomatch: 2.3.1 + pkg-dir: 5.0.0 + pretty-hrtime: 1.0.3 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + resolve-from: 5.0.0 + slash: 3.0.0 + telejson: 6.0.8 + ts-dedent: 2.2.0 + typescript: 4.8.4 + util-deprecate: 1.0.2 + webpack: 4.46.0 + transitivePeerDependencies: + - eslint + - supports-color + - vue-template-compiler + - webpack-cli + - webpack-command + dev: true + + /@storybook/core-common/6.5.13_ceius3krcep667lesqygbylwku: + resolution: {integrity: sha512-+DVZrRsteE9pw0X5MNffkdBgejQnbnL+UOG3qXkE9xxUamQALnuqS/w1BzpHE9WmOHuf7RWMKflyQEW3OLKAJg==} + peerDependencies: + 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.19.3 + '@babel/plugin-proposal-class-properties': 7.18.6_@babel+core@7.19.3 + '@babel/plugin-proposal-decorators': 7.19.3_@babel+core@7.19.3 + '@babel/plugin-proposal-export-default-from': 7.18.10_@babel+core@7.19.3 + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6_@babel+core@7.19.3 + '@babel/plugin-proposal-object-rest-spread': 7.19.4_@babel+core@7.19.3 + '@babel/plugin-proposal-optional-chaining': 7.18.9_@babel+core@7.19.3 + '@babel/plugin-proposal-private-methods': 7.18.6_@babel+core@7.19.3 + '@babel/plugin-proposal-private-property-in-object': 7.18.6_@babel+core@7.19.3 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.19.3 + '@babel/plugin-transform-arrow-functions': 7.18.6_@babel+core@7.19.3 + '@babel/plugin-transform-block-scoping': 7.19.4_@babel+core@7.19.3 + '@babel/plugin-transform-classes': 7.19.0_@babel+core@7.19.3 + '@babel/plugin-transform-destructuring': 7.19.4_@babel+core@7.19.3 + '@babel/plugin-transform-for-of': 7.18.8_@babel+core@7.19.3 + '@babel/plugin-transform-parameters': 7.18.8_@babel+core@7.19.3 + '@babel/plugin-transform-shorthand-properties': 7.18.6_@babel+core@7.19.3 + '@babel/plugin-transform-spread': 7.19.0_@babel+core@7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 + '@babel/preset-react': 7.18.6_@babel+core@7.19.3 + '@babel/preset-typescript': 7.18.6_@babel+core@7.19.3 + '@babel/register': 7.18.9_@babel+core@7.19.3 + '@storybook/node-logger': 6.5.13 + '@storybook/semver': 7.3.2 + '@types/node': 16.11.66 '@types/pretty-hrtime': 1.0.1 babel-loader: 8.2.5_jeg5564y5etyvi3ajplf6yhqg4 babel-plugin-macros: 3.1.0 @@ -7187,7 +7571,13 @@ packages: core-js: 3.25.5 dev: true - /@storybook/core-server/6.5.12_ceius3krcep667lesqygbylwku: + /@storybook/core-events/6.5.13: + resolution: {integrity: sha512-kL745tPpRKejzHToA3/CoBNbI+NPRVk186vGxXBmk95OEg0TlwgQExP8BnqEtLlRZMbW08e4+6kilc1M1M4N5w==} + dependencies: + core-js: 3.25.5 + dev: true + + /@storybook/core-server/6.5.12_ytxhm2og7grtgk7zaev74b66zq: resolution: {integrity: sha512-q1b/XKwoLUcCoCQ+8ndPD5THkEwXZYJ9ROv16i2VGUjjjAuSqpEYBq5GMGQUgxlWp1bkxtdGL2Jz+6pZfvldzA==} peerDependencies: '@storybook/builder-webpack5': '*' @@ -7205,20 +7595,22 @@ packages: dependencies: '@discoveryjs/json-ext': 0.5.7 '@storybook/builder-webpack4': 6.5.12_ceius3krcep667lesqygbylwku + '@storybook/builder-webpack5': 6.5.13_ceius3krcep667lesqygbylwku '@storybook/core-client': 6.5.12_vknrbelhugdkckamahrfl2bl2m '@storybook/core-common': 6.5.12_ceius3krcep667lesqygbylwku '@storybook/core-events': 6.5.12 '@storybook/csf': 0.0.2--canary.4566f4d.1 '@storybook/csf-tools': 6.5.12 '@storybook/manager-webpack4': 6.5.12_ceius3krcep667lesqygbylwku + '@storybook/manager-webpack5': 6.5.13_ceius3krcep667lesqygbylwku '@storybook/node-logger': 6.5.12 '@storybook/semver': 7.3.2 '@storybook/store': 6.5.12_biqbaboplfbrettd7655fr4n2y '@storybook/telemetry': 6.5.12_ceius3krcep667lesqygbylwku - '@types/node': 16.11.64 + '@types/node': 16.11.66 '@types/node-fetch': 2.6.2 '@types/pretty-hrtime': 1.0.1 - '@types/webpack': 4.41.32 + '@types/webpack': 4.41.33 better-opn: 2.1.1 boxen: 5.1.2 chalk: 4.1.2 @@ -7240,7 +7632,7 @@ packages: prompts: 2.4.2 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - regenerator-runtime: 0.13.9 + regenerator-runtime: 0.13.10 serve-favicon: 2.5.0 slash: 3.0.0 telejson: 6.0.8 @@ -7264,7 +7656,7 @@ packages: - webpack-command dev: true - /@storybook/core/6.5.12_nyxo6xdtefauysrmdnf5thgcme: + /@storybook/core/6.5.12_v2lpnt6djbxmifrauufufsjt3e: resolution: {integrity: sha512-+o3psAVWL+5LSwyJmEbvhgxKO1Et5uOX8ujNVt/f1fgwJBIf6BypxyPKu9YGQDRzcRssESQQZWNrZCCAZlFeuQ==} peerDependencies: '@storybook/builder-webpack5': '*' @@ -7281,8 +7673,10 @@ packages: typescript: optional: true dependencies: + '@storybook/builder-webpack5': 6.5.13_ceius3krcep667lesqygbylwku '@storybook/core-client': 6.5.12_glstf7nzdgkpv4airl4j7svpo4 - '@storybook/core-server': 6.5.12_ceius3krcep667lesqygbylwku + '@storybook/core-server': 6.5.12_ytxhm2og7grtgk7zaev74b66zq + '@storybook/manager-webpack5': 6.5.13_ceius3krcep667lesqygbylwku react: 18.2.0 react-dom: 18.2.0_react@18.2.0 typescript: 4.8.4 @@ -7309,18 +7703,18 @@ packages: optional: true dependencies: '@babel/core': 7.19.3 - '@babel/generator': 7.19.3 - '@babel/parser': 7.19.3 + '@babel/generator': 7.19.5 + '@babel/parser': 7.19.4 '@babel/plugin-transform-react-jsx': 7.19.0_@babel+core@7.19.3 - '@babel/preset-env': 7.19.3_@babel+core@7.19.3 - '@babel/traverse': 7.19.3 - '@babel/types': 7.19.3 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 + '@babel/traverse': 7.19.4 + '@babel/types': 7.19.4 '@storybook/csf': 0.0.2--canary.4566f4d.1 '@storybook/mdx1-csf': 0.0.1_@babel+core@7.19.3 core-js: 3.25.5 fs-extra: 9.1.0 global: 4.4.0 - regenerator-runtime: 0.13.9 + regenerator-runtime: 0.13.10 ts-dedent: 2.2.0 transitivePeerDependencies: - supports-color @@ -7341,7 +7735,7 @@ packages: core-js: 3.25.5 doctrine: 3.0.0 lodash: 4.17.21 - regenerator-runtime: 0.13.9 + regenerator-runtime: 0.13.10 transitivePeerDependencies: - react - react-dom @@ -7367,8 +7761,8 @@ packages: '@storybook/node-logger': 6.5.12 '@storybook/theming': 6.5.12_biqbaboplfbrettd7655fr4n2y '@storybook/ui': 6.5.12_biqbaboplfbrettd7655fr4n2y - '@types/node': 16.11.64 - '@types/webpack': 4.41.32 + '@types/node': 16.11.66 + '@types/webpack': 4.41.33 babel-loader: 8.2.5_jeg5564y5etyvi3ajplf6yhqg4 case-sensitive-paths-webpack-plugin: 2.4.0 chalk: 4.1.2 @@ -7384,7 +7778,7 @@ packages: react: 18.2.0 react-dom: 18.2.0_react@18.2.0 read-pkg-up: 7.0.1 - regenerator-runtime: 0.13.9 + regenerator-runtime: 0.13.10 resolve-from: 5.0.0 style-loader: 1.3.0_webpack@4.46.0 telejson: 6.0.8 @@ -7406,13 +7800,70 @@ packages: - webpack-command dev: true + /@storybook/manager-webpack5/6.5.13_ceius3krcep667lesqygbylwku: + resolution: {integrity: sha512-lQEZacSfeRsbqfJE7TVk35Hm1vkr0I2i1pyYqM+4862gRbMh1nJQXbJ5GqZ+Fo/bf0ZfyFZ32jGDIJAFdlpkuQ==} + peerDependencies: + 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.19.3 + '@babel/plugin-transform-template-literals': 7.18.9_@babel+core@7.19.3 + '@babel/preset-react': 7.18.6_@babel+core@7.19.3 + '@storybook/addons': 6.5.13_biqbaboplfbrettd7655fr4n2y + '@storybook/core-client': 6.5.13_glstf7nzdgkpv4airl4j7svpo4 + '@storybook/core-common': 6.5.13_ceius3krcep667lesqygbylwku + '@storybook/node-logger': 6.5.13 + '@storybook/theming': 6.5.13_biqbaboplfbrettd7655fr4n2y + '@storybook/ui': 6.5.13_biqbaboplfbrettd7655fr4n2y + '@types/node': 16.11.66 + babel-loader: 8.2.5_wfdvla2jorjoj23kkavho2upde + case-sensitive-paths-webpack-plugin: 2.4.0 + chalk: 4.1.2 + core-js: 3.25.5 + css-loader: 5.2.7_webpack@5.74.0 + express: 4.18.2 + find-up: 5.0.0 + fs-extra: 9.1.0 + html-webpack-plugin: 5.5.0_webpack@5.74.0 + node-fetch: 2.6.7 + process: 0.11.10 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + read-pkg-up: 7.0.1 + regenerator-runtime: 0.13.10 + resolve-from: 5.0.0 + style-loader: 2.0.0_webpack@5.74.0 + telejson: 6.0.8 + terser-webpack-plugin: 5.3.6_webpack@5.74.0 + ts-dedent: 2.2.0 + typescript: 4.8.4 + util-deprecate: 1.0.2 + webpack: 5.74.0 + webpack-dev-middleware: 4.3.0_webpack@5.74.0 + webpack-virtual-modules: 0.4.5 + transitivePeerDependencies: + - '@swc/core' + - encoding + - esbuild + - eslint + - supports-color + - uglify-js + - vue-template-compiler + - webpack-cli + - webpack-command + dev: true + /@storybook/mdx1-csf/0.0.1_@babel+core@7.19.3: resolution: {integrity: sha512-4biZIWWzoWlCarMZmTpqcJNgo/RBesYZwGFbQeXiGYsswuvfWARZnW9RE9aUEMZ4XPn7B1N3EKkWcdcWe/K2tg==} dependencies: - '@babel/generator': 7.19.3 - '@babel/parser': 7.19.3 - '@babel/preset-env': 7.19.3_@babel+core@7.19.3 - '@babel/types': 7.19.3 + '@babel/generator': 7.19.5 + '@babel/parser': 7.19.4 + '@babel/preset-env': 7.19.4_@babel+core@7.19.3 + '@babel/types': 7.19.4 '@mdx-js/mdx': 1.6.22 '@types/lodash': 4.14.186 js-string-escape: 1.0.1 @@ -7435,6 +7886,16 @@ packages: pretty-hrtime: 1.0.3 dev: true + /@storybook/node-logger/6.5.13: + resolution: {integrity: sha512-/r5aVZAqZRoy5FyNk/G4pj7yKJd3lJfPbAaOHVROv2IF7PJP/vtRaDkcfh0g2U6zwuDxGIqSn80j+qoEli9m5A==} + dependencies: + '@types/npmlog': 4.1.4 + chalk: 4.1.2 + core-js: 3.25.5 + npmlog: 5.0.1 + pretty-hrtime: 1.0.3 + dev: true + /@storybook/postinstall/6.5.12: resolution: {integrity: sha512-6K73f9c2UO+w4Wtyo2BxEpEsnhPvMgqHSaJ9Yt6Tc90LaDGUbcVgy6PNibsRyuJ/KQ543WeiRO5rSZfm2uJU9A==} dependencies: @@ -7460,7 +7921,33 @@ packages: qs: 6.11.0 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - regenerator-runtime: 0.13.9 + regenerator-runtime: 0.13.10 + synchronous-promise: 2.0.16 + ts-dedent: 2.2.0 + unfetch: 4.2.0 + util-deprecate: 1.0.2 + dev: true + + /@storybook/preview-web/6.5.13_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-GNNYVzw4SmRua3dOc52Ye6Us4iQbq5GKQ56U3iwnzZM3TBdJB+Rft94Fn1/pypHujEHS8hl5Xgp9td6C1lLCow==} + 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.13_biqbaboplfbrettd7655fr4n2y + '@storybook/channel-postmessage': 6.5.13 + '@storybook/client-logger': 6.5.13 + '@storybook/core-events': 6.5.13 + '@storybook/csf': 0.0.2--canary.4566f4d.1 + '@storybook/store': 6.5.13_biqbaboplfbrettd7655fr4n2y + ansi-to-html: 0.6.15 + core-js: 3.25.5 + global: 4.4.0 + lodash: 4.17.21 + qs: 6.11.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + regenerator-runtime: 0.13.10 synchronous-promise: 2.0.16 ts-dedent: 2.2.0 unfetch: 4.2.0 @@ -7486,7 +7973,7 @@ packages: - supports-color dev: true - /@storybook/react/6.5.12_yqxcvbtk6e2nsx45qlxuze54wa: + /@storybook/react/6.5.12_z7mbqtlf63qmqxqctdyj6vphwm: resolution: {integrity: sha512-1tG8EdSfp+OZAKAWPT2UrexF4o007jEMwQFFXw1atIQrQOADzSnZ7lTYJ08o5TyJwksswtr18tH3oJJ9sG3KPw==} engines: {node: '>=10.13.0'} hasBin: true @@ -7519,17 +8006,19 @@ packages: '@babel/preset-react': 7.18.6_@babel+core@7.19.3 '@pmmmwh/react-refresh-webpack-plugin': 0.5.8_metx475lqcp4j5c75za4zf7xbi '@storybook/addons': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/builder-webpack5': 6.5.13_ceius3krcep667lesqygbylwku '@storybook/client-logger': 6.5.12 - '@storybook/core': 6.5.12_nyxo6xdtefauysrmdnf5thgcme + '@storybook/core': 6.5.12_v2lpnt6djbxmifrauufufsjt3e '@storybook/core-common': 6.5.12_ceius3krcep667lesqygbylwku '@storybook/csf': 0.0.2--canary.4566f4d.1 '@storybook/docs-tools': 6.5.12_biqbaboplfbrettd7655fr4n2y + '@storybook/manager-webpack5': 6.5.13_ceius3krcep667lesqygbylwku '@storybook/node-logger': 6.5.12 '@storybook/react-docgen-typescript-plugin': 1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0_qqxisngxjbp7lstdk7boexbu3e '@storybook/semver': 7.3.2 '@storybook/store': 6.5.12_biqbaboplfbrettd7655fr4n2y '@types/estree': 0.0.51 - '@types/node': 16.11.64 + '@types/node': 16.11.66 '@types/webpack-env': 1.18.0 acorn: 7.4.1 acorn-jsx: 5.3.2_acorn@7.4.1 @@ -7548,7 +8037,7 @@ packages: react-element-to-jsx-string: 14.3.4_biqbaboplfbrettd7655fr4n2y react-refresh: 0.11.0 read-pkg-up: 7.0.1 - regenerator-runtime: 0.13.9 + regenerator-runtime: 0.13.10 require-from-string: 2.0.2 ts-dedent: 2.2.0 typescript: 4.8.4 @@ -7588,7 +8077,22 @@ packages: qs: 6.11.0 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - regenerator-runtime: 0.13.9 + regenerator-runtime: 0.13.10 + dev: true + + /@storybook/router/6.5.13_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-sf5aogfirH5ucD0d0hc2mKf2iyWsZsvXhr5kjxUQmgkcoflkGUWhc34sbSQVRQ1i8K5lkLIDH/q2s1Zr2SbzhQ==} + 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/client-logger': 6.5.13 + core-js: 3.25.5 + memoizerific: 1.11.3 + qs: 6.11.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + regenerator-runtime: 0.13.10 dev: true /@storybook/semver/7.3.2: @@ -7617,7 +8121,7 @@ packages: prettier: 2.3.0 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - regenerator-runtime: 0.13.9 + regenerator-runtime: 0.13.10 dev: true /@storybook/store/6.5.12_biqbaboplfbrettd7655fr4n2y: @@ -7637,7 +8141,32 @@ packages: memoizerific: 1.11.3 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - regenerator-runtime: 0.13.9 + regenerator-runtime: 0.13.10 + slash: 3.0.0 + stable: 0.1.8 + synchronous-promise: 2.0.16 + ts-dedent: 2.2.0 + util-deprecate: 1.0.2 + dev: true + + /@storybook/store/6.5.13_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-GG6lm+8fBX1tNUnX7x3raBOjYhhf14bPWLtYiPlxDTFEMs3sJte7zWKZq6NQ79MoBLL6jjzTeolBfDCBw6fiWQ==} + 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.13_biqbaboplfbrettd7655fr4n2y + '@storybook/client-logger': 6.5.13 + '@storybook/core-events': 6.5.13 + '@storybook/csf': 0.0.2--canary.4566f4d.1 + core-js: 3.25.5 + fast-deep-equal: 3.1.3 + global: 4.4.0 + lodash: 4.17.21 + memoizerific: 1.11.3 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + regenerator-runtime: 0.13.10 slash: 3.0.0 stable: 0.1.8 synchronous-promise: 2.0.16 @@ -7659,7 +8188,7 @@ packages: isomorphic-unfetch: 3.1.0 nanoid: 3.3.4 read-pkg-up: 7.0.1 - regenerator-runtime: 0.13.9 + regenerator-runtime: 0.13.10 transitivePeerDependencies: - encoding - eslint @@ -7683,7 +8212,21 @@ packages: memoizerific: 1.11.3 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - regenerator-runtime: 0.13.9 + regenerator-runtime: 0.13.10 + dev: true + + /@storybook/theming/6.5.13_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-oif5NGFAUQhizo50r+ctw2hZNLWV4dPHai+L/gFvbaSeRBeHSNkIcMoZ2FlrO566HdGZTDutYXcR+xus8rI28g==} + 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/client-logger': 6.5.13 + core-js: 3.25.5 + memoizerific: 1.11.3 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + regenerator-runtime: 0.13.10 dev: true /@storybook/ui/6.5.12_biqbaboplfbrettd7655fr4n2y: @@ -7706,7 +8249,31 @@ packages: qs: 6.11.0 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - regenerator-runtime: 0.13.9 + regenerator-runtime: 0.13.10 + resolve-from: 5.0.0 + dev: true + + /@storybook/ui/6.5.13_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-MklJuSg4Bc+MWjwhZVmZhJaucaeEBUMMa2V9oRWbIgZOdRHqdW72S2vCbaarDAYfBQdnfaoq1GkSQiw+EnWOzA==} + 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.13_biqbaboplfbrettd7655fr4n2y + '@storybook/api': 6.5.13_biqbaboplfbrettd7655fr4n2y + '@storybook/channels': 6.5.13 + '@storybook/client-logger': 6.5.13 + '@storybook/components': 6.5.13_biqbaboplfbrettd7655fr4n2y + '@storybook/core-events': 6.5.13 + '@storybook/router': 6.5.13_biqbaboplfbrettd7655fr4n2y + '@storybook/semver': 7.3.2 + '@storybook/theming': 6.5.13_biqbaboplfbrettd7655fr4n2y + core-js: 3.25.5 + memoizerific: 1.11.3 + qs: 6.11.0 + react: 18.2.0 + react-dom: 18.2.0_react@18.2.0 + regenerator-runtime: 0.13.10 resolve-from: 5.0.0 dev: true @@ -7725,7 +8292,7 @@ packages: engines: {node: '>=12'} dependencies: '@babel/code-frame': 7.18.6 - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 '@types/aria-query': 4.2.2 aria-query: 5.0.2 chalk: 4.1.2 @@ -7739,7 +8306,7 @@ packages: engines: {node: '>=8', npm: '>=6', yarn: '>=1'} dependencies: '@adobe/css-tools': 4.0.1 - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 '@types/testing-library__jest-dom': 5.14.5 aria-query: 5.0.2 chalk: 3.0.0 @@ -7756,7 +8323,7 @@ packages: react: ^18.0.0 || 18 react-dom: ^18.0.0 || 18 dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 '@testing-library/dom': 8.19.0 '@types/react-dom': 18.0.6 react: 18.2.0 @@ -7775,6 +8342,13 @@ packages: /@tootallnate/once/1.1.2: resolution: {integrity: sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==} engines: {node: '>= 6'} + dev: false + optional: true + + /@tootallnate/once/2.0.0: + resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==} + engines: {node: '>= 10'} + dev: true /@tsconfig/node10/1.0.9: resolution: {integrity: sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==} @@ -7795,7 +8369,7 @@ packages: /@types/accepts/1.3.5: resolution: {integrity: sha512-jOdnI/3qTpHABjM5cx1Hc0sKsPoYCp+DP/GJRGtDlPd7fiV9oXGGIcjW/ZOxLIvjGz8MA+uMZI9metHlgqbgwQ==} dependencies: - '@types/node': 16.11.64 + '@types/node': 18.11.7 dev: false /@types/ag-auth/1.0.0: @@ -7844,8 +8418,8 @@ packages: /@types/babel__core/7.1.19: resolution: {integrity: sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw==} dependencies: - '@babel/parser': 7.19.3 - '@babel/types': 7.19.3 + '@babel/parser': 7.19.4 + '@babel/types': 7.19.4 '@types/babel__generator': 7.6.4 '@types/babel__template': 7.4.1 '@types/babel__traverse': 7.18.2 @@ -7854,20 +8428,20 @@ packages: /@types/babel__generator/7.6.4: resolution: {integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==} dependencies: - '@babel/types': 7.19.3 + '@babel/types': 7.19.4 dev: true /@types/babel__template/7.4.1: resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==} dependencies: - '@babel/parser': 7.19.3 - '@babel/types': 7.19.3 + '@babel/parser': 7.19.4 + '@babel/types': 7.19.4 dev: true /@types/babel__traverse/7.18.2: resolution: {integrity: sha512-FcFaxOr2V5KZCviw1TnutEMVUVsGt4D2hP1TAfXZAMKuHYW3xQhe3jTxNPWutgCJ3/X1c5yX8ZoGVEItxKbwBg==} dependencies: - '@babel/types': 7.19.3 + '@babel/types': 7.19.4 dev: true /@types/babylon/6.16.6: @@ -7883,16 +8457,16 @@ packages: resolution: {integrity: sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==} dependencies: '@types/connect': 3.4.35 - '@types/node': 16.11.64 + '@types/node': 18.11.7 /@types/bonjour/3.5.10: resolution: {integrity: sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==} dependencies: - '@types/node': 18.8.3 + '@types/node': 18.11.7 dev: true - /@types/chrome/0.0.197: - resolution: {integrity: sha512-m1NfS5bOjaypyqQfaX6CxmJodZVcvj5+Mt/K94EBHkflYjPNmXHAzbxfifdLMa0YM3PDyOxohoTS5ug/e6p5jA==} + /@types/chrome/0.0.198: + resolution: {integrity: sha512-zLn6JZXwSOOY0pw+dkIxItxvjsQThDkqaFnsnmr412Wa0MqesymfdTQ/0d30J/0wiFp3TYw0i63hzGGy0W7Paw==} dependencies: '@types/filesystem': 0.0.32 '@types/har-format': 1.2.9 @@ -7930,18 +8504,18 @@ packages: resolution: {integrity: sha512-h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw==} dependencies: '@types/express-serve-static-core': 4.17.31 - '@types/node': 18.8.3 + '@types/node': 18.11.7 dev: true /@types/connect/3.4.35: resolution: {integrity: sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==} dependencies: - '@types/node': 16.11.64 + '@types/node': 18.11.7 /@types/consumable-stream/2.0.0: resolution: {integrity: sha512-RuXAZX3pQ2jGgETa1p4fTZb4Y1IxanZ8hafWewNoWW+Nqc4OcDw2VbAPzB1Wq7l5rtvmmCmHnpDX0CNRthqsAA==} dependencies: - '@types/node': 16.11.64 + '@types/node': 18.11.7 dev: true /@types/cookie/0.4.1: @@ -7955,7 +8529,7 @@ packages: /@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.64 + '@types/node': 18.11.7 tapable: 2.2.1 webpack: 5.74.0_webpack-cli@4.10.0 transitivePeerDependencies: @@ -7971,7 +8545,7 @@ packages: /@types/cross-spawn/6.0.2: resolution: {integrity: sha512-KuwNhp3eza+Rhu8IFI5HUXRP0LIhqH5cAjubUvGXXthh4YYBuP2ntwEX+Cz8GJoZUHlKo247wPWOfA9LYEq4cw==} dependencies: - '@types/node': 16.11.64 + '@types/node': 18.11.7 dev: true /@types/d3/3.5.47: @@ -7998,13 +8572,13 @@ packages: resolution: {integrity: sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==} dependencies: '@types/eslint': 8.4.6 - '@types/estree': 1.0.0 + '@types/estree': 0.0.51 dev: true /@types/eslint/8.4.6: resolution: {integrity: sha512-/fqTbjxyFUaYNO7VcW5g+4npmqVACz1bB7RTHYuLj+PRjw9hrCwrUXVQFpChUS0JsyEFvMZ7U/PfmvWgxJhI9g==} dependencies: - '@types/estree': 1.0.0 + '@types/estree': 0.0.51 '@types/json-schema': 7.0.11 dev: true @@ -8018,7 +8592,7 @@ packages: /@types/express-serve-static-core/4.17.31: resolution: {integrity: sha512-DxMhY+NAsTwMMFHBTtJFNp5qiHKJ7TeqOo23zVEM9alT1Ml27Q3xcTH0xwxn7Q0BbMcVEJOs/7aQtUWupUQN3Q==} dependencies: - '@types/node': 16.11.64 + '@types/node': 18.11.7 '@types/qs': 6.9.7 '@types/range-parser': 1.2.4 @@ -8046,20 +8620,20 @@ packages: resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==} dependencies: '@types/minimatch': 5.1.2 - '@types/node': 18.8.3 + '@types/node': 18.11.7 dev: true /@types/glob/8.0.0: resolution: {integrity: sha512-l6NQsDDyQUVeoTynNpC9uRvCUint/gSUXQA2euwmTuWGvPY5LSDUu6tkCtJB2SvGQlJQzLaKqcGZP4//7EDveA==} dependencies: '@types/minimatch': 5.1.2 - '@types/node': 18.8.3 + '@types/node': 18.11.7 dev: true /@types/graceful-fs/4.1.5: resolution: {integrity: sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==} dependencies: - '@types/node': 18.8.3 + '@types/node': 18.11.7 dev: true /@types/har-format/1.2.9: @@ -8103,7 +8677,7 @@ packages: /@types/http-proxy/1.17.9: resolution: {integrity: sha512-QsbSjA/fSk7xB+UXlCT3wHBy5ai9wOcNDWwZAtud+jXhwOM3l+EYZh8Lng4+/6n8uar0J7xILzqftJdJ/Wdfkw==} dependencies: - '@types/node': 18.8.3 + '@types/node': 18.11.7 dev: true /@types/is-ci/3.0.0: @@ -8132,11 +8706,11 @@ packages: '@types/istanbul-lib-report': 3.0.0 dev: true - /@types/jest/27.5.2: - resolution: {integrity: sha512-mpT8LJJ4CMeeahobofYWIjFo0xonRS/HfxnVEPMPFSQdGUt1uHCnoPT7Zhb+sjDU2wz0oKV0OLUR0WzrHNgfeA==} + /@types/jest/29.2.0: + resolution: {integrity: sha512-KO7bPV21d65PKwv3LLsD8Jn3E05pjNjRZvkm+YTacWhVmykAb07wW6IkZUmQAltwQafNcDUEUrMO2h3jeBSisg==} dependencies: - jest-matcher-utils: 27.5.1 - pretty-format: 27.5.1 + expect: 29.2.2 + pretty-format: 29.2.1 dev: true /@types/js-levenshtein/1.1.1: @@ -8146,6 +8720,14 @@ packages: /@types/jsan/3.1.2: resolution: {integrity: sha512-+HCe1/X0w90LijHWI/lkcjIohu1AK6QwjUWuXs0hNWDCFAjgpWw2CnSUiZwOOtix1nYqio7TuajTcK5mSH/WZw==} + /@types/jsdom/20.0.0: + resolution: {integrity: sha512-YfAchFs0yM1QPDrLm2VHe+WHGtqms3NXnXAMolrgrVP6fgBHHXy1ozAbo/dFtPNtZC/m66bPiCTWYmqp1F14gA==} + dependencies: + '@types/node': 18.11.7 + '@types/tough-cookie': 4.0.2 + parse5: 7.1.1 + dev: true + /@types/json-schema/7.0.11: resolution: {integrity: sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==} @@ -8156,13 +8738,13 @@ packages: /@types/jsonwebtoken/8.5.9: resolution: {integrity: sha512-272FMnFGzAVMGtu9tkr29hRL6bZj4Zs1KZNeHLnKqAvp06tAIcarTMwOh8/8bz4FmKRcMxZhZNeUAQsNLoiPhg==} dependencies: - '@types/node': 18.8.3 + '@types/node': 18.11.7 dev: true /@types/keyv/3.1.4: resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==} dependencies: - '@types/node': 18.8.3 + '@types/node': 18.11.7 /@types/lodash.curry/4.1.7: resolution: {integrity: sha512-R+IkSvh7CI8klh7FkQuTAiAR+aPFqYrNEjw/hMxjCSO7TsAqBAxpR99PxxJN1lgE6YuvpHEoktqbh6V5VLzxZA==} @@ -8218,7 +8800,7 @@ packages: /@types/morgan/1.9.3: resolution: {integrity: sha512-BiLcfVqGBZCyNCnCH3F4o2GmDLrpy0HeBVnNlyZG4fo88ZiE9SoiBe3C+2ezuwbjlEyT+PDZ17//TAlRxAn75Q==} dependencies: - '@types/node': 16.11.64 + '@types/node': 18.11.7 dev: true /@types/ms/0.7.31: @@ -8228,7 +8810,7 @@ packages: /@types/node-fetch/2.6.2: resolution: {integrity: sha512-DHqhlq5jeESLy19TYhLakJ07kNumXWjcDdxXsLUMJZ6ue8VZJj4kLPQVE/2mdHh3xZziNF1xppu5lwmS53HR+A==} dependencies: - '@types/node': 18.8.3 + '@types/node': 18.11.7 form-data: 3.0.1 dev: true @@ -8240,11 +8822,11 @@ packages: resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==} dev: true - /@types/node/16.11.64: - resolution: {integrity: sha512-z5hPTlVFzNwtJ2LNozTpJcD1Cu44c4LNuzaq1mwxmiHWQh2ULdR6Vjwo1UGldzRpzL0yUEdZddnfqGW2G70z6Q==} + /@types/node/16.11.66: + resolution: {integrity: sha512-+xvMrGl3eAygKcf5jm+4zA4tbfEgmKM9o6/glTmN0RFVdu2VuFXMYYtRmuv3zTGCgAYMnEZLde3B7BTp+Yxcig==} - /@types/node/18.8.3: - resolution: {integrity: sha512-0os9vz6BpGwxGe9LOhgP/ncvYN5Tx1fNcd2TM3rD/aCGBkysb+ZWpXEocG24h6ZzOi13+VB8HndAQFezsSOw1w==} + /@types/node/18.11.7: + resolution: {integrity: sha512-LhFTglglr63mNXUSRYD8A+ZAIu5sFqNJ4Y2fPuY7UlrySJH87rRRlhtVmMHplmfk5WkoJGmDjE9oiTfyX94CpQ==} /@types/normalize-package-data/2.4.1: resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==} @@ -8291,8 +8873,8 @@ packages: /@types/qs/6.9.7: resolution: {integrity: sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==} - /@types/ramda/0.28.15: - resolution: {integrity: sha512-FCaLNVZry65jW8x/FDnKgjgkCNQxgc5AYMQwdNn6yW5M+62R+0nt2Y36U43dTNora9hcquemfrY5gxhE5pcilQ==} + /@types/ramda/0.28.16: + resolution: {integrity: sha512-dxx0V3/thotNhkHjBL5ifkXm9Cj3aANnAcEjMuGq2i5OaznWaiyGAQR9CicO7fJrFXg6KSoeuKmc+akItd0Fww==} dependencies: ts-toolbelt: 6.15.5 dev: true @@ -8348,7 +8930,7 @@ packages: /@types/responselike/1.0.0: resolution: {integrity: sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==} dependencies: - '@types/node': 18.8.3 + '@types/node': 18.11.7 /@types/retry/0.12.0: resolution: {integrity: sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==} @@ -8383,12 +8965,12 @@ packages: resolution: {integrity: sha512-z5xyF6uh8CbjAu9760KDKsH2FcDxZ2tFCsA4HIMWE6IkiYMXfVoa+4f9KX+FN0ZLsaMw1WNG2ETLA6N+/YA+cg==} dependencies: '@types/mime': 3.0.1 - '@types/node': 18.8.3 + '@types/node': 18.11.7 /@types/set-cookie-parser/2.4.2: resolution: {integrity: sha512-fBZgytwhYAUkj/jC/FAV4RQ5EerRup1YQsXQCh8rZfiHkc4UahC192oH0smGwsXol3cL3A5oETuAHeQHmhXM4w==} dependencies: - '@types/node': 18.8.3 + '@types/node': 18.11.7 dev: false /@types/simple-diff/1.6.1: @@ -8429,7 +9011,7 @@ packages: /@types/sockjs/0.3.33: resolution: {integrity: sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==} dependencies: - '@types/node': 18.8.3 + '@types/node': 18.11.7 dev: true /@types/source-list-map/0.1.2: @@ -8463,7 +9045,7 @@ packages: resolution: {integrity: sha512-mu/N4uvfDN2zVQQ5AYJI/g4qxn2bHB6521t1UuH09ShNWjebTqN0ZFuYK9uYjcgmI0dTQEs+Owi1EO6U0OkOZQ==} dependencies: '@types/cookiejar': 2.1.2 - '@types/node': 16.11.64 + '@types/node': 18.11.7 dev: true /@types/supertest/2.0.12: @@ -8485,7 +9067,11 @@ packages: /@types/testing-library__jest-dom/5.14.5: resolution: {integrity: sha512-SBwbxYoyPIvxHbeHxTZX2Pe/74F/tX2/D3mMvzabdeJ25bBojfW0TyB8BHrbq/9zaaKICJZjLP+8r6AeZMFCuQ==} dependencies: - '@types/jest': 27.5.2 + '@types/jest': 29.2.0 + dev: true + + /@types/tough-cookie/4.0.2: + resolution: {integrity: sha512-Q5vtl1W5ue16D+nIaW8JWebSSraJVlK+EthKn7e7UcD4KWsaSJ8BqGPXNaPghgtcn/fhvrN17Tv8ksUsQpiplw==} dev: true /@types/uglify-js/3.17.0: @@ -8515,15 +9101,15 @@ packages: /@types/webpack-sources/3.2.0: resolution: {integrity: sha512-Ft7YH3lEVRQ6ls8k4Ff1oB4jN6oy/XmU6tQISKdhfh+1mR+viZFphS6WL0IrtDOzvefmJg5a0s7ZQoRXwqTEFg==} dependencies: - '@types/node': 18.8.3 + '@types/node': 18.11.7 '@types/source-list-map': 0.1.2 source-map: 0.7.4 dev: true - /@types/webpack/4.41.32: - resolution: {integrity: sha512-cb+0ioil/7oz5//7tZUSwbrSAN/NWHrQylz5cW8G0dWTcF/g+/dSdMlKVZspBYuMAN1+WnwHrkxiRrLcwd0Heg==} + /@types/webpack/4.41.33: + resolution: {integrity: sha512-PPajH64Ft2vWevkerISMtnZ8rTs4YmRbs+23c402J0INmxDKCrhZNvwZYtzx96gY2wAtXdrK1BS2fiC8MlLr3g==} dependencies: - '@types/node': 18.8.3 + '@types/node': 18.11.7 '@types/tapable': 1.0.8 '@types/uglify-js': 3.17.0 '@types/webpack-sources': 3.2.0 @@ -8540,7 +9126,7 @@ packages: /@types/ws/8.5.3: resolution: {integrity: sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w==} dependencies: - '@types/node': 18.8.3 + '@types/node': 18.11.7 dev: true /@types/yargs-parser/21.0.0: @@ -8553,8 +9139,8 @@ packages: '@types/yargs-parser': 21.0.0 dev: true - /@types/yargs/16.0.4: - resolution: {integrity: sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==} + /@types/yargs/17.0.13: + resolution: {integrity: sha512-9sWaruZk2JGxIQU+IhI1fhPYRcQ0UuTNuKuCW9bR5fp7qi2Llf7WDzNa17Cy7TKnh3cdxDOiyTu6gaLS0eDatg==} dependencies: '@types/yargs-parser': 21.0.0 dev: true @@ -8563,11 +9149,11 @@ packages: resolution: {integrity: sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw==} requiresBuild: true dependencies: - '@types/node': 18.8.3 + '@types/node': 18.11.7 optional: true - /@typescript-eslint/eslint-plugin/5.39.0_cfd7h3iktziq6hcwahu2qxhjhy: - resolution: {integrity: sha512-xVfKOkBm5iWMNGKQ2fwX5GVgBuHmZBO1tCRwXmY5oAIsPscfwm2UADDuNB8ZVYCtpQvJK4xpjrK7jEhcJ0zY9A==} + /@typescript-eslint/eslint-plugin/5.40.1_ukgdydjtebaxmxfqp5v5ulh64y: + resolution: {integrity: sha512-FsWboKkWdytGiXT5O1/R9j37YgcjO8MKHSUmWnIEjVaz0krHkplPnYi7mwdb+5+cs0toFNQb0HIrN7zONdIEWg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: '@typescript-eslint/parser': ^5.0.0 @@ -8577,10 +9163,10 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/parser': 5.39.0_z4bbprzjrhnsfa24uvmcbu7f5q - '@typescript-eslint/scope-manager': 5.39.0 - '@typescript-eslint/type-utils': 5.39.0_z4bbprzjrhnsfa24uvmcbu7f5q - '@typescript-eslint/utils': 5.39.0_z4bbprzjrhnsfa24uvmcbu7f5q + '@typescript-eslint/parser': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q + '@typescript-eslint/scope-manager': 5.40.1 + '@typescript-eslint/type-utils': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q + '@typescript-eslint/utils': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q debug: 4.3.4 eslint: 8.25.0 ignore: 5.2.0 @@ -8592,8 +9178,8 @@ packages: - supports-color dev: true - /@typescript-eslint/parser/5.39.0_z4bbprzjrhnsfa24uvmcbu7f5q: - resolution: {integrity: sha512-PhxLjrZnHShe431sBAGHaNe6BDdxAASDySgsBCGxcBecVCi8NQWxQZMcizNA4g0pN51bBAn/FUfkWG3SDVcGlA==} + /@typescript-eslint/parser/5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q: + resolution: {integrity: sha512-IK6x55va5w4YvXd4b3VrXQPldV9vQTxi5ov+g4pMANsXPTXOcfjx08CRR1Dfrcc51syPtXHF5bgLlMHYFrvQtg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 @@ -8602,9 +9188,9 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/scope-manager': 5.39.0 - '@typescript-eslint/types': 5.39.0 - '@typescript-eslint/typescript-estree': 5.39.0_typescript@4.8.4 + '@typescript-eslint/scope-manager': 5.40.1 + '@typescript-eslint/types': 5.40.1 + '@typescript-eslint/typescript-estree': 5.40.1_typescript@4.8.4 debug: 4.3.4 eslint: 8.25.0 typescript: 4.8.4 @@ -8612,16 +9198,16 @@ packages: - supports-color dev: true - /@typescript-eslint/scope-manager/5.39.0: - resolution: {integrity: sha512-/I13vAqmG3dyqMVSZPjsbuNQlYS082Y7OMkwhCfLXYsmlI0ca4nkL7wJ/4gjX70LD4P8Hnw1JywUVVAwepURBw==} + /@typescript-eslint/scope-manager/5.40.1: + resolution: {integrity: sha512-jkn4xsJiUQucI16OLCXrLRXDZ3afKhOIqXs4R3O+M00hdQLKR58WuyXPZZjhKLFCEP2g+TXdBRtLQ33UfAdRUg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - '@typescript-eslint/types': 5.39.0 - '@typescript-eslint/visitor-keys': 5.39.0 + '@typescript-eslint/types': 5.40.1 + '@typescript-eslint/visitor-keys': 5.40.1 dev: true - /@typescript-eslint/type-utils/5.39.0_z4bbprzjrhnsfa24uvmcbu7f5q: - resolution: {integrity: sha512-KJHJkOothljQWzR3t/GunL0TPKY+fGJtnpl+pX+sJ0YiKTz3q2Zr87SGTmFqsCMFrLt5E0+o+S6eQY0FAXj9uA==} + /@typescript-eslint/type-utils/5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q: + resolution: {integrity: sha512-DLAs+AHQOe6n5LRraXiv27IYPhleF0ldEmx6yBqBgBLaNRKTkffhV1RPsjoJBhVup2zHxfaRtan8/YRBgYhU9Q==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: '*' @@ -8630,8 +9216,8 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/typescript-estree': 5.39.0_typescript@4.8.4 - '@typescript-eslint/utils': 5.39.0_z4bbprzjrhnsfa24uvmcbu7f5q + '@typescript-eslint/typescript-estree': 5.40.1_typescript@4.8.4 + '@typescript-eslint/utils': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q debug: 4.3.4 eslint: 8.25.0 tsutils: 3.21.0_typescript@4.8.4 @@ -8640,13 +9226,13 @@ packages: - supports-color dev: true - /@typescript-eslint/types/5.39.0: - resolution: {integrity: sha512-gQMZrnfEBFXK38hYqt8Lkwt8f4U6yq+2H5VDSgP/qiTzC8Nw8JO3OuSUOQ2qW37S/dlwdkHDntkZM6SQhKyPhw==} + /@typescript-eslint/types/5.40.1: + resolution: {integrity: sha512-Icg9kiuVJSwdzSQvtdGspOlWNjVDnF3qVIKXdJ103o36yRprdl3Ge5cABQx+csx960nuMF21v8qvO31v9t3OHw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /@typescript-eslint/typescript-estree/5.39.0_typescript@4.8.4: - resolution: {integrity: sha512-qLFQP0f398sdnogJoLtd43pUgB18Q50QSA+BTE5h3sUxySzbWDpTSdgt4UyxNSozY/oDK2ta6HVAzvGgq8JYnA==} + /@typescript-eslint/typescript-estree/5.40.1_typescript@4.8.4: + resolution: {integrity: sha512-5QTP/nW5+60jBcEPfXy/EZL01qrl9GZtbgDZtDPlfW5zj/zjNrdI2B5zMUHmOsfvOr2cWqwVdWjobCiHcedmQA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: typescript: '*' @@ -8654,8 +9240,8 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/types': 5.39.0 - '@typescript-eslint/visitor-keys': 5.39.0 + '@typescript-eslint/types': 5.40.1 + '@typescript-eslint/visitor-keys': 5.40.1 debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 @@ -8666,29 +9252,31 @@ packages: - supports-color dev: true - /@typescript-eslint/utils/5.39.0_z4bbprzjrhnsfa24uvmcbu7f5q: - resolution: {integrity: sha512-+DnY5jkpOpgj+EBtYPyHRjXampJfC0yUZZzfzLuUWVZvCuKqSdJVC8UhdWipIw7VKNTfwfAPiOWzYkAwuIhiAg==} + /@typescript-eslint/utils/5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q: + resolution: {integrity: sha512-a2TAVScoX9fjryNrW6BZRnreDUszxqm9eQ9Esv8n5nXApMW0zeANUYlwh/DED04SC/ifuBvXgZpIK5xeJHQ3aw==} 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.39.0 - '@typescript-eslint/types': 5.39.0 - '@typescript-eslint/typescript-estree': 5.39.0_typescript@4.8.4 + '@types/semver': 7.3.12 + '@typescript-eslint/scope-manager': 5.40.1 + '@typescript-eslint/types': 5.40.1 + '@typescript-eslint/typescript-estree': 5.40.1_typescript@4.8.4 eslint: 8.25.0 eslint-scope: 5.1.1 eslint-utils: 3.0.0_eslint@8.25.0 + semver: 7.3.8 transitivePeerDependencies: - supports-color - typescript dev: true - /@typescript-eslint/visitor-keys/5.39.0: - resolution: {integrity: sha512-yyE3RPwOG+XJBLrhvsxAidUgybJVQ/hG8BhiJo0k8JSAYfk/CshVcxf0HwP4Jt7WZZ6vLmxdo1p6EyN3tzFTkg==} + /@typescript-eslint/visitor-keys/5.40.1: + resolution: {integrity: sha512-A2DGmeZ+FMja0geX5rww+DpvILpwo1OsiQs0M+joPWJYsiEFBLsH0y1oFymPNul6Z5okSmHpP4ivkc2N0Cgfkw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - '@typescript-eslint/types': 5.39.0 + '@typescript-eslint/types': 5.40.1 eslint-visitor-keys: 3.3.0 dev: true @@ -8932,7 +9520,7 @@ packages: webpack-cli: 4.x.x dependencies: webpack: 5.74.0_webpack-cli@4.10.0 - webpack-cli: 4.10.0_vnmgq7jx5zjkzolvtfp7mdf5ri + webpack-cli: 4.10.0_webpack@5.74.0 dev: true /@webpack-cli/info/1.5.0_webpack-cli@4.10.0: @@ -8941,7 +9529,7 @@ packages: webpack-cli: 4.x.x dependencies: envinfo: 7.8.1 - webpack-cli: 4.10.0_vnmgq7jx5zjkzolvtfp7mdf5ri + webpack-cli: 4.10.0_webpack@5.74.0 dev: true /@webpack-cli/serve/1.7.0_ud4agclah7rahur6ntojouq57y: @@ -8969,8 +9557,8 @@ packages: webpack-cli: 4.10.0_webpack@5.74.0 dev: true - /@xmldom/xmldom/0.7.5: - resolution: {integrity: sha512-V3BIhmY36fXZ1OtVcI9W+FxQqxVLsPKcNjWigIaa81dLC9IolJl5Mt4Cvhmr0flUnjSpTdrbMTSbXqYqV5dT6A==} + /@xmldom/xmldom/0.8.3: + resolution: {integrity: sha512-Lv2vySXypg4nfa51LY1nU8yDAGo/5YwF+EY/rUZgIbfvwVARcd67ttCM8SMsTeJy51YhHYavEq+FS6R0hW9PFQ==} engines: {node: '>=10.0.0'} dev: false @@ -8986,8 +9574,8 @@ packages: resolution: {integrity: sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==} dev: true - /@yarnpkg/parsers/3.0.0-rc.24: - resolution: {integrity: sha512-A5wXsIUOipZUGDly1SHBht1OjKKW4y+E9EzzJxR2tby0Pj3atgCta9RSYa4+aXLkFfIMX3onnykmJnwJWqJj5g==} + /@yarnpkg/parsers/3.0.0-rc.25: + resolution: {integrity: sha512-uotaIJwVQeV/DcGA9G2EVuVFHnEEdxDy3yRLeh9VHS6Lx7nZETaWzJPU1bgAwnAa3gplol2NIQhlsr2eqgq9qA==} engines: {node: '>=14.15.0'} dependencies: js-yaml: 3.14.1 @@ -9036,11 +9624,11 @@ packages: acorn: 4.0.13 dev: true - /acorn-globals/6.0.0: - resolution: {integrity: sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==} + /acorn-globals/7.0.1: + resolution: {integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==} dependencies: - acorn: 7.4.1 - acorn-walk: 7.2.0 + acorn: 8.8.0 + acorn-walk: 8.2.0 dev: true /acorn-import-assertions/1.8.0_acorn@8.8.0: @@ -9133,8 +9721,8 @@ packages: 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 + async-stream-emitter: 4.1.0 + stream-demux: 8.1.0 dev: false /agent-base/6.0.2: @@ -9351,7 +9939,7 @@ packages: graphql: ^15.3.0 || ^16.0.0 dependencies: '@apollo/utils.keyvaluecache': 1.0.1 - '@apollo/utils.logger': 1.0.0 + '@apollo/utils.logger': 1.0.1 '@apollo/utils.usagereporting': 1.0.0_graphql@16.6.0 '@apollographql/apollo-tools': 0.5.4_graphql@16.6.0 '@apollographql/graphql-playground-html': 1.6.29 @@ -9439,7 +10027,7 @@ packages: graphql: ^15.3.0 || ^16.0.0 dependencies: '@apollo/utils.keyvaluecache': 1.0.1 - '@apollo/utils.logger': 1.0.0 + '@apollo/utils.logger': 1.0.1 apollo-reporting-protobuf: 3.3.3 apollo-server-env: 4.2.1 graphql: 16.6.0 @@ -9536,8 +10124,8 @@ packages: resolution: {integrity: sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==} engines: {node: '>=6.0'} dependencies: - '@babel/runtime': 7.19.0 - '@babel/runtime-corejs3': 7.19.1 + '@babel/runtime': 7.19.4 + '@babel/runtime-corejs3': 7.19.4 dev: true /aria-query/5.0.2: @@ -9714,10 +10302,10 @@ packages: retry: 0.13.1 dev: false - /async-stream-emitter/4.0.0: - resolution: {integrity: sha512-zPVflmOEN4EFEAk2/p+BbLRRM/i4Iol2nvO2RSFNuYUiYZdBmBJi5O/PMQeO9Unj1EONQqUN0W5PadVS/bA6/g==} + /async-stream-emitter/4.1.0: + resolution: {integrity: sha512-cfPZYjHkhCdHSR+eux71vOU8+8Xb23oLyxccAjwYHgOxDb3+qSDb2HV1Y0Hmu39vZlse2cm15CUShLiVYXHCmQ==} dependencies: - stream-demux: 8.0.0 + stream-demux: 8.1.0 /async/3.2.4: resolution: {integrity: sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==} @@ -9747,7 +10335,7 @@ packages: hasBin: true dependencies: browserslist: 4.21.4 - caniuse-lite: 1.0.30001418 + caniuse-lite: 1.0.30001421 normalize-range: 0.1.2 num2fraction: 1.2.2 picocolors: 0.2.1 @@ -9765,14 +10353,6 @@ packages: engines: {node: '>=4'} dev: true - /axios/0.21.1: - resolution: {integrity: sha512-dKQiRHxGD9PPRIUNIWvZhPTPpl1rf/OxTYKsqKUDjBwYylTvV7SjSHJb9ratfyzM6wCdLCOYLzs73qpg5c4iGA==} - dependencies: - follow-redirects: 1.15.2 - transitivePeerDependencies: - - debug - dev: true - /axios/0.21.4: resolution: {integrity: sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==} dependencies: @@ -9790,22 +10370,31 @@ packages: - debug dev: true + /axios/1.1.3: + resolution: {integrity: sha512-00tXVRwKx/FZr/IDVFt4C+f9FYairX517WoGCL6dpOntqLkZofjhu43F/Xl44UOpqa+9sLFDrG/XAnFsUYgkDA==} + dependencies: + follow-redirects: 1.15.2 + form-data: 4.0.0 + proxy-from-env: 1.1.0 + transitivePeerDependencies: + - debug + dev: true + /axobject-query/2.2.0: resolution: {integrity: sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==} dev: true - /babel-jest/27.5.1_@babel+core@7.19.3: - resolution: {integrity: sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /babel-jest/29.2.2_@babel+core@7.19.3: + resolution: {integrity: sha512-kkq2QSDIuvpgfoac3WZ1OOcHsQQDU5xYk2Ql7tLdJ8BVAYbefEXal+NfS45Y5LVZA7cxC8KYcQMObpCt1J025w==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: '@babel/core': ^7.8.0 dependencies: '@babel/core': 7.19.3 - '@jest/transform': 27.5.1 - '@jest/types': 27.5.1 + '@jest/transform': 29.2.2 '@types/babel__core': 7.1.19 babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 27.5.1_@babel+core@7.19.3 + babel-preset-jest: 29.2.0_@babel+core@7.19.3 chalk: 4.1.2 graceful-fs: 4.2.10 slash: 3.0.0 @@ -9843,6 +10432,19 @@ packages: webpack: 5.74.0 dev: true + /babel-loader/9.0.0_wfdvla2jorjoj23kkavho2upde: + resolution: {integrity: sha512-qVGQb0PNw/B1sGhPf0/KKsHZAPfa2Bk+JbjkW7yGjAHZyvjAULXYq0et0+/+7DL/rGYU+y8UoGPzA32NP29pVQ==} + engines: {node: '>= 14.15.0'} + peerDependencies: + '@babel/core': ^7.12.0 + webpack: '>=5' + dependencies: + '@babel/core': 7.19.3 + find-cache-dir: 3.3.2 + schema-utils: 4.0.0 + webpack: 5.74.0_webpack-cli@4.10.0 + dev: true + /babel-plugin-add-react-displayname/0.0.5: resolution: {integrity: sha512-LY3+Y0XVDYcShHHorshrDbt4KFWL4bSeniCtl4SYZbask+Syngk1uMPCeN9+nSiZo6zX5s0RTq/J9Pnaaf/KHw==} dev: true @@ -9882,12 +10484,12 @@ packages: - supports-color dev: true - /babel-plugin-jest-hoist/27.5.1: - resolution: {integrity: sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /babel-plugin-jest-hoist/29.2.0: + resolution: {integrity: sha512-TnspP2WNiR3GLfCsUNHqeXw0RoQ2f9U5hQ5L3XFpwuO8htQmSrhh8qsB6vi5Yi8+kuynN1yjDjQsPfkebmB6ZA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@babel/template': 7.18.10 - '@babel/types': 7.19.3 + '@babel/types': 7.19.4 '@types/babel__core': 7.1.19 '@types/babel__traverse': 7.18.2 dev: true @@ -9896,16 +10498,20 @@ packages: resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==} engines: {node: '>=10', npm: '>=6'} dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 cosmiconfig: 7.0.1 resolve: 1.22.1 + /babel-plugin-named-exports-order/0.0.2: + resolution: {integrity: sha512-OgOYHOLoRK+/mvXU9imKHlG6GkPLYrUCvFXG/CM93R/aNNO8pOOF4aS+S8CCHMDQoNSeiOYEZb/G6RwL95Jktw==} + dev: true + /babel-plugin-polyfill-corejs2/0.3.3_@babel+core@7.19.3: resolution: {integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.19.3 + '@babel/compat-data': 7.19.4 '@babel/core': 7.19.3 '@babel/helper-define-polyfill-provider': 0.3.3_@babel+core@7.19.3 semver: 6.3.0 @@ -9993,14 +10599,14 @@ packages: '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.19.3 dev: true - /babel-preset-jest/27.5.1_@babel+core@7.19.3: - resolution: {integrity: sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /babel-preset-jest/29.2.0_@babel+core@7.19.3: + resolution: {integrity: sha512-z9JmMJppMxNv8N7fNRHvhMg9cvIkMxQBXgFkane3yKVEvEOP+kB50lk8DFRvF9PGqbyXxlmebKWhuDORO8RgdA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.19.3 - babel-plugin-jest-hoist: 27.5.1 + babel-plugin-jest-hoist: 29.2.0 babel-preset-current-node-syntax: 1.0.1_@babel+core@7.19.3 dev: true @@ -10258,8 +10864,8 @@ packages: resolution: {integrity: sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==} dev: true - /browser-process-hrtime/1.0.0: - resolution: {integrity: sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==} + /browser-assert/1.2.1: + resolution: {integrity: sha512-nfulgvOR6S4gt9UKCeGJOuSGBPGiFT6oQ/2UBnvTY/5aQ1PnksW72fhZkM30DzoRRv2WpwZf1vHHEr3mtuXIWQ==} dev: true /browserify-aes/1.2.0: @@ -10322,8 +10928,8 @@ packages: engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true dependencies: - caniuse-lite: 1.0.30001418 - electron-to-chromium: 1.4.276 + caniuse-lite: 1.0.30001421 + electron-to-chromium: 1.4.284 node-releases: 2.0.6 update-browserslist-db: 1.0.10_browserslist@4.21.4 @@ -10379,7 +10985,7 @@ packages: dev: true /bytes/3.0.0: - resolution: {integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==} + resolution: {integrity: sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=} engines: {node: '>= 0.8'} dev: true @@ -10543,11 +11149,11 @@ packages: engines: {node: '>=10'} dev: true - /camelize/1.0.0: - resolution: {integrity: sha512-W2lPwkBkMZwFlPCXhIlYgxu+7gC/NUlCtdK652DAJ1JdgV0sTrvuPFshNPrFa1TY2JOkLhgdeEBplB4ezEa+xg==} + /camelize/1.0.1: + resolution: {integrity: sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==} - /caniuse-lite/1.0.30001418: - resolution: {integrity: sha512-oIs7+JL3K9JRQ3jPZjlH6qyYDp+nBTCais7hjh0s+fuBwufc7uZ7hPYMXrDOJhV360KGMTcczMRObk0/iMqZRg==} + /caniuse-lite/1.0.30001421: + resolution: {integrity: sha512-Sw4eLbgUJAEhjLs1Fa+mk45sidp1wRn5y6GtDpHGBaNJ9OCDJaVh2tIaWWUnGfuXfKf1JCBaIarak3FkVAvEeA==} /capture-exit/2.0.0: resolution: {integrity: sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==} @@ -10916,6 +11522,10 @@ packages: resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==} dev: true + /colorette/1.4.0: + resolution: {integrity: sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==} + dev: true + /colorette/2.0.19: resolution: {integrity: sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==} @@ -11025,7 +11635,7 @@ packages: dev: false /concat-map/0.0.1: - resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} + resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=} /concat-stream/1.6.2: resolution: {integrity: sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==} @@ -11093,13 +11703,11 @@ packages: ticky: 1.0.1 dev: false - /convert-source-map/1.8.0: - resolution: {integrity: sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==} - dependencies: - safe-buffer: 5.1.2 + /convert-source-map/1.9.0: + resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==} /cookie-signature/1.0.6: - resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==} + resolution: {integrity: sha1-4wOogrNCzD7oylE6eZmXNNqzriw=} /cookie/0.4.2: resolution: {integrity: sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==} @@ -11374,18 +11982,37 @@ packages: webpack: 4.46.0 dev: true + /css-loader/5.2.7_webpack@5.74.0: + resolution: {integrity: sha512-Q7mOvpBNBG7YrVGMxRxcBJZFL75o+cH2abNASdibkj/fffYD8qWbInZrD0S9ccI6vZclF3DsHE7njGlLtaHbhg==} + engines: {node: '>= 10.13.0'} + peerDependencies: + webpack: ^4.27.0 || ^5.0.0 + dependencies: + icss-utils: 5.1.0_postcss@8.4.18 + loader-utils: 2.0.2 + postcss: 8.4.18 + postcss-modules-extract-imports: 3.0.0_postcss@8.4.18 + postcss-modules-local-by-default: 4.0.0_postcss@8.4.18 + postcss-modules-scope: 3.0.0_postcss@8.4.18 + postcss-modules-values: 4.0.0_postcss@8.4.18 + postcss-value-parser: 4.2.0 + schema-utils: 3.1.1 + semver: 7.3.8 + webpack: 5.74.0 + dev: true + /css-loader/6.7.1_webpack@5.74.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.17 - postcss: 8.4.17 - postcss-modules-extract-imports: 3.0.0_postcss@8.4.17 - postcss-modules-local-by-default: 4.0.0_postcss@8.4.17 - postcss-modules-scope: 3.0.0_postcss@8.4.17 - postcss-modules-values: 4.0.0_postcss@8.4.17 + icss-utils: 5.1.0_postcss@8.4.18 + postcss: 8.4.18 + postcss-modules-extract-imports: 3.0.0_postcss@8.4.18 + postcss-modules-local-by-default: 4.0.0_postcss@8.4.18 + postcss-modules-scope: 3.0.0_postcss@8.4.18 + postcss-modules-values: 4.0.0_postcss@8.4.18 postcss-value-parser: 4.2.0 semver: 7.3.8 webpack: 5.74.0_webpack-cli@4.10.0 @@ -11404,14 +12031,14 @@ packages: /css-to-react-native/3.0.0: resolution: {integrity: sha512-Ro1yETZA813eoyUp2GDBhG2j+YggidUmzO1/v9eYBKR2EHVEniE2MI/NqpTQ954BMpTPZFsGNPm46qFB9dpaPQ==} dependencies: - camelize: 1.0.0 + camelize: 1.0.1 css-color-keywords: 1.0.0 postcss-value-parser: 4.2.0 /css-vendor/2.0.8: resolution: {integrity: sha512-x9Aq0XTInxrkuFeHKbYC7zWY8ai7qJ04Kxd9MnvbC1uO5DagxoHQjm4JvG+vCdXOoFtCjbL2XSZfxmoYa9uQVQ==} dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 is-in-browser: 1.1.3 dev: false @@ -11438,8 +12065,8 @@ packages: resolution: {integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==} dev: true - /cssom/0.4.4: - resolution: {integrity: sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==} + /cssom/0.5.0: + resolution: {integrity: sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==} dev: true /cssstyle/2.3.0: @@ -11497,13 +12124,13 @@ packages: resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==} dev: true - /data-urls/2.0.0: - resolution: {integrity: sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==} - engines: {node: '>=10'} + /data-urls/3.0.2: + resolution: {integrity: sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==} + engines: {node: '>=12'} dependencies: abab: 2.0.6 - whatwg-mimetype: 2.3.0 - whatwg-url: 8.7.0 + whatwg-mimetype: 3.0.0 + whatwg-url: 11.0.0 dev: true /date-fns/2.29.3: @@ -11584,8 +12211,8 @@ packages: engines: {node: '>=0.10.0'} dev: true - /decimal.js/10.4.1: - resolution: {integrity: sha512-F29o+vci4DodHYT9UrR5IEbfBw9pE5eSapIJdTqXK5+6hq+t8VRxwQyKlW2i+KDKFkkJQRvFyI/QXD83h8LyQw==} + /decimal.js/10.4.2: + resolution: {integrity: sha512-ic1yEvwT6GuvaYwBLLY6/aFFgjZdySKTE8en/fkU3QICTmRtgtSlFn0u0BXN06InZwtfCelR7j8LRiDI/02iGA==} dev: true /decode-uri-component/0.2.0: @@ -11634,8 +12261,8 @@ packages: execa: 5.1.1 dev: true - /defaults/1.0.3: - resolution: {integrity: sha512-s82itHOnYrN0Ib8r+z7laQz3sdE+4FP3d9Q7VLO7U+KRT+CR0GsWuyHxzdAY82I7cXv0G/twrqomTJLOssO5HA==} + /defaults/1.0.4: + resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==} dependencies: clone: 1.0.4 @@ -11777,9 +12404,9 @@ packages: resolution: {integrity: sha512-IayShXAgj/QMXgB0IWmKx+rOPuGMhqm5w6jvFxmVenXKIzRqTAAsbBPT3kWQeGANj3jGgvcvv4yK6SxqYmikgw==} dev: false - /diff-sequences/27.5.1: - resolution: {integrity: sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /diff-sequences/29.2.0: + resolution: {integrity: sha512-413SY5JpYeSBZxmenGEmCVQ8mCgtFJF0w9PROdaS6z987XC2Pd2GOKqOITLtMftmyFZqgtCOb/QA7/Z3ZXfzIw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dev: true /diff/3.5.0: @@ -11856,7 +12483,7 @@ packages: /dom-helpers/5.2.1: resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==} dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 csstype: 3.1.1 dev: false @@ -11881,11 +12508,11 @@ packages: resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} dev: true - /domexception/2.0.1: - resolution: {integrity: sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==} - engines: {node: '>=8'} + /domexception/4.0.0: + resolution: {integrity: sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==} + engines: {node: '>=12'} dependencies: - webidl-conversions: 5.0.0 + webidl-conversions: 7.0.0 dev: true /domhandler/4.3.1: @@ -11954,19 +12581,19 @@ packages: dev: false /ee-first/1.1.1: - resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} + resolution: {integrity: sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=} - /electron-to-chromium/1.4.276: - resolution: {integrity: sha512-EpuHPqu8YhonqLBXHoU6hDJCD98FCe6KDoet3/gY1qsQ6usjJoHqBH2YIVs8FXaAtHwVL8Uqa/fsYao/vq9VWQ==} + /electron-to-chromium/1.4.284: + resolution: {integrity: sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA==} - /electron/21.1.0: - resolution: {integrity: sha512-CM5VZpZPtAoPgTPcmEbRaZWXlxGuD5a5DTeAwm0F0F6/k6R3HZAi8vZnE77gwuHK/Qqcinw4/MAbiCwAKh2W+g==} + /electron/21.1.1: + resolution: {integrity: sha512-EM2hvRJtiS3n54yx25Z0Qv54t3LGG+WjUHf1AOl+PKjQj+fmXnjIgVeIF9pM21kP1BTcyjrgvN6Sff0A45OB6A==} engines: {node: '>= 10.17.0'} hasBin: true requiresBuild: true dependencies: '@electron/get': 1.14.1 - '@types/node': 16.11.64 + '@types/node': 16.11.66 extract-zip: 2.0.1 transitivePeerDependencies: - supports-color @@ -11983,9 +12610,9 @@ packages: minimalistic-crypto-utils: 1.0.1 dev: true - /emittery/0.8.1: - resolution: {integrity: sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==} - engines: {node: '>=10'} + /emittery/0.13.1: + resolution: {integrity: sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==} + engines: {node: '>=12'} dev: true /emoji-regex/8.0.0: @@ -12235,7 +12862,7 @@ packages: semver: 6.3.0 dev: true - /eslint-config-airbnb/19.0.4_ckxtnaoy67ewg7fa3hkinvzrqe: + /eslint-config-airbnb/19.0.4_4ces55zid76bgvayjtslcl5sne: resolution: {integrity: sha512-T75QYQVQX57jiNgpF9r1KegMICE94VYwoFQyMGhrvc+lB8YF2E/M/PYDaQe1AJcWaEgqLE+ErXV1Og/+6Vyzew==} engines: {node: ^10.12.0 || ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -12249,7 +12876,7 @@ packages: eslint-config-airbnb-base: 15.0.0_fyln4uq2tv75svthy6prqvt6lm eslint-plugin-import: 2.26.0_eslint@8.25.0 eslint-plugin-jsx-a11y: 6.6.1_eslint@8.25.0 - eslint-plugin-react: 7.31.9_eslint@8.25.0 + eslint-plugin-react: 7.31.10_eslint@8.25.0 eslint-plugin-react-hooks: 4.6.0_eslint@8.25.0 object.assign: 4.1.4 object.entries: 1.1.5 @@ -12331,8 +12958,8 @@ packages: - supports-color dev: true - /eslint-plugin-jest/27.1.1_or6kr3fag2h7rsusdfqwiniqvm: - resolution: {integrity: sha512-vuSuXGKHHi/UAffIM46QKm4g0tQP+6n52nRxUpMq6x6x9rhnv5WM7ktSu3h9cTnXE4b0Y0ODQTgRlCm9rdRLvg==} + /eslint-plugin-jest/27.1.2_6co43ebcjfbpobjajqgjcmpkdi: + resolution: {integrity: sha512-+nLOn5jvQKLUywXxXKsLuuENsB/FhygXOLI+l5QlF+ACGe0DM14FlpYrGZ4nEiTo0BGlL5MymG73XA/tC3v3fA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: '@typescript-eslint/eslint-plugin': ^5.0.0 @@ -12344,10 +12971,10 @@ packages: jest: optional: true dependencies: - '@typescript-eslint/eslint-plugin': 5.39.0_cfd7h3iktziq6hcwahu2qxhjhy - '@typescript-eslint/utils': 5.39.0_z4bbprzjrhnsfa24uvmcbu7f5q + '@typescript-eslint/eslint-plugin': 5.40.1_ukgdydjtebaxmxfqp5v5ulh64y + '@typescript-eslint/utils': 5.40.1_z4bbprzjrhnsfa24uvmcbu7f5q eslint: 8.25.0 - jest: 27.5.1 + jest: 29.2.2 transitivePeerDependencies: - supports-color - typescript @@ -12359,7 +12986,7 @@ packages: peerDependencies: eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 aria-query: 4.2.2 array-includes: 3.1.5 ast-types-flow: 0.0.7 @@ -12384,8 +13011,8 @@ packages: eslint: 8.25.0 dev: true - /eslint-plugin-react/7.31.9_eslint@8.25.0: - resolution: {integrity: sha512-vrVJwusIw4L99lyfXjtCw8HWdloajsiYslMavogrBe2Gl8gr95TJsJnOMRasN4b4N24I3XuJf6aAV6MhyGmjqw==} + /eslint-plugin-react/7.31.10_eslint@8.25.0: + resolution: {integrity: sha512-e4N/nc6AAlg4UKW/mXeYWd3R++qUano5/o+t+wnWxIf+bLsOaH3a4q74kX3nDjYym3VBN4HyO9nEn1GcAqgQOA==} engines: {node: '>=4'} peerDependencies: eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 @@ -12546,8 +13173,8 @@ packages: resolution: {integrity: sha512-YNF+mZ/Wu2FU/gvmzuWtYc8rloubL7wfXCTgouFrnjGVXPA/EeYYA7pupXWrb3Iv1cTBeSSxxJIbK23l4MRNqg==} engines: {node: '>=8.3.0'} dependencies: - '@babel/traverse': 7.19.3 - '@babel/types': 7.19.3 + '@babel/traverse': 7.19.4 + '@babel/types': 7.19.4 c8: 7.12.0 transitivePeerDependencies: - supports-color @@ -12633,14 +13260,15 @@ packages: - supports-color dev: true - /expect/27.5.1: - resolution: {integrity: sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /expect/29.2.2: + resolution: {integrity: sha512-hE09QerxZ5wXiOhqkXy5d2G9ar+EqOyifnCXCpMNu+vZ6DG9TJ6CO2c2kPDSLqERTTWrO7OZj8EkYHQqSd78Yw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/types': 27.5.1 - jest-get-type: 27.5.1 - jest-matcher-utils: 27.5.1 - jest-message-util: 27.5.1 + '@jest/expect-utils': 29.2.2 + jest-get-type: 29.2.0 + jest-matcher-utils: 29.2.2 + jest-message-util: 29.2.1 + jest-util: 29.2.1 dev: true /express/4.18.2: @@ -13058,6 +13686,38 @@ packages: - supports-color dev: true + /fork-ts-checker-webpack-plugin/6.5.2_iphotpp42ipt4ovquw5uqijhcq: + resolution: {integrity: sha512-m5cUmF30xkZ7h4tWUgTAcEaKmUW7tfyUyTqNNOz7OxWJ0v1VWKTcOvH8FWHUwSjlW/356Ijc9vi3XfcPstpQKA==} + engines: {node: '>=10', yarn: '>=1.0.0'} + peerDependencies: + eslint: '>= 6' + typescript: '>= 2.7' + vue-template-compiler: '*' + webpack: '>= 4' + peerDependenciesMeta: + eslint: + optional: true + vue-template-compiler: + optional: true + dependencies: + '@babel/code-frame': 7.18.6 + '@types/json-schema': 7.0.11 + chalk: 4.1.2 + chokidar: 3.5.3 + cosmiconfig: 6.0.0 + deepmerge: 4.2.2 + eslint: 8.25.0 + fs-extra: 9.1.0 + glob: 7.2.3 + memfs: 3.4.7 + minimatch: 3.1.2 + schema-utils: 2.7.0 + semver: 7.3.8 + tapable: 1.1.3 + typescript: 4.8.4 + webpack: 5.74.0 + dev: true + /fork-ts-checker-webpack-plugin/6.5.2_ybeu3d6gzlmqceoto3zzmxyiwi: resolution: {integrity: sha512-m5cUmF30xkZ7h4tWUgTAcEaKmUW7tfyUyTqNNOz7OxWJ0v1VWKTcOvH8FWHUwSjlW/356Ijc9vi3XfcPstpQKA==} engines: {node: '>=10', yarn: '>=1.0.0'} @@ -13155,8 +13815,8 @@ packages: map-cache: 0.2.2 dev: true - /framer-motion/7.5.3_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-VvANga9Z7bYtKMAsM/je81FwJDHfThOYywN04xVQ4OGdMVY09Bowx/q7nZd6XtytLuv6byc6GT1mYwag+SQ/nw==} + /framer-motion/7.6.1_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-8US03IWJKrLoSb81l5OahNzB9Sv7Jo1RhIwUoTG/25BRUdO9lOqq/klsdZqNmNG0ua9IEJJQ8hkYpETJ4N6VSw==} peerDependencies: react: ^18.0.0 || 18 react-dom: ^18.0.0 || 18 @@ -13186,7 +13846,7 @@ packages: dev: false /fresh/0.5.2: - resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==} + resolution: {integrity: sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=} engines: {node: '>= 0.6'} /from2/2.3.0: @@ -13270,7 +13930,7 @@ packages: requiresBuild: true dependencies: bindings: 1.5.0 - nan: 2.16.0 + nan: 2.17.0 dev: true optional: true @@ -13630,7 +14290,7 @@ packages: engines: {node: '>=0.4.7'} hasBin: true dependencies: - minimist: 1.2.6 + minimist: 1.2.7 neo-async: 2.6.2 source-map: 0.6.1 wordwrap: 1.0.0 @@ -13827,7 +14487,7 @@ packages: /hoist-non-react-statics/3.3.2: resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==} dependencies: - react-is: 16.9.0 + react-is: 16.13.1 /hosted-git-info/2.8.9: resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} @@ -13849,11 +14509,11 @@ packages: wbuf: 1.7.3 dev: true - /html-encoding-sniffer/2.0.1: - resolution: {integrity: sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==} - engines: {node: '>=10'} + /html-encoding-sniffer/3.0.0: + resolution: {integrity: sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==} + engines: {node: '>=12'} dependencies: - whatwg-encoding: 1.0.5 + whatwg-encoding: 2.0.0 dev: true /html-entities/2.3.3: @@ -13933,7 +14593,7 @@ packages: dependencies: '@types/html-minifier-terser': 5.1.2 '@types/tapable': 1.0.8 - '@types/webpack': 4.41.32 + '@types/webpack': 4.41.33 html-minifier-terser: 5.1.1 loader-utils: 1.4.0 lodash: 4.17.21 @@ -14006,6 +14666,19 @@ packages: debug: 4.3.4 transitivePeerDependencies: - supports-color + dev: false + optional: true + + /http-proxy-agent/5.0.0: + resolution: {integrity: sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==} + engines: {node: '>= 6'} + dependencies: + '@tootallnate/once': 2.0.0 + agent-base: 6.0.2 + debug: 4.3.4 + transitivePeerDependencies: + - supports-color + dev: true /http-proxy-middleware/2.0.6_@types+express@4.17.14: resolution: {integrity: sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==} @@ -14081,8 +14754,6 @@ packages: engines: {node: '>=0.10.0'} dependencies: safer-buffer: 2.1.2 - dev: false - optional: true /icss-utils/4.1.1: resolution: {integrity: sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==} @@ -14091,13 +14762,13 @@ packages: postcss: 7.0.39 dev: true - /icss-utils/5.1.0_postcss@8.4.17: + /icss-utils/5.1.0_postcss@8.4.18: resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.17 + postcss: 8.4.18 dev: true /ieee754/1.2.1: @@ -14739,7 +15410,7 @@ packages: engines: {node: '>=8'} dependencies: '@babel/core': 7.19.3 - '@babel/parser': 7.19.3 + '@babel/parser': 7.19.4 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.0 semver: 6.3.0 @@ -14790,45 +15461,44 @@ packages: resolution: {integrity: sha512-JVAfqNPTvNq3sB/VHQJAFxN/sPgKnsKrCwyRt15zwNCdrMMJDdcEOdubuy+DuJYYdm0ox1J4uzEuYKkN+9yhVg==} dev: false - /jest-changed-files/27.5.1: - resolution: {integrity: sha512-buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /jest-changed-files/29.2.0: + resolution: {integrity: sha512-qPVmLLyBmvF5HJrY7krDisx6Voi8DmlV3GZYX0aFNbaQsZeoz1hfxcCMbqDGuQCxU1dJy9eYc2xscE8QrCCYaA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/types': 27.5.1 execa: 5.1.1 - throat: 6.0.1 + p-limit: 3.1.0 dev: true - /jest-circus/27.5.1: - resolution: {integrity: sha512-D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /jest-circus/29.2.2: + resolution: {integrity: sha512-upSdWxx+Mh4DV7oueuZndJ1NVdgtTsqM4YgywHEx05UMH5nxxA2Qu9T9T9XVuR021XxqSoaKvSmmpAbjwwwxMw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/environment': 27.5.1 - '@jest/test-result': 27.5.1 - '@jest/types': 27.5.1 - '@types/node': 18.8.3 + '@jest/environment': 29.2.2 + '@jest/expect': 29.2.2 + '@jest/test-result': 29.2.1 + '@jest/types': 29.2.1 + '@types/node': 18.11.7 chalk: 4.1.2 co: 4.6.0 dedent: 0.7.0 - expect: 27.5.1 is-generator-fn: 2.1.0 - jest-each: 27.5.1 - jest-matcher-utils: 27.5.1 - jest-message-util: 27.5.1 - jest-runtime: 27.5.1 - jest-snapshot: 27.5.1 - jest-util: 27.5.1 - pretty-format: 27.5.1 + jest-each: 29.2.1 + jest-matcher-utils: 29.2.2 + jest-message-util: 29.2.1 + jest-runtime: 29.2.2 + jest-snapshot: 29.2.2 + jest-util: 29.2.1 + p-limit: 3.1.0 + pretty-format: 29.2.1 slash: 3.0.0 stack-utils: 2.0.5 - throat: 6.0.1 transitivePeerDependencies: - supports-color dev: true - /jest-cli/27.5.1: - resolution: {integrity: sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /jest-cli/29.2.2: + resolution: {integrity: sha512-R45ygnnb2CQOfd8rTPFR+/fls0d+1zXS6JPYTBBrnLPrhr58SSuPTiA5Tplv8/PXpz4zXR/AYNxmwIj6J6nrvg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 @@ -14836,29 +15506,27 @@ packages: node-notifier: optional: true dependencies: - '@jest/core': 27.5.1 - '@jest/test-result': 27.5.1 - '@jest/types': 27.5.1 + '@jest/core': 29.2.2 + '@jest/test-result': 29.2.1 + '@jest/types': 29.2.1 chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.10 import-local: 3.1.0 - jest-config: 27.5.1 - jest-util: 27.5.1 - jest-validate: 27.5.1 + jest-config: 29.2.2 + jest-util: 29.2.1 + jest-validate: 29.2.2 prompts: 2.4.2 - yargs: 16.2.0 + yargs: 17.6.0 transitivePeerDependencies: - - bufferutil - - canvas + - '@types/node' - supports-color - ts-node - - utf-8-validate dev: true - /jest-cli/27.5.1_ts-node@10.9.1: - resolution: {integrity: sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /jest-cli/29.2.2_4pb6an67rakrle6rtido6z2a34: + resolution: {integrity: sha512-R45ygnnb2CQOfd8rTPFR+/fls0d+1zXS6JPYTBBrnLPrhr58SSuPTiA5Tplv8/PXpz4zXR/AYNxmwIj6J6nrvg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 @@ -14866,168 +15534,235 @@ packages: node-notifier: optional: true dependencies: - '@jest/core': 27.5.1_ts-node@10.9.1 - '@jest/test-result': 27.5.1 - '@jest/types': 27.5.1 + '@jest/core': 29.2.2_ts-node@10.9.1 + '@jest/test-result': 29.2.1 + '@jest/types': 29.2.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.9.1 - jest-util: 27.5.1 - jest-validate: 27.5.1 + jest-config: 29.2.2_4pb6an67rakrle6rtido6z2a34 + jest-util: 29.2.1 + jest-validate: 29.2.2 prompts: 2.4.2 - yargs: 16.2.0 + yargs: 17.6.0 transitivePeerDependencies: - - bufferutil - - canvas + - '@types/node' - supports-color - ts-node - - utf-8-validate dev: true - /jest-config/27.5.1: - resolution: {integrity: sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /jest-cli/29.2.2_@types+node@18.11.7: + resolution: {integrity: sha512-R45ygnnb2CQOfd8rTPFR+/fls0d+1zXS6JPYTBBrnLPrhr58SSuPTiA5Tplv8/PXpz4zXR/AYNxmwIj6J6nrvg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + hasBin: true peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + dependencies: + '@jest/core': 29.2.2 + '@jest/test-result': 29.2.1 + '@jest/types': 29.2.1 + chalk: 4.1.2 + exit: 0.1.2 + graceful-fs: 4.2.10 + import-local: 3.1.0 + jest-config: 29.2.2_@types+node@18.11.7 + jest-util: 29.2.1 + jest-validate: 29.2.2 + prompts: 2.4.2 + yargs: 17.6.0 + transitivePeerDependencies: + - '@types/node' + - supports-color + - ts-node + dev: true + + /jest-config/29.2.2: + resolution: {integrity: sha512-Q0JX54a5g1lP63keRfKR8EuC7n7wwny2HoTRDb8cx78IwQOiaYUVZAdjViY3WcTxpR02rPUpvNVmZ1fkIlZPcw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + '@types/node': '*' ts-node: '>=9.0.0' peerDependenciesMeta: + '@types/node': + optional: true ts-node: optional: true dependencies: '@babel/core': 7.19.3 - '@jest/test-sequencer': 27.5.1 - '@jest/types': 27.5.1 - babel-jest: 27.5.1_@babel+core@7.19.3 + '@jest/test-sequencer': 29.2.2 + '@jest/types': 29.2.1 + babel-jest: 29.2.2_@babel+core@7.19.3 chalk: 4.1.2 ci-info: 3.5.0 deepmerge: 4.2.2 glob: 7.2.3 graceful-fs: 4.2.10 - jest-circus: 27.5.1 - jest-environment-jsdom: 27.5.1 - jest-environment-node: 27.5.1 - jest-get-type: 27.5.1 - jest-jasmine2: 27.5.1 - jest-regex-util: 27.5.1 - jest-resolve: 27.5.1 - jest-runner: 27.5.1 - jest-util: 27.5.1 - jest-validate: 27.5.1 + jest-circus: 29.2.2 + jest-environment-node: 29.2.2 + jest-get-type: 29.2.0 + jest-regex-util: 29.2.0 + jest-resolve: 29.2.2 + jest-runner: 29.2.2 + jest-util: 29.2.1 + jest-validate: 29.2.2 micromatch: 4.0.5 parse-json: 5.2.0 - pretty-format: 27.5.1 + pretty-format: 29.2.1 slash: 3.0.0 strip-json-comments: 3.1.1 transitivePeerDependencies: - - bufferutil - - canvas - supports-color - - utf-8-validate dev: true - /jest-config/27.5.1_ts-node@10.9.1: - resolution: {integrity: sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /jest-config/29.2.2_4pb6an67rakrle6rtido6z2a34: + resolution: {integrity: sha512-Q0JX54a5g1lP63keRfKR8EuC7n7wwny2HoTRDb8cx78IwQOiaYUVZAdjViY3WcTxpR02rPUpvNVmZ1fkIlZPcw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: + '@types/node': '*' ts-node: '>=9.0.0' peerDependenciesMeta: + '@types/node': + optional: true ts-node: optional: true dependencies: '@babel/core': 7.19.3 - '@jest/test-sequencer': 27.5.1 - '@jest/types': 27.5.1 - babel-jest: 27.5.1_@babel+core@7.19.3 + '@jest/test-sequencer': 29.2.2 + '@jest/types': 29.2.1 + '@types/node': 18.11.7 + babel-jest: 29.2.2_@babel+core@7.19.3 chalk: 4.1.2 ci-info: 3.5.0 deepmerge: 4.2.2 glob: 7.2.3 graceful-fs: 4.2.10 - jest-circus: 27.5.1 - jest-environment-jsdom: 27.5.1 - jest-environment-node: 27.5.1 - jest-get-type: 27.5.1 - jest-jasmine2: 27.5.1 - jest-regex-util: 27.5.1 - jest-resolve: 27.5.1 - jest-runner: 27.5.1 - jest-util: 27.5.1 - jest-validate: 27.5.1 + jest-circus: 29.2.2 + jest-environment-node: 29.2.2 + jest-get-type: 29.2.0 + jest-regex-util: 29.2.0 + jest-resolve: 29.2.2 + jest-runner: 29.2.2 + jest-util: 29.2.1 + jest-validate: 29.2.2 micromatch: 4.0.5 parse-json: 5.2.0 - pretty-format: 27.5.1 + pretty-format: 29.2.1 slash: 3.0.0 strip-json-comments: 3.1.1 - ts-node: 10.9.1_k2jc2lb6qrtdc3lulqxjwnbwoi + ts-node: 10.9.1_evej5wzm4hojmu6uzxwpspdmsu transitivePeerDependencies: - - bufferutil - - canvas - supports-color - - utf-8-validate dev: true - /jest-diff/27.5.1: - resolution: {integrity: sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /jest-config/29.2.2_@types+node@18.11.7: + resolution: {integrity: sha512-Q0JX54a5g1lP63keRfKR8EuC7n7wwny2HoTRDb8cx78IwQOiaYUVZAdjViY3WcTxpR02rPUpvNVmZ1fkIlZPcw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + '@types/node': '*' + ts-node: '>=9.0.0' + peerDependenciesMeta: + '@types/node': + optional: true + ts-node: + optional: true + dependencies: + '@babel/core': 7.19.3 + '@jest/test-sequencer': 29.2.2 + '@jest/types': 29.2.1 + '@types/node': 18.11.7 + babel-jest: 29.2.2_@babel+core@7.19.3 + chalk: 4.1.2 + ci-info: 3.5.0 + deepmerge: 4.2.2 + glob: 7.2.3 + graceful-fs: 4.2.10 + jest-circus: 29.2.2 + jest-environment-node: 29.2.2 + jest-get-type: 29.2.0 + jest-regex-util: 29.2.0 + jest-resolve: 29.2.2 + jest-runner: 29.2.2 + jest-util: 29.2.1 + jest-validate: 29.2.2 + micromatch: 4.0.5 + parse-json: 5.2.0 + pretty-format: 29.2.1 + slash: 3.0.0 + strip-json-comments: 3.1.1 + transitivePeerDependencies: + - supports-color + dev: true + + /jest-diff/29.2.1: + resolution: {integrity: sha512-gfh/SMNlQmP3MOUgdzxPOd4XETDJifADpT937fN1iUGz+9DgOu2eUPHH25JDkLVcLwwqxv3GzVyK4VBUr9fjfA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: chalk: 4.1.2 - diff-sequences: 27.5.1 - jest-get-type: 27.5.1 - pretty-format: 27.5.1 + diff-sequences: 29.2.0 + jest-get-type: 29.2.0 + pretty-format: 29.2.1 dev: true - /jest-docblock/27.5.1: - resolution: {integrity: sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /jest-docblock/29.2.0: + resolution: {integrity: sha512-bkxUsxTgWQGbXV5IENmfiIuqZhJcyvF7tU4zJ/7ioTutdz4ToB5Yx6JOFBpgI+TphRY4lhOyCWGNH/QFQh5T6A==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: detect-newline: 3.1.0 dev: true - /jest-each/27.5.1: - resolution: {integrity: sha512-1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /jest-each/29.2.1: + resolution: {integrity: sha512-sGP86H/CpWHMyK3qGIGFCgP6mt+o5tu9qG4+tobl0LNdgny0aitLXs9/EBacLy3Bwqy+v4uXClqJgASJWcruYw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/types': 27.5.1 + '@jest/types': 29.2.1 chalk: 4.1.2 - jest-get-type: 27.5.1 - jest-util: 27.5.1 - pretty-format: 27.5.1 + jest-get-type: 29.2.0 + jest-util: 29.2.1 + pretty-format: 29.2.1 dev: true - /jest-environment-jsdom/27.5.1: - resolution: {integrity: sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /jest-environment-jsdom/29.2.2: + resolution: {integrity: sha512-5mNtTcky1+RYv9kxkwMwt7fkzyX4EJUarV7iI+NQLigpV4Hz4sgfOdP4kOpCHXbkRWErV7tgXoXLm2CKtucr+A==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + peerDependencies: + canvas: ^2.5.0 + peerDependenciesMeta: + canvas: + optional: true dependencies: - '@jest/environment': 27.5.1 - '@jest/fake-timers': 27.5.1 - '@jest/types': 27.5.1 - '@types/node': 18.8.3 - jest-mock: 27.5.1 - jest-util: 27.5.1 - jsdom: 16.7.0 + '@jest/environment': 29.2.2 + '@jest/fake-timers': 29.2.2 + '@jest/types': 29.2.1 + '@types/jsdom': 20.0.0 + '@types/node': 18.11.7 + jest-mock: 29.2.2 + jest-util: 29.2.1 + jsdom: 20.0.1 transitivePeerDependencies: - bufferutil - - canvas - supports-color - utf-8-validate dev: true - /jest-environment-node/27.5.1: - resolution: {integrity: sha512-Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /jest-environment-node/29.2.2: + resolution: {integrity: sha512-B7qDxQjkIakQf+YyrqV5dICNs7tlCO55WJ4OMSXsqz1lpI/0PmeuXdx2F7eU8rnPbRkUR/fItSSUh0jvE2y/tw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/environment': 27.5.1 - '@jest/fake-timers': 27.5.1 - '@jest/types': 27.5.1 - '@types/node': 18.8.3 - jest-mock: 27.5.1 - jest-util: 27.5.1 + '@jest/environment': 29.2.2 + '@jest/fake-timers': 29.2.2 + '@jest/types': 29.2.1 + '@types/node': 18.11.7 + jest-mock: 29.2.2 + jest-util: 29.2.1 dev: true - /jest-get-type/27.5.1: - resolution: {integrity: sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /jest-get-type/29.2.0: + resolution: {integrity: sha512-uXNJlg8hKFEnDgFsrCjznB+sTxdkuqiCL6zMgA75qEbAJjJYTs9XPrvDctrEig2GDow22T/LvHgO57iJhXB/UA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dev: true /jest-haste-map/26.6.2: @@ -15036,7 +15771,7 @@ packages: dependencies: '@jest/types': 26.6.2 '@types/graceful-fs': 4.1.5 - '@types/node': 18.8.3 + '@types/node': 18.11.7 anymatch: 3.1.2 fb-watchman: 2.0.2 graceful-fs: 4.2.10 @@ -15053,93 +15788,68 @@ packages: - supports-color dev: true - /jest-haste-map/27.5.1: - resolution: {integrity: sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /jest-haste-map/29.2.1: + resolution: {integrity: sha512-wF460rAFmYc6ARcCFNw4MbGYQjYkvjovb9GBT+W10Um8q5nHq98jD6fHZMDMO3tA56S8XnmNkM8GcA8diSZfnA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/types': 27.5.1 + '@jest/types': 29.2.1 '@types/graceful-fs': 4.1.5 - '@types/node': 18.8.3 + '@types/node': 18.11.7 anymatch: 3.1.2 fb-watchman: 2.0.2 graceful-fs: 4.2.10 - jest-regex-util: 27.5.1 - jest-serializer: 27.5.1 - jest-util: 27.5.1 - jest-worker: 27.5.1 + jest-regex-util: 29.2.0 + jest-util: 29.2.1 + jest-worker: 29.2.1 micromatch: 4.0.5 walker: 1.0.8 optionalDependencies: fsevents: 2.3.2 dev: true - /jest-jasmine2/27.5.1: - resolution: {integrity: sha512-jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /jest-leak-detector/29.2.1: + resolution: {integrity: sha512-1YvSqYoiurxKOJtySc+CGVmw/e1v4yNY27BjWTVzp0aTduQeA7pdieLiW05wTYG/twlKOp2xS/pWuikQEmklug==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/environment': 27.5.1 - '@jest/source-map': 27.5.1 - '@jest/test-result': 27.5.1 - '@jest/types': 27.5.1 - '@types/node': 18.8.3 - chalk: 4.1.2 - co: 4.6.0 - expect: 27.5.1 - is-generator-fn: 2.1.0 - jest-each: 27.5.1 - jest-matcher-utils: 27.5.1 - jest-message-util: 27.5.1 - jest-runtime: 27.5.1 - jest-snapshot: 27.5.1 - jest-util: 27.5.1 - pretty-format: 27.5.1 - throat: 6.0.1 - transitivePeerDependencies: - - supports-color + jest-get-type: 29.2.0 + pretty-format: 29.2.1 dev: true - /jest-leak-detector/27.5.1: - resolution: {integrity: sha512-POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - jest-get-type: 27.5.1 - pretty-format: 27.5.1 - dev: true - - /jest-matcher-utils/27.5.1: - resolution: {integrity: sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /jest-matcher-utils/29.2.2: + resolution: {integrity: sha512-4DkJ1sDPT+UX2MR7Y3od6KtvRi9Im1ZGLGgdLFLm4lPexbTaCgJW5NN3IOXlQHF7NSHY/VHhflQ+WoKtD/vyCw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: chalk: 4.1.2 - jest-diff: 27.5.1 - jest-get-type: 27.5.1 - pretty-format: 27.5.1 + jest-diff: 29.2.1 + jest-get-type: 29.2.0 + pretty-format: 29.2.1 dev: true - /jest-message-util/27.5.1: - resolution: {integrity: sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /jest-message-util/29.2.1: + resolution: {integrity: sha512-Dx5nEjw9V8C1/Yj10S/8ivA8F439VS8vTq1L7hEgwHFn9ovSKNpYW/kwNh7UglaEgXO42XxzKJB+2x0nSglFVw==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@babel/code-frame': 7.18.6 - '@jest/types': 27.5.1 + '@jest/types': 29.2.1 '@types/stack-utils': 2.0.1 chalk: 4.1.2 graceful-fs: 4.2.10 micromatch: 4.0.5 - pretty-format: 27.5.1 + pretty-format: 29.2.1 slash: 3.0.0 stack-utils: 2.0.5 dev: true - /jest-mock/27.5.1: - resolution: {integrity: sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /jest-mock/29.2.2: + resolution: {integrity: sha512-1leySQxNAnivvbcx0sCB37itu8f4OX2S/+gxLAV4Z62shT4r4dTG9tACDywUAEZoLSr36aYUTsVp3WKwWt4PMQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/types': 27.5.1 - '@types/node': 18.8.3 + '@jest/types': 29.2.1 + '@types/node': 18.11.7 + jest-util: 29.2.1 dev: true - /jest-pnp-resolver/1.2.2_jest-resolve@27.5.1: + /jest-pnp-resolver/1.2.2_jest-resolve@29.2.2: resolution: {integrity: sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==} engines: {node: '>=6'} peerDependencies: @@ -15148,7 +15858,7 @@ packages: jest-resolve: optional: true dependencies: - jest-resolve: 27.5.1 + jest-resolve: 29.2.2 dev: true /jest-regex-util/26.0.0: @@ -15156,94 +15866,89 @@ packages: engines: {node: '>= 10.14.2'} dev: true - /jest-regex-util/27.5.1: - resolution: {integrity: sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /jest-regex-util/29.2.0: + resolution: {integrity: sha512-6yXn0kg2JXzH30cr2NlThF+70iuO/3irbaB4mh5WyqNIvLLP+B6sFdluO1/1RJmslyh/f9osnefECflHvTbwVA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dev: true - /jest-resolve-dependencies/27.5.1: - resolution: {integrity: sha512-QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /jest-resolve-dependencies/29.2.2: + resolution: {integrity: sha512-wWOmgbkbIC2NmFsq8Lb+3EkHuW5oZfctffTGvwsA4JcJ1IRk8b2tg+hz44f0lngvRTeHvp3Kyix9ACgudHH9aQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/types': 27.5.1 - jest-regex-util: 27.5.1 - jest-snapshot: 27.5.1 + jest-regex-util: 29.2.0 + jest-snapshot: 29.2.2 transitivePeerDependencies: - supports-color dev: true - /jest-resolve/27.5.1: - resolution: {integrity: sha512-FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /jest-resolve/29.2.2: + resolution: {integrity: sha512-3gaLpiC3kr14rJR3w7vWh0CBX2QAhfpfiQTwrFPvVrcHe5VUBtIXaR004aWE/X9B2CFrITOQAp5gxLONGrk6GA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/types': 27.5.1 chalk: 4.1.2 graceful-fs: 4.2.10 - jest-haste-map: 27.5.1 - jest-pnp-resolver: 1.2.2_jest-resolve@27.5.1 - jest-util: 27.5.1 - jest-validate: 27.5.1 + jest-haste-map: 29.2.1 + jest-pnp-resolver: 1.2.2_jest-resolve@29.2.2 + jest-util: 29.2.1 + jest-validate: 29.2.2 resolve: 1.22.1 resolve.exports: 1.1.0 slash: 3.0.0 dev: true - /jest-runner/27.5.1: - resolution: {integrity: sha512-g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /jest-runner/29.2.2: + resolution: {integrity: sha512-1CpUxXDrbsfy9Hr9/1zCUUhT813kGGK//58HeIw/t8fa/DmkecEwZSWlb1N/xDKXg3uCFHQp1GCvlSClfImMxg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/console': 27.5.1 - '@jest/environment': 27.5.1 - '@jest/test-result': 27.5.1 - '@jest/transform': 27.5.1 - '@jest/types': 27.5.1 - '@types/node': 18.8.3 + '@jest/console': 29.2.1 + '@jest/environment': 29.2.2 + '@jest/test-result': 29.2.1 + '@jest/transform': 29.2.2 + '@jest/types': 29.2.1 + '@types/node': 18.11.7 chalk: 4.1.2 - emittery: 0.8.1 + emittery: 0.13.1 graceful-fs: 4.2.10 - jest-docblock: 27.5.1 - jest-environment-jsdom: 27.5.1 - jest-environment-node: 27.5.1 - jest-haste-map: 27.5.1 - jest-leak-detector: 27.5.1 - jest-message-util: 27.5.1 - jest-resolve: 27.5.1 - jest-runtime: 27.5.1 - jest-util: 27.5.1 - jest-worker: 27.5.1 - source-map-support: 0.5.21 - throat: 6.0.1 + jest-docblock: 29.2.0 + jest-environment-node: 29.2.2 + jest-haste-map: 29.2.1 + jest-leak-detector: 29.2.1 + jest-message-util: 29.2.1 + jest-resolve: 29.2.2 + jest-runtime: 29.2.2 + jest-util: 29.2.1 + jest-watcher: 29.2.2 + jest-worker: 29.2.1 + p-limit: 3.1.0 + source-map-support: 0.5.13 transitivePeerDependencies: - - bufferutil - - canvas - supports-color - - utf-8-validate dev: true - /jest-runtime/27.5.1: - resolution: {integrity: sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /jest-runtime/29.2.2: + resolution: {integrity: sha512-TpR1V6zRdLynckKDIQaY41od4o0xWL+KOPUCZvJK2bu5P1UXhjobt5nJ2ICNeIxgyj9NGkO0aWgDqYPVhDNKjA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/environment': 27.5.1 - '@jest/fake-timers': 27.5.1 - '@jest/globals': 27.5.1 - '@jest/source-map': 27.5.1 - '@jest/test-result': 27.5.1 - '@jest/transform': 27.5.1 - '@jest/types': 27.5.1 + '@jest/environment': 29.2.2 + '@jest/fake-timers': 29.2.2 + '@jest/globals': 29.2.2 + '@jest/source-map': 29.2.0 + '@jest/test-result': 29.2.1 + '@jest/transform': 29.2.2 + '@jest/types': 29.2.1 + '@types/node': 18.11.7 chalk: 4.1.2 cjs-module-lexer: 1.2.2 collect-v8-coverage: 1.0.1 - execa: 5.1.1 glob: 7.2.3 graceful-fs: 4.2.10 - jest-haste-map: 27.5.1 - jest-message-util: 27.5.1 - jest-mock: 27.5.1 - jest-regex-util: 27.5.1 - jest-resolve: 27.5.1 - jest-snapshot: 27.5.1 - jest-util: 27.5.1 + jest-haste-map: 29.2.1 + jest-message-util: 29.2.1 + jest-mock: 29.2.2 + jest-regex-util: 29.2.0 + jest-resolve: 29.2.2 + jest-snapshot: 29.2.2 + jest-util: 29.2.1 slash: 3.0.0 strip-bom: 4.0.0 transitivePeerDependencies: @@ -15254,43 +15959,37 @@ packages: resolution: {integrity: sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==} engines: {node: '>= 10.14.2'} dependencies: - '@types/node': 18.8.3 + '@types/node': 18.11.7 graceful-fs: 4.2.10 dev: true - /jest-serializer/27.5.1: - resolution: {integrity: sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - dependencies: - '@types/node': 18.8.3 - graceful-fs: 4.2.10 - dev: true - - /jest-snapshot/27.5.1: - resolution: {integrity: sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /jest-snapshot/29.2.2: + resolution: {integrity: sha512-GfKJrpZ5SMqhli3NJ+mOspDqtZfJBryGA8RIBxF+G+WbDoC7HCqKaeAss4Z/Sab6bAW11ffasx8/vGsj83jyjA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@babel/core': 7.19.3 - '@babel/generator': 7.19.3 + '@babel/generator': 7.19.5 + '@babel/plugin-syntax-jsx': 7.18.6_@babel+core@7.19.3 '@babel/plugin-syntax-typescript': 7.18.6_@babel+core@7.19.3 - '@babel/traverse': 7.19.3 - '@babel/types': 7.19.3 - '@jest/transform': 27.5.1 - '@jest/types': 27.5.1 + '@babel/traverse': 7.19.4 + '@babel/types': 7.19.4 + '@jest/expect-utils': 29.2.2 + '@jest/transform': 29.2.2 + '@jest/types': 29.2.1 '@types/babel__traverse': 7.18.2 '@types/prettier': 2.7.1 babel-preset-current-node-syntax: 1.0.1_@babel+core@7.19.3 chalk: 4.1.2 - expect: 27.5.1 + expect: 29.2.2 graceful-fs: 4.2.10 - jest-diff: 27.5.1 - jest-get-type: 27.5.1 - jest-haste-map: 27.5.1 - jest-matcher-utils: 27.5.1 - jest-message-util: 27.5.1 - jest-util: 27.5.1 + jest-diff: 29.2.1 + jest-get-type: 29.2.0 + jest-haste-map: 29.2.1 + jest-matcher-utils: 29.2.2 + jest-message-util: 29.2.1 + jest-util: 29.2.1 natural-compare: 1.4.0 - pretty-format: 27.5.1 + pretty-format: 29.2.1 semver: 7.3.8 transitivePeerDependencies: - supports-color @@ -15301,47 +16000,48 @@ packages: engines: {node: '>= 10.14.2'} dependencies: '@jest/types': 26.6.2 - '@types/node': 18.8.3 + '@types/node': 18.11.7 chalk: 4.1.2 graceful-fs: 4.2.10 is-ci: 2.0.0 micromatch: 4.0.5 dev: true - /jest-util/27.5.1: - resolution: {integrity: sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /jest-util/29.2.1: + resolution: {integrity: sha512-P5VWDj25r7kj7kl4pN2rG/RN2c1TLfYYYZYULnS/35nFDjBai+hBeo3MDrYZS7p6IoY3YHZnt2vq4L6mKnLk0g==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/types': 27.5.1 - '@types/node': 16.11.64 + '@jest/types': 29.2.1 + '@types/node': 18.11.7 chalk: 4.1.2 ci-info: 3.5.0 graceful-fs: 4.2.10 picomatch: 2.3.1 dev: true - /jest-validate/27.5.1: - resolution: {integrity: sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /jest-validate/29.2.2: + resolution: {integrity: sha512-eJXATaKaSnOuxNfs8CLHgdABFgUrd0TtWS8QckiJ4L/QVDF4KVbZFBBOwCBZHOS0Rc5fOxqngXeGXE3nGQkpQA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/types': 27.5.1 + '@jest/types': 29.2.1 camelcase: 6.3.0 chalk: 4.1.2 - jest-get-type: 27.5.1 + jest-get-type: 29.2.0 leven: 3.1.0 - pretty-format: 27.5.1 + pretty-format: 29.2.1 dev: true - /jest-watcher/27.5.1: - resolution: {integrity: sha512-z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /jest-watcher/29.2.2: + resolution: {integrity: sha512-j2otfqh7mOvMgN2WlJ0n7gIx9XCMWntheYGlBK7+5g3b1Su13/UAK7pdKGyd4kDlrLwtH2QPvRv5oNIxWvsJ1w==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/test-result': 27.5.1 - '@jest/types': 27.5.1 - '@types/node': 18.8.3 + '@jest/test-result': 29.2.1 + '@jest/types': 29.2.1 + '@types/node': 18.11.7 ansi-escapes: 4.3.2 chalk: 4.1.2 - jest-util: 27.5.1 + emittery: 0.13.1 + jest-util: 29.2.1 string-length: 4.0.2 dev: true @@ -15349,7 +16049,7 @@ packages: resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==} engines: {node: '>= 10.13.0'} dependencies: - '@types/node': 16.11.64 + '@types/node': 18.11.7 merge-stream: 2.0.0 supports-color: 7.2.0 dev: true @@ -15358,35 +16058,24 @@ packages: resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} engines: {node: '>= 10.13.0'} dependencies: - '@types/node': 18.8.3 + '@types/node': 18.11.7 merge-stream: 2.0.0 supports-color: 8.1.1 dev: true - /jest/27.5.1: - resolution: {integrity: sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} - hasBin: true - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true + /jest-worker/29.2.1: + resolution: {integrity: sha512-ROHTZ+oj7sBrgtv46zZ84uWky71AoYi0vEV9CdEtc1FQunsoAGe5HbQmW76nI5QWdvECVPrSi1MCVUmizSavMg==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/core': 27.5.1 - import-local: 3.1.0 - jest-cli: 27.5.1 - transitivePeerDependencies: - - bufferutil - - canvas - - supports-color - - ts-node - - utf-8-validate + '@types/node': 18.11.7 + jest-util: 29.2.1 + merge-stream: 2.0.0 + supports-color: 8.1.1 dev: true - /jest/27.5.1_ts-node@10.9.1: - resolution: {integrity: sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /jest/29.2.2: + resolution: {integrity: sha512-r+0zCN9kUqoON6IjDdjbrsWobXM/09Nd45kIPRD8kloaRh1z5ZCMdVsgLXGxmlL7UpAJsvCYOQNO+NjvG/gqiQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 @@ -15394,15 +16083,54 @@ packages: node-notifier: optional: true dependencies: - '@jest/core': 27.5.1_ts-node@10.9.1 + '@jest/core': 29.2.2 + '@jest/types': 29.2.1 import-local: 3.1.0 - jest-cli: 27.5.1_ts-node@10.9.1 + jest-cli: 29.2.2 transitivePeerDependencies: - - bufferutil - - canvas + - '@types/node' + - supports-color + - ts-node + dev: true + + /jest/29.2.2_4pb6an67rakrle6rtido6z2a34: + resolution: {integrity: sha512-r+0zCN9kUqoON6IjDdjbrsWobXM/09Nd45kIPRD8kloaRh1z5ZCMdVsgLXGxmlL7UpAJsvCYOQNO+NjvG/gqiQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + hasBin: true + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + dependencies: + '@jest/core': 29.2.2_ts-node@10.9.1 + '@jest/types': 29.2.1 + import-local: 3.1.0 + jest-cli: 29.2.2_4pb6an67rakrle6rtido6z2a34 + transitivePeerDependencies: + - '@types/node' + - supports-color + - ts-node + dev: true + + /jest/29.2.2_@types+node@18.11.7: + resolution: {integrity: sha512-r+0zCN9kUqoON6IjDdjbrsWobXM/09Nd45kIPRD8kloaRh1z5ZCMdVsgLXGxmlL7UpAJsvCYOQNO+NjvG/gqiQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + hasBin: true + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + dependencies: + '@jest/core': 29.2.2 + '@jest/types': 29.2.1 + import-local: 3.1.0 + jest-cli: 29.2.2_@types+node@18.11.7 + transitivePeerDependencies: + - '@types/node' - supports-color - ts-node - - utf-8-validate dev: true /js-levenshtein/1.1.6: @@ -15445,9 +16173,9 @@ packages: resolution: {integrity: sha512-wStfgOJqMv4QKktuH273f5fyi3D3vy2pHOiSDGPvpcS/q+wb/M7AK3vkCcaHbkZxDOlDU/lDJgccygKSG2OhtA==} dev: false - /jsdom/16.7.0: - resolution: {integrity: sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==} - engines: {node: '>=10'} + /jsdom/20.0.1: + resolution: {integrity: sha512-pksjj7Rqoa+wdpkKcLzQRHhJCEE42qQhl/xLMUKHgoSejaKOdaXEAnqs6uDNwMl/fciHTzKeR8Wm8cw7N+g98A==} + engines: {node: '>=14'} peerDependencies: canvas: ^2.5.0 peerDependenciesMeta: @@ -15456,31 +16184,30 @@ packages: dependencies: abab: 2.0.6 acorn: 8.8.0 - acorn-globals: 6.0.0 - cssom: 0.4.4 + acorn-globals: 7.0.1 + cssom: 0.5.0 cssstyle: 2.3.0 - data-urls: 2.0.0 - decimal.js: 10.4.1 - domexception: 2.0.1 + data-urls: 3.0.2 + decimal.js: 10.4.2 + domexception: 4.0.0 escodegen: 2.0.0 - form-data: 3.0.1 - html-encoding-sniffer: 2.0.1 - http-proxy-agent: 4.0.1 + form-data: 4.0.0 + html-encoding-sniffer: 3.0.0 + http-proxy-agent: 5.0.0 https-proxy-agent: 5.0.1 is-potential-custom-element-name: 1.0.1 nwsapi: 2.2.2 - parse5: 6.0.1 - saxes: 5.0.1 + parse5: 7.1.1 + saxes: 6.0.0 symbol-tree: 3.2.4 tough-cookie: 4.1.2 - w3c-hr-time: 1.0.2 - w3c-xmlserializer: 2.0.0 - webidl-conversions: 6.1.0 - whatwg-encoding: 1.0.5 - whatwg-mimetype: 2.3.0 - whatwg-url: 8.7.0 - ws: 7.5.9 - xml-name-validator: 3.0.0 + w3c-xmlserializer: 3.0.0 + webidl-conversions: 7.0.0 + whatwg-encoding: 2.0.0 + whatwg-mimetype: 3.0.0 + whatwg-url: 11.0.0 + ws: 8.9.0 + xml-name-validator: 4.0.0 transitivePeerDependencies: - bufferutil - supports-color @@ -15543,7 +16270,7 @@ packages: resolution: {integrity: sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==} hasBin: true dependencies: - minimist: 1.2.6 + minimist: 1.2.7 dev: true /json5/2.2.1: @@ -15601,7 +16328,7 @@ packages: /jss-plugin-camel-case/10.9.2: resolution: {integrity: sha512-wgBPlL3WS0WDJ1lPJcgjux/SHnDuu7opmgQKSraKs4z8dCCyYMx9IDPFKBXQ8Q5dVYij1FFV0WdxyhuOOAXuTg==} dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 hyphenate-style-name: 1.0.4 jss: 10.9.2 dev: false @@ -15609,7 +16336,7 @@ packages: /jss-plugin-compose/10.9.2: resolution: {integrity: sha512-XvsGar4D791VgOMqbEk1XYY5s84Ew57OMLYjbnTXl3MSaBTvmR5M3dTqQbBquJGp4pLyyqlfTcijfolZII1w4Q==} dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 jss: 10.9.2 tiny-warning: 1.0.3 dev: false @@ -15617,21 +16344,21 @@ packages: /jss-plugin-default-unit/10.9.2: resolution: {integrity: sha512-pYg0QX3bBEFtTnmeSI3l7ad1vtHU42YEEpgW7pmIh+9pkWNWb5dwS/4onSfAaI0kq+dOZHzz4dWe+8vWnanoSg==} dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 jss: 10.9.2 dev: false /jss-plugin-expand/10.9.2: resolution: {integrity: sha512-D3PGLUJu3YbHhX6vANooCa1gqfv68wLssDp08wH21YVTCt6u8jWfqkoj9NmPz5ea1Fc0WMoJtofJTlgb6ApZvw==} dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 jss: 10.9.2 dev: false /jss-plugin-extend/10.9.2: resolution: {integrity: sha512-55lXOQ7yyRtrMRYOcWUeZ3Ea4/Cd/oTndvb9j/5O3+E816nRoYbDsqKI8ob0Yx8PnfHBsQN0u10JcLnqq+8aPA==} dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 jss: 10.9.2 tiny-warning: 1.0.3 dev: false @@ -15639,14 +16366,14 @@ packages: /jss-plugin-global/10.9.2: resolution: {integrity: sha512-GcX0aE8Ef6AtlasVrafg1DItlL/tWHoC4cGir4r3gegbWwF5ZOBYhx04gurPvWHC8F873aEGqge7C17xpwmp2g==} dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 jss: 10.9.2 dev: false /jss-plugin-nested/10.9.2: resolution: {integrity: sha512-VgiOWIC6bvgDaAL97XCxGD0BxOKM0K0zeB/ECyNaVF6FqvdGB9KBBWRdy2STYAss4VVA7i5TbxFZN+WSX1kfQA==} dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 jss: 10.9.2 tiny-warning: 1.0.3 dev: false @@ -15654,14 +16381,14 @@ packages: /jss-plugin-props-sort/10.9.2: resolution: {integrity: sha512-AP1AyUTbi2szylgr+O0OB7gkIxEGzySLITZ2GpsaoX72YMCGI2jYAc+WUhPfvUnZYiauF4zTnN4V4TGuvFjJlw==} dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 jss: 10.9.2 dev: false /jss-plugin-rule-value-function/10.9.2: resolution: {integrity: sha512-vf5ms8zvLFMub6swbNxvzsurHfUZ5Shy5aJB2gIpY6WNA3uLinEcxYyraQXItRHi5ivXGqYciFDRM2ZoVoRZ4Q==} dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 jss: 10.9.2 tiny-warning: 1.0.3 dev: false @@ -15669,7 +16396,7 @@ packages: /jss-plugin-rule-value-observable/10.9.2: resolution: {integrity: sha512-SSqBD4s/k2mwsOUg6+LI/oEmvUxokIWi+5bZOyer/2nP4kMxeo3gHURc2yiAEu3v62Sf3GHhgC6pBAugxhLL9A==} dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 jss: 10.9.2 symbol-observable: 1.2.0 dev: false @@ -15677,7 +16404,7 @@ packages: /jss-plugin-template/10.9.2: resolution: {integrity: sha512-f+ANQg8n+tkYea4Fu1Qt4skv9UJiNllzJB1Ga0QyumDZZJVpCzl8/mbFT1cvQSW7h+yB31GexFYVF3ct5fFGzA==} dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 jss: 10.9.2 tiny-warning: 1.0.3 dev: false @@ -15685,7 +16412,7 @@ packages: /jss-plugin-vendor-prefixer/10.9.2: resolution: {integrity: sha512-SxcEoH+Rttf9fEv6KkiPzLdXRmI6waOTcMkbbEFgdZLDYNIP9UKNHFy6thhbRKqv0XMQZdrEsbDyV464zE/dUA==} dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 css-vendor: 2.0.8 jss: 10.9.2 dev: false @@ -15693,7 +16420,7 @@ packages: /jss-preset-default/10.9.2: resolution: {integrity: sha512-HMkTLgYPRjwdiu8n8ZB2VEfpO95cZ5AmmSYvFSvt76MQJMp/xDh6cP49MmZHwMpIvXwNj0LI8Peglgwz+rHKBQ==} dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 jss: 10.9.2 jss-plugin-camel-case: 10.9.2 jss-plugin-compose: 10.9.2 @@ -15712,7 +16439,7 @@ packages: /jss/10.9.2: resolution: {integrity: sha512-b8G6rWpYLR4teTUbGd4I4EsnWjg7MN0Q5bSsjKhVkJVjhQDy2KzkbD2AW3TuT0RYZVmZZHKIrXDn6kjU14qkUg==} dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 csstype: 3.1.1 is-in-browser: 1.1.3 tiny-warning: 1.0.3 @@ -15879,7 +16606,7 @@ packages: resolution: {integrity: sha512-prXSYk799h3GY3iOWnC6ZigYzMPjxN2svgjJ9shk7oMadSNX3wXy0B6F32PMJv7qtMnrIbUxoEHzbutvxR2LBQ==} engines: {node: '>=6.0.0', npm: '>=6.0.0', yarn: '>=1.0.0'} dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 app-root-dir: 1.0.2 core-js: 3.25.5 dotenv: 8.6.0 @@ -16254,6 +16981,13 @@ packages: tmpl: 1.0.5 dev: true + /map-age-cleaner/0.1.3: + resolution: {integrity: sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==} + engines: {node: '>=6'} + dependencies: + p-defer: 1.0.0 + dev: true + /map-cache/0.2.2: resolution: {integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==} engines: {node: '>=0.10.0'} @@ -16345,9 +17079,17 @@ packages: dev: true /media-typer/0.3.0: - resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==} + resolution: {integrity: sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=} engines: {node: '>= 0.6'} + /mem/8.1.1: + resolution: {integrity: sha512-qFCFUDs7U3b8mBDPyz5EToEKoAkgCzqquIgi9nkkR9bixxOVOre+09lbuH7+9Kn2NFpm56M3GUWVbU2hQgdACA==} + engines: {node: '>=10'} + dependencies: + map-age-cleaner: 0.1.3 + mimic-fn: 3.1.0 + dev: true + /memfs/3.4.7: resolution: {integrity: sha512-ygaiUSNalBX85388uskeCyhSAoOSgzBbtVCr9jA2RROssFL9Q19/ZXFqS+2Th2sr1ewNIWgFdLzLC3Yl1Zv+lw==} engines: {node: '>= 4.0.0'} @@ -16388,7 +17130,7 @@ packages: decamelize: 1.2.0 loud-rejection: 1.6.0 map-obj: 1.0.1 - minimist: 1.2.6 + minimist: 1.2.7 normalize-package-data: 2.5.0 object-assign: 4.1.1 read-pkg-up: 1.0.1 @@ -16433,7 +17175,7 @@ packages: dev: true /merge-descriptors/1.0.1: - resolution: {integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==} + resolution: {integrity: sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=} /merge-stream/2.0.0: resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} @@ -16514,6 +17256,11 @@ packages: resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} engines: {node: '>=6'} + /mimic-fn/3.1.0: + resolution: {integrity: sha512-Ysbi9uYW9hFyfrThdDEQuykN4Ey6BuwPD2kpI5ES/nFTDn/98yxYNLZJcgUAKPT/mcrLLKaGzJR9YVxJrIdASQ==} + engines: {node: '>=8'} + dev: true + /mimic-response/1.0.1: resolution: {integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==} engines: {node: '>=4'} @@ -16564,8 +17311,8 @@ packages: kind-of: 6.0.3 dev: true - /minimist/1.2.6: - resolution: {integrity: sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==} + /minimist/1.2.7: + resolution: {integrity: sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==} /minipass-collect/1.0.2: resolution: {integrity: sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==} @@ -16651,7 +17398,7 @@ packages: resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} hasBin: true dependencies: - minimist: 1.2.6 + minimist: 1.2.7 dev: true /mkdirp/1.0.4: @@ -16708,7 +17455,7 @@ packages: optional: true dependencies: '@mswjs/cookies': 0.2.2 - '@mswjs/interceptors': 0.17.5 + '@mswjs/interceptors': 0.17.6 '@open-draft/until': 1.0.3 '@types/cookie': 0.4.1 '@types/js-levenshtein': 1.1.1 @@ -16745,8 +17492,8 @@ packages: resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==} dev: false - /nan/2.16.0: - resolution: {integrity: sha512-UdAqHyFngu7TfQKsCBgAA6pWDkT8MAO7d0jyOecVhN5354xbLqdn8mV9Tat9gepAupm0bt2DbeaSC8vS52MuFA==} + /nan/2.17.0: + resolution: {integrity: sha512-2ZTgtl0nJsO0KQCjEpxcIr5D+Yv90plTitZt9JBfQvVJDS5seMl3FOvsh3+9CoYWXf/1l5OaZzzF6nDm4cagaQ==} requiresBuild: true dev: true optional: true @@ -17020,8 +17767,8 @@ packages: resolution: {integrity: sha512-90yv+6538zuvUMnN+zCr8LuV6bPFdq50304114vJYJ8RDyK8D5O9Phpbd6SZWgI7PwzmmfN1upeOJlvybDSgCw==} dev: true - /nx/14.8.3: - resolution: {integrity: sha512-6aMYrzlTqE77vHbaE1teI5P1A2oYkJGkuDMIo/zegRwUxCAjRzLAluUgPrmgqhuPTyTDn8p4aDfxAWV3Q0o/2Q==} + /nx/15.0.0: + resolution: {integrity: sha512-uh9Ou5oj7yr6Uyp4QhqW1vIVoanYn1sJM1jzOyoT17GAhhODfS0BtQgUvlmInDuRqP8LMaPg4LXFMby07U1HXg==} hasBin: true requiresBuild: true peerDependencies: @@ -17033,13 +17780,13 @@ packages: '@swc/core': optional: true dependencies: - '@nrwl/cli': 14.8.3 - '@nrwl/tao': 14.8.3 + '@nrwl/cli': 15.0.0 + '@nrwl/tao': 15.0.0 '@parcel/watcher': 2.0.4 '@yarnpkg/lockfile': 1.1.0 - '@yarnpkg/parsers': 3.0.0-rc.24 + '@yarnpkg/parsers': 3.0.0-rc.25 '@zkochan/js-yaml': 0.0.6 - axios: 0.21.1 + axios: 1.1.3 chalk: 4.1.0 chokidar: 3.5.3 cli-cursor: 3.1.0 @@ -17288,6 +18035,11 @@ packages: resolution: {integrity: sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==} engines: {node: '>=6'} + /p-defer/1.0.0: + resolution: {integrity: sha512-wB3wfAxZpk2AzOfUMJNL+d36xothRSyj8EXOa4f6GMqYDN9BJaaSISbsk+wS9abmnebVw95C2Kb5t85UmpCxuw==} + engines: {node: '>=4'} + dev: true + /p-event/4.2.0: resolution: {integrity: sha512-KXatOjCRXXkSePPb1Nbi0p0m+gQAwdlbhi4wQKJPI1HsMQS9g+Sqp2o+QHziPr7eYJyOZet836KoHEVM1mwOrQ==} engines: {node: '>=8'} @@ -17654,7 +18406,7 @@ packages: resolution: {integrity: sha512-Sz2Lkdxz6F2Pgnpi9U5Ng/WdWAUZxmHrNPoVlm3aAemxoy2Qy7LGjQg4uf8qKelDAUW94F4np3iH2YPf2qefcQ==} engines: {node: '>=10'} dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 dev: true /popmotion/11.0.5: @@ -17704,13 +18456,13 @@ packages: postcss: 7.0.39 dev: true - /postcss-modules-extract-imports/3.0.0_postcss@8.4.17: + /postcss-modules-extract-imports/3.0.0_postcss@8.4.18: resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.17 + postcss: 8.4.18 dev: true /postcss-modules-local-by-default/3.0.3: @@ -17723,14 +18475,14 @@ packages: postcss-value-parser: 4.2.0 dev: true - /postcss-modules-local-by-default/4.0.0_postcss@8.4.17: + /postcss-modules-local-by-default/4.0.0_postcss@8.4.18: resolution: {integrity: sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - icss-utils: 5.1.0_postcss@8.4.17 - postcss: 8.4.17 + icss-utils: 5.1.0_postcss@8.4.18 + postcss: 8.4.18 postcss-selector-parser: 6.0.10 postcss-value-parser: 4.2.0 dev: true @@ -17743,13 +18495,13 @@ packages: postcss-selector-parser: 6.0.10 dev: true - /postcss-modules-scope/3.0.0_postcss@8.4.17: + /postcss-modules-scope/3.0.0_postcss@8.4.18: resolution: {integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.17 + postcss: 8.4.18 postcss-selector-parser: 6.0.10 dev: true @@ -17760,27 +18512,27 @@ packages: postcss: 7.0.39 dev: true - /postcss-modules-values/4.0.0_postcss@8.4.17: + /postcss-modules-values/4.0.0_postcss@8.4.18: 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.17 - postcss: 8.4.17 + icss-utils: 5.1.0_postcss@8.4.18 + postcss: 8.4.18 dev: true /postcss-resolve-nested-selector/0.1.1: resolution: {integrity: sha512-HvExULSwLqHLgUy1rl3ANIqCsvMS0WHss2UOsXhXnQaZ9VCc2oBvIpXrl00IUFT5ZDITME0o6oiXeiHr2SAIfw==} dev: true - /postcss-safe-parser/6.0.0_postcss@8.4.17: + /postcss-safe-parser/6.0.0_postcss@8.4.18: resolution: {integrity: sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==} engines: {node: '>=12.0'} peerDependencies: postcss: ^8.3.3 dependencies: - postcss: 8.4.17 + postcss: 8.4.18 dev: true /postcss-selector-parser/6.0.10: @@ -17802,8 +18554,8 @@ packages: source-map: 0.6.1 dev: true - /postcss/8.4.17: - resolution: {integrity: sha512-UNxNOLQydcOFi41yHNMcKRZ39NeXlr8AxGuZJsdub8vIb12fHzcq37DTU/QtbI6WLxNg2gF9Z+8qtRwTj1UI1Q==} + /postcss/8.4.18: + resolution: {integrity: sha512-Wi8mWhncLJm11GATDaQKobXSNEYGUHeQLiQqDFG1qQ5UTDPTEvKw0Xt5NsTpktGTwLps3ByrWsBrG0rB8YQ9oA==} engines: {node: ^10 || ^12 || >=14} dependencies: nanoid: 3.3.4 @@ -17870,6 +18622,15 @@ packages: react-is: 17.0.2 dev: true + /pretty-format/29.2.1: + resolution: {integrity: sha512-Y41Sa4aLCtKAXvwuIpTvcFBkyeYp2gdFWzXGA+ZNES3VwURIB165XO/z7CjETwzCCS53MjW/rLMyyqEnTtaOfA==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + dependencies: + '@jest/schemas': 29.0.0 + ansi-styles: 5.2.0 + react-is: 18.2.0 + dev: true + /pretty-hrtime/1.0.3: resolution: {integrity: sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==} engines: {node: '>= 0.8'} @@ -18246,7 +19007,7 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 '@restart/hooks': 0.4.7_react@18.2.0 '@restart/ui': 1.4.0_biqbaboplfbrettd7655fr4n2y '@types/react': 18.0.21 @@ -18268,7 +19029,7 @@ packages: peerDependencies: react: ^15.3.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || 18 dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 react: 18.2.0 dev: false @@ -18290,8 +19051,8 @@ packages: hasBin: true dependencies: '@babel/core': 7.19.3 - '@babel/generator': 7.19.3 - '@babel/runtime': 7.19.0 + '@babel/generator': 7.19.5 + '@babel/runtime': 7.19.4 ast-types: 0.14.2 commander: 2.20.3 doctrine: 3.0.0 @@ -18345,7 +19106,7 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 '@types/react': 18.0.21 focus-lock: 0.11.3 prop-types: 15.8.1 @@ -18355,8 +19116,8 @@ packages: use-sidecar: 1.1.2_iapumuv4e6jcjznwuxpf4tt22e dev: false - /react-icons/4.4.0_react@18.2.0: - resolution: {integrity: sha512-fSbvHeVYo/B5/L4VhB7sBA1i2tS8MkT0Hb9t2H1AVPkwGfVHLJCqyr2Py9dKMxsyM63Eng1GkdZfbWj+Fmv8Rg==} + /react-icons/4.6.0_react@18.2.0: + resolution: {integrity: sha512-rR/L9m9340yO8yv1QT1QurxWQvWpbNHqVX0fzMln2HEb9TEIrQRGsqiNFQfiv9/JEUbyHmHPlNTB2LWm2Ttz0g==} peerDependencies: react: '*' dependencies: @@ -18368,7 +19129,7 @@ packages: peerDependencies: react: ^16.8.4 || ^17.0.0 || 18 dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 is-dom: 1.1.0 prop-types: 15.8.1 react: 18.2.0 @@ -18419,7 +19180,7 @@ packages: redux: optional: true dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 '@types/hoist-non-react-statics': 3.3.1 '@types/react': 18.0.21 '@types/react-dom': 18.0.6 @@ -18452,7 +19213,7 @@ packages: redux: optional: true dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 '@types/hoist-non-react-statics': 3.3.1 '@types/react': 18.0.21 '@types/use-sync-external-store': 0.0.3 @@ -18462,6 +19223,7 @@ packages: 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.4_yfr4m6wk75wdra335rld4tkrbu: resolution: {integrity: sha512-yMfQ7mX6bWuicz2fids6cR1YT59VTuT8MKyyE310wJQlINKENCeT1UcPdEiX6znI5tF8zXyJ/VYvDgeGuaaNwQ==} @@ -18484,7 +19246,7 @@ packages: redux: optional: true dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 '@types/hoist-non-react-statics': 3.3.1 '@types/react': 18.0.21 '@types/react-dom': 18.0.6 @@ -18495,15 +19257,14 @@ packages: 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.3_iapumuv4e6jcjznwuxpf4tt22e: - resolution: {integrity: sha512-i9GMNWwpz8XpUpQ6QlevUtFjHGqnPG4Hxs+wlIJntu/xcsZVEpJcIV71K3ZkqNy2q3GfgvkD7y6t/Sv8ofYSbw==} + /react-remove-scroll-bar/2.3.4_iapumuv4e6jcjznwuxpf4tt22e: + resolution: {integrity: sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A==} engines: {node: '>=10'} peerDependencies: '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -18530,7 +19291,7 @@ packages: dependencies: '@types/react': 18.0.21 react: 18.2.0 - react-remove-scroll-bar: 2.3.3_iapumuv4e6jcjznwuxpf4tt22e + react-remove-scroll-bar: 2.3.4_iapumuv4e6jcjznwuxpf4tt22e react-style-singleton: 2.2.1_iapumuv4e6jcjznwuxpf4tt22e tslib: 2.4.0 use-callback-ref: 1.3.0_iapumuv4e6jcjznwuxpf4tt22e @@ -18560,21 +19321,23 @@ packages: react: 18.2.0 dev: false - /react-select/5.4.0_eat7hc23gfabdflnphmz6xfchm: - resolution: {integrity: sha512-CjE9RFLUvChd5SdlfG4vqxZd55AZJRrLrHzkQyTYeHlpOztqcgnyftYAolJ0SGsBev6zAs6qFrjm6KU3eo2hzg==} + /react-select/5.5.2_eat7hc23gfabdflnphmz6xfchm: + resolution: {integrity: sha512-zbcxtiqXvFW2Wh+dd8zAqMY6QaqX9Ez0WlcjSXycXn1ASpKdc17LcGJj7gAJiUcHI/UVlo6wfg44hgBsUPyEBQ==} 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: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 '@emotion/cache': 11.10.3 '@emotion/react': 11.10.4_bjroym7kxlcs2vvwnej4p3gzwu + '@floating-ui/dom': 1.0.2 '@types/react-transition-group': 4.4.5 memoize-one: 5.2.1 prop-types: 15.8.1 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 react-transition-group: 4.4.5_biqbaboplfbrettd7655fr4n2y + use-isomorphic-layout-effect: 1.1.2_iapumuv4e6jcjznwuxpf4tt22e transitivePeerDependencies: - '@babel/core' - '@types/react' @@ -18635,7 +19398,7 @@ packages: react: '>=16.6.0 || 18' react-dom: '>=16.6.0 || 18' dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 dom-helpers: 5.2.1 loose-envify: 1.4.0 prop-types: 15.8.1 @@ -18806,7 +19569,7 @@ packages: /redux/4.2.0: resolution: {integrity: sha512-oSBmcKKIuIR4ME29/AeNUnl5L+hvBq7OaJWzaptTQJAntaPvxIJqfnjbaEiCzzaIz+XmVILfqAM3Ob0aXLPfjA==} dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 /regenerate-unicode-properties/10.1.0: resolution: {integrity: sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==} @@ -18823,13 +19586,13 @@ packages: resolution: {integrity: sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==} dev: true - /regenerator-runtime/0.13.9: - resolution: {integrity: sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==} + /regenerator-runtime/0.13.10: + resolution: {integrity: sha512-KepLsg4dU12hryUO7bp/axHAKvwGOCV0sGloQtpagJ12ai+ojVDqkeGSiRX1zlq+kjIMZ1t7gpze+26QqtdGqw==} /regenerator-transform/0.15.0: resolution: {integrity: sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg==} dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 dev: true /regex-not/1.0.2: @@ -19124,19 +19887,7 @@ packages: sprintf-js: 1.1.2 optional: true - /rollup-plugin-terser/7.0.2_rollup@2.79.1: - resolution: {integrity: sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==} - peerDependencies: - rollup: ^2.0.0 - dependencies: - '@babel/code-frame': 7.18.6 - jest-worker: 26.6.2 - rollup: 2.79.1 - serialize-javascript: 4.0.0 - terser: 5.15.1 - dev: true - - /rollup-plugin-typescript2/0.34.1_gypgyaqhine6mwjfvh7icfhviq: + /rollup-plugin-typescript2/0.34.1_655ssj4e7sdqlljrreeiqtltve: resolution: {integrity: sha512-P4cHLtGikESmqi1CA+tdMDUv8WbQV48mzPYt77TSTOPJpERyZ9TXdDgjSDix8Fkqce6soYz3+fa4lrC93IEkcw==} peerDependencies: rollup: '>=1.26.3' @@ -19145,15 +19896,15 @@ packages: '@rollup/pluginutils': 4.2.1 find-cache-dir: 3.3.2 fs-extra: 10.1.0 - rollup: 2.79.1 + rollup: 3.2.3 semver: 7.3.8 tslib: 2.4.0 typescript: 4.8.4 dev: true - /rollup/2.79.1: - resolution: {integrity: sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==} - engines: {node: '>=10.0.0'} + /rollup/3.2.3: + resolution: {integrity: sha512-qfadtkY5kl0F5e4dXVdj2D+GtOdifasXHFMiL1SMf9ADQDv5Eti6xReef9FKj+iQPR2pvtqWna57s/PjARY4fg==} + engines: {node: '>=14.18.0', npm: '>=8.0.0'} hasBin: true optionalDependencies: fsevents: 2.3.2 @@ -19225,15 +19976,15 @@ packages: execa: 1.0.0 fb-watchman: 2.0.2 micromatch: 3.1.10 - minimist: 1.2.6 + minimist: 1.2.7 walker: 1.0.8 transitivePeerDependencies: - supports-color dev: true - /saxes/5.0.1: - resolution: {integrity: sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==} - engines: {node: '>=10'} + /saxes/6.0.0: + resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==} + engines: {node: '>=v12.22.7'} dependencies: xmlchars: 2.2.0 dev: true @@ -19625,13 +20376,13 @@ packages: dependencies: ag-channel: 5.0.0 ag-request: 1.0.0 - async-stream-emitter: 4.0.0 + async-stream-emitter: 4.1.0 buffer: 5.7.1 clone-deep: 4.0.1 linked-list: 0.1.0 sc-errors: 2.0.1 sc-formatter: 3.0.3 - stream-demux: 8.0.0 + stream-demux: 8.1.0 uuid: 8.3.2 vinyl-buffer: 1.0.1 ws: 8.9.0 @@ -19645,12 +20396,12 @@ packages: ag-auth: 1.0.1 ag-request: 1.0.0 ag-simple-broker: 5.0.0 - async-stream-emitter: 4.0.0 + async-stream-emitter: 4.1.0 base64id: 1.0.0 clone-deep: 4.0.1 sc-errors: 2.0.1 sc-formatter: 3.0.3 - stream-demux: 8.0.0 + stream-demux: 8.1.0 writable-consumable-stream: 2.0.0 ws: 7.5.9 transitivePeerDependencies: @@ -19707,6 +20458,13 @@ packages: urix: 0.1.0 dev: true + /source-map-support/0.5.13: + resolution: {integrity: sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==} + dependencies: + buffer-from: 1.1.2 + source-map: 0.6.1 + dev: true + /source-map-support/0.5.21: resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} dependencies: @@ -19889,11 +20647,11 @@ packages: readable-stream: 2.3.7 dev: true - /stream-demux/8.0.0: - resolution: {integrity: sha512-vt6P85yEUxiapK9F+ET5BLyto1DnCD4Sl7MlDklDgcb4K5SGXPtOPz9DiP7vTooJ1wW1F/VRPlcSV22Coeim1A==} + /stream-demux/8.1.0: + resolution: {integrity: sha512-20vtOmAj2EVzQZKZVmfyio16u/3QOKSvg+0ldgZeS+m2FNI1vKFoqggamagsPCXufdZ1Tk8VvAM/HV/YUmRbSg==} dependencies: consumable-stream: 2.0.0 - writable-consumable-stream: 2.0.0 + writable-consumable-stream: 3.0.1 /stream-each/1.2.3: resolution: {integrity: sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==} @@ -20067,7 +20825,7 @@ packages: hasBin: true dependencies: duplexer: 0.1.2 - minimist: 1.2.6 + minimist: 1.2.7 through: 2.3.8 dev: true @@ -20082,6 +20840,17 @@ packages: webpack: 4.46.0 dev: true + /style-loader/2.0.0_webpack@5.74.0: + resolution: {integrity: sha512-Z0gYUJmzZ6ZdRUqpg1r8GsaFKypE+3xAzuFeMuoHgjc9KZv3wMyCRjQIWEbhoFSq7+7yoHXySDJyyWQaPajeiQ==} + engines: {node: '>= 10.13.0'} + peerDependencies: + webpack: ^4.0.0 || ^5.0.0 + dependencies: + loader-utils: 2.0.2 + schema-utils: 3.1.1 + webpack: 5.74.0 + dev: true + /style-loader/3.3.1_webpack@5.74.0: resolution: {integrity: sha512-GPcQ+LDJbrcxHORTRes6Jy2sfvK2kS6hpSfI/fXhPt+spVzxF6LJ1dHLN9zIGmVaaP044YKaIatFaufENRiDoQ==} engines: {node: '>= 12.13.0'} @@ -20118,7 +20887,7 @@ packages: react-is: '>= 16.8.0' dependencies: '@babel/helper-module-imports': 7.18.6 - '@babel/traverse': 7.19.3_supports-color@5.5.0 + '@babel/traverse': 7.19.4_supports-color@5.5.0 '@emotion/is-prop-valid': 1.2.0 '@emotion/stylis': 0.8.5 '@emotion/unitless': 0.7.5 @@ -20131,31 +20900,31 @@ packages: shallowequal: 1.1.0 supports-color: 5.5.0 - /stylelint-config-prettier/9.0.3_stylelint@14.13.0: + /stylelint-config-prettier/9.0.3_stylelint@14.14.0: resolution: {integrity: sha512-5n9gUDp/n5tTMCq1GLqSpA30w2sqWITSSEiAWQlpxkKGAUbjcemQ0nbkRvRUa0B1LgD3+hCvdL7B1eTxy1QHJg==} engines: {node: '>= 12'} hasBin: true peerDependencies: stylelint: '>=11.0.0' dependencies: - stylelint: 14.13.0 + stylelint: 14.14.0 dev: true - /stylelint-config-recommended/9.0.0_stylelint@14.13.0: + /stylelint-config-recommended/9.0.0_stylelint@14.14.0: resolution: {integrity: sha512-9YQSrJq4NvvRuTbzDsWX3rrFOzOlYBmZP+o513BJN/yfEmGSr0AxdvrWs0P/ilSpVV/wisamAHu5XSk8Rcf4CQ==} peerDependencies: stylelint: ^14.10.0 dependencies: - stylelint: 14.13.0 + stylelint: 14.14.0 dev: true - /stylelint-config-standard/28.0.0_stylelint@14.13.0: - resolution: {integrity: sha512-q/StuowDdDmFCravzGHAwgS9pjX0bdOQUEBBDIkIWsQuYGgYz/xsO8CM6eepmIQ1fc5bKdDVimlJZ6MoOUcJ5Q==} + /stylelint-config-standard/29.0.0_stylelint@14.14.0: + resolution: {integrity: sha512-uy8tZLbfq6ZrXy4JKu3W+7lYLgRQBxYTUUB88vPgQ+ZzAxdrvcaSUW9hOMNLYBnwH+9Kkj19M2DHdZ4gKwI7tg==} peerDependencies: - stylelint: ^14.11.0 + stylelint: ^14.14.0 dependencies: - stylelint: 14.13.0 - stylelint-config-recommended: 9.0.0_stylelint@14.13.0 + stylelint: 14.14.0 + stylelint-config-recommended: 9.0.0_stylelint@14.14.0 dev: true /stylelint-config-styled-components/0.1.1: @@ -20165,20 +20934,20 @@ packages: /stylelint-processor-styled-components/1.10.0: resolution: {integrity: sha512-g4HpN9rm0JD0LoHuIOcd/FIjTZCJ0ErQ+dC3VTxp+dSvnkV+MklKCCmCQEdz5K5WxF4vPuzfVgdbSDuPYGZhoA==} dependencies: - '@babel/parser': 7.19.3 - '@babel/traverse': 7.19.3 + '@babel/parser': 7.19.4 + '@babel/traverse': 7.19.4 micromatch: 4.0.5 postcss: 7.0.39 transitivePeerDependencies: - supports-color dev: true - /stylelint/14.13.0: - resolution: {integrity: sha512-NJSAdloiAB/jgVJKxMR90mWlctvmeBFGFVUvyKngi9+j/qPSJ5ZB+u8jOmGbLTnS7OHrII9NFGehPRyar8U5vg==} + /stylelint/14.14.0: + resolution: {integrity: sha512-yUI+4xXfPHVnueYddSQ/e1GuEA/2wVhWQbGj16AmWLtQJtn28lVxfS4b0CsWyVRPgd3Auzi0NXOthIEUhtQmmA==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} hasBin: true dependencies: - '@csstools/selector-specificity': 2.0.2_zurzgjffv23ohtxa7nq7nizuja + '@csstools/selector-specificity': 2.0.2_dvkg4kkb622mvceygg47xxdz3a balanced-match: 2.0.0 colord: 2.9.3 cosmiconfig: 7.0.1 @@ -20201,10 +20970,10 @@ packages: micromatch: 4.0.5 normalize-path: 3.0.0 picocolors: 1.0.0 - postcss: 8.4.17 + postcss: 8.4.18 postcss-media-query-parser: 0.2.3 postcss-resolve-nested-selector: 0.1.1 - postcss-safe-parser: 6.0.0_postcss@8.4.17 + postcss-safe-parser: 6.0.0_postcss@8.4.18 postcss-selector-parser: 6.0.10 postcss-value-parser: 4.2.0 resolve-from: 5.0.0 @@ -20394,14 +21163,6 @@ packages: engines: {node: '>=8'} dev: true - /terminal-link/2.1.1: - resolution: {integrity: sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==} - engines: {node: '>=8'} - dependencies: - ansi-escapes: 4.3.2 - supports-hyperlinks: 2.3.0 - dev: true - /terser-webpack-plugin/1.4.5_webpack@4.46.0: resolution: {integrity: sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw==} engines: {node: '>= 6.9.0'} @@ -20456,7 +21217,7 @@ packages: uglify-js: optional: true dependencies: - '@jridgewell/trace-mapping': 0.3.16 + '@jridgewell/trace-mapping': 0.3.17 jest-worker: 27.5.1 schema-utils: 3.1.1 serialize-javascript: 6.0.0 @@ -20499,10 +21260,6 @@ packages: resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} dev: true - /throat/6.0.1: - resolution: {integrity: sha512-8hmiGIJMDlwjg7dlJ4yKGLK8EsYqKgPWbG3b4wjJddKNwc7N7Dpn08Df4szr/sZdMVeOstrdYSsqzX6BYbcB+w==} - dev: true - /through/2.3.8: resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} @@ -20634,9 +21391,9 @@ packages: /tr46/0.0.3: resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} - /tr46/2.1.0: - resolution: {integrity: sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==} - engines: {node: '>=8'} + /tr46/3.0.0: + resolution: {integrity: sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==} + engines: {node: '>=12'} dependencies: punycode: 2.1.1 dev: true @@ -20669,55 +21426,21 @@ packages: engines: {node: '>=6.10'} dev: true - /ts-jest/27.1.5_h2mjkler2cwtrz56xjx3qgassu: - resolution: {integrity: sha512-Xv6jBQPoBEvBq/5i2TeSG9tt/nqkbpcurrEG1b+2yfBrcJelOZF9Ml6dmyMh7bcW9JyFbRYpR5rxROSlBLTZHA==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /ts-jest/29.0.3_qutljtsb73gn6tigyw4fnh25am: + resolution: {integrity: sha512-Ibygvmuyq1qp/z3yTh9QTwVVAbFdDy/+4BtIQR2sp6baF2SJU/8CKK/hhnGIDY2L90Az2jIqTwZPnN2p+BweiQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true peerDependencies: '@babel/core': '>=7.0.0-beta.0 <8' - '@types/jest': ^27.0.0 - babel-jest: '>=27.0.0 <28' + '@jest/types': ^29.0.0 + babel-jest: ^29.0.0 esbuild: '*' - jest: ^27.0.0 - typescript: '>=3.8 <5.0' + jest: ^29.0.0 + typescript: '>=4.3' 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.8 - typescript: 4.8.4 - yargs-parser: 20.2.9 - dev: true - - /ts-jest/27.1.5_s3hctw44eio5yfpbfoxpvrxkse: - 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': + '@jest/types': optional: true babel-jest: optional: true @@ -20727,52 +21450,50 @@ packages: '@babel/core': 7.19.3 bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 - jest: 27.5.1 - jest-util: 27.5.1 + jest: 29.2.2 + jest-util: 29.2.1 json5: 2.2.1 lodash.memoize: 4.1.2 make-error: 1.3.6 semver: 7.3.8 typescript: 4.8.4 - yargs-parser: 20.2.9 + yargs-parser: 21.1.1 dev: true - /ts-jest/27.1.5_zgo3ukr7wfsrfu7w73hol4lxpy: - resolution: {integrity: sha512-Xv6jBQPoBEvBq/5i2TeSG9tt/nqkbpcurrEG1b+2yfBrcJelOZF9Ml6dmyMh7bcW9JyFbRYpR5rxROSlBLTZHA==} - engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + /ts-jest/29.0.3_r7gdwuj75x2gz25bauak3xcnbm: + resolution: {integrity: sha512-Ibygvmuyq1qp/z3yTh9QTwVVAbFdDy/+4BtIQR2sp6baF2SJU/8CKK/hhnGIDY2L90Az2jIqTwZPnN2p+BweiQ==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true peerDependencies: '@babel/core': '>=7.0.0-beta.0 <8' - '@types/jest': ^27.0.0 - babel-jest: '>=27.0.0 <28' + '@jest/types': ^29.0.0 + babel-jest: ^29.0.0 esbuild: '*' - jest: ^27.0.0 - typescript: '>=3.8 <5.0' + jest: ^29.0.0 + typescript: '>=4.3' peerDependenciesMeta: '@babel/core': optional: true - '@types/jest': + '@jest/types': optional: true babel-jest: optional: true esbuild: optional: true dependencies: - '@babel/core': 7.19.3 - '@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 + jest: 29.2.2_@types+node@18.11.7 + jest-util: 29.2.1 json5: 2.2.1 lodash.memoize: 4.1.2 make-error: 1.3.6 semver: 7.3.8 typescript: 4.8.4 - yargs-parser: 20.2.9 + yargs-parser: 21.1.1 dev: true - /ts-node/10.9.1_k2jc2lb6qrtdc3lulqxjwnbwoi: + /ts-node/10.9.1_evej5wzm4hojmu6uzxwpspdmsu: resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} hasBin: true peerDependencies: @@ -20791,7 +21512,7 @@ packages: '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.3 - '@types/node': 16.11.64 + '@types/node': 18.11.7 acorn: 8.8.0 acorn-walk: 8.2.0 arg: 4.1.3 @@ -20824,7 +21545,7 @@ packages: dependencies: '@types/json5': 0.0.29 json5: 1.0.1 - minimist: 1.2.6 + minimist: 1.2.7 strip-bom: 3.0.0 dev: true @@ -20846,7 +21567,7 @@ packages: dev: true /tty-browserify/0.0.0: - resolution: {integrity: sha512-JVa5ijo+j/sOoHGjw0sxw734b1LhBkQ3bvUGNdxnVXDCX81Yx7TFgnZygxrIIWn23hbfTaMYLwRmAxFyDuFmIw==} + resolution: {integrity: sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=} dev: true /tty-table/4.1.6: @@ -20980,7 +21701,7 @@ packages: peerDependencies: react: '>=15.0.0 || 18' dependencies: - '@babel/runtime': 7.19.0 + '@babel/runtime': 7.19.4 '@types/react': 18.0.21 invariant: 2.2.4 react: 18.2.0 @@ -21218,6 +21939,19 @@ packages: tslib: 2.4.0 dev: false + /use-isomorphic-layout-effect/1.1.2_iapumuv4e6jcjznwuxpf4tt22e: + resolution: {integrity: sha512-49L8yCO3iGT/ZF9QttjwLF/ZD9Iwto5LnH5LmEdk/6cFmXddqi2ulF0edxTwjj+7mqvpVVGQWvbXZdn32wRSHA==} + peerDependencies: + '@types/react': '*' + react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 18 + peerDependenciesMeta: + '@types/react': + optional: true + dependencies: + '@types/react': 18.0.21 + react: 18.2.0 + dev: false + /use-sidecar/1.1.2_iapumuv4e6jcjznwuxpf4tt22e: resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==} engines: {node: '>=10'} @@ -21268,14 +22002,13 @@ packages: inherits: 2.0.3 dev: true - /util/0.12.4: - resolution: {integrity: sha512-bxZ9qtSlGUWSOy9Qa9Xgk11kSslpuZwaxCg4sNIDj6FLucDab2JxnHwyNTCpHMtK1MjoQiWQ6DiUMZYbSrO+Sw==} + /util/0.12.5: + resolution: {integrity: sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==} dependencies: inherits: 2.0.4 is-arguments: 1.1.1 is-generator-function: 1.0.10 is-typed-array: 1.1.9 - safe-buffer: 5.2.1 which-typed-array: 1.1.8 dev: false @@ -21284,7 +22017,7 @@ packages: dev: true /utils-merge/1.0.1: - resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==} + resolution: {integrity: sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=} engines: {node: '>= 0.4.0'} /uuid-browser/3.1.0: @@ -21314,22 +22047,13 @@ packages: resolution: {integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==} dev: true - /v8-to-istanbul/8.1.1: - resolution: {integrity: sha512-FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w==} - engines: {node: '>=10.12.0'} - dependencies: - '@types/istanbul-lib-coverage': 2.0.4 - convert-source-map: 1.8.0 - source-map: 0.7.4 - dev: true - /v8-to-istanbul/9.0.1: resolution: {integrity: sha512-74Y4LqY74kLE6IFyIjPtkSTWzUZmj8tdHT9Ii/26dvQ6K9Dl2NbEfj0XgU2sHCtKgt5VupqhlO/5aWuqS+IY1w==} engines: {node: '>=10.12.0'} dependencies: - '@jridgewell/trace-mapping': 0.3.16 + '@jridgewell/trace-mapping': 0.3.17 '@types/istanbul-lib-coverage': 2.0.4 - convert-source-map: 1.8.0 + convert-source-map: 1.9.0 dev: true /validate-npm-package-license/3.0.4: @@ -21403,17 +22127,11 @@ packages: engines: {node: '>=0.10.0'} dev: true - /w3c-hr-time/1.0.2: - resolution: {integrity: sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==} + /w3c-xmlserializer/3.0.0: + resolution: {integrity: sha512-3WFqGEgSXIyGhOmAFtlicJNMjEps8b1MG31NCA0/vOF9+nKMUW1ckhi9cnNHmf88Rzw5V+dwIwsm2C7X8k9aQg==} + engines: {node: '>=12'} dependencies: - browser-process-hrtime: 1.0.0 - dev: true - - /w3c-xmlserializer/2.0.0: - resolution: {integrity: sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==} - engines: {node: '>=10'} - dependencies: - xml-name-validator: 3.0.0 + xml-name-validator: 4.0.0 dev: true /walker/1.0.8: @@ -21467,12 +22185,12 @@ packages: /wcwidth/1.0.1: resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} dependencies: - defaults: 1.0.3 + defaults: 1.0.4 /web-encoding/1.1.5: resolution: {integrity: sha512-HYLeVCdJ0+lBYV2FvNZmv3HJ2Nt0QYXqZojk3d9FJOLkwnuhzM9tmamh8d7HPM8QqjKH8DeHkFTx+CFlWpZZDA==} dependencies: - util: 0.12.4 + util: 0.12.5 optionalDependencies: '@zxing/text-encoding': 0.9.0 dev: false @@ -21484,14 +22202,9 @@ packages: /webidl-conversions/3.0.1: resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} - /webidl-conversions/5.0.0: - resolution: {integrity: sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==} - engines: {node: '>=8'} - dev: true - - /webidl-conversions/6.1.0: - resolution: {integrity: sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==} - engines: {node: '>=10.4'} + /webidl-conversions/7.0.0: + resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==} + engines: {node: '>=12'} dev: true /webpack-cli/4.10.0_vnmgq7jx5zjkzolvtfp7mdf5ri: @@ -21579,6 +22292,21 @@ packages: webpack-log: 2.0.0 dev: true + /webpack-dev-middleware/4.3.0_webpack@5.74.0: + resolution: {integrity: sha512-PjwyVY95/bhBh6VUqt6z4THplYcsvQ8YNNBTBM873xLVmw8FLeALn0qurHbs9EmcfhzQis/eoqypSnZeuUz26w==} + engines: {node: '>= v10.23.3'} + peerDependencies: + webpack: ^4.0.0 || ^5.0.0 + dependencies: + colorette: 1.4.0 + mem: 8.1.1 + memfs: 3.4.7 + mime-types: 2.1.35 + range-parser: 1.2.1 + schema-utils: 3.1.1 + webpack: 5.74.0 + dev: true + /webpack-dev-middleware/5.3.3_webpack@5.74.0: resolution: {integrity: sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==} engines: {node: '>= 12.13.0'} @@ -21695,6 +22423,10 @@ packages: - supports-color dev: true + /webpack-virtual-modules/0.4.5: + resolution: {integrity: sha512-8bWq0Iluiv9lVf9YaqWQ9+liNgXSHICm+rg544yRgGYaR8yXZTVBaHZkINZSB2yZSWo4b0F6MIxqJezVfOEAlg==} + dev: true + /webpack/4.46.0: resolution: {integrity: sha512-6jJuJjg8znb/xRItk7bkT0+Q7AHCYjjFnvKIWQPkNIOyRqoCGvkOs0ipeQzrqz4l5FtN5ZI/ukEHroeX/o1/5Q==} engines: {node: '>=6.11.5'} @@ -21808,7 +22540,7 @@ packages: tapable: 2.2.1 terser-webpack-plugin: 5.3.6_webpack@5.74.0 watchpack: 2.4.0 - webpack-cli: 4.10.0_vnmgq7jx5zjkzolvtfp7mdf5ri + webpack-cli: 4.10.0_webpack@5.74.0 webpack-sources: 3.2.3 transitivePeerDependencies: - '@swc/core' @@ -21830,20 +22562,24 @@ packages: engines: {node: '>=0.8.0'} dev: true - /whatwg-encoding/1.0.5: - resolution: {integrity: sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==} + /whatwg-encoding/2.0.0: + resolution: {integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==} + engines: {node: '>=12'} dependencies: - iconv-lite: 0.4.24 - dev: true - - /whatwg-mimetype/2.3.0: - resolution: {integrity: sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==} + iconv-lite: 0.6.3 dev: true /whatwg-mimetype/3.0.0: resolution: {integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==} engines: {node: '>=12'} - dev: false + + /whatwg-url/11.0.0: + resolution: {integrity: sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==} + engines: {node: '>=12'} + dependencies: + tr46: 3.0.0 + webidl-conversions: 7.0.0 + dev: true /whatwg-url/5.0.0: resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} @@ -21851,15 +22587,6 @@ packages: tr46: 0.0.3 webidl-conversions: 3.0.1 - /whatwg-url/8.7.0: - resolution: {integrity: sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==} - engines: {node: '>=10'} - dependencies: - lodash: 4.17.21 - tr46: 2.1.0 - webidl-conversions: 6.1.0 - dev: true - /which-boxed-primitive/1.0.2: resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} dependencies: @@ -21985,6 +22712,12 @@ packages: resolution: {integrity: sha512-SITambzxtPTFU/wR82h+zOKGBiEv5V8gC1mt8xvoE1/168ApEa8H+6s2UToYJo3VLL7sNYTaApKuPD+pZHMGJQ==} dependencies: consumable-stream: 2.0.0 + dev: false + + /writable-consumable-stream/3.0.1: + resolution: {integrity: sha512-rAOJTA/sMgXD/X6eMwbQJe49w+Fnkdx3iV5oUzdmiZ7Bwx03khqUnAKIpzp/hbI8q2EP5NfjXgIXN0MsipfHeg==} + dependencies: + consumable-stream: 2.0.0 /write-file-atomic/3.0.3: resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==} @@ -22034,8 +22767,9 @@ packages: default-browser-id: 1.0.4 dev: true - /xml-name-validator/3.0.0: - resolution: {integrity: sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==} + /xml-name-validator/4.0.0: + resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==} + engines: {node: '>=12'} dev: true /xmlchars/2.2.0: