diff --git a/.eslintrc.cjs b/.eslintrc.cjs deleted file mode 100644 index dd82507..0000000 --- a/.eslintrc.cjs +++ /dev/null @@ -1,81 +0,0 @@ -module.exports = { - env: { - browser: true, - es2021: true, - }, - extends: ["react-app", "plugin:storybook/recommended"], - overrides: [ - { - files: ["**/*.stories.*"], - rules: { - "import/no-anonymous-default-export": "off", - }, - }, - ], - parser: "@typescript-eslint/parser", - parserOptions: { - ecmaVersion: "latest", - sourceType: "module", - }, - plugins: ["react", "@typescript-eslint"], - rules: { - "@typescript-eslint/no-explicit-any": [ - "warn", - { - fixToUnknown: true, - ignoreRestArgs: true, - }, - ], - "react/jsx-key": [ - "warn", - { - checkFragmentShorthand: true, - }, - ], - "no-console": [ - "warn", - { - allow: ["warn", "error", "info"], - }, - ], - "no-restricted-imports": [ - "error", - { - paths: [ - { - message: `Please use import { method } from "lodash-es" instead.`, - name: "lodash", - }, - { - importNames: ["chain"], - message: - "Avoid using chain since it is non tree-shakable. Try out flow instead.", - name: "lodash-es", - }, - { - importNames: ["default"], - message: `Instead of default import, please use import { method } from "lodash-es" instead.`, - name: "lodash-es", - }, - { - message: - "Avoid using chain since it is non tree-shakable. Try out flow instead.", - name: "lodash-es/chain", - }, - ], - patterns: [ - "shared/*/*", - "*/**/shared/*", - "utils/*/*", - "*/**/utils/*", - "modules/*/*/*", - "*/**/modules/*/*", - "lodash/**", - "lodash/fp/**", - "react-router-dom", - "dayjs", - ], - }, - ], - }, -}; diff --git a/.eslintrc.json b/.eslintrc.json new file mode 100644 index 0000000..09c856f --- /dev/null +++ b/.eslintrc.json @@ -0,0 +1,78 @@ +{ + "env": { + "browser": true, + "es2021": true + }, + "extends": ["plugin:storybook/recommended"], + "overrides": [ + { + "files": ["**/*.stories.*"], + "rules": { + "import/no-anonymous-default-export": "off" + } + } + ], + "parser": "@typescript-eslint/parser", + "parserOptions": { + "ecmaVersion": "latest", + "sourceType": "module" + }, + "plugins": ["react", "@typescript-eslint"], + "rules": { + "@typescript-eslint/no-explicit-any": [ + "error", + { + "ignoreRestArgs": true + } + ], + "react/jsx-key": [ + "warn", + { + "checkFragmentShorthand": true + } + ], + "no-console": [ + "warn", + { + "allow": ["warn", "error", "info"] + } + ], + "no-restricted-imports": [ + "error", + { + "paths": [ + { + "message": "Please use import { method } from `lodash-es` instead.", + "name": "lodash" + }, + { + "importNames": ["chain"], + "message": "Avoid using chain since it is non tree-shakable. Try out flow instead.", + "name": "lodash-es" + }, + { + "importNames": ["default"], + "message": "Instead of default import, please use import { method } from `lodash-es` instead.", + "name": "lodash-es" + }, + { + "message": "Avoid using chain since it is non tree-shakable. Try out flow instead.", + "name": "lodash-es/chain" + } + ], + "patterns": [ + "shared/*/*", + "*/**/shared/*", + "utils/*/*", + "*/**/utils/*", + "modules/*/*/*", + "*/**/modules/*/*", + "lodash/**", + "lodash/fp/**", + "react-router-dom", + "dayjs" + ] + } + ] + } +} diff --git a/.gitignore b/.gitignore index 8dc4294..f863007 100644 --- a/.gitignore +++ b/.gitignore @@ -13,8 +13,6 @@ dist-ssr *.local # Editor directories and files -.vscode/* -!.vscode/extensions.json .idea .DS_Store *.suo diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..2f19063 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,14 @@ +{ + "typescript.tsdk": "node_modules/typescript/lib", + "typescript.enablePromptUseWorkspaceTsdk": true, + "editor.defaultFormatter": "esbenp.prettier-vscode", + "editor.codeActionsOnSave": { + "source.fixAll.eslint": "explicit" + }, + "[typescriptreact]": { + "editor.defaultFormatter": "esbenp.prettier-vscode" + }, + "[typescript]": { + "editor.defaultFormatter": "esbenp.prettier-vscode" + } +} diff --git a/package.json b/package.json index 1c29edd..b134cf9 100644 --- a/package.json +++ b/package.json @@ -34,8 +34,6 @@ "zustand": "^4.3.5" }, "devDependencies": { - "@babel/core": "^7.20.5", - "@babel/preset-react": "^7.18.6", "@storybook/addon-a11y": "^7.5.1", "@storybook/addon-actions": "^7.5.1", "@storybook/addon-essentials": "^7.5.1", @@ -53,12 +51,13 @@ "@types/react": "^18.0.24", "@types/react-dom": "^18.0.8", "@types/testing-library__jest-dom": "^5.14.6", - "@vitejs/plugin-react-swc": "^3.3.0", + "@typescript-eslint/eslint-plugin": "^6.15.0", + "@typescript-eslint/parser": "^6.15.0", + "@vitejs/plugin-react-swc": "^3.5.0", "axe-playwright": "^1.2.3", - "babel-loader": "^8.3.0", "concurrently": "8.2.0", - "eslint": "^8.27.0", - "eslint-config-react-app": "^7.0.1", + "eslint": "^8.56.0", + "eslint-plugin-react": "^7.33.2", "eslint-plugin-storybook": "^0.6.15", "http-server": "^14.1.1", "husky": "^8.0.2", @@ -72,10 +71,10 @@ "storybook": "^7.5.1", "storybook-addon-react-router-v6": "^2.0.8", "storybook-dark-mode": "^3.0.1", - "typescript": "^4.9.3", - "vite": "^4.3.3", - "vite-plugin-checker": "^0.5.4", - "vite-tsconfig-paths": "^4.0.5", + "typescript": "^5.3.3", + "vite": "^5.0.10", + "vite-plugin-checker": "^0.6.2", + "vite-tsconfig-paths": "^4.2.2", "vitest": "^0.27.3", "wait-on": "^7.0.1" }, diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index b03743d..485b240 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -7,16 +7,16 @@ settings: dependencies: "@chakra-ui/icons": specifier: ^2.0.17 - version: 2.0.17(@chakra-ui/system@2.6.1)(react@18.2.0) + version: 2.0.17(@chakra-ui/system@2.6.2)(react@18.2.0) "@chakra-ui/react": specifier: ^2.5.1 - version: 2.5.1(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(@types/react@18.0.25)(framer-motion@9.0.3)(react-dom@18.2.0)(react@18.2.0) + version: 2.6.0(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(@types/react@18.0.25)(framer-motion@9.0.3)(react-dom@18.2.0)(react@18.2.0) "@emotion/react": specifier: ^11.10.5 - version: 11.10.5(@babel/core@7.20.5)(@types/react@18.0.25)(react@18.2.0) + version: 11.10.5(@babel/core@7.23.6)(@types/react@18.0.25)(react@18.2.0) "@emotion/styled": specifier: ^11.10.5 - version: 11.10.5(@babel/core@7.20.5)(@emotion/react@11.10.5)(@types/react@18.0.25)(react@18.2.0) + version: 11.10.5(@babel/core@7.23.6)(@emotion/react@11.10.5)(@types/react@18.0.25)(react@18.2.0) "@fontsource/inter": specifier: ^4.5.15 version: 4.5.15 @@ -55,12 +55,6 @@ dependencies: version: 4.3.5(react@18.2.0) devDependencies: - "@babel/core": - specifier: ^7.20.5 - version: 7.20.5 - "@babel/preset-react": - specifier: ^7.18.6 - version: 7.18.6(@babel/core@7.20.5) "@storybook/addon-a11y": specifier: ^7.5.1 version: 7.5.1(@types/react-dom@18.0.9)(@types/react@18.0.25)(react-dom@18.2.0)(react@18.2.0) @@ -84,10 +78,10 @@ devDependencies: version: 0.2.3(jest@29.3.1)(vitest@0.27.3) "@storybook/react": specifier: ^7.5.1 - version: 7.5.1(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3) + version: 7.5.1(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3) "@storybook/react-vite": specifier: ^7.5.1 - version: 7.5.1(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3)(vite@4.3.3) + version: 7.5.1(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)(vite@5.0.10) "@storybook/test-runner": specifier: ^0.13.0 version: 0.13.0 @@ -112,27 +106,30 @@ devDependencies: "@types/testing-library__jest-dom": specifier: ^5.14.6 version: 5.14.6 + "@typescript-eslint/eslint-plugin": + specifier: ^6.15.0 + version: 6.15.0(@typescript-eslint/parser@6.15.0)(eslint@8.56.0)(typescript@5.3.3) + "@typescript-eslint/parser": + specifier: ^6.15.0 + version: 6.15.0(eslint@8.56.0)(typescript@5.3.3) "@vitejs/plugin-react-swc": - specifier: ^3.3.0 - version: 3.3.0(vite@4.3.3) + specifier: ^3.5.0 + version: 3.5.0(vite@5.0.10) axe-playwright: specifier: ^1.2.3 version: 1.2.3(playwright@1.35.1) - babel-loader: - specifier: ^8.3.0 - version: 8.3.0(@babel/core@7.20.5)(webpack@5.89.0) concurrently: specifier: 8.2.0 version: 8.2.0 eslint: - specifier: ^8.27.0 - version: 8.27.0 - eslint-config-react-app: - specifier: ^7.0.1 - version: 7.0.1(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(eslint@8.27.0)(jest@29.3.1)(typescript@4.9.3) + specifier: ^8.56.0 + version: 8.56.0 + eslint-plugin-react: + specifier: ^7.33.2 + version: 7.33.2(eslint@8.56.0) eslint-plugin-storybook: specifier: ^0.6.15 - version: 0.6.15(eslint@8.27.0)(typescript@4.9.3) + version: 0.6.15(eslint@8.56.0)(typescript@5.3.3) http-server: specifier: ^14.1.1 version: 14.1.1 @@ -147,7 +144,7 @@ devDependencies: version: 21.1.1 msw: specifier: ^1.1.0 - version: 1.1.0(typescript@4.9.3) + version: 1.1.0(typescript@5.3.3) msw-storybook-addon: specifier: ^1.9.0 version: 1.9.0(msw@1.1.0) @@ -165,22 +162,22 @@ devDependencies: version: 7.5.1 storybook-addon-react-router-v6: specifier: ^2.0.8 - version: 2.0.8(@storybook/blocks@7.5.1)(@storybook/channels@7.5.1)(@storybook/components@7.5.1)(@storybook/core-events@7.5.1)(@storybook/manager-api@7.5.1)(@storybook/preview-api@7.5.1)(@storybook/theming@7.5.1)(react-dom@18.2.0)(react-router-dom@6.9.0)(react@18.2.0) + version: 2.0.8(@storybook/blocks@7.6.6)(@storybook/channels@7.6.6)(@storybook/components@7.6.6)(@storybook/core-events@7.6.6)(@storybook/manager-api@7.6.6)(@storybook/preview-api@7.6.6)(@storybook/theming@7.6.6)(react-dom@18.2.0)(react-router-dom@6.9.0)(react@18.2.0) storybook-dark-mode: specifier: ^3.0.1 version: 3.0.1(react-dom@18.2.0)(react@18.2.0) typescript: - specifier: ^4.9.3 - version: 4.9.3 + specifier: ^5.3.3 + version: 5.3.3 vite: - specifier: ^4.3.3 - version: 4.3.3(@types/node@18.11.9) + specifier: ^5.0.10 + version: 5.0.10 vite-plugin-checker: - specifier: ^0.5.4 - version: 0.5.4(eslint@8.27.0)(typescript@4.9.3)(vite@4.3.3) + specifier: ^0.6.2 + version: 0.6.2(eslint@8.56.0)(typescript@5.3.3)(vite@5.0.10) vite-tsconfig-paths: - specifier: ^4.0.5 - version: 4.0.5(typescript@4.9.3) + specifier: ^4.2.2 + version: 4.2.2(typescript@5.3.3)(vite@5.0.10) vitest: specifier: ^0.27.3 version: 0.27.3(jsdom@21.1.1) @@ -189,6 +186,14 @@ devDependencies: version: 7.0.1 packages: + /@aashutoshrathi/word-wrap@1.2.6: + resolution: + { + integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==, + } + engines: { node: ">=0.10.0" } + dev: true + /@adobe/css-tools@4.3.1: resolution: { @@ -205,52 +210,37 @@ packages: dependencies: "@jridgewell/gen-mapping": 0.1.1 "@jridgewell/trace-mapping": 0.3.17 - - /@aw-web-design/x-default-browser@1.4.126: - resolution: - { - integrity: sha512-Xk1sIhyNC/esHGGVjL/niHLowM0csl/kFO5uawBy4IrWwy0o1G8LGt3jP6nmWGz+USxeeqbihAmp/oVZju6wug==, - } - hasBin: true - dependencies: - default-browser-id: 3.0.0 dev: true - /@babel/code-frame@7.21.4: + /@ampproject/remapping@2.2.1: resolution: { - integrity: sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g==, + integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==, } - engines: { node: ">=6.9.0" } + engines: { node: ">=6.0.0" } dependencies: - "@babel/highlight": 7.18.6 + "@jridgewell/gen-mapping": 0.3.3 + "@jridgewell/trace-mapping": 0.3.20 - /@babel/code-frame@7.22.13: + /@aw-web-design/x-default-browser@1.4.126: resolution: { - integrity: sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==, + integrity: sha512-Xk1sIhyNC/esHGGVjL/niHLowM0csl/kFO5uawBy4IrWwy0o1G8LGt3jP6nmWGz+USxeeqbihAmp/oVZju6wug==, } - engines: { node: ">=6.9.0" } + hasBin: true dependencies: - "@babel/highlight": 7.22.20 - chalk: 2.4.2 + default-browser-id: 3.0.0 dev: true - /@babel/code-frame@7.22.5: + /@babel/code-frame@7.23.5: resolution: { - integrity: sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ==, + integrity: sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==, } engines: { node: ">=6.9.0" } dependencies: - "@babel/highlight": 7.22.5 - - /@babel/compat-data@7.21.4: - resolution: - { - integrity: sha512-/DYyDpeCfaVinT40FPGdkkb+lYSKvsVuMjDAG7jPOWWiM1ibOaB9CXJAlc4d1QpP/U2q2P9jbrSlClKSErd55g==, - } - engines: { node: ">=6.9.0" } + "@babel/highlight": 7.23.4 + chalk: 2.4.2 /@babel/compat-data@7.22.6: resolution: @@ -268,56 +258,12 @@ packages: engines: { node: ">=6.9.0" } dev: true - /@babel/core@7.20.5: + /@babel/compat-data@7.23.5: resolution: { - integrity: sha512-UdOWmk4pNWTm/4DlPUl/Pt4Gz4rcEMb7CY0Y3eJl5Yz1vI8ZJGmHWaVE55LoxRjdpx0z259GE9U5STA9atUinQ==, + integrity: sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==, } engines: { node: ">=6.9.0" } - dependencies: - "@ampproject/remapping": 2.2.0 - "@babel/code-frame": 7.21.4 - "@babel/generator": 7.21.4 - "@babel/helper-compilation-targets": 7.21.4(@babel/core@7.20.5) - "@babel/helper-module-transforms": 7.21.2 - "@babel/helpers": 7.21.0 - "@babel/parser": 7.21.4 - "@babel/template": 7.20.7 - "@babel/traverse": 7.21.4 - "@babel/types": 7.21.4 - convert-source-map: 1.9.0 - debug: 4.3.4 - gensync: 1.0.0-beta.2 - json5: 2.2.3 - semver: 6.3.0 - transitivePeerDependencies: - - supports-color - - /@babel/core@7.21.3: - resolution: - { - integrity: sha512-qIJONzoa/qiHghnm0l1n4i/6IIziDpzqc36FBs4pzMhDUraHqponwJLiAKm1hGLP3OSB/TVNz6rMwVGpwxxySw==, - } - engines: { node: ">=6.9.0" } - dependencies: - "@ampproject/remapping": 2.2.0 - "@babel/code-frame": 7.22.5 - "@babel/generator": 7.22.7 - "@babel/helper-compilation-targets": 7.22.6(@babel/core@7.21.3) - "@babel/helper-module-transforms": 7.22.5 - "@babel/helpers": 7.22.6 - "@babel/parser": 7.23.0 - "@babel/template": 7.22.5 - "@babel/traverse": 7.22.8 - "@babel/types": 7.23.0 - convert-source-map: 1.9.0 - debug: 4.3.4 - gensync: 1.0.0-beta.2 - json5: 2.2.3 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - dev: true /@babel/core@7.22.8: resolution: @@ -327,7 +273,7 @@ packages: engines: { node: ">=6.9.0" } dependencies: "@ampproject/remapping": 2.2.0 - "@babel/code-frame": 7.22.5 + "@babel/code-frame": 7.23.5 "@babel/generator": 7.22.7 "@babel/helper-compilation-targets": 7.22.6(@babel/core@7.22.8) "@babel/helper-module-transforms": 7.22.5 @@ -353,7 +299,7 @@ packages: engines: { node: ">=6.9.0" } dependencies: "@ampproject/remapping": 2.2.0 - "@babel/code-frame": 7.22.13 + "@babel/code-frame": 7.23.5 "@babel/generator": 7.23.0 "@babel/helper-compilation-targets": 7.22.15 "@babel/helper-module-transforms": 7.23.0(@babel/core@7.23.2) @@ -371,22 +317,30 @@ packages: - supports-color dev: true - /@babel/eslint-parser@7.19.1(@babel/core@7.21.3)(eslint@8.27.0): + /@babel/core@7.23.6: resolution: { - integrity: sha512-AqNf2QWt1rtu2/1rLswy6CDP7H9Oh3mMhk177Y67Rg8d7RD9WfOLLv8CGn6tisFvS2htm86yIe1yLF6I1UDaGQ==, + integrity: sha512-FxpRyGjrMJXh7X3wGLGhNDCRiwpWEF74sKjTLDJSG5Kyvow3QZaG0Adbqzi9ZrVjTWpsX+2cxWXD71NMg93kdw==, } - engines: { node: ^10.13.0 || ^12.13.0 || >=14.0.0 } - peerDependencies: - "@babel/core": ">=7.11.0" - eslint: ^7.5.0 || ^8.0.0 + engines: { node: ">=6.9.0" } dependencies: - "@babel/core": 7.21.3 - "@nicolo-ribaudo/eslint-scope-5-internals": 5.1.1-v1 - eslint: 8.27.0 - eslint-visitor-keys: 2.1.0 + "@ampproject/remapping": 2.2.1 + "@babel/code-frame": 7.23.5 + "@babel/generator": 7.23.6 + "@babel/helper-compilation-targets": 7.23.6 + "@babel/helper-module-transforms": 7.23.3(@babel/core@7.23.6) + "@babel/helpers": 7.23.6 + "@babel/parser": 7.23.6 + "@babel/template": 7.22.15 + "@babel/traverse": 7.23.6 + "@babel/types": 7.23.6 + convert-source-map: 2.0.0 + debug: 4.3.4 + gensync: 1.0.0-beta.2 + json5: 2.2.3 semver: 6.3.1 - dev: true + transitivePeerDependencies: + - supports-color /@babel/generator@7.17.7: resolution: @@ -411,6 +365,7 @@ packages: "@jridgewell/gen-mapping": 0.3.2 "@jridgewell/trace-mapping": 0.3.17 jsesc: 2.5.2 + dev: true /@babel/generator@7.22.7: resolution: @@ -438,34 +393,35 @@ packages: jsesc: 2.5.2 dev: true - /@babel/helper-annotate-as-pure@7.18.6: + /@babel/generator@7.23.6: resolution: { - integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==, + integrity: sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==, } engines: { node: ">=6.9.0" } dependencies: - "@babel/types": 7.23.0 - dev: true + "@babel/types": 7.23.6 + "@jridgewell/gen-mapping": 0.3.3 + "@jridgewell/trace-mapping": 0.3.20 + jsesc: 2.5.2 - /@babel/helper-annotate-as-pure@7.22.5: + /@babel/helper-annotate-as-pure@7.18.6: resolution: { - integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==, + integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==, } engines: { node: ">=6.9.0" } dependencies: "@babel/types": 7.23.0 dev: true - /@babel/helper-builder-binary-assignment-operator-visitor@7.18.9: + /@babel/helper-annotate-as-pure@7.22.5: resolution: { - integrity: sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==, + integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==, } engines: { node: ">=6.9.0" } dependencies: - "@babel/helper-explode-assignable-expression": 7.18.6 "@babel/types": 7.23.0 dev: true @@ -479,22 +435,6 @@ packages: "@babel/types": 7.23.0 dev: true - /@babel/helper-compilation-targets@7.21.4(@babel/core@7.20.5): - resolution: - { - integrity: sha512-Fa0tTuOXZ1iL8IeDFUWCzjZcn+sJGd9RZdH9esYVjEejGmzf+FFYQpMi/kZUk2kPy/q1H3/GPw7np8qar/stfg==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0 - dependencies: - "@babel/compat-data": 7.21.4 - "@babel/core": 7.20.5 - "@babel/helper-validator-option": 7.21.0 - browserslist: 4.21.4 - lru-cache: 5.1.1 - semver: 6.3.0 - /@babel/helper-compilation-targets@7.22.15: resolution: { @@ -509,23 +449,6 @@ packages: semver: 6.3.1 dev: true - /@babel/helper-compilation-targets@7.22.6(@babel/core@7.21.3): - resolution: - { - integrity: sha512-534sYEqWD9VfUm3IPn2SLcH4Q3P86XL+QvqdC7ZsFrzyyPF3T4XGiVghF6PTYNdWg6pXuoqXxNQAhbYeEInTzA==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0 - dependencies: - "@babel/compat-data": 7.22.6 - "@babel/core": 7.21.3 - "@babel/helper-validator-option": 7.22.5 - "@nicolo-ribaudo/semver-v6": 6.3.3 - browserslist: 4.21.9 - lru-cache: 5.1.1 - dev: true - /@babel/helper-compilation-targets@7.22.6(@babel/core@7.22.8): resolution: { @@ -543,27 +466,18 @@ packages: lru-cache: 5.1.1 dev: true - /@babel/helper-create-class-features-plugin@7.21.4(@babel/core@7.22.8): + /@babel/helper-compilation-targets@7.23.6: resolution: { - integrity: sha512-46QrX2CQlaFRF4TkwfTt6nJD7IHq8539cCL7SDpqWSDeJKY1xylKKY5F/33mJhLZ3mFvKv2gGrVS6NkyF6qs+Q==, + integrity: sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==, } engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0 dependencies: - "@babel/core": 7.22.8 - "@babel/helper-annotate-as-pure": 7.18.6 - "@babel/helper-environment-visitor": 7.22.5 - "@babel/helper-function-name": 7.22.5 - "@babel/helper-member-expression-to-functions": 7.21.0 - "@babel/helper-optimise-call-expression": 7.18.6 - "@babel/helper-replace-supers": 7.20.7 - "@babel/helper-skip-transparent-expression-wrappers": 7.20.0 - "@babel/helper-split-export-declaration": 7.22.6 - transitivePeerDependencies: - - supports-color - dev: true + "@babel/compat-data": 7.23.5 + "@babel/helper-validator-option": 7.23.5 + browserslist: 4.22.2 + lru-cache: 5.1.1 + semver: 6.3.1 /@babel/helper-create-class-features-plugin@7.21.4(@babel/core@7.23.2): resolution: @@ -587,7 +501,7 @@ packages: - supports-color dev: true - /@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.20.5): + /@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.23.6): resolution: { integrity: sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==, @@ -596,33 +510,19 @@ packages: peerDependencies: "@babel/core": ^7.0.0 dependencies: - "@babel/core": 7.20.5 + "@babel/core": 7.23.6 "@babel/helper-annotate-as-pure": 7.22.5 "@babel/helper-environment-visitor": 7.22.5 "@babel/helper-function-name": 7.22.5 "@babel/helper-member-expression-to-functions": 7.23.0 "@babel/helper-optimise-call-expression": 7.22.5 - "@babel/helper-replace-supers": 7.22.20(@babel/core@7.20.5) + "@babel/helper-replace-supers": 7.22.20(@babel/core@7.23.6) "@babel/helper-skip-transparent-expression-wrappers": 7.22.5 "@babel/helper-split-export-declaration": 7.22.6 semver: 6.3.1 dev: true - /@babel/helper-create-regexp-features-plugin@7.21.4(@babel/core@7.20.5): - resolution: - { - integrity: sha512-M00OuhU+0GyZ5iBBN9czjugzWrEq2vDpf/zCYHxxf93ul/Q5rv+a5h+/+0WnI1AebHNVtl5bFV0qsJoH23DbfA==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0 - dependencies: - "@babel/core": 7.20.5 - "@babel/helper-annotate-as-pure": 7.18.6 - regexpu-core: 5.3.2 - dev: true - - /@babel/helper-create-regexp-features-plugin@7.21.4(@babel/core@7.22.8): + /@babel/helper-create-regexp-features-plugin@7.21.4(@babel/core@7.23.6): resolution: { integrity: sha512-M00OuhU+0GyZ5iBBN9czjugzWrEq2vDpf/zCYHxxf93ul/Q5rv+a5h+/+0WnI1AebHNVtl5bFV0qsJoH23DbfA==, @@ -631,12 +531,12 @@ packages: peerDependencies: "@babel/core": ^7.0.0 dependencies: - "@babel/core": 7.22.8 + "@babel/core": 7.23.6 "@babel/helper-annotate-as-pure": 7.18.6 regexpu-core: 5.3.2 dev: true - /@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.20.5): + /@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.23.6): resolution: { integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==, @@ -645,32 +545,13 @@ packages: peerDependencies: "@babel/core": ^7.0.0 dependencies: - "@babel/core": 7.20.5 + "@babel/core": 7.23.6 "@babel/helper-annotate-as-pure": 7.22.5 regexpu-core: 5.3.2 semver: 6.3.1 dev: true - /@babel/helper-define-polyfill-provider@0.3.3(@babel/core@7.22.8): - resolution: - { - integrity: sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==, - } - peerDependencies: - "@babel/core": ^7.4.0-0 - dependencies: - "@babel/core": 7.22.8 - "@babel/helper-compilation-targets": 7.22.6(@babel/core@7.22.8) - "@babel/helper-plugin-utils": 7.20.2 - debug: 4.3.4 - lodash.debounce: 4.0.8 - resolve: 1.22.1 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/helper-define-polyfill-provider@0.4.3(@babel/core@7.20.5): + /@babel/helper-define-polyfill-provider@0.4.3(@babel/core@7.23.6): resolution: { integrity: sha512-WBrLmuPP47n7PNwsZ57pqam6G/RGo1vw/87b0Blc53tZNGZ4x7YvZ6HgQe2vo1W/FR20OgjeZuGXzudPiXHFug==, @@ -678,7 +559,7 @@ packages: peerDependencies: "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: - "@babel/core": 7.20.5 + "@babel/core": 7.23.6 "@babel/helper-compilation-targets": 7.22.15 "@babel/helper-plugin-utils": 7.22.5 debug: 4.3.4 @@ -694,6 +575,7 @@ packages: integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==, } engines: { node: ">=6.9.0" } + dev: true /@babel/helper-environment-visitor@7.22.20: resolution: @@ -701,7 +583,6 @@ packages: integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==, } engines: { node: ">=6.9.0" } - dev: true /@babel/helper-environment-visitor@7.22.5: resolution: @@ -711,16 +592,6 @@ packages: engines: { node: ">=6.9.0" } dev: true - /@babel/helper-explode-assignable-expression@7.18.6: - resolution: - { - integrity: sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==, - } - engines: { node: ">=6.9.0" } - dependencies: - "@babel/types": 7.23.0 - dev: true - /@babel/helper-function-name@7.21.0: resolution: { @@ -730,6 +601,7 @@ packages: dependencies: "@babel/template": 7.22.5 "@babel/types": 7.23.0 + dev: true /@babel/helper-function-name@7.22.5: resolution: @@ -751,7 +623,6 @@ packages: dependencies: "@babel/template": 7.22.15 "@babel/types": 7.23.0 - dev: true /@babel/helper-hoist-variables@7.18.6: resolution: @@ -761,6 +632,7 @@ packages: engines: { node: ">=6.9.0" } dependencies: "@babel/types": 7.23.0 + dev: true /@babel/helper-hoist-variables@7.22.5: resolution: @@ -770,7 +642,6 @@ packages: engines: { node: ">=6.9.0" } dependencies: "@babel/types": 7.23.0 - dev: true /@babel/helper-member-expression-to-functions@7.21.0: resolution: @@ -792,15 +663,6 @@ packages: "@babel/types": 7.23.0 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.23.0 - /@babel/helper-module-imports@7.22.15: resolution: { @@ -809,7 +671,6 @@ packages: engines: { node: ">=6.9.0" } dependencies: "@babel/types": 7.23.0 - dev: true /@babel/helper-module-imports@7.22.5: resolution: @@ -820,24 +681,6 @@ packages: dependencies: "@babel/types": 7.23.0 - /@babel/helper-module-transforms@7.21.2: - resolution: - { - integrity: sha512-79yj2AR4U/Oqq/WOV7Lx6hUjau1Zfo4cI+JLAVYeMV5XIlbOhmjEk5ulbTc9fMpmlojzZHkUUxAiK+UKn+hNQQ==, - } - engines: { node: ">=6.9.0" } - dependencies: - "@babel/helper-environment-visitor": 7.18.9 - "@babel/helper-module-imports": 7.18.6 - "@babel/helper-simple-access": 7.20.2 - "@babel/helper-split-export-declaration": 7.18.6 - "@babel/helper-validator-identifier": 7.19.1 - "@babel/template": 7.20.7 - "@babel/traverse": 7.21.4 - "@babel/types": 7.21.4 - transitivePeerDependencies: - - supports-color - /@babel/helper-module-transforms@7.22.5: resolution: { @@ -857,7 +700,7 @@ packages: - supports-color dev: true - /@babel/helper-module-transforms@7.23.0(@babel/core@7.20.5): + /@babel/helper-module-transforms@7.23.0(@babel/core@7.23.2): resolution: { integrity: sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw==, @@ -866,7 +709,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0 dependencies: - "@babel/core": 7.20.5 + "@babel/core": 7.23.2 "@babel/helper-environment-visitor": 7.22.20 "@babel/helper-module-imports": 7.22.15 "@babel/helper-simple-access": 7.22.5 @@ -874,7 +717,7 @@ packages: "@babel/helper-validator-identifier": 7.22.20 dev: true - /@babel/helper-module-transforms@7.23.0(@babel/core@7.23.2): + /@babel/helper-module-transforms@7.23.0(@babel/core@7.23.6): resolution: { integrity: sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw==, @@ -883,7 +726,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0 dependencies: - "@babel/core": 7.23.2 + "@babel/core": 7.23.6 "@babel/helper-environment-visitor": 7.22.20 "@babel/helper-module-imports": 7.22.15 "@babel/helper-simple-access": 7.22.5 @@ -891,6 +734,22 @@ packages: "@babel/helper-validator-identifier": 7.22.20 dev: true + /@babel/helper-module-transforms@7.23.3(@babel/core@7.23.6): + resolution: + { + integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==, + } + engines: { node: ">=6.9.0" } + peerDependencies: + "@babel/core": ^7.0.0 + dependencies: + "@babel/core": 7.23.6 + "@babel/helper-environment-visitor": 7.22.20 + "@babel/helper-module-imports": 7.22.15 + "@babel/helper-simple-access": 7.22.5 + "@babel/helper-split-export-declaration": 7.22.6 + "@babel/helper-validator-identifier": 7.22.20 + /@babel/helper-optimise-call-expression@7.18.6: resolution: { @@ -926,25 +785,7 @@ packages: engines: { node: ">=6.9.0" } dev: true - /@babel/helper-remap-async-to-generator@7.18.9(@babel/core@7.22.8): - resolution: - { - integrity: sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0 - dependencies: - "@babel/core": 7.22.8 - "@babel/helper-annotate-as-pure": 7.18.6 - "@babel/helper-environment-visitor": 7.22.5 - "@babel/helper-wrap-function": 7.19.0 - "@babel/types": 7.23.0 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.20.5): + /@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.23.6): resolution: { integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==, @@ -953,7 +794,7 @@ packages: peerDependencies: "@babel/core": ^7.0.0 dependencies: - "@babel/core": 7.20.5 + "@babel/core": 7.23.6 "@babel/helper-annotate-as-pure": 7.22.5 "@babel/helper-environment-visitor": 7.22.20 "@babel/helper-wrap-function": 7.22.20 @@ -976,7 +817,7 @@ packages: - supports-color dev: true - /@babel/helper-replace-supers@7.22.20(@babel/core@7.20.5): + /@babel/helper-replace-supers@7.22.20(@babel/core@7.23.6): resolution: { integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==, @@ -985,21 +826,12 @@ packages: peerDependencies: "@babel/core": ^7.0.0 dependencies: - "@babel/core": 7.20.5 + "@babel/core": 7.23.6 "@babel/helper-environment-visitor": 7.22.20 "@babel/helper-member-expression-to-functions": 7.23.0 "@babel/helper-optimise-call-expression": 7.22.5 dev: true - /@babel/helper-simple-access@7.20.2: - resolution: - { - integrity: sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==, - } - engines: { node: ">=6.9.0" } - dependencies: - "@babel/types": 7.23.0 - /@babel/helper-simple-access@7.22.5: resolution: { @@ -1008,7 +840,6 @@ packages: engines: { node: ">=6.9.0" } dependencies: "@babel/types": 7.23.0 - dev: true /@babel/helper-skip-transparent-expression-wrappers@7.20.0: resolution: @@ -1038,6 +869,7 @@ packages: engines: { node: ">=6.9.0" } dependencies: "@babel/types": 7.23.0 + dev: true /@babel/helper-split-export-declaration@7.22.6: resolution: @@ -1047,7 +879,6 @@ packages: engines: { node: ">=6.9.0" } dependencies: "@babel/types": 7.23.0 - dev: true /@babel/helper-string-parser@7.19.4: resolution: @@ -1055,6 +886,7 @@ packages: integrity: sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==, } engines: { node: ">=6.9.0" } + dev: true /@babel/helper-string-parser@7.22.5: resolution: @@ -1063,10 +895,10 @@ packages: } engines: { node: ">=6.9.0" } - /@babel/helper-validator-identifier@7.19.1: + /@babel/helper-string-parser@7.23.4: resolution: { - integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==, + integrity: sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==, } engines: { node: ">=6.9.0" } @@ -1077,13 +909,6 @@ packages: } engines: { node: ">=6.9.0" } - /@babel/helper-validator-option@7.21.0: - resolution: - { - integrity: sha512-rmL/B8/f0mKS2baE9ZpyTcTavvEuWhTTW8amjzXNvYG4AwBsqTLikfXsEofsJEfKHf+HQVQbFOHy6o+4cnC/fQ==, - } - engines: { node: ">=6.9.0" } - /@babel/helper-validator-option@7.22.15: resolution: { @@ -1100,20 +925,12 @@ packages: engines: { node: ">=6.9.0" } dev: true - /@babel/helper-wrap-function@7.19.0: + /@babel/helper-validator-option@7.23.5: resolution: { - integrity: sha512-txX8aN8CZyYGTwcLhlk87KRqncAzhh5TpQamZUa0/u3an36NtDpUP6bQgBCBcLeBs09R/OwQu3OjK0k/HwfNDg==, + integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==, } engines: { node: ">=6.9.0" } - dependencies: - "@babel/helper-function-name": 7.22.5 - "@babel/template": 7.22.5 - "@babel/traverse": 7.22.8 - "@babel/types": 7.23.0 - transitivePeerDependencies: - - supports-color - dev: true /@babel/helper-wrap-function@7.22.20: resolution: @@ -1127,23 +944,10 @@ packages: "@babel/types": 7.23.0 dev: true - /@babel/helpers@7.21.0: + /@babel/helpers@7.22.6: resolution: { - integrity: sha512-XXve0CBtOW0pd7MRzzmoyuSj0e3SEzj8pgyFxnTT1NJZL38BD1MK7yYrm8yefRPIDvNNe14xR4FdbHwpInD4rA==, - } - engines: { node: ">=6.9.0" } - dependencies: - "@babel/template": 7.20.7 - "@babel/traverse": 7.21.4 - "@babel/types": 7.21.4 - transitivePeerDependencies: - - supports-color - - /@babel/helpers@7.22.6: - resolution: - { - integrity: sha512-YjDs6y/fVOYFV8hAf1rxd1QvR9wJe1pDBZ2AREKq/SDayfPzgk0PBnVuTCE5X1acEpMMNOVUqoe+OwiZGJ+OaA==, + integrity: sha512-YjDs6y/fVOYFV8hAf1rxd1QvR9wJe1pDBZ2AREKq/SDayfPzgk0PBnVuTCE5X1acEpMMNOVUqoe+OwiZGJ+OaA==, } engines: { node: ">=6.9.0" } dependencies: @@ -1168,33 +972,23 @@ packages: - supports-color dev: true - /@babel/highlight@7.18.6: - resolution: - { - integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==, - } - engines: { node: ">=6.9.0" } - dependencies: - "@babel/helper-validator-identifier": 7.22.20 - chalk: 2.4.2 - js-tokens: 4.0.0 - - /@babel/highlight@7.22.20: + /@babel/helpers@7.23.6: resolution: { - integrity: sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==, + integrity: sha512-wCfsbN4nBidDRhpDhvcKlzHWCTlgJYUUdSJfzXb2NuBssDSIjc3xcb+znA7l+zYsFljAcGM0aFkN40cR3lXiGA==, } engines: { node: ">=6.9.0" } dependencies: - "@babel/helper-validator-identifier": 7.22.20 - chalk: 2.4.2 - js-tokens: 4.0.0 - dev: true + "@babel/template": 7.22.15 + "@babel/traverse": 7.23.6 + "@babel/types": 7.23.6 + transitivePeerDependencies: + - supports-color - /@babel/highlight@7.22.5: + /@babel/highlight@7.23.4: resolution: { - integrity: sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw==, + integrity: sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==, } engines: { node: ">=6.9.0" } dependencies: @@ -1211,6 +1005,7 @@ packages: hasBin: true dependencies: "@babel/types": 7.21.4 + dev: true /@babel/parser@7.23.0: resolution: @@ -1222,20 +1017,17 @@ packages: dependencies: "@babel/types": 7.23.0 - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.18.6(@babel/core@7.22.8): + /@babel/parser@7.23.6: resolution: { - integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==, + integrity: sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ==, } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0 + engines: { node: ">=6.0.0" } + hasBin: true dependencies: - "@babel/core": 7.22.8 - "@babel/helper-plugin-utils": 7.20.2 - dev: true + "@babel/types": 7.23.6 - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.15(@babel/core@7.20.5): + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.15(@babel/core@7.23.6): resolution: { integrity: sha512-FB9iYlz7rURmRJyXRKEnalYPPdn87H5no108cyuQQyMwlpJ2SJtpIUBI27kdTin956pz+LPypkPVPUTlxOmrsg==, @@ -1244,26 +1036,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0 dependencies: - "@babel/core": 7.20.5 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.20.7(@babel/core@7.22.8): - resolution: - { - integrity: sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.13.0 - dependencies: - "@babel/core": 7.22.8 - "@babel/helper-plugin-utils": 7.20.2 - "@babel/helper-skip-transparent-expression-wrappers": 7.20.0 - "@babel/plugin-proposal-optional-chaining": 7.21.0(@babel/core@7.22.8) - dev: true - - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.15(@babel/core@7.20.5): + /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.15(@babel/core@7.23.6): resolution: { integrity: sha512-Hyph9LseGvAeeXzikV88bczhsrLrIZqDPxO+sSmAunMPaGrBGhfMWzCPYTtiW9t+HzSE2wtV8e5cc5P6r1xMDQ==, @@ -1272,45 +1049,10 @@ packages: peerDependencies: "@babel/core": ^7.13.0 dependencies: - "@babel/core": 7.20.5 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 "@babel/helper-skip-transparent-expression-wrappers": 7.22.5 - "@babel/plugin-transform-optional-chaining": 7.23.0(@babel/core@7.20.5) - dev: true - - /@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.22.8): - resolution: - { - integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.22.8 - "@babel/helper-environment-visitor": 7.22.5 - "@babel/helper-plugin-utils": 7.20.2 - "@babel/helper-remap-async-to-generator": 7.18.9(@babel/core@7.22.8) - "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.22.8) - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.22.8): - resolution: - { - integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==, - } - engines: { node: ">=6.9.0" } - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead. - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.22.8 - "@babel/helper-create-class-features-plugin": 7.21.4(@babel/core@7.22.8) - "@babel/helper-plugin-utils": 7.20.2 - transitivePeerDependencies: - - supports-color + "@babel/plugin-transform-optional-chaining": 7.23.0(@babel/core@7.23.6) dev: true /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.23.2): @@ -1330,113 +1072,6 @@ packages: - supports-color dev: true - /@babel/plugin-proposal-class-static-block@7.21.0(@babel/core@7.22.8): - resolution: - { - integrity: sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.12.0 - dependencies: - "@babel/core": 7.22.8 - "@babel/helper-create-class-features-plugin": 7.21.4(@babel/core@7.22.8) - "@babel/helper-plugin-utils": 7.20.2 - "@babel/plugin-syntax-class-static-block": 7.14.5(@babel/core@7.22.8) - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/plugin-proposal-decorators@7.20.2(@babel/core@7.22.8): - resolution: - { - integrity: sha512-nkBH96IBmgKnbHQ5gXFrcmez+Z9S2EIDKDQGp005ROqBigc88Tky4rzCnlP/lnlj245dCEQl4/YyV0V1kYh5dw==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.22.8 - "@babel/helper-create-class-features-plugin": 7.21.4(@babel/core@7.22.8) - "@babel/helper-plugin-utils": 7.20.2 - "@babel/helper-replace-supers": 7.20.7 - "@babel/helper-split-export-declaration": 7.22.6 - "@babel/plugin-syntax-decorators": 7.19.0(@babel/core@7.22.8) - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.22.8): - resolution: - { - integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.22.8 - "@babel/helper-plugin-utils": 7.20.2 - "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.22.8) - dev: true - - /@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.22.8): - resolution: - { - integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.22.8 - "@babel/helper-plugin-utils": 7.20.2 - "@babel/plugin-syntax-export-namespace-from": 7.8.3(@babel/core@7.22.8) - dev: true - - /@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.22.8): - resolution: - { - integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.22.8 - "@babel/helper-plugin-utils": 7.20.2 - "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.22.8) - dev: true - - /@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.22.8): - resolution: - { - integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.22.8 - "@babel/helper-plugin-utils": 7.20.2 - "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.22.8) - dev: true - - /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.22.8): - resolution: - { - integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==, - } - engines: { node: ">=6.9.0" } - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead. - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.22.8 - "@babel/helper-plugin-utils": 7.20.2 - "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.22.8) - dev: true - /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.23.2): resolution: { @@ -1452,67 +1087,6 @@ packages: "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.23.2) dev: true - /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.22.8): - resolution: - { - integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.22.8 - "@babel/helper-plugin-utils": 7.20.2 - "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.22.8) - dev: true - - /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.22.8): - resolution: - { - integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/compat-data": 7.22.6 - "@babel/core": 7.22.8 - "@babel/helper-compilation-targets": 7.22.6(@babel/core@7.22.8) - "@babel/helper-plugin-utils": 7.20.2 - "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.22.8) - "@babel/plugin-transform-parameters": 7.21.3(@babel/core@7.22.8) - dev: true - - /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.22.8): - resolution: - { - integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.22.8 - "@babel/helper-plugin-utils": 7.20.2 - "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.22.8) - dev: true - - /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.22.8): - resolution: - { - integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==, - } - engines: { node: ">=6.9.0" } - deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead. - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.22.8 - "@babel/helper-plugin-utils": 7.20.2 - "@babel/helper-skip-transparent-expression-wrappers": 7.20.0 - "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.22.8) - dev: true - /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.23.2): resolution: { @@ -1529,1810 +1103,1040 @@ packages: "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.23.2) dev: true - /@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.22.8): + /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.6): resolution: { - integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==, + integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.8 - "@babel/helper-create-class-features-plugin": 7.21.4(@babel/core@7.22.8) - "@babel/helper-plugin-utils": 7.20.2 - transitivePeerDependencies: - - supports-color + "@babel/core": 7.23.6 dev: true - /@babel/plugin-proposal-private-property-in-object@7.21.0(@babel/core@7.22.8): + /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.22.8): resolution: { - integrity: sha512-ha4zfehbJjc5MmXBlHec1igel5TJXXLDDRbuJ4+XT2TJcyD9/V1919BA8gMvsdHcNMBy4WBUBiRb3nw/EQUtBw==, + integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==, } - engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: "@babel/core": 7.22.8 - "@babel/helper-annotate-as-pure": 7.18.6 - "@babel/helper-create-class-features-plugin": 7.21.4(@babel/core@7.22.8) - "@babel/helper-plugin-utils": 7.20.2 - "@babel/plugin-syntax-private-property-in-object": 7.14.5(@babel/core@7.22.8) - transitivePeerDependencies: - - supports-color + "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.20.5): + /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.23.6): resolution: { - integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==, + integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==, } - engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.5 + "@babel/core": 7.23.6 + "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.22.8): + /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.22.8): resolution: { - integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==, + integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==, } - engines: { node: ">=4" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: "@babel/core": 7.22.8 - "@babel/helper-create-regexp-features-plugin": 7.21.4(@babel/core@7.22.8) "@babel/helper-plugin-utils": 7.20.2 dev: true - /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.20.5): + /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.22.8): resolution: { - integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==, + integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==, } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.5 + "@babel/core": 7.22.8 "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.22.8): + /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.23.6): resolution: { - integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==, + integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==, } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.8 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.22.8): + /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.23.6): resolution: { - integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==, + integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==, } + engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.8 - "@babel/helper-plugin-utils": 7.20.2 + "@babel/core": 7.23.6 + "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.20.5): + /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.23.6): resolution: { - integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==, + integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==, } peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.20.5 - "@babel/helper-plugin-utils": 7.22.5 - dev: true - - /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.22.8): - resolution: - { - integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==, - } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.22.8 - "@babel/helper-plugin-utils": 7.22.5 - dev: true - - /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.20.5): - resolution: - { - integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.20.5 - "@babel/helper-plugin-utils": 7.22.5 - dev: true - - /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.22.8): - resolution: - { - integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.22.8 - "@babel/helper-plugin-utils": 7.22.5 - dev: true - - /@babel/plugin-syntax-decorators@7.19.0(@babel/core@7.22.8): - resolution: - { - integrity: sha512-xaBZUEDntt4faL1yN8oIFlhfXeQAWJW7CLKYsHTUqriCUbj8xOra8bfxxKGi/UwExPFBuPdH4XfHc9rGQhrVkQ==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.22.8 - "@babel/helper-plugin-utils": 7.20.2 - dev: true - - /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.20.5): - resolution: - { - integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==, - } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.20.5 - "@babel/helper-plugin-utils": 7.22.5 - dev: true - - /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.22.8): - resolution: - { - integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==, - } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.22.8 - "@babel/helper-plugin-utils": 7.22.5 - dev: true - - /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.20.5): - resolution: - { - integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==, - } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.20.5 - "@babel/helper-plugin-utils": 7.22.5 - dev: true - - /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.22.8): - resolution: - { - integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==, - } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.22.8 - "@babel/helper-plugin-utils": 7.22.5 - dev: true - - /@babel/plugin-syntax-flow@7.18.6(@babel/core@7.22.8): - resolution: - { - integrity: sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.22.8 - "@babel/helper-plugin-utils": 7.20.2 - dev: true - - /@babel/plugin-syntax-flow@7.18.6(@babel/core@7.23.2): - resolution: - { - integrity: sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.23.2 - "@babel/helper-plugin-utils": 7.20.2 - dev: true - - /@babel/plugin-syntax-flow@7.22.5(@babel/core@7.20.5): - resolution: - { - integrity: sha512-9RdCl0i+q0QExayk2nOS7853w08yLucnnPML6EN9S8fgMPVtdLDCdx/cOQ/i44Lb9UeQX9A35yaqBBOMMZxPxQ==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.20.5 - "@babel/helper-plugin-utils": 7.22.5 - dev: true - - /@babel/plugin-syntax-import-assertions@7.20.0(@babel/core@7.22.8): - resolution: - { - integrity: sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.22.8 - "@babel/helper-plugin-utils": 7.20.2 - dev: true - - /@babel/plugin-syntax-import-assertions@7.22.5(@babel/core@7.20.5): - resolution: - { - integrity: sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.20.5 - "@babel/helper-plugin-utils": 7.22.5 - dev: true - - /@babel/plugin-syntax-import-attributes@7.22.5(@babel/core@7.20.5): - resolution: - { - integrity: sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.20.5 - "@babel/helper-plugin-utils": 7.22.5 - dev: true - - /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.20.5): - resolution: - { - integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==, - } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.20.5 - "@babel/helper-plugin-utils": 7.22.5 - dev: true - - /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.22.8): - resolution: - { - integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==, - } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.22.8 - "@babel/helper-plugin-utils": 7.22.5 - dev: true - - /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.20.5): - resolution: - { - integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==, - } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.20.5 - "@babel/helper-plugin-utils": 7.22.5 - dev: true - - /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.22.8): - resolution: - { - integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==, - } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.22.8 - "@babel/helper-plugin-utils": 7.22.5 - dev: true - - /@babel/plugin-syntax-jsx@7.18.6(@babel/core@7.20.5): - resolution: - { - integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.20.5 - "@babel/helper-plugin-utils": 7.20.2 - - /@babel/plugin-syntax-jsx@7.18.6(@babel/core@7.22.8): - resolution: - { - integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.22.8 - "@babel/helper-plugin-utils": 7.20.2 - dev: true - - /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.20.5): - resolution: - { - integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.20.5 - "@babel/helper-plugin-utils": 7.22.5 - dev: true - - /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.20.5): - resolution: - { - integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==, - } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.20.5 - "@babel/helper-plugin-utils": 7.22.5 - dev: true - - /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.22.8): - resolution: - { - integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==, - } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.22.8 - "@babel/helper-plugin-utils": 7.22.5 - dev: true - - /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.20.5): - resolution: - { - integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==, - } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.20.5 - "@babel/helper-plugin-utils": 7.22.5 - dev: true - - /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.22.8): - resolution: - { - integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==, - } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.22.8 - "@babel/helper-plugin-utils": 7.22.5 - dev: true - - /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.23.2): - resolution: - { - integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==, - } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.23.2 - "@babel/helper-plugin-utils": 7.22.5 - dev: true - - /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.20.5): - resolution: - { - integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==, - } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.20.5 - "@babel/helper-plugin-utils": 7.22.5 - dev: true - - /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.22.8): - resolution: - { - integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==, - } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.22.8 - "@babel/helper-plugin-utils": 7.22.5 - dev: true - - /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.20.5): - resolution: - { - integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==, - } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.20.5 - "@babel/helper-plugin-utils": 7.22.5 - dev: true - - /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.22.8): - resolution: - { - integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==, - } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.22.8 - "@babel/helper-plugin-utils": 7.22.5 - dev: true - - /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.20.5): - resolution: - { - integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==, - } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.20.5 - "@babel/helper-plugin-utils": 7.22.5 - dev: true - - /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.22.8): - resolution: - { - integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==, - } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.22.8 - "@babel/helper-plugin-utils": 7.22.5 - dev: true - - /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.20.5): - resolution: - { - integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==, - } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.20.5 - "@babel/helper-plugin-utils": 7.22.5 - dev: true - - /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.22.8): - resolution: - { - integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==, - } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.22.8 - "@babel/helper-plugin-utils": 7.22.5 - dev: true - - /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.23.2): - resolution: - { - integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==, - } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.23.2 - "@babel/helper-plugin-utils": 7.22.5 - dev: true - - /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.20.5): - resolution: - { - integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.20.5 - "@babel/helper-plugin-utils": 7.22.5 - dev: true - - /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.22.8): - resolution: - { - integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.22.8 - "@babel/helper-plugin-utils": 7.22.5 - dev: true - - /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.20.5): - resolution: - { - integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.20.5 - "@babel/helper-plugin-utils": 7.22.5 - dev: true - - /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.22.8): - resolution: - { - integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.22.8 - "@babel/helper-plugin-utils": 7.22.5 - dev: true - - /@babel/plugin-syntax-typescript@7.20.0(@babel/core@7.22.8): - resolution: - { - integrity: sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.22.8 - "@babel/helper-plugin-utils": 7.20.2 - dev: true - - /@babel/plugin-syntax-typescript@7.20.0(@babel/core@7.23.2): - resolution: - { - integrity: sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.23.2 - "@babel/helper-plugin-utils": 7.20.2 - dev: true - - /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.20.5): - resolution: - { - integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0 - dependencies: - "@babel/core": 7.20.5 - "@babel/helper-create-regexp-features-plugin": 7.21.4(@babel/core@7.20.5) - "@babel/helper-plugin-utils": 7.22.5 - dev: true - - /@babel/plugin-transform-arrow-functions@7.20.7(@babel/core@7.22.8): - resolution: - { - integrity: sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.22.8 - "@babel/helper-plugin-utils": 7.20.2 - dev: true - - /@babel/plugin-transform-arrow-functions@7.22.5(@babel/core@7.20.5): - resolution: - { - integrity: sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.20.5 - "@babel/helper-plugin-utils": 7.22.5 - dev: true - - /@babel/plugin-transform-async-generator-functions@7.23.2(@babel/core@7.20.5): - resolution: - { - integrity: sha512-BBYVGxbDVHfoeXbOwcagAkOQAm9NxoTdMGfTqghu1GrvadSaw6iW3Je6IcL5PNOw8VwjxqBECXy50/iCQSY/lQ==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.20.5 - "@babel/helper-environment-visitor": 7.22.20 - "@babel/helper-plugin-utils": 7.22.5 - "@babel/helper-remap-async-to-generator": 7.22.20(@babel/core@7.20.5) - "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.20.5) - dev: true - - /@babel/plugin-transform-async-to-generator@7.20.7(@babel/core@7.22.8): - resolution: - { - integrity: sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.22.8 - "@babel/helper-module-imports": 7.22.5 - "@babel/helper-plugin-utils": 7.20.2 - "@babel/helper-remap-async-to-generator": 7.18.9(@babel/core@7.22.8) - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.20.5): - resolution: - { - integrity: sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.20.5 - "@babel/helper-module-imports": 7.22.5 - "@babel/helper-plugin-utils": 7.22.5 - "@babel/helper-remap-async-to-generator": 7.22.20(@babel/core@7.20.5) - dev: true - - /@babel/plugin-transform-block-scoped-functions@7.18.6(@babel/core@7.22.8): - resolution: - { - integrity: sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.22.8 - "@babel/helper-plugin-utils": 7.20.2 - dev: true - - /@babel/plugin-transform-block-scoped-functions@7.22.5(@babel/core@7.20.5): - resolution: - { - integrity: sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.20.5 - "@babel/helper-plugin-utils": 7.22.5 - dev: true - - /@babel/plugin-transform-block-scoping@7.21.0(@babel/core@7.22.8): - resolution: - { - integrity: sha512-Mdrbunoh9SxwFZapeHVrwFmri16+oYotcZysSzhNIVDwIAb1UV+kvnxULSYq9J3/q5MDG+4X6w8QVgD1zhBXNQ==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.22.8 - "@babel/helper-plugin-utils": 7.20.2 - dev: true - - /@babel/plugin-transform-block-scoping@7.23.0(@babel/core@7.20.5): - resolution: - { - integrity: sha512-cOsrbmIOXmf+5YbL99/S49Y3j46k/T16b9ml8bm9lP6N9US5iQ2yBK7gpui1pg0V/WMcXdkfKbTb7HXq9u+v4g==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.20.5 - "@babel/helper-plugin-utils": 7.22.5 - dev: true - - /@babel/plugin-transform-class-properties@7.22.5(@babel/core@7.20.5): - resolution: - { - integrity: sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.20.5 - "@babel/helper-create-class-features-plugin": 7.22.15(@babel/core@7.20.5) - "@babel/helper-plugin-utils": 7.22.5 - dev: true - - /@babel/plugin-transform-class-static-block@7.22.11(@babel/core@7.20.5): - resolution: - { - integrity: sha512-GMM8gGmqI7guS/llMFk1bJDkKfn3v3C4KHK9Yg1ey5qcHcOlKb0QvcMrgzvxo+T03/4szNh5lghY+fEC98Kq9g==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.12.0 - dependencies: - "@babel/core": 7.20.5 - "@babel/helper-create-class-features-plugin": 7.22.15(@babel/core@7.20.5) - "@babel/helper-plugin-utils": 7.22.5 - "@babel/plugin-syntax-class-static-block": 7.14.5(@babel/core@7.20.5) - dev: true - - /@babel/plugin-transform-classes@7.21.0(@babel/core@7.22.8): - resolution: - { - integrity: sha512-RZhbYTCEUAe6ntPehC4hlslPWosNHDox+vAs4On/mCLRLfoDVHf6hVEd7kuxr1RnHwJmxFfUM3cZiZRmPxJPXQ==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.22.8 - "@babel/helper-annotate-as-pure": 7.18.6 - "@babel/helper-compilation-targets": 7.22.6(@babel/core@7.22.8) - "@babel/helper-environment-visitor": 7.22.5 - "@babel/helper-function-name": 7.22.5 - "@babel/helper-optimise-call-expression": 7.18.6 - "@babel/helper-plugin-utils": 7.20.2 - "@babel/helper-replace-supers": 7.20.7 - "@babel/helper-split-export-declaration": 7.22.6 - globals: 11.12.0 - transitivePeerDependencies: - - supports-color + dependencies: + "@babel/core": 7.23.6 + "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-classes@7.22.15(@babel/core@7.20.5): + /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.23.6): resolution: { - integrity: sha512-VbbC3PGjBdE0wAWDdHM9G8Gm977pnYI0XpqMd6LrKISj8/DJXEsWqgRuTYaNE9Bv0JGhTZUzHDlMk18IpOuoqw==, + integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==, } - engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.5 - "@babel/helper-annotate-as-pure": 7.22.5 - "@babel/helper-compilation-targets": 7.22.15 - "@babel/helper-environment-visitor": 7.22.5 - "@babel/helper-function-name": 7.22.5 - "@babel/helper-optimise-call-expression": 7.22.5 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 - "@babel/helper-replace-supers": 7.22.20(@babel/core@7.20.5) - "@babel/helper-split-export-declaration": 7.22.6 - globals: 11.12.0 dev: true - /@babel/plugin-transform-computed-properties@7.20.7(@babel/core@7.22.8): + /@babel/plugin-syntax-flow@7.18.6(@babel/core@7.23.2): resolution: { - integrity: sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ==, + integrity: sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.8 + "@babel/core": 7.23.2 "@babel/helper-plugin-utils": 7.20.2 - "@babel/template": 7.22.5 dev: true - /@babel/plugin-transform-computed-properties@7.22.5(@babel/core@7.20.5): + /@babel/plugin-syntax-import-assertions@7.22.5(@babel/core@7.23.6): resolution: { - integrity: sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==, + integrity: sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.5 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 - "@babel/template": 7.22.5 dev: true - /@babel/plugin-transform-destructuring@7.21.3(@babel/core@7.22.8): + /@babel/plugin-syntax-import-attributes@7.22.5(@babel/core@7.23.6): resolution: { - integrity: sha512-bp6hwMFzuiE4HqYEyoGJ/V2LeIWn+hLVKc4pnj++E5XQptwhtcGmSayM029d/j2X1bPKGTlsyPwAubuU22KhMA==, + integrity: sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.8 - "@babel/helper-plugin-utils": 7.20.2 + "@babel/core": 7.23.6 + "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-destructuring@7.23.0(@babel/core@7.20.5): + /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.22.8): resolution: { - integrity: sha512-vaMdgNXFkYrB+8lbgniSYWHsgqK5gjaMNcc84bMIOMRLH0L9AqYq3hwMdvnyqj1OPqea8UtjPEuS/DCenah1wg==, + integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==, } - engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.5 + "@babel/core": 7.22.8 "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-dotall-regex@7.18.6(@babel/core@7.22.8): + /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.23.6): resolution: { - integrity: sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==, + integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==, } - engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.8 - "@babel/helper-create-regexp-features-plugin": 7.21.4(@babel/core@7.22.8) - "@babel/helper-plugin-utils": 7.20.2 + "@babel/core": 7.23.6 + "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-dotall-regex@7.22.5(@babel/core@7.20.5): + /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.22.8): resolution: { - integrity: sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==, + integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==, } - engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.5 - "@babel/helper-create-regexp-features-plugin": 7.22.15(@babel/core@7.20.5) + "@babel/core": 7.22.8 "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-duplicate-keys@7.18.9(@babel/core@7.22.8): + /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.23.6): resolution: { - integrity: sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==, + integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==, } - engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.8 - "@babel/helper-plugin-utils": 7.20.2 + "@babel/core": 7.23.6 + "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-duplicate-keys@7.22.5(@babel/core@7.20.5): + /@babel/plugin-syntax-jsx@7.18.6(@babel/core@7.22.8): resolution: { - integrity: sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==, + integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.5 - "@babel/helper-plugin-utils": 7.22.5 + "@babel/core": 7.22.8 + "@babel/helper-plugin-utils": 7.20.2 dev: true - /@babel/plugin-transform-dynamic-import@7.22.11(@babel/core@7.20.5): + /@babel/plugin-syntax-jsx@7.18.6(@babel/core@7.23.6): resolution: { - integrity: sha512-g/21plo58sfteWjaO0ZNVb+uEOkJNjAaHhbejrnBmu011l/eNDScmkbjCC3l4FKb10ViaGU4aOkFznSu2zRHgA==, + integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.5 - "@babel/helper-plugin-utils": 7.22.5 - "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.20.5) - dev: true + "@babel/core": 7.23.6 + "@babel/helper-plugin-utils": 7.20.2 + dev: false - /@babel/plugin-transform-exponentiation-operator@7.18.6(@babel/core@7.22.8): + /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.22.8): resolution: { - integrity: sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==, + integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==, } - engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: "@babel/core": 7.22.8 - "@babel/helper-builder-binary-assignment-operator-visitor": 7.18.9 - "@babel/helper-plugin-utils": 7.20.2 + "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-exponentiation-operator@7.22.5(@babel/core@7.20.5): + /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.23.6): resolution: { - integrity: sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==, + integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==, } - engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.5 - "@babel/helper-builder-binary-assignment-operator-visitor": 7.22.15 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-export-namespace-from@7.22.11(@babel/core@7.20.5): + /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.22.8): resolution: { - integrity: sha512-xa7aad7q7OiT8oNZ1mU7NrISjlSkVdMbNxn9IuLZyL9AJEhs1Apba3I+u5riX1dIkdptP5EKDG5XDPByWxtehw==, + integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==, } - engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.5 + "@babel/core": 7.22.8 "@babel/helper-plugin-utils": 7.22.5 - "@babel/plugin-syntax-export-namespace-from": 7.8.3(@babel/core@7.20.5) dev: true - /@babel/plugin-transform-flow-strip-types@7.19.0(@babel/core@7.22.8): + /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.23.2): resolution: { - integrity: sha512-sgeMlNaQVbCSpgLSKP4ZZKfsJVnFnNQlUSk6gPYzR/q7tzCgQF2t8RBKAP6cKJeZdveei7Q7Jm527xepI8lNLg==, + integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==, } - engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.8 - "@babel/helper-plugin-utils": 7.20.2 - "@babel/plugin-syntax-flow": 7.18.6(@babel/core@7.22.8) + "@babel/core": 7.23.2 + "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-flow-strip-types@7.19.0(@babel/core@7.23.2): + /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.23.6): resolution: { - integrity: sha512-sgeMlNaQVbCSpgLSKP4ZZKfsJVnFnNQlUSk6gPYzR/q7tzCgQF2t8RBKAP6cKJeZdveei7Q7Jm527xepI8lNLg==, + integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==, } - engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.23.2 - "@babel/helper-plugin-utils": 7.20.2 - "@babel/plugin-syntax-flow": 7.18.6(@babel/core@7.23.2) + "@babel/core": 7.23.6 + "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-for-of@7.21.0(@babel/core@7.22.8): + /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.22.8): resolution: { - integrity: sha512-LlUYlydgDkKpIY7mcBWvyPPmMcOphEyYA27Ef4xpbh1IiDNLr0kZsos2nf92vz3IccvJI25QUwp86Eo5s6HmBQ==, + integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==, } - engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: "@babel/core": 7.22.8 - "@babel/helper-plugin-utils": 7.20.2 + "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-for-of@7.22.15(@babel/core@7.20.5): + /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.23.6): resolution: { - integrity: sha512-me6VGeHsx30+xh9fbDLLPi0J1HzmeIIyenoOQHuw2D4m2SAU3NrspX5XxJLBpqn5yrLzrlw2Iy3RA//Bx27iOA==, + integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==, } - engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.5 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-function-name@7.18.9(@babel/core@7.22.8): + /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.22.8): resolution: { - integrity: sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==, + integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==, } - engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: "@babel/core": 7.22.8 - "@babel/helper-compilation-targets": 7.22.6(@babel/core@7.22.8) - "@babel/helper-function-name": 7.22.5 - "@babel/helper-plugin-utils": 7.20.2 + "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-function-name@7.22.5(@babel/core@7.20.5): + /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.23.6): resolution: { - integrity: sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==, + integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==, } - engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.5 - "@babel/helper-compilation-targets": 7.22.15 - "@babel/helper-function-name": 7.22.5 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-json-strings@7.22.11(@babel/core@7.20.5): + /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.22.8): resolution: { - integrity: sha512-CxT5tCqpA9/jXFlme9xIBCc5RPtdDq3JpkkhgHQqtDdiTnTI0jtZ0QzXhr5DILeYifDPp2wvY2ad+7+hLMW5Pw==, + integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==, } - engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.5 + "@babel/core": 7.22.8 "@babel/helper-plugin-utils": 7.22.5 - "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.20.5) dev: true - /@babel/plugin-transform-literals@7.18.9(@babel/core@7.22.8): + /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.23.6): resolution: { - integrity: sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==, + integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==, } - engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.8 - "@babel/helper-plugin-utils": 7.20.2 + "@babel/core": 7.23.6 + "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-literals@7.22.5(@babel/core@7.20.5): + /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.22.8): resolution: { - integrity: sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==, + integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==, } - engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.5 + "@babel/core": 7.22.8 "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-logical-assignment-operators@7.22.11(@babel/core@7.20.5): + /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.23.2): resolution: { - integrity: sha512-qQwRTP4+6xFCDV5k7gZBF3C31K34ut0tbEcTKxlX/0KXxm9GLcO14p570aWxFvVzx6QAfPgq7gaeIHXJC8LswQ==, + integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==, } - engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.5 + "@babel/core": 7.23.2 "@babel/helper-plugin-utils": 7.22.5 - "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.20.5) dev: true - /@babel/plugin-transform-member-expression-literals@7.18.6(@babel/core@7.22.8): + /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.23.6): resolution: { - integrity: sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==, + integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==, } - engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.8 - "@babel/helper-plugin-utils": 7.20.2 + "@babel/core": 7.23.6 + "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-member-expression-literals@7.22.5(@babel/core@7.20.5): + /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.23.6): resolution: { - integrity: sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==, + integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.5 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-modules-amd@7.20.11(@babel/core@7.22.8): + /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.22.8): resolution: { - integrity: sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==, + integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: "@babel/core": 7.22.8 - "@babel/helper-module-transforms": 7.22.5 - "@babel/helper-plugin-utils": 7.20.2 - transitivePeerDependencies: - - supports-color + "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-modules-amd@7.23.0(@babel/core@7.20.5): + /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.23.6): resolution: { - integrity: sha512-xWT5gefv2HGSm4QHtgc1sYPbseOyf+FFDo2JbpE25GWl5BqTGO9IMwTYJRoIdjsF85GE+VegHxSCUt5EvoYTAw==, + integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.5 - "@babel/helper-module-transforms": 7.23.0(@babel/core@7.20.5) + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-modules-commonjs@7.21.2(@babel/core@7.22.8): + /@babel/plugin-syntax-typescript@7.20.0(@babel/core@7.22.8): resolution: { - integrity: sha512-Cln+Yy04Gxua7iPdj6nOV96smLGjpElir5YwzF0LBPKoPlLDNJePNlrGGaybAJkd0zKRnOVXOgizSqPYMNYkzA==, + integrity: sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: "@babel/core": 7.22.8 - "@babel/helper-module-transforms": 7.22.5 "@babel/helper-plugin-utils": 7.20.2 - "@babel/helper-simple-access": 7.22.5 - transitivePeerDependencies: - - supports-color dev: true - /@babel/plugin-transform-modules-commonjs@7.21.2(@babel/core@7.23.2): + /@babel/plugin-syntax-typescript@7.20.0(@babel/core@7.23.2): resolution: { - integrity: sha512-Cln+Yy04Gxua7iPdj6nOV96smLGjpElir5YwzF0LBPKoPlLDNJePNlrGGaybAJkd0zKRnOVXOgizSqPYMNYkzA==, + integrity: sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: "@babel/core": 7.23.2 - "@babel/helper-module-transforms": 7.22.5 "@babel/helper-plugin-utils": 7.20.2 - "@babel/helper-simple-access": 7.22.5 - transitivePeerDependencies: - - supports-color dev: true - /@babel/plugin-transform-modules-commonjs@7.23.0(@babel/core@7.20.5): + /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.23.6): resolution: { - integrity: sha512-32Xzss14/UVc7k9g775yMIvkVK8xwKE0DPdP5JTapr3+Z9w4tzeOuLNY6BXDQR6BdnzIlXnCGAzsk/ICHBLVWQ==, + integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==, } engines: { node: ">=6.9.0" } peerDependencies: - "@babel/core": ^7.0.0-0 + "@babel/core": ^7.0.0 dependencies: - "@babel/core": 7.20.5 - "@babel/helper-module-transforms": 7.23.0(@babel/core@7.20.5) + "@babel/core": 7.23.6 + "@babel/helper-create-regexp-features-plugin": 7.21.4(@babel/core@7.23.6) "@babel/helper-plugin-utils": 7.22.5 - "@babel/helper-simple-access": 7.22.5 dev: true - /@babel/plugin-transform-modules-systemjs@7.20.11(@babel/core@7.22.8): + /@babel/plugin-transform-arrow-functions@7.22.5(@babel/core@7.23.6): resolution: { - integrity: sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==, + integrity: sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.8 - "@babel/helper-hoist-variables": 7.22.5 - "@babel/helper-module-transforms": 7.22.5 - "@babel/helper-plugin-utils": 7.20.2 - "@babel/helper-validator-identifier": 7.22.20 - transitivePeerDependencies: - - supports-color + "@babel/core": 7.23.6 + "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-modules-systemjs@7.23.0(@babel/core@7.20.5): + /@babel/plugin-transform-async-generator-functions@7.23.2(@babel/core@7.23.6): resolution: { - integrity: sha512-qBej6ctXZD2f+DhlOC9yO47yEYgUh5CZNz/aBoH4j/3NOlRfJXJbY7xDQCqQVf9KbrqGzIWER1f23doHGrIHFg==, + integrity: sha512-BBYVGxbDVHfoeXbOwcagAkOQAm9NxoTdMGfTqghu1GrvadSaw6iW3Je6IcL5PNOw8VwjxqBECXy50/iCQSY/lQ==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.5 - "@babel/helper-hoist-variables": 7.22.5 - "@babel/helper-module-transforms": 7.23.0(@babel/core@7.20.5) + "@babel/core": 7.23.6 + "@babel/helper-environment-visitor": 7.22.20 "@babel/helper-plugin-utils": 7.22.5 - "@babel/helper-validator-identifier": 7.22.20 + "@babel/helper-remap-async-to-generator": 7.22.20(@babel/core@7.23.6) + "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.23.6) dev: true - /@babel/plugin-transform-modules-umd@7.18.6(@babel/core@7.22.8): + /@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.23.6): resolution: { - integrity: sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==, + integrity: sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.8 - "@babel/helper-module-transforms": 7.22.5 - "@babel/helper-plugin-utils": 7.20.2 - transitivePeerDependencies: - - supports-color + "@babel/core": 7.23.6 + "@babel/helper-module-imports": 7.22.5 + "@babel/helper-plugin-utils": 7.22.5 + "@babel/helper-remap-async-to-generator": 7.22.20(@babel/core@7.23.6) dev: true - /@babel/plugin-transform-modules-umd@7.22.5(@babel/core@7.20.5): + /@babel/plugin-transform-block-scoped-functions@7.22.5(@babel/core@7.23.6): resolution: { - integrity: sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==, + integrity: sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.5 - "@babel/helper-module-transforms": 7.22.5 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 - transitivePeerDependencies: - - supports-color dev: true - /@babel/plugin-transform-named-capturing-groups-regex@7.20.5(@babel/core@7.22.8): + /@babel/plugin-transform-block-scoping@7.23.0(@babel/core@7.23.6): resolution: { - integrity: sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==, + integrity: sha512-cOsrbmIOXmf+5YbL99/S49Y3j46k/T16b9ml8bm9lP6N9US5iQ2yBK7gpui1pg0V/WMcXdkfKbTb7HXq9u+v4g==, } engines: { node: ">=6.9.0" } peerDependencies: - "@babel/core": ^7.0.0 + "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.8 - "@babel/helper-create-regexp-features-plugin": 7.21.4(@babel/core@7.22.8) - "@babel/helper-plugin-utils": 7.20.2 + "@babel/core": 7.23.6 + "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.20.5): + /@babel/plugin-transform-class-properties@7.22.5(@babel/core@7.23.6): resolution: { - integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==, + integrity: sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==, } engines: { node: ">=6.9.0" } peerDependencies: - "@babel/core": ^7.0.0 + "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.5 - "@babel/helper-create-regexp-features-plugin": 7.22.15(@babel/core@7.20.5) + "@babel/core": 7.23.6 + "@babel/helper-create-class-features-plugin": 7.22.15(@babel/core@7.23.6) "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-new-target@7.18.6(@babel/core@7.22.8): + /@babel/plugin-transform-class-static-block@7.22.11(@babel/core@7.23.6): resolution: { - integrity: sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==, + integrity: sha512-GMM8gGmqI7guS/llMFk1bJDkKfn3v3C4KHK9Yg1ey5qcHcOlKb0QvcMrgzvxo+T03/4szNh5lghY+fEC98Kq9g==, } engines: { node: ">=6.9.0" } peerDependencies: - "@babel/core": ^7.0.0-0 + "@babel/core": ^7.12.0 dependencies: - "@babel/core": 7.22.8 - "@babel/helper-plugin-utils": 7.20.2 + "@babel/core": 7.23.6 + "@babel/helper-create-class-features-plugin": 7.22.15(@babel/core@7.23.6) + "@babel/helper-plugin-utils": 7.22.5 + "@babel/plugin-syntax-class-static-block": 7.14.5(@babel/core@7.23.6) dev: true - /@babel/plugin-transform-new-target@7.22.5(@babel/core@7.20.5): + /@babel/plugin-transform-classes@7.22.15(@babel/core@7.23.6): resolution: { - integrity: sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==, + integrity: sha512-VbbC3PGjBdE0wAWDdHM9G8Gm977pnYI0XpqMd6LrKISj8/DJXEsWqgRuTYaNE9Bv0JGhTZUzHDlMk18IpOuoqw==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.5 + "@babel/core": 7.23.6 + "@babel/helper-annotate-as-pure": 7.22.5 + "@babel/helper-compilation-targets": 7.22.15 + "@babel/helper-environment-visitor": 7.22.5 + "@babel/helper-function-name": 7.22.5 + "@babel/helper-optimise-call-expression": 7.22.5 "@babel/helper-plugin-utils": 7.22.5 + "@babel/helper-replace-supers": 7.22.20(@babel/core@7.23.6) + "@babel/helper-split-export-declaration": 7.22.6 + globals: 11.12.0 dev: true - /@babel/plugin-transform-nullish-coalescing-operator@7.22.11(@babel/core@7.20.5): + /@babel/plugin-transform-computed-properties@7.22.5(@babel/core@7.23.6): resolution: { - integrity: sha512-YZWOw4HxXrotb5xsjMJUDlLgcDXSfO9eCmdl1bgW4+/lAGdkjaEvOnQ4p5WKKdUgSzO39dgPl0pTnfxm0OAXcg==, + integrity: sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.5 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 - "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.20.5) + "@babel/template": 7.22.5 dev: true - /@babel/plugin-transform-numeric-separator@7.22.11(@babel/core@7.20.5): + /@babel/plugin-transform-destructuring@7.23.0(@babel/core@7.23.6): resolution: { - integrity: sha512-3dzU4QGPsILdJbASKhF/V2TVP+gJya1PsueQCxIPCEcerqF21oEcrob4mzjsp2Py/1nLfF5m+xYNMDpmA8vffg==, + integrity: sha512-vaMdgNXFkYrB+8lbgniSYWHsgqK5gjaMNcc84bMIOMRLH0L9AqYq3hwMdvnyqj1OPqea8UtjPEuS/DCenah1wg==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.5 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 - "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.20.5) dev: true - /@babel/plugin-transform-object-rest-spread@7.22.15(@babel/core@7.20.5): + /@babel/plugin-transform-dotall-regex@7.22.5(@babel/core@7.23.6): resolution: { - integrity: sha512-fEB+I1+gAmfAyxZcX1+ZUwLeAuuf8VIg67CTznZE0MqVFumWkh8xWtn58I4dxdVf080wn7gzWoF8vndOViJe9Q==, + integrity: sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/compat-data": 7.23.2 - "@babel/core": 7.20.5 - "@babel/helper-compilation-targets": 7.22.15 + "@babel/core": 7.23.6 + "@babel/helper-create-regexp-features-plugin": 7.22.15(@babel/core@7.23.6) "@babel/helper-plugin-utils": 7.22.5 - "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.20.5) - "@babel/plugin-transform-parameters": 7.22.15(@babel/core@7.20.5) dev: true - /@babel/plugin-transform-object-super@7.18.6(@babel/core@7.22.8): + /@babel/plugin-transform-duplicate-keys@7.22.5(@babel/core@7.23.6): resolution: { - integrity: sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==, + integrity: sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.8 - "@babel/helper-plugin-utils": 7.20.2 - "@babel/helper-replace-supers": 7.20.7 - transitivePeerDependencies: - - supports-color + "@babel/core": 7.23.6 + "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-object-super@7.22.5(@babel/core@7.20.5): + /@babel/plugin-transform-dynamic-import@7.22.11(@babel/core@7.23.6): resolution: { - integrity: sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==, + integrity: sha512-g/21plo58sfteWjaO0ZNVb+uEOkJNjAaHhbejrnBmu011l/eNDScmkbjCC3l4FKb10ViaGU4aOkFznSu2zRHgA==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.5 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 - "@babel/helper-replace-supers": 7.22.20(@babel/core@7.20.5) + "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.23.6) dev: true - /@babel/plugin-transform-optional-catch-binding@7.22.11(@babel/core@7.20.5): + /@babel/plugin-transform-exponentiation-operator@7.22.5(@babel/core@7.23.6): resolution: { - integrity: sha512-rli0WxesXUeCJnMYhzAglEjLWVDF6ahb45HuprcmQuLidBJFWjNnOzssk2kuc6e33FlLaiZhG/kUIzUMWdBKaQ==, + integrity: sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.5 + "@babel/core": 7.23.6 + "@babel/helper-builder-binary-assignment-operator-visitor": 7.22.15 "@babel/helper-plugin-utils": 7.22.5 - "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.20.5) dev: true - /@babel/plugin-transform-optional-chaining@7.23.0(@babel/core@7.20.5): + /@babel/plugin-transform-export-namespace-from@7.22.11(@babel/core@7.23.6): resolution: { - integrity: sha512-sBBGXbLJjxTzLBF5rFWaikMnOGOk/BmK6vVByIdEggZ7Vn6CvWXZyRkkLFK6WE0IF8jSliyOkUN6SScFgzCM0g==, + integrity: sha512-xa7aad7q7OiT8oNZ1mU7NrISjlSkVdMbNxn9IuLZyL9AJEhs1Apba3I+u5riX1dIkdptP5EKDG5XDPByWxtehw==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.5 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 - "@babel/helper-skip-transparent-expression-wrappers": 7.22.5 - "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.20.5) + "@babel/plugin-syntax-export-namespace-from": 7.8.3(@babel/core@7.23.6) dev: true - /@babel/plugin-transform-parameters@7.21.3(@babel/core@7.22.8): + /@babel/plugin-transform-flow-strip-types@7.19.0(@babel/core@7.23.2): resolution: { - integrity: sha512-Wxc+TvppQG9xWFYatvCGPvZ6+SIUxQ2ZdiBP+PHYMIjnPXD+uThCshaz4NZOnODAtBjjcVQQ/3OKs9LW28purQ==, + integrity: sha512-sgeMlNaQVbCSpgLSKP4ZZKfsJVnFnNQlUSk6gPYzR/q7tzCgQF2t8RBKAP6cKJeZdveei7Q7Jm527xepI8lNLg==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.8 + "@babel/core": 7.23.2 "@babel/helper-plugin-utils": 7.20.2 + "@babel/plugin-syntax-flow": 7.18.6(@babel/core@7.23.2) dev: true - /@babel/plugin-transform-parameters@7.22.15(@babel/core@7.20.5): + /@babel/plugin-transform-for-of@7.22.15(@babel/core@7.23.6): resolution: { - integrity: sha512-hjk7qKIqhyzhhUvRT683TYQOFa/4cQKwQy7ALvTpODswN40MljzNDa0YldevS6tGbxwaEKVn502JmY0dP7qEtQ==, + integrity: sha512-me6VGeHsx30+xh9fbDLLPi0J1HzmeIIyenoOQHuw2D4m2SAU3NrspX5XxJLBpqn5yrLzrlw2Iy3RA//Bx27iOA==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.5 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-private-methods@7.22.5(@babel/core@7.20.5): + /@babel/plugin-transform-function-name@7.22.5(@babel/core@7.23.6): resolution: { - integrity: sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==, + integrity: sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.5 - "@babel/helper-create-class-features-plugin": 7.22.15(@babel/core@7.20.5) + "@babel/core": 7.23.6 + "@babel/helper-compilation-targets": 7.22.15 + "@babel/helper-function-name": 7.22.5 "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-private-property-in-object@7.22.11(@babel/core@7.20.5): + /@babel/plugin-transform-json-strings@7.22.11(@babel/core@7.23.6): resolution: { - integrity: sha512-sSCbqZDBKHetvjSwpyWzhuHkmW5RummxJBVbYLkGkaiTOWGxml7SXt0iWa03bzxFIx7wOj3g/ILRd0RcJKBeSQ==, + integrity: sha512-CxT5tCqpA9/jXFlme9xIBCc5RPtdDq3JpkkhgHQqtDdiTnTI0jtZ0QzXhr5DILeYifDPp2wvY2ad+7+hLMW5Pw==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.5 - "@babel/helper-annotate-as-pure": 7.22.5 - "@babel/helper-create-class-features-plugin": 7.22.15(@babel/core@7.20.5) + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 - "@babel/plugin-syntax-private-property-in-object": 7.14.5(@babel/core@7.20.5) + "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.23.6) dev: true - /@babel/plugin-transform-property-literals@7.18.6(@babel/core@7.22.8): + /@babel/plugin-transform-literals@7.22.5(@babel/core@7.23.6): resolution: { - integrity: sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==, + integrity: sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.22.8 - "@babel/helper-plugin-utils": 7.20.2 + dependencies: + "@babel/core": 7.23.6 + "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-property-literals@7.22.5(@babel/core@7.20.5): + /@babel/plugin-transform-logical-assignment-operators@7.22.11(@babel/core@7.23.6): resolution: { - integrity: sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==, + integrity: sha512-qQwRTP4+6xFCDV5k7gZBF3C31K34ut0tbEcTKxlX/0KXxm9GLcO14p570aWxFvVzx6QAfPgq7gaeIHXJC8LswQ==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.5 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 + "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.23.6) dev: true - /@babel/plugin-transform-react-display-name@7.18.6(@babel/core@7.20.5): + /@babel/plugin-transform-member-expression-literals@7.22.5(@babel/core@7.23.6): resolution: { - integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==, + integrity: sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.5 - "@babel/helper-plugin-utils": 7.20.2 + "@babel/core": 7.23.6 + "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-react-display-name@7.18.6(@babel/core@7.22.8): + /@babel/plugin-transform-modules-amd@7.23.0(@babel/core@7.23.6): resolution: { - integrity: sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==, + integrity: sha512-xWT5gefv2HGSm4QHtgc1sYPbseOyf+FFDo2JbpE25GWl5BqTGO9IMwTYJRoIdjsF85GE+VegHxSCUt5EvoYTAw==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.8 - "@babel/helper-plugin-utils": 7.20.2 + "@babel/core": 7.23.6 + "@babel/helper-module-transforms": 7.23.0(@babel/core@7.23.6) + "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-react-jsx-development@7.18.6(@babel/core@7.20.5): + /@babel/plugin-transform-modules-commonjs@7.21.2(@babel/core@7.23.2): resolution: { - integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==, + integrity: sha512-Cln+Yy04Gxua7iPdj6nOV96smLGjpElir5YwzF0LBPKoPlLDNJePNlrGGaybAJkd0zKRnOVXOgizSqPYMNYkzA==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.5 - "@babel/plugin-transform-react-jsx": 7.19.0(@babel/core@7.20.5) + "@babel/core": 7.23.2 + "@babel/helper-module-transforms": 7.22.5 + "@babel/helper-plugin-utils": 7.20.2 + "@babel/helper-simple-access": 7.22.5 + transitivePeerDependencies: + - supports-color dev: true - /@babel/plugin-transform-react-jsx-development@7.18.6(@babel/core@7.22.8): + /@babel/plugin-transform-modules-commonjs@7.23.0(@babel/core@7.23.6): resolution: { - integrity: sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==, + integrity: sha512-32Xzss14/UVc7k9g775yMIvkVK8xwKE0DPdP5JTapr3+Z9w4tzeOuLNY6BXDQR6BdnzIlXnCGAzsk/ICHBLVWQ==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.8 - "@babel/plugin-transform-react-jsx": 7.19.0(@babel/core@7.22.8) + "@babel/core": 7.23.6 + "@babel/helper-module-transforms": 7.23.0(@babel/core@7.23.6) + "@babel/helper-plugin-utils": 7.22.5 + "@babel/helper-simple-access": 7.22.5 dev: true - /@babel/plugin-transform-react-jsx-self@7.18.6(@babel/core@7.22.8): + /@babel/plugin-transform-modules-systemjs@7.23.0(@babel/core@7.23.6): resolution: { - integrity: sha512-A0LQGx4+4Jv7u/tWzoJF7alZwnBDQd6cGLh9P+Ttk4dpiL+J5p7NSNv/9tlEFFJDq3kjxOavWmbm6t0Gk+A3Ig==, + integrity: sha512-qBej6ctXZD2f+DhlOC9yO47yEYgUh5CZNz/aBoH4j/3NOlRfJXJbY7xDQCqQVf9KbrqGzIWER1f23doHGrIHFg==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.8 - "@babel/helper-plugin-utils": 7.20.2 + "@babel/core": 7.23.6 + "@babel/helper-hoist-variables": 7.22.5 + "@babel/helper-module-transforms": 7.23.0(@babel/core@7.23.6) + "@babel/helper-plugin-utils": 7.22.5 + "@babel/helper-validator-identifier": 7.22.20 dev: true - /@babel/plugin-transform-react-jsx-source@7.19.6(@babel/core@7.22.8): + /@babel/plugin-transform-modules-umd@7.22.5(@babel/core@7.23.6): resolution: { - integrity: sha512-RpAi004QyMNisst/pvSanoRdJ4q+jMCWyk9zdw/CyLB9j8RXEahodR6l2GyttDRyEVWZtbN+TpLiHJ3t34LbsQ==, + integrity: sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.8 - "@babel/helper-plugin-utils": 7.20.2 + "@babel/core": 7.23.6 + "@babel/helper-module-transforms": 7.22.5 + "@babel/helper-plugin-utils": 7.22.5 + transitivePeerDependencies: + - supports-color dev: true - /@babel/plugin-transform-react-jsx@7.19.0(@babel/core@7.20.5): + /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.23.6): resolution: { - integrity: sha512-UVEvX3tXie3Szm3emi1+G63jyw1w5IcMY0FSKM+CRnKRI5Mr1YbCNgsSTwoTwKphQEG9P+QqmuRFneJPZuHNhg==, + integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==, } engines: { node: ">=6.9.0" } peerDependencies: - "@babel/core": ^7.0.0-0 + "@babel/core": ^7.0.0 dependencies: - "@babel/core": 7.20.5 - "@babel/helper-annotate-as-pure": 7.18.6 - "@babel/helper-module-imports": 7.18.6 - "@babel/helper-plugin-utils": 7.20.2 - "@babel/plugin-syntax-jsx": 7.18.6(@babel/core@7.20.5) - "@babel/types": 7.23.0 + "@babel/core": 7.23.6 + "@babel/helper-create-regexp-features-plugin": 7.22.15(@babel/core@7.23.6) + "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-react-jsx@7.19.0(@babel/core@7.22.8): + /@babel/plugin-transform-new-target@7.22.5(@babel/core@7.23.6): resolution: { - integrity: sha512-UVEvX3tXie3Szm3emi1+G63jyw1w5IcMY0FSKM+CRnKRI5Mr1YbCNgsSTwoTwKphQEG9P+QqmuRFneJPZuHNhg==, + integrity: sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.8 - "@babel/helper-annotate-as-pure": 7.18.6 - "@babel/helper-module-imports": 7.18.6 - "@babel/helper-plugin-utils": 7.20.2 - "@babel/plugin-syntax-jsx": 7.18.6(@babel/core@7.22.8) - "@babel/types": 7.23.0 + "@babel/core": 7.23.6 + "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.20.5): + /@babel/plugin-transform-nullish-coalescing-operator@7.22.11(@babel/core@7.23.6): resolution: { - integrity: sha512-oKckg2eZFa8771O/5vi7XeTvmM6+O9cxZu+kanTU7tD4sin5nO/G8jGJhq8Hvt2Z0kUoEDRayuZLaUlYl8QuGA==, + integrity: sha512-YZWOw4HxXrotb5xsjMJUDlLgcDXSfO9eCmdl1bgW4+/lAGdkjaEvOnQ4p5WKKdUgSzO39dgPl0pTnfxm0OAXcg==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.5 - "@babel/helper-annotate-as-pure": 7.22.5 - "@babel/helper-module-imports": 7.22.15 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 - "@babel/plugin-syntax-jsx": 7.22.5(@babel/core@7.20.5) - "@babel/types": 7.23.0 + "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.23.6) dev: true - /@babel/plugin-transform-react-pure-annotations@7.18.6(@babel/core@7.20.5): + /@babel/plugin-transform-numeric-separator@7.22.11(@babel/core@7.23.6): resolution: { - integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==, + integrity: sha512-3dzU4QGPsILdJbASKhF/V2TVP+gJya1PsueQCxIPCEcerqF21oEcrob4mzjsp2Py/1nLfF5m+xYNMDpmA8vffg==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.5 - "@babel/helper-annotate-as-pure": 7.18.6 - "@babel/helper-plugin-utils": 7.20.2 + "@babel/core": 7.23.6 + "@babel/helper-plugin-utils": 7.22.5 + "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.23.6) dev: true - /@babel/plugin-transform-react-pure-annotations@7.18.6(@babel/core@7.22.8): + /@babel/plugin-transform-object-rest-spread@7.22.15(@babel/core@7.23.6): resolution: { - integrity: sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==, + integrity: sha512-fEB+I1+gAmfAyxZcX1+ZUwLeAuuf8VIg67CTznZE0MqVFumWkh8xWtn58I4dxdVf080wn7gzWoF8vndOViJe9Q==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.8 - "@babel/helper-annotate-as-pure": 7.18.6 - "@babel/helper-plugin-utils": 7.20.2 + "@babel/compat-data": 7.23.2 + "@babel/core": 7.23.6 + "@babel/helper-compilation-targets": 7.22.15 + "@babel/helper-plugin-utils": 7.22.5 + "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.23.6) + "@babel/plugin-transform-parameters": 7.22.15(@babel/core@7.23.6) dev: true - /@babel/plugin-transform-regenerator@7.20.5(@babel/core@7.22.8): + /@babel/plugin-transform-object-super@7.22.5(@babel/core@7.23.6): resolution: { - integrity: sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ==, + integrity: sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.8 - "@babel/helper-plugin-utils": 7.20.2 - regenerator-transform: 0.15.1 + "@babel/core": 7.23.6 + "@babel/helper-plugin-utils": 7.22.5 + "@babel/helper-replace-supers": 7.22.20(@babel/core@7.23.6) dev: true - /@babel/plugin-transform-regenerator@7.22.10(@babel/core@7.20.5): + /@babel/plugin-transform-optional-catch-binding@7.22.11(@babel/core@7.23.6): resolution: { - integrity: sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw==, + integrity: sha512-rli0WxesXUeCJnMYhzAglEjLWVDF6ahb45HuprcmQuLidBJFWjNnOzssk2kuc6e33FlLaiZhG/kUIzUMWdBKaQ==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.5 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 - regenerator-transform: 0.15.2 + "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.23.6) dev: true - /@babel/plugin-transform-reserved-words@7.18.6(@babel/core@7.22.8): + /@babel/plugin-transform-optional-chaining@7.23.0(@babel/core@7.23.6): resolution: { - integrity: sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==, + integrity: sha512-sBBGXbLJjxTzLBF5rFWaikMnOGOk/BmK6vVByIdEggZ7Vn6CvWXZyRkkLFK6WE0IF8jSliyOkUN6SScFgzCM0g==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.8 - "@babel/helper-plugin-utils": 7.20.2 + "@babel/core": 7.23.6 + "@babel/helper-plugin-utils": 7.22.5 + "@babel/helper-skip-transparent-expression-wrappers": 7.22.5 + "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.23.6) dev: true - /@babel/plugin-transform-reserved-words@7.22.5(@babel/core@7.20.5): + /@babel/plugin-transform-parameters@7.22.15(@babel/core@7.23.6): resolution: { - integrity: sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==, + integrity: sha512-hjk7qKIqhyzhhUvRT683TYQOFa/4cQKwQy7ALvTpODswN40MljzNDa0YldevS6tGbxwaEKVn502JmY0dP7qEtQ==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.5 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-runtime@7.19.6(@babel/core@7.22.8): + /@babel/plugin-transform-private-methods@7.22.5(@babel/core@7.23.6): resolution: { - integrity: sha512-PRH37lz4JU156lYFW1p8OxE5i7d6Sl/zV58ooyr+q1J1lnQPyg5tIiXlIwNVhJaY4W3TmOtdc8jqdXQcB1v5Yw==, + integrity: sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.8 - "@babel/helper-module-imports": 7.22.5 - "@babel/helper-plugin-utils": 7.20.2 - babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.22.8) - babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.22.8) - babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.22.8) - semver: 6.3.1 - transitivePeerDependencies: - - supports-color + "@babel/core": 7.23.6 + "@babel/helper-create-class-features-plugin": 7.22.15(@babel/core@7.23.6) + "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-shorthand-properties@7.18.6(@babel/core@7.22.8): + /@babel/plugin-transform-private-property-in-object@7.22.11(@babel/core@7.23.6): resolution: { - integrity: sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==, + integrity: sha512-sSCbqZDBKHetvjSwpyWzhuHkmW5RummxJBVbYLkGkaiTOWGxml7SXt0iWa03bzxFIx7wOj3g/ILRd0RcJKBeSQ==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.8 - "@babel/helper-plugin-utils": 7.20.2 + "@babel/core": 7.23.6 + "@babel/helper-annotate-as-pure": 7.22.5 + "@babel/helper-create-class-features-plugin": 7.22.15(@babel/core@7.23.6) + "@babel/helper-plugin-utils": 7.22.5 + "@babel/plugin-syntax-private-property-in-object": 7.14.5(@babel/core@7.23.6) dev: true - /@babel/plugin-transform-shorthand-properties@7.22.5(@babel/core@7.20.5): + /@babel/plugin-transform-property-literals@7.22.5(@babel/core@7.23.6): resolution: { - integrity: sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==, + integrity: sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.5 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-spread@7.20.7(@babel/core@7.22.8): + /@babel/plugin-transform-react-jsx-self@7.18.6(@babel/core@7.22.8): resolution: { - integrity: sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==, + integrity: sha512-A0LQGx4+4Jv7u/tWzoJF7alZwnBDQd6cGLh9P+Ttk4dpiL+J5p7NSNv/9tlEFFJDq3kjxOavWmbm6t0Gk+A3Ig==, } engines: { node: ">=6.9.0" } peerDependencies: @@ -3340,116 +2144,112 @@ packages: dependencies: "@babel/core": 7.22.8 "@babel/helper-plugin-utils": 7.20.2 - "@babel/helper-skip-transparent-expression-wrappers": 7.20.0 dev: true - /@babel/plugin-transform-spread@7.22.5(@babel/core@7.20.5): + /@babel/plugin-transform-react-jsx-source@7.19.6(@babel/core@7.22.8): resolution: { - integrity: sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==, + integrity: sha512-RpAi004QyMNisst/pvSanoRdJ4q+jMCWyk9zdw/CyLB9j8RXEahodR6l2GyttDRyEVWZtbN+TpLiHJ3t34LbsQ==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.5 - "@babel/helper-plugin-utils": 7.22.5 - "@babel/helper-skip-transparent-expression-wrappers": 7.22.5 + "@babel/core": 7.22.8 + "@babel/helper-plugin-utils": 7.20.2 dev: true - /@babel/plugin-transform-sticky-regex@7.18.6(@babel/core@7.22.8): + /@babel/plugin-transform-regenerator@7.22.10(@babel/core@7.23.6): resolution: { - integrity: sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==, + integrity: sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.8 - "@babel/helper-plugin-utils": 7.20.2 + "@babel/core": 7.23.6 + "@babel/helper-plugin-utils": 7.22.5 + regenerator-transform: 0.15.2 dev: true - /@babel/plugin-transform-sticky-regex@7.22.5(@babel/core@7.20.5): + /@babel/plugin-transform-reserved-words@7.22.5(@babel/core@7.23.6): resolution: { - integrity: sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==, + integrity: sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.5 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-template-literals@7.18.9(@babel/core@7.22.8): + /@babel/plugin-transform-shorthand-properties@7.22.5(@babel/core@7.23.6): resolution: { - integrity: sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==, + integrity: sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.8 - "@babel/helper-plugin-utils": 7.20.2 + "@babel/core": 7.23.6 + "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-template-literals@7.22.5(@babel/core@7.20.5): + /@babel/plugin-transform-spread@7.22.5(@babel/core@7.23.6): resolution: { - integrity: sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==, + integrity: sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.5 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 + "@babel/helper-skip-transparent-expression-wrappers": 7.22.5 dev: true - /@babel/plugin-transform-typeof-symbol@7.18.9(@babel/core@7.22.8): + /@babel/plugin-transform-sticky-regex@7.22.5(@babel/core@7.23.6): resolution: { - integrity: sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==, + integrity: sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.8 - "@babel/helper-plugin-utils": 7.20.2 + "@babel/core": 7.23.6 + "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-typeof-symbol@7.22.5(@babel/core@7.20.5): + /@babel/plugin-transform-template-literals@7.22.5(@babel/core@7.23.6): resolution: { - integrity: sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==, + integrity: sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.5 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-typescript@7.20.2(@babel/core@7.22.8): + /@babel/plugin-transform-typeof-symbol@7.22.5(@babel/core@7.23.6): resolution: { - integrity: sha512-jvS+ngBfrnTUBfOQq8NfGnSbF9BrqlR6hjJ2yVxMkmO5nL/cdifNbI30EfjRlN4g5wYWNnMPyj5Sa6R1pbLeag==, + integrity: sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==, } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.22.8 - "@babel/helper-create-class-features-plugin": 7.21.4(@babel/core@7.22.8) - "@babel/helper-plugin-utils": 7.20.2 - "@babel/plugin-syntax-typescript": 7.20.0(@babel/core@7.22.8) - transitivePeerDependencies: - - supports-color + "@babel/core": 7.23.6 + "@babel/helper-plugin-utils": 7.22.5 dev: true /@babel/plugin-transform-typescript@7.20.2(@babel/core@7.23.2): @@ -3469,20 +2269,7 @@ packages: - supports-color dev: true - /@babel/plugin-transform-unicode-escapes@7.18.10(@babel/core@7.22.8): - resolution: - { - integrity: sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.22.8 - "@babel/helper-plugin-utils": 7.20.2 - dev: true - - /@babel/plugin-transform-unicode-escapes@7.22.10(@babel/core@7.20.5): + /@babel/plugin-transform-unicode-escapes@7.22.10(@babel/core@7.23.6): resolution: { integrity: sha512-lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg==, @@ -3491,11 +2278,11 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.5 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-unicode-property-regex@7.22.5(@babel/core@7.20.5): + /@babel/plugin-transform-unicode-property-regex@7.22.5(@babel/core@7.23.6): resolution: { integrity: sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==, @@ -3504,26 +2291,12 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.5 - "@babel/helper-create-regexp-features-plugin": 7.22.15(@babel/core@7.20.5) + "@babel/core": 7.23.6 + "@babel/helper-create-regexp-features-plugin": 7.22.15(@babel/core@7.23.6) "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-unicode-regex@7.18.6(@babel/core@7.22.8): - resolution: - { - integrity: sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.22.8 - "@babel/helper-create-regexp-features-plugin": 7.21.4(@babel/core@7.22.8) - "@babel/helper-plugin-utils": 7.20.2 - dev: true - - /@babel/plugin-transform-unicode-regex@7.22.5(@babel/core@7.20.5): + /@babel/plugin-transform-unicode-regex@7.22.5(@babel/core@7.23.6): resolution: { integrity: sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==, @@ -3532,12 +2305,12 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.20.5 - "@babel/helper-create-regexp-features-plugin": 7.22.15(@babel/core@7.20.5) + "@babel/core": 7.23.6 + "@babel/helper-create-regexp-features-plugin": 7.22.15(@babel/core@7.23.6) "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/plugin-transform-unicode-sets-regex@7.22.5(@babel/core@7.20.5): + /@babel/plugin-transform-unicode-sets-regex@7.22.5(@babel/core@7.23.6): resolution: { integrity: sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==, @@ -3546,101 +2319,12 @@ packages: peerDependencies: "@babel/core": ^7.0.0 dependencies: - "@babel/core": 7.20.5 - "@babel/helper-create-regexp-features-plugin": 7.22.15(@babel/core@7.20.5) + "@babel/core": 7.23.6 + "@babel/helper-create-regexp-features-plugin": 7.22.15(@babel/core@7.23.6) "@babel/helper-plugin-utils": 7.22.5 dev: true - /@babel/preset-env@7.21.4(@babel/core@7.22.8): - resolution: - { - integrity: sha512-2W57zHs2yDLm6GD5ZpvNn71lZ0B/iypSdIeq25OurDKji6AdzV07qp4s3n1/x5BqtiGaTrPN3nerlSCaC5qNTw==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/compat-data": 7.22.6 - "@babel/core": 7.22.8 - "@babel/helper-compilation-targets": 7.22.6(@babel/core@7.22.8) - "@babel/helper-plugin-utils": 7.20.2 - "@babel/helper-validator-option": 7.22.5 - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": 7.18.6(@babel/core@7.22.8) - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": 7.20.7(@babel/core@7.22.8) - "@babel/plugin-proposal-async-generator-functions": 7.20.7(@babel/core@7.22.8) - "@babel/plugin-proposal-class-properties": 7.18.6(@babel/core@7.22.8) - "@babel/plugin-proposal-class-static-block": 7.21.0(@babel/core@7.22.8) - "@babel/plugin-proposal-dynamic-import": 7.18.6(@babel/core@7.22.8) - "@babel/plugin-proposal-export-namespace-from": 7.18.9(@babel/core@7.22.8) - "@babel/plugin-proposal-json-strings": 7.18.6(@babel/core@7.22.8) - "@babel/plugin-proposal-logical-assignment-operators": 7.20.7(@babel/core@7.22.8) - "@babel/plugin-proposal-nullish-coalescing-operator": 7.18.6(@babel/core@7.22.8) - "@babel/plugin-proposal-numeric-separator": 7.18.6(@babel/core@7.22.8) - "@babel/plugin-proposal-object-rest-spread": 7.20.7(@babel/core@7.22.8) - "@babel/plugin-proposal-optional-catch-binding": 7.18.6(@babel/core@7.22.8) - "@babel/plugin-proposal-optional-chaining": 7.21.0(@babel/core@7.22.8) - "@babel/plugin-proposal-private-methods": 7.18.6(@babel/core@7.22.8) - "@babel/plugin-proposal-private-property-in-object": 7.21.0(@babel/core@7.22.8) - "@babel/plugin-proposal-unicode-property-regex": 7.18.6(@babel/core@7.22.8) - "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.22.8) - "@babel/plugin-syntax-class-properties": 7.12.13(@babel/core@7.22.8) - "@babel/plugin-syntax-class-static-block": 7.14.5(@babel/core@7.22.8) - "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.22.8) - "@babel/plugin-syntax-export-namespace-from": 7.8.3(@babel/core@7.22.8) - "@babel/plugin-syntax-import-assertions": 7.20.0(@babel/core@7.22.8) - "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.22.8) - "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.22.8) - "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.22.8) - "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.22.8) - "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.22.8) - "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.22.8) - "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.22.8) - "@babel/plugin-syntax-private-property-in-object": 7.14.5(@babel/core@7.22.8) - "@babel/plugin-syntax-top-level-await": 7.14.5(@babel/core@7.22.8) - "@babel/plugin-transform-arrow-functions": 7.20.7(@babel/core@7.22.8) - "@babel/plugin-transform-async-to-generator": 7.20.7(@babel/core@7.22.8) - "@babel/plugin-transform-block-scoped-functions": 7.18.6(@babel/core@7.22.8) - "@babel/plugin-transform-block-scoping": 7.21.0(@babel/core@7.22.8) - "@babel/plugin-transform-classes": 7.21.0(@babel/core@7.22.8) - "@babel/plugin-transform-computed-properties": 7.20.7(@babel/core@7.22.8) - "@babel/plugin-transform-destructuring": 7.21.3(@babel/core@7.22.8) - "@babel/plugin-transform-dotall-regex": 7.18.6(@babel/core@7.22.8) - "@babel/plugin-transform-duplicate-keys": 7.18.9(@babel/core@7.22.8) - "@babel/plugin-transform-exponentiation-operator": 7.18.6(@babel/core@7.22.8) - "@babel/plugin-transform-for-of": 7.21.0(@babel/core@7.22.8) - "@babel/plugin-transform-function-name": 7.18.9(@babel/core@7.22.8) - "@babel/plugin-transform-literals": 7.18.9(@babel/core@7.22.8) - "@babel/plugin-transform-member-expression-literals": 7.18.6(@babel/core@7.22.8) - "@babel/plugin-transform-modules-amd": 7.20.11(@babel/core@7.22.8) - "@babel/plugin-transform-modules-commonjs": 7.21.2(@babel/core@7.22.8) - "@babel/plugin-transform-modules-systemjs": 7.20.11(@babel/core@7.22.8) - "@babel/plugin-transform-modules-umd": 7.18.6(@babel/core@7.22.8) - "@babel/plugin-transform-named-capturing-groups-regex": 7.20.5(@babel/core@7.22.8) - "@babel/plugin-transform-new-target": 7.18.6(@babel/core@7.22.8) - "@babel/plugin-transform-object-super": 7.18.6(@babel/core@7.22.8) - "@babel/plugin-transform-parameters": 7.21.3(@babel/core@7.22.8) - "@babel/plugin-transform-property-literals": 7.18.6(@babel/core@7.22.8) - "@babel/plugin-transform-regenerator": 7.20.5(@babel/core@7.22.8) - "@babel/plugin-transform-reserved-words": 7.18.6(@babel/core@7.22.8) - "@babel/plugin-transform-shorthand-properties": 7.18.6(@babel/core@7.22.8) - "@babel/plugin-transform-spread": 7.20.7(@babel/core@7.22.8) - "@babel/plugin-transform-sticky-regex": 7.18.6(@babel/core@7.22.8) - "@babel/plugin-transform-template-literals": 7.18.9(@babel/core@7.22.8) - "@babel/plugin-transform-typeof-symbol": 7.18.9(@babel/core@7.22.8) - "@babel/plugin-transform-unicode-escapes": 7.18.10(@babel/core@7.22.8) - "@babel/plugin-transform-unicode-regex": 7.18.6(@babel/core@7.22.8) - "@babel/preset-modules": 0.1.5(@babel/core@7.22.8) - "@babel/types": 7.23.0 - babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.22.8) - babel-plugin-polyfill-corejs3: 0.6.0(@babel/core@7.22.8) - babel-plugin-polyfill-regenerator: 0.4.1(@babel/core@7.22.8) - core-js-compat: 3.26.1 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - dev: true - - /@babel/preset-env@7.23.2(@babel/core@7.20.5): + /@babel/preset-env@7.23.2(@babel/core@7.23.2): resolution: { integrity: sha512-BW3gsuDD+rvHL2VO2SjAUNTBe5YrjsTiDyqamPDWY723na3/yPQ65X5oQkFVJZ0o50/2d+svm1rkPoJeR1KxVQ==, @@ -3650,91 +2334,91 @@ packages: "@babel/core": ^7.0.0-0 dependencies: "@babel/compat-data": 7.23.2 - "@babel/core": 7.20.5 + "@babel/core": 7.23.2 "@babel/helper-compilation-targets": 7.22.15 "@babel/helper-plugin-utils": 7.22.5 "@babel/helper-validator-option": 7.22.15 - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": 7.22.15(@babel/core@7.20.5) - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": 7.22.15(@babel/core@7.20.5) - "@babel/plugin-proposal-private-property-in-object": 7.21.0-placeholder-for-preset-env.2(@babel/core@7.20.5) - "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.20.5) - "@babel/plugin-syntax-class-properties": 7.12.13(@babel/core@7.20.5) - "@babel/plugin-syntax-class-static-block": 7.14.5(@babel/core@7.20.5) - "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.20.5) - "@babel/plugin-syntax-export-namespace-from": 7.8.3(@babel/core@7.20.5) - "@babel/plugin-syntax-import-assertions": 7.22.5(@babel/core@7.20.5) - "@babel/plugin-syntax-import-attributes": 7.22.5(@babel/core@7.20.5) - "@babel/plugin-syntax-import-meta": 7.10.4(@babel/core@7.20.5) - "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.20.5) - "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.20.5) - "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.20.5) - "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.20.5) - "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.20.5) - "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.20.5) - "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.20.5) - "@babel/plugin-syntax-private-property-in-object": 7.14.5(@babel/core@7.20.5) - "@babel/plugin-syntax-top-level-await": 7.14.5(@babel/core@7.20.5) - "@babel/plugin-syntax-unicode-sets-regex": 7.18.6(@babel/core@7.20.5) - "@babel/plugin-transform-arrow-functions": 7.22.5(@babel/core@7.20.5) - "@babel/plugin-transform-async-generator-functions": 7.23.2(@babel/core@7.20.5) - "@babel/plugin-transform-async-to-generator": 7.22.5(@babel/core@7.20.5) - "@babel/plugin-transform-block-scoped-functions": 7.22.5(@babel/core@7.20.5) - "@babel/plugin-transform-block-scoping": 7.23.0(@babel/core@7.20.5) - "@babel/plugin-transform-class-properties": 7.22.5(@babel/core@7.20.5) - "@babel/plugin-transform-class-static-block": 7.22.11(@babel/core@7.20.5) - "@babel/plugin-transform-classes": 7.22.15(@babel/core@7.20.5) - "@babel/plugin-transform-computed-properties": 7.22.5(@babel/core@7.20.5) - "@babel/plugin-transform-destructuring": 7.23.0(@babel/core@7.20.5) - "@babel/plugin-transform-dotall-regex": 7.22.5(@babel/core@7.20.5) - "@babel/plugin-transform-duplicate-keys": 7.22.5(@babel/core@7.20.5) - "@babel/plugin-transform-dynamic-import": 7.22.11(@babel/core@7.20.5) - "@babel/plugin-transform-exponentiation-operator": 7.22.5(@babel/core@7.20.5) - "@babel/plugin-transform-export-namespace-from": 7.22.11(@babel/core@7.20.5) - "@babel/plugin-transform-for-of": 7.22.15(@babel/core@7.20.5) - "@babel/plugin-transform-function-name": 7.22.5(@babel/core@7.20.5) - "@babel/plugin-transform-json-strings": 7.22.11(@babel/core@7.20.5) - "@babel/plugin-transform-literals": 7.22.5(@babel/core@7.20.5) - "@babel/plugin-transform-logical-assignment-operators": 7.22.11(@babel/core@7.20.5) - "@babel/plugin-transform-member-expression-literals": 7.22.5(@babel/core@7.20.5) - "@babel/plugin-transform-modules-amd": 7.23.0(@babel/core@7.20.5) - "@babel/plugin-transform-modules-commonjs": 7.23.0(@babel/core@7.20.5) - "@babel/plugin-transform-modules-systemjs": 7.23.0(@babel/core@7.20.5) - "@babel/plugin-transform-modules-umd": 7.22.5(@babel/core@7.20.5) - "@babel/plugin-transform-named-capturing-groups-regex": 7.22.5(@babel/core@7.20.5) - "@babel/plugin-transform-new-target": 7.22.5(@babel/core@7.20.5) - "@babel/plugin-transform-nullish-coalescing-operator": 7.22.11(@babel/core@7.20.5) - "@babel/plugin-transform-numeric-separator": 7.22.11(@babel/core@7.20.5) - "@babel/plugin-transform-object-rest-spread": 7.22.15(@babel/core@7.20.5) - "@babel/plugin-transform-object-super": 7.22.5(@babel/core@7.20.5) - "@babel/plugin-transform-optional-catch-binding": 7.22.11(@babel/core@7.20.5) - "@babel/plugin-transform-optional-chaining": 7.23.0(@babel/core@7.20.5) - "@babel/plugin-transform-parameters": 7.22.15(@babel/core@7.20.5) - "@babel/plugin-transform-private-methods": 7.22.5(@babel/core@7.20.5) - "@babel/plugin-transform-private-property-in-object": 7.22.11(@babel/core@7.20.5) - "@babel/plugin-transform-property-literals": 7.22.5(@babel/core@7.20.5) - "@babel/plugin-transform-regenerator": 7.22.10(@babel/core@7.20.5) - "@babel/plugin-transform-reserved-words": 7.22.5(@babel/core@7.20.5) - "@babel/plugin-transform-shorthand-properties": 7.22.5(@babel/core@7.20.5) - "@babel/plugin-transform-spread": 7.22.5(@babel/core@7.20.5) - "@babel/plugin-transform-sticky-regex": 7.22.5(@babel/core@7.20.5) - "@babel/plugin-transform-template-literals": 7.22.5(@babel/core@7.20.5) - "@babel/plugin-transform-typeof-symbol": 7.22.5(@babel/core@7.20.5) - "@babel/plugin-transform-unicode-escapes": 7.22.10(@babel/core@7.20.5) - "@babel/plugin-transform-unicode-property-regex": 7.22.5(@babel/core@7.20.5) - "@babel/plugin-transform-unicode-regex": 7.22.5(@babel/core@7.20.5) - "@babel/plugin-transform-unicode-sets-regex": 7.22.5(@babel/core@7.20.5) - "@babel/preset-modules": 0.1.6-no-external-plugins(@babel/core@7.20.5) + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": 7.22.15(@babel/core@7.23.6) + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": 7.22.15(@babel/core@7.23.6) + "@babel/plugin-proposal-private-property-in-object": 7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.6) + "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.23.6) + "@babel/plugin-syntax-class-properties": 7.12.13(@babel/core@7.23.6) + "@babel/plugin-syntax-class-static-block": 7.14.5(@babel/core@7.23.6) + "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.23.6) + "@babel/plugin-syntax-export-namespace-from": 7.8.3(@babel/core@7.23.6) + "@babel/plugin-syntax-import-assertions": 7.22.5(@babel/core@7.23.6) + "@babel/plugin-syntax-import-attributes": 7.22.5(@babel/core@7.23.6) + "@babel/plugin-syntax-import-meta": 7.10.4(@babel/core@7.23.6) + "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.23.6) + "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.23.6) + "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.23.6) + "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.23.6) + "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.23.6) + "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.23.6) + "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.23.6) + "@babel/plugin-syntax-private-property-in-object": 7.14.5(@babel/core@7.23.6) + "@babel/plugin-syntax-top-level-await": 7.14.5(@babel/core@7.23.6) + "@babel/plugin-syntax-unicode-sets-regex": 7.18.6(@babel/core@7.23.6) + "@babel/plugin-transform-arrow-functions": 7.22.5(@babel/core@7.23.6) + "@babel/plugin-transform-async-generator-functions": 7.23.2(@babel/core@7.23.6) + "@babel/plugin-transform-async-to-generator": 7.22.5(@babel/core@7.23.6) + "@babel/plugin-transform-block-scoped-functions": 7.22.5(@babel/core@7.23.6) + "@babel/plugin-transform-block-scoping": 7.23.0(@babel/core@7.23.6) + "@babel/plugin-transform-class-properties": 7.22.5(@babel/core@7.23.6) + "@babel/plugin-transform-class-static-block": 7.22.11(@babel/core@7.23.6) + "@babel/plugin-transform-classes": 7.22.15(@babel/core@7.23.6) + "@babel/plugin-transform-computed-properties": 7.22.5(@babel/core@7.23.6) + "@babel/plugin-transform-destructuring": 7.23.0(@babel/core@7.23.6) + "@babel/plugin-transform-dotall-regex": 7.22.5(@babel/core@7.23.6) + "@babel/plugin-transform-duplicate-keys": 7.22.5(@babel/core@7.23.6) + "@babel/plugin-transform-dynamic-import": 7.22.11(@babel/core@7.23.6) + "@babel/plugin-transform-exponentiation-operator": 7.22.5(@babel/core@7.23.6) + "@babel/plugin-transform-export-namespace-from": 7.22.11(@babel/core@7.23.6) + "@babel/plugin-transform-for-of": 7.22.15(@babel/core@7.23.6) + "@babel/plugin-transform-function-name": 7.22.5(@babel/core@7.23.6) + "@babel/plugin-transform-json-strings": 7.22.11(@babel/core@7.23.6) + "@babel/plugin-transform-literals": 7.22.5(@babel/core@7.23.6) + "@babel/plugin-transform-logical-assignment-operators": 7.22.11(@babel/core@7.23.6) + "@babel/plugin-transform-member-expression-literals": 7.22.5(@babel/core@7.23.6) + "@babel/plugin-transform-modules-amd": 7.23.0(@babel/core@7.23.6) + "@babel/plugin-transform-modules-commonjs": 7.23.0(@babel/core@7.23.6) + "@babel/plugin-transform-modules-systemjs": 7.23.0(@babel/core@7.23.6) + "@babel/plugin-transform-modules-umd": 7.22.5(@babel/core@7.23.6) + "@babel/plugin-transform-named-capturing-groups-regex": 7.22.5(@babel/core@7.23.6) + "@babel/plugin-transform-new-target": 7.22.5(@babel/core@7.23.6) + "@babel/plugin-transform-nullish-coalescing-operator": 7.22.11(@babel/core@7.23.6) + "@babel/plugin-transform-numeric-separator": 7.22.11(@babel/core@7.23.6) + "@babel/plugin-transform-object-rest-spread": 7.22.15(@babel/core@7.23.6) + "@babel/plugin-transform-object-super": 7.22.5(@babel/core@7.23.6) + "@babel/plugin-transform-optional-catch-binding": 7.22.11(@babel/core@7.23.6) + "@babel/plugin-transform-optional-chaining": 7.23.0(@babel/core@7.23.6) + "@babel/plugin-transform-parameters": 7.22.15(@babel/core@7.23.6) + "@babel/plugin-transform-private-methods": 7.22.5(@babel/core@7.23.6) + "@babel/plugin-transform-private-property-in-object": 7.22.11(@babel/core@7.23.6) + "@babel/plugin-transform-property-literals": 7.22.5(@babel/core@7.23.6) + "@babel/plugin-transform-regenerator": 7.22.10(@babel/core@7.23.6) + "@babel/plugin-transform-reserved-words": 7.22.5(@babel/core@7.23.6) + "@babel/plugin-transform-shorthand-properties": 7.22.5(@babel/core@7.23.6) + "@babel/plugin-transform-spread": 7.22.5(@babel/core@7.23.6) + "@babel/plugin-transform-sticky-regex": 7.22.5(@babel/core@7.23.6) + "@babel/plugin-transform-template-literals": 7.22.5(@babel/core@7.23.6) + "@babel/plugin-transform-typeof-symbol": 7.22.5(@babel/core@7.23.6) + "@babel/plugin-transform-unicode-escapes": 7.22.10(@babel/core@7.23.6) + "@babel/plugin-transform-unicode-property-regex": 7.22.5(@babel/core@7.23.6) + "@babel/plugin-transform-unicode-regex": 7.22.5(@babel/core@7.23.6) + "@babel/plugin-transform-unicode-sets-regex": 7.22.5(@babel/core@7.23.6) + "@babel/preset-modules": 0.1.6-no-external-plugins(@babel/core@7.23.6) "@babel/types": 7.23.0 - babel-plugin-polyfill-corejs2: 0.4.6(@babel/core@7.20.5) - babel-plugin-polyfill-corejs3: 0.8.5(@babel/core@7.20.5) - babel-plugin-polyfill-regenerator: 0.5.3(@babel/core@7.20.5) + babel-plugin-polyfill-corejs2: 0.4.6(@babel/core@7.23.6) + babel-plugin-polyfill-corejs3: 0.8.5(@babel/core@7.23.6) + babel-plugin-polyfill-regenerator: 0.5.3(@babel/core@7.23.6) core-js-compat: 3.33.1 semver: 6.3.1 transitivePeerDependencies: - supports-color dev: true - /@babel/preset-env@7.23.2(@babel/core@7.23.2): + /@babel/preset-env@7.23.2(@babel/core@7.23.6): resolution: { integrity: sha512-BW3gsuDD+rvHL2VO2SjAUNTBe5YrjsTiDyqamPDWY723na3/yPQ65X5oQkFVJZ0o50/2d+svm1rkPoJeR1KxVQ==, @@ -3744,84 +2428,84 @@ packages: "@babel/core": ^7.0.0-0 dependencies: "@babel/compat-data": 7.23.2 - "@babel/core": 7.23.2 + "@babel/core": 7.23.6 "@babel/helper-compilation-targets": 7.22.15 "@babel/helper-plugin-utils": 7.22.5 "@babel/helper-validator-option": 7.22.15 - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": 7.22.15(@babel/core@7.20.5) - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": 7.22.15(@babel/core@7.20.5) - "@babel/plugin-proposal-private-property-in-object": 7.21.0-placeholder-for-preset-env.2(@babel/core@7.20.5) - "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.20.5) - "@babel/plugin-syntax-class-properties": 7.12.13(@babel/core@7.20.5) - "@babel/plugin-syntax-class-static-block": 7.14.5(@babel/core@7.20.5) - "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.20.5) - "@babel/plugin-syntax-export-namespace-from": 7.8.3(@babel/core@7.20.5) - "@babel/plugin-syntax-import-assertions": 7.22.5(@babel/core@7.20.5) - "@babel/plugin-syntax-import-attributes": 7.22.5(@babel/core@7.20.5) - "@babel/plugin-syntax-import-meta": 7.10.4(@babel/core@7.20.5) - "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.20.5) - "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.20.5) - "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.20.5) - "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.20.5) - "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.20.5) - "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.20.5) - "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.20.5) - "@babel/plugin-syntax-private-property-in-object": 7.14.5(@babel/core@7.20.5) - "@babel/plugin-syntax-top-level-await": 7.14.5(@babel/core@7.20.5) - "@babel/plugin-syntax-unicode-sets-regex": 7.18.6(@babel/core@7.20.5) - "@babel/plugin-transform-arrow-functions": 7.22.5(@babel/core@7.20.5) - "@babel/plugin-transform-async-generator-functions": 7.23.2(@babel/core@7.20.5) - "@babel/plugin-transform-async-to-generator": 7.22.5(@babel/core@7.20.5) - "@babel/plugin-transform-block-scoped-functions": 7.22.5(@babel/core@7.20.5) - "@babel/plugin-transform-block-scoping": 7.23.0(@babel/core@7.20.5) - "@babel/plugin-transform-class-properties": 7.22.5(@babel/core@7.20.5) - "@babel/plugin-transform-class-static-block": 7.22.11(@babel/core@7.20.5) - "@babel/plugin-transform-classes": 7.22.15(@babel/core@7.20.5) - "@babel/plugin-transform-computed-properties": 7.22.5(@babel/core@7.20.5) - "@babel/plugin-transform-destructuring": 7.23.0(@babel/core@7.20.5) - "@babel/plugin-transform-dotall-regex": 7.22.5(@babel/core@7.20.5) - "@babel/plugin-transform-duplicate-keys": 7.22.5(@babel/core@7.20.5) - "@babel/plugin-transform-dynamic-import": 7.22.11(@babel/core@7.20.5) - "@babel/plugin-transform-exponentiation-operator": 7.22.5(@babel/core@7.20.5) - "@babel/plugin-transform-export-namespace-from": 7.22.11(@babel/core@7.20.5) - "@babel/plugin-transform-for-of": 7.22.15(@babel/core@7.20.5) - "@babel/plugin-transform-function-name": 7.22.5(@babel/core@7.20.5) - "@babel/plugin-transform-json-strings": 7.22.11(@babel/core@7.20.5) - "@babel/plugin-transform-literals": 7.22.5(@babel/core@7.20.5) - "@babel/plugin-transform-logical-assignment-operators": 7.22.11(@babel/core@7.20.5) - "@babel/plugin-transform-member-expression-literals": 7.22.5(@babel/core@7.20.5) - "@babel/plugin-transform-modules-amd": 7.23.0(@babel/core@7.20.5) - "@babel/plugin-transform-modules-commonjs": 7.23.0(@babel/core@7.20.5) - "@babel/plugin-transform-modules-systemjs": 7.23.0(@babel/core@7.20.5) - "@babel/plugin-transform-modules-umd": 7.22.5(@babel/core@7.20.5) - "@babel/plugin-transform-named-capturing-groups-regex": 7.22.5(@babel/core@7.20.5) - "@babel/plugin-transform-new-target": 7.22.5(@babel/core@7.20.5) - "@babel/plugin-transform-nullish-coalescing-operator": 7.22.11(@babel/core@7.20.5) - "@babel/plugin-transform-numeric-separator": 7.22.11(@babel/core@7.20.5) - "@babel/plugin-transform-object-rest-spread": 7.22.15(@babel/core@7.20.5) - "@babel/plugin-transform-object-super": 7.22.5(@babel/core@7.20.5) - "@babel/plugin-transform-optional-catch-binding": 7.22.11(@babel/core@7.20.5) - "@babel/plugin-transform-optional-chaining": 7.23.0(@babel/core@7.20.5) - "@babel/plugin-transform-parameters": 7.22.15(@babel/core@7.20.5) - "@babel/plugin-transform-private-methods": 7.22.5(@babel/core@7.20.5) - "@babel/plugin-transform-private-property-in-object": 7.22.11(@babel/core@7.20.5) - "@babel/plugin-transform-property-literals": 7.22.5(@babel/core@7.20.5) - "@babel/plugin-transform-regenerator": 7.22.10(@babel/core@7.20.5) - "@babel/plugin-transform-reserved-words": 7.22.5(@babel/core@7.20.5) - "@babel/plugin-transform-shorthand-properties": 7.22.5(@babel/core@7.20.5) - "@babel/plugin-transform-spread": 7.22.5(@babel/core@7.20.5) - "@babel/plugin-transform-sticky-regex": 7.22.5(@babel/core@7.20.5) - "@babel/plugin-transform-template-literals": 7.22.5(@babel/core@7.20.5) - "@babel/plugin-transform-typeof-symbol": 7.22.5(@babel/core@7.20.5) - "@babel/plugin-transform-unicode-escapes": 7.22.10(@babel/core@7.20.5) - "@babel/plugin-transform-unicode-property-regex": 7.22.5(@babel/core@7.20.5) - "@babel/plugin-transform-unicode-regex": 7.22.5(@babel/core@7.20.5) - "@babel/plugin-transform-unicode-sets-regex": 7.22.5(@babel/core@7.20.5) - "@babel/preset-modules": 0.1.6-no-external-plugins(@babel/core@7.20.5) + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": 7.22.15(@babel/core@7.23.6) + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": 7.22.15(@babel/core@7.23.6) + "@babel/plugin-proposal-private-property-in-object": 7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.6) + "@babel/plugin-syntax-async-generators": 7.8.4(@babel/core@7.23.6) + "@babel/plugin-syntax-class-properties": 7.12.13(@babel/core@7.23.6) + "@babel/plugin-syntax-class-static-block": 7.14.5(@babel/core@7.23.6) + "@babel/plugin-syntax-dynamic-import": 7.8.3(@babel/core@7.23.6) + "@babel/plugin-syntax-export-namespace-from": 7.8.3(@babel/core@7.23.6) + "@babel/plugin-syntax-import-assertions": 7.22.5(@babel/core@7.23.6) + "@babel/plugin-syntax-import-attributes": 7.22.5(@babel/core@7.23.6) + "@babel/plugin-syntax-import-meta": 7.10.4(@babel/core@7.23.6) + "@babel/plugin-syntax-json-strings": 7.8.3(@babel/core@7.23.6) + "@babel/plugin-syntax-logical-assignment-operators": 7.10.4(@babel/core@7.23.6) + "@babel/plugin-syntax-nullish-coalescing-operator": 7.8.3(@babel/core@7.23.6) + "@babel/plugin-syntax-numeric-separator": 7.10.4(@babel/core@7.23.6) + "@babel/plugin-syntax-object-rest-spread": 7.8.3(@babel/core@7.23.6) + "@babel/plugin-syntax-optional-catch-binding": 7.8.3(@babel/core@7.23.6) + "@babel/plugin-syntax-optional-chaining": 7.8.3(@babel/core@7.23.6) + "@babel/plugin-syntax-private-property-in-object": 7.14.5(@babel/core@7.23.6) + "@babel/plugin-syntax-top-level-await": 7.14.5(@babel/core@7.23.6) + "@babel/plugin-syntax-unicode-sets-regex": 7.18.6(@babel/core@7.23.6) + "@babel/plugin-transform-arrow-functions": 7.22.5(@babel/core@7.23.6) + "@babel/plugin-transform-async-generator-functions": 7.23.2(@babel/core@7.23.6) + "@babel/plugin-transform-async-to-generator": 7.22.5(@babel/core@7.23.6) + "@babel/plugin-transform-block-scoped-functions": 7.22.5(@babel/core@7.23.6) + "@babel/plugin-transform-block-scoping": 7.23.0(@babel/core@7.23.6) + "@babel/plugin-transform-class-properties": 7.22.5(@babel/core@7.23.6) + "@babel/plugin-transform-class-static-block": 7.22.11(@babel/core@7.23.6) + "@babel/plugin-transform-classes": 7.22.15(@babel/core@7.23.6) + "@babel/plugin-transform-computed-properties": 7.22.5(@babel/core@7.23.6) + "@babel/plugin-transform-destructuring": 7.23.0(@babel/core@7.23.6) + "@babel/plugin-transform-dotall-regex": 7.22.5(@babel/core@7.23.6) + "@babel/plugin-transform-duplicate-keys": 7.22.5(@babel/core@7.23.6) + "@babel/plugin-transform-dynamic-import": 7.22.11(@babel/core@7.23.6) + "@babel/plugin-transform-exponentiation-operator": 7.22.5(@babel/core@7.23.6) + "@babel/plugin-transform-export-namespace-from": 7.22.11(@babel/core@7.23.6) + "@babel/plugin-transform-for-of": 7.22.15(@babel/core@7.23.6) + "@babel/plugin-transform-function-name": 7.22.5(@babel/core@7.23.6) + "@babel/plugin-transform-json-strings": 7.22.11(@babel/core@7.23.6) + "@babel/plugin-transform-literals": 7.22.5(@babel/core@7.23.6) + "@babel/plugin-transform-logical-assignment-operators": 7.22.11(@babel/core@7.23.6) + "@babel/plugin-transform-member-expression-literals": 7.22.5(@babel/core@7.23.6) + "@babel/plugin-transform-modules-amd": 7.23.0(@babel/core@7.23.6) + "@babel/plugin-transform-modules-commonjs": 7.23.0(@babel/core@7.23.6) + "@babel/plugin-transform-modules-systemjs": 7.23.0(@babel/core@7.23.6) + "@babel/plugin-transform-modules-umd": 7.22.5(@babel/core@7.23.6) + "@babel/plugin-transform-named-capturing-groups-regex": 7.22.5(@babel/core@7.23.6) + "@babel/plugin-transform-new-target": 7.22.5(@babel/core@7.23.6) + "@babel/plugin-transform-nullish-coalescing-operator": 7.22.11(@babel/core@7.23.6) + "@babel/plugin-transform-numeric-separator": 7.22.11(@babel/core@7.23.6) + "@babel/plugin-transform-object-rest-spread": 7.22.15(@babel/core@7.23.6) + "@babel/plugin-transform-object-super": 7.22.5(@babel/core@7.23.6) + "@babel/plugin-transform-optional-catch-binding": 7.22.11(@babel/core@7.23.6) + "@babel/plugin-transform-optional-chaining": 7.23.0(@babel/core@7.23.6) + "@babel/plugin-transform-parameters": 7.22.15(@babel/core@7.23.6) + "@babel/plugin-transform-private-methods": 7.22.5(@babel/core@7.23.6) + "@babel/plugin-transform-private-property-in-object": 7.22.11(@babel/core@7.23.6) + "@babel/plugin-transform-property-literals": 7.22.5(@babel/core@7.23.6) + "@babel/plugin-transform-regenerator": 7.22.10(@babel/core@7.23.6) + "@babel/plugin-transform-reserved-words": 7.22.5(@babel/core@7.23.6) + "@babel/plugin-transform-shorthand-properties": 7.22.5(@babel/core@7.23.6) + "@babel/plugin-transform-spread": 7.22.5(@babel/core@7.23.6) + "@babel/plugin-transform-sticky-regex": 7.22.5(@babel/core@7.23.6) + "@babel/plugin-transform-template-literals": 7.22.5(@babel/core@7.23.6) + "@babel/plugin-transform-typeof-symbol": 7.22.5(@babel/core@7.23.6) + "@babel/plugin-transform-unicode-escapes": 7.22.10(@babel/core@7.23.6) + "@babel/plugin-transform-unicode-property-regex": 7.22.5(@babel/core@7.23.6) + "@babel/plugin-transform-unicode-regex": 7.22.5(@babel/core@7.23.6) + "@babel/plugin-transform-unicode-sets-regex": 7.22.5(@babel/core@7.23.6) + "@babel/preset-modules": 0.1.6-no-external-plugins(@babel/core@7.23.6) "@babel/types": 7.23.0 - babel-plugin-polyfill-corejs2: 0.4.6(@babel/core@7.20.5) - babel-plugin-polyfill-corejs3: 0.8.5(@babel/core@7.20.5) - babel-plugin-polyfill-regenerator: 0.5.3(@babel/core@7.20.5) + babel-plugin-polyfill-corejs2: 0.4.6(@babel/core@7.23.6) + babel-plugin-polyfill-corejs3: 0.8.5(@babel/core@7.23.6) + babel-plugin-polyfill-regenerator: 0.5.3(@babel/core@7.23.6) core-js-compat: 3.33.1 semver: 6.3.1 transitivePeerDependencies: @@ -3843,23 +2527,7 @@ packages: "@babel/plugin-transform-flow-strip-types": 7.19.0(@babel/core@7.23.2) dev: true - /@babel/preset-modules@0.1.5(@babel/core@7.22.8): - resolution: - { - integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==, - } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.22.8 - "@babel/helper-plugin-utils": 7.20.2 - "@babel/plugin-proposal-unicode-property-regex": 7.18.6(@babel/core@7.22.8) - "@babel/plugin-transform-dotall-regex": 7.18.6(@babel/core@7.22.8) - "@babel/types": 7.23.0 - esutils: 2.0.3 - dev: true - - /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.20.5): + /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.23.6): resolution: { integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==, @@ -3867,65 +2535,12 @@ packages: peerDependencies: "@babel/core": ^7.0.0-0 || ^8.0.0-0 <8.0.0 dependencies: - "@babel/core": 7.20.5 + "@babel/core": 7.23.6 "@babel/helper-plugin-utils": 7.22.5 "@babel/types": 7.23.0 esutils: 2.0.3 dev: true - /@babel/preset-react@7.18.6(@babel/core@7.20.5): - resolution: - { - integrity: sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.20.5 - "@babel/helper-plugin-utils": 7.20.2 - "@babel/helper-validator-option": 7.21.0 - "@babel/plugin-transform-react-display-name": 7.18.6(@babel/core@7.20.5) - "@babel/plugin-transform-react-jsx": 7.19.0(@babel/core@7.20.5) - "@babel/plugin-transform-react-jsx-development": 7.18.6(@babel/core@7.20.5) - "@babel/plugin-transform-react-pure-annotations": 7.18.6(@babel/core@7.20.5) - dev: true - - /@babel/preset-react@7.18.6(@babel/core@7.22.8): - resolution: - { - integrity: sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.22.8 - "@babel/helper-plugin-utils": 7.20.2 - "@babel/helper-validator-option": 7.21.0 - "@babel/plugin-transform-react-display-name": 7.18.6(@babel/core@7.22.8) - "@babel/plugin-transform-react-jsx": 7.19.0(@babel/core@7.22.8) - "@babel/plugin-transform-react-jsx-development": 7.18.6(@babel/core@7.22.8) - "@babel/plugin-transform-react-pure-annotations": 7.18.6(@babel/core@7.22.8) - dev: true - - /@babel/preset-typescript@7.18.6(@babel/core@7.22.8): - resolution: - { - integrity: sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ==, - } - engines: { node: ">=6.9.0" } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.22.8 - "@babel/helper-plugin-utils": 7.20.2 - "@babel/helper-validator-option": 7.22.5 - "@babel/plugin-transform-typescript": 7.20.2(@babel/core@7.22.8) - transitivePeerDependencies: - - supports-color - dev: true - /@babel/preset-typescript@7.18.6(@babel/core@7.23.2): resolution: { @@ -3967,17 +2582,6 @@ packages: } dev: true - /@babel/runtime-corejs3@7.20.1: - resolution: - { - integrity: sha512-CGulbEDcg/ND1Im7fUNRZdGXmX2MTWVVZacQi/6DiKE5HNwZ3aVTm5PV4lO8HHz0B2h8WQyvKKjbX5XgTtydsg==, - } - engines: { node: ">=6.9.0" } - dependencies: - core-js-pure: 3.26.1 - regenerator-runtime: 0.13.11 - dev: true - /@babel/runtime@7.20.13: resolution: { @@ -3993,19 +2597,8 @@ packages: integrity: sha512-mM8eg4yl5D6i3lu2QKPuPH4FArvJ8KhTofbE7jwMUv9KX5mBvwPAqnV3MlyBNqdp9RyRKP6Yck8TrfYrPvX3bg==, } engines: { node: ">=6.9.0" } - dependencies: - regenerator-runtime: 0.14.0 - - /@babel/template@7.20.7: - resolution: - { - integrity: sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==, - } - engines: { node: ">=6.9.0" } - dependencies: - "@babel/code-frame": 7.21.4 - "@babel/parser": 7.21.4 - "@babel/types": 7.21.4 + dependencies: + regenerator-runtime: 0.14.0 /@babel/template@7.22.15: resolution: @@ -4014,10 +2607,9 @@ packages: } engines: { node: ">=6.9.0" } dependencies: - "@babel/code-frame": 7.22.13 + "@babel/code-frame": 7.23.5 "@babel/parser": 7.23.0 "@babel/types": 7.23.0 - dev: true /@babel/template@7.22.5: resolution: @@ -4026,9 +2618,10 @@ packages: } engines: { node: ">=6.9.0" } dependencies: - "@babel/code-frame": 7.22.5 + "@babel/code-frame": 7.23.5 "@babel/parser": 7.23.0 "@babel/types": 7.23.0 + dev: true /@babel/traverse@7.17.3: resolution: @@ -4037,7 +2630,7 @@ packages: } engines: { node: ">=6.9.0" } dependencies: - "@babel/code-frame": 7.22.5 + "@babel/code-frame": 7.23.5 "@babel/generator": 7.22.7 "@babel/helper-environment-visitor": 7.22.5 "@babel/helper-function-name": 7.22.5 @@ -4058,7 +2651,7 @@ packages: } engines: { node: ">=6.9.0" } dependencies: - "@babel/code-frame": 7.21.4 + "@babel/code-frame": 7.23.5 "@babel/generator": 7.21.4 "@babel/helper-environment-visitor": 7.18.9 "@babel/helper-function-name": 7.21.0 @@ -4070,6 +2663,7 @@ packages: globals: 11.12.0 transitivePeerDependencies: - supports-color + dev: true /@babel/traverse@7.22.8: resolution: @@ -4078,7 +2672,7 @@ packages: } engines: { node: ">=6.9.0" } dependencies: - "@babel/code-frame": 7.22.5 + "@babel/code-frame": 7.23.5 "@babel/generator": 7.22.7 "@babel/helper-environment-visitor": 7.22.5 "@babel/helper-function-name": 7.22.5 @@ -4099,7 +2693,7 @@ packages: } engines: { node: ">=6.9.0" } dependencies: - "@babel/code-frame": 7.22.13 + "@babel/code-frame": 7.23.5 "@babel/generator": 7.23.0 "@babel/helper-environment-visitor": 7.22.20 "@babel/helper-function-name": 7.23.0 @@ -4113,6 +2707,26 @@ packages: - supports-color dev: true + /@babel/traverse@7.23.6: + resolution: + { + integrity: sha512-czastdK1e8YByZqezMPFiZ8ahwVMh/ESl9vPgvgdB9AmFMGP5jfpFax74AQgl5zj4XHzqeYAg2l8PuUeRS1MgQ==, + } + engines: { node: ">=6.9.0" } + dependencies: + "@babel/code-frame": 7.23.5 + "@babel/generator": 7.23.6 + "@babel/helper-environment-visitor": 7.22.20 + "@babel/helper-function-name": 7.23.0 + "@babel/helper-hoist-variables": 7.22.5 + "@babel/helper-split-export-declaration": 7.22.6 + "@babel/parser": 7.23.6 + "@babel/types": 7.23.6 + debug: 4.3.4 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + /@babel/types@7.17.0: resolution: { @@ -4132,8 +2746,9 @@ packages: engines: { node: ">=6.9.0" } dependencies: "@babel/helper-string-parser": 7.19.4 - "@babel/helper-validator-identifier": 7.19.1 + "@babel/helper-validator-identifier": 7.22.20 to-fast-properties: 2.0.0 + dev: true /@babel/types@7.22.5: resolution: @@ -4158,6 +2773,17 @@ packages: "@babel/helper-validator-identifier": 7.22.20 to-fast-properties: 2.0.0 + /@babel/types@7.23.6: + resolution: + { + integrity: sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg==, + } + engines: { node: ">=6.9.0" } + dependencies: + "@babel/helper-string-parser": 7.23.4 + "@babel/helper-validator-identifier": 7.22.20 + to-fast-properties: 2.0.0 + /@base2/pretty-print-object@1.0.1: resolution: { @@ -4172,42 +2798,42 @@ packages: } dev: true - /@chakra-ui/accordion@2.1.9(@chakra-ui/system@2.5.1)(framer-motion@9.0.3)(react@18.2.0): + /@chakra-ui/accordion@2.1.11(@chakra-ui/system@2.5.6)(framer-motion@9.0.3)(react@18.2.0): resolution: { - integrity: sha512-a9CKIAUHezc0f5FR/SQ4GVxnWuIb2HbDTxTEKTp58w/J9pecIbJaNrJ5TUZ0MVbDU9jkgO9RsZ29jkja8PomAw==, + integrity: sha512-mfVPmqETp9pyRDHJ33AdF19oHv/LyxVzQJtlxUByuvs8Cj9QQZ2LQLg5kejm+b3mj03A7A6yfbuo3RNaI4Bhsg==, } peerDependencies: "@chakra-ui/system": ">=2.0.0" framer-motion: ">=4.0.0" react: ">=18" dependencies: - "@chakra-ui/descendant": 3.0.13(react@18.2.0) - "@chakra-ui/icon": 3.0.16(@chakra-ui/system@2.5.1)(react@18.2.0) - "@chakra-ui/react-context": 2.0.7(react@18.2.0) + "@chakra-ui/descendant": 3.0.14(react@18.2.0) + "@chakra-ui/icon": 3.0.16(@chakra-ui/system@2.5.6)(react@18.2.0) + "@chakra-ui/react-context": 2.0.8(react@18.2.0) "@chakra-ui/react-use-controllable-state": 2.0.8(react@18.2.0) "@chakra-ui/react-use-merge-refs": 2.0.7(react@18.2.0) "@chakra-ui/shared-utils": 2.0.5 - "@chakra-ui/system": 2.5.1(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) - "@chakra-ui/transition": 2.0.15(framer-motion@9.0.3)(react@18.2.0) + "@chakra-ui/system": 2.5.6(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) + "@chakra-ui/transition": 2.0.16(framer-motion@9.0.3)(react@18.2.0) framer-motion: 9.0.3(react-dom@18.2.0)(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/alert@2.0.17(@chakra-ui/system@2.5.1)(react@18.2.0): + /@chakra-ui/alert@2.1.0(@chakra-ui/system@2.5.6)(react@18.2.0): resolution: { - integrity: sha512-0Y5vw+HkeXpwbL1roVpSSNM6luMRmUbwduUSHEA4OnX1ismvsDb1ZBfpi4Vxp6w8euJ2Uj6df3krbd5tbCP6tg==, + integrity: sha512-OcfHwoXI5VrmM+tHJTHT62Bx6TfyfCxSa0PWUOueJzSyhlUOKBND5we6UtrOB7D0jwX45qKKEDJOLG5yCG21jQ==, } peerDependencies: "@chakra-ui/system": ">=2.0.0" react: ">=18" dependencies: - "@chakra-ui/icon": 3.0.16(@chakra-ui/system@2.5.1)(react@18.2.0) - "@chakra-ui/react-context": 2.0.7(react@18.2.0) + "@chakra-ui/icon": 3.0.16(@chakra-ui/system@2.5.6)(react@18.2.0) + "@chakra-ui/react-context": 2.0.8(react@18.2.0) "@chakra-ui/shared-utils": 2.0.5 - "@chakra-ui/spinner": 2.0.13(@chakra-ui/system@2.5.1)(react@18.2.0) - "@chakra-ui/system": 2.5.1(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) + "@chakra-ui/spinner": 2.0.13(@chakra-ui/system@2.5.6)(react@18.2.0) + "@chakra-ui/system": 2.5.6(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) react: 18.2.0 dev: false @@ -4218,43 +2844,43 @@ packages: } dev: false - /@chakra-ui/anatomy@2.2.1: + /@chakra-ui/anatomy@2.2.2: resolution: { - integrity: sha512-bbmyWTGwQo+aHYDMtLIj7k7hcWvwE7GFVDViLFArrrPhfUTDdQTNqhiDp1N7eh2HLyjNhc2MKXV8s2KTQqkmTg==, + integrity: sha512-MV6D4VLRIHr4PkW4zMyqfrNS1mPlCTiCXwvYGtDFQYr+xHFfonhAuf9WjsSc0nyp2m0OdkSLnzmVKkZFLo25Tg==, } dev: false - /@chakra-ui/avatar@2.2.5(@chakra-ui/system@2.5.1)(react@18.2.0): + /@chakra-ui/avatar@2.2.9(@chakra-ui/system@2.5.6)(react@18.2.0): resolution: { - integrity: sha512-TEHXuGE79+fEn61qJ7J/A0Ec+WjyNwobrDTATcLg9Zx2/WEMmZNfrWIAlI5ANQAwVbdSWeGVbyoLAK5mbcrE0A==, + integrity: sha512-fjO25iNeMxSZKYGvbAqdMjsRus9Hgvhb+Ux8jNwKcfg47nqT+wVieMqsPdpQ0ggAuh1872oVvg2q1GfDdieMmA==, } peerDependencies: "@chakra-ui/system": ">=2.0.0" react: ">=18" dependencies: - "@chakra-ui/image": 2.0.15(@chakra-ui/system@2.5.1)(react@18.2.0) + "@chakra-ui/image": 2.0.16(@chakra-ui/system@2.5.6)(react@18.2.0) "@chakra-ui/react-children-utils": 2.0.6(react@18.2.0) - "@chakra-ui/react-context": 2.0.7(react@18.2.0) + "@chakra-ui/react-context": 2.0.8(react@18.2.0) "@chakra-ui/shared-utils": 2.0.5 - "@chakra-ui/system": 2.5.1(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) + "@chakra-ui/system": 2.5.6(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/breadcrumb@2.1.4(@chakra-ui/system@2.5.1)(react@18.2.0): + /@chakra-ui/breadcrumb@2.1.5(@chakra-ui/system@2.5.6)(react@18.2.0): resolution: { - integrity: sha512-vyBx5TAxPnHhb0b8nyRGfqyjleD//9mySFhk96c9GL+T6YDO4swHw5y/kvDv3Ngc/iRwJ9hdI49PZKwPxLqsEg==, + integrity: sha512-p3eQQrHQBkRB69xOmNyBJqEdfCrMt+e0eOH+Pm/DjFWfIVIbnIaFbmDCeWClqlLa21Ypc6h1hR9jEmvg8kmOog==, } peerDependencies: "@chakra-ui/system": ">=2.0.0" react: ">=18" dependencies: "@chakra-ui/react-children-utils": 2.0.6(react@18.2.0) - "@chakra-ui/react-context": 2.0.7(react@18.2.0) + "@chakra-ui/react-context": 2.0.8(react@18.2.0) "@chakra-ui/shared-utils": 2.0.5 - "@chakra-ui/system": 2.5.1(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) + "@chakra-ui/system": 2.5.6(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) react: 18.2.0 dev: false @@ -4267,24 +2893,24 @@ packages: "@chakra-ui/shared-utils": 2.0.5 dev: false - /@chakra-ui/button@2.0.16(@chakra-ui/system@2.5.1)(react@18.2.0): + /@chakra-ui/button@2.0.18(@chakra-ui/system@2.5.6)(react@18.2.0): resolution: { - integrity: sha512-NjuTKa7gNhnGSUutKuTc8HoAOe9WWIigpciBG7yj3ok67kg8bXtSzPyQFZlgTY6XGdAckWTT+Do4tvhwa5LA+g==, + integrity: sha512-E3c99+lOm6ou4nQVOTLkG+IdOPMjsQK+Qe7VyP8A/xeAMFONuibrWPRPpprr4ZkB4kEoLMfNuyH2+aEza3ScUA==, } peerDependencies: "@chakra-ui/system": ">=2.0.0" react: ">=18" dependencies: - "@chakra-ui/react-context": 2.0.7(react@18.2.0) + "@chakra-ui/react-context": 2.0.8(react@18.2.0) "@chakra-ui/react-use-merge-refs": 2.0.7(react@18.2.0) "@chakra-ui/shared-utils": 2.0.5 - "@chakra-ui/spinner": 2.0.13(@chakra-ui/system@2.5.1)(react@18.2.0) - "@chakra-ui/system": 2.5.1(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) + "@chakra-ui/spinner": 2.0.13(@chakra-ui/system@2.5.6)(react@18.2.0) + "@chakra-ui/system": 2.5.6(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/card@2.1.6(@chakra-ui/system@2.5.1)(react@18.2.0): + /@chakra-ui/card@2.1.6(@chakra-ui/system@2.5.6)(react@18.2.0): resolution: { integrity: sha512-fFd/WAdRNVY/WOSQv4skpy0WeVhhI0f7dTY1Sm0jVl0KLmuP/GnpsWtKtqWjNcV00K963EXDyhlk6+9oxbP4gw==, @@ -4294,21 +2920,21 @@ packages: react: ">=18" dependencies: "@chakra-ui/shared-utils": 2.0.5 - "@chakra-ui/system": 2.5.1(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) + "@chakra-ui/system": 2.5.6(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/checkbox@2.2.10(@chakra-ui/system@2.5.1)(react@18.2.0): + /@chakra-ui/checkbox@2.2.15(@chakra-ui/system@2.5.6)(react@18.2.0): resolution: { - integrity: sha512-vzxEjw99qj7loxAdP1WuHNt4EAvj/t6cc8oxyOB2mEvkAzhxI34rLR+3zWDuHWsmhyUO+XEDh4FiWdR+DK5Siw==, + integrity: sha512-Ju2yQjX8azgFa5f6VLPuwdGYobZ+rdbcYqjiks848JvPc75UsPhpS05cb4XlrKT7M16I8txDA5rPJdqqFicHCA==, } peerDependencies: "@chakra-ui/system": ">=2.0.0" react: ">=18" dependencies: - "@chakra-ui/form-control": 2.0.17(@chakra-ui/system@2.5.1)(react@18.2.0) - "@chakra-ui/react-context": 2.0.7(react@18.2.0) + "@chakra-ui/form-control": 2.0.18(@chakra-ui/system@2.5.6)(react@18.2.0) + "@chakra-ui/react-context": 2.0.8(react@18.2.0) "@chakra-ui/react-types": 2.0.7(react@18.2.0) "@chakra-ui/react-use-callback-ref": 2.0.7(react@18.2.0) "@chakra-ui/react-use-controllable-state": 2.0.8(react@18.2.0) @@ -4316,9 +2942,9 @@ packages: "@chakra-ui/react-use-safe-layout-effect": 2.0.5(react@18.2.0) "@chakra-ui/react-use-update-effect": 2.0.7(react@18.2.0) "@chakra-ui/shared-utils": 2.0.5 - "@chakra-ui/system": 2.5.1(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) - "@chakra-ui/visually-hidden": 2.0.15(@chakra-ui/system@2.5.1)(react@18.2.0) - "@zag-js/focus-visible": 0.2.1 + "@chakra-ui/system": 2.5.6(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) + "@chakra-ui/visually-hidden": 2.0.15(@chakra-ui/system@2.5.6)(react@18.2.0) + "@zag-js/focus-visible": 0.2.2 react: 18.2.0 dev: false @@ -4335,7 +2961,7 @@ packages: react: 18.2.0 dev: false - /@chakra-ui/close-button@2.0.17(@chakra-ui/system@2.5.1)(react@18.2.0): + /@chakra-ui/close-button@2.0.17(@chakra-ui/system@2.5.6)(react@18.2.0): resolution: { integrity: sha512-05YPXk456t1Xa3KpqTrvm+7smx+95dmaPiwjiBN3p7LHUQVHJd8ZXSDB0V+WKi419k3cVQeJUdU/azDO2f40sw==, @@ -4344,8 +2970,8 @@ packages: "@chakra-ui/system": ">=2.0.0" react: ">=18" dependencies: - "@chakra-ui/icon": 3.0.16(@chakra-ui/system@2.5.1)(react@18.2.0) - "@chakra-ui/system": 2.5.1(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) + "@chakra-ui/icon": 3.0.16(@chakra-ui/system@2.5.6)(react@18.2.0) + "@chakra-ui/system": 2.5.6(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) react: 18.2.0 dev: false @@ -4373,7 +2999,7 @@ packages: react: 18.2.0 dev: false - /@chakra-ui/control-box@2.0.13(@chakra-ui/system@2.5.1)(react@18.2.0): + /@chakra-ui/control-box@2.0.13(@chakra-ui/system@2.5.6)(react@18.2.0): resolution: { integrity: sha512-FEyrU4crxati80KUF/+1Z1CU3eZK6Sa0Yv7Z/ydtz9/tvGblXW9NFanoomXAOvcIFLbaLQPPATm9Gmpr7VG05A==, @@ -4382,7 +3008,7 @@ packages: "@chakra-ui/system": ">=2.0.0" react: ">=18" dependencies: - "@chakra-ui/system": 2.5.1(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) + "@chakra-ui/system": 2.5.6(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) react: 18.2.0 dev: false @@ -4400,28 +3026,28 @@ packages: react: 18.2.0 dev: false - /@chakra-ui/css-reset@2.0.12(@emotion/react@11.10.5)(react@18.2.0): + /@chakra-ui/css-reset@2.1.1(@emotion/react@11.10.5)(react@18.2.0): resolution: { - integrity: sha512-Q5OYIMvqTl2vZ947kIYxcS5DhQXeStB84BzzBd6C10wOx1gFUu9pL+jLpOnHR3hhpWRMdX5o7eT+gMJWIYUZ0Q==, + integrity: sha512-jwEOfIAWmQsnChHQTW/eRE+dfE4MjmhvSvoUug5nkV1pI7veC/20noFlIZxzi82EbiQI8Fs0+Jnusgxr2yaOHA==, } peerDependencies: "@emotion/react": ">=10.0.35" react: ">=18" dependencies: - "@emotion/react": 11.10.5(@babel/core@7.20.5)(@types/react@18.0.25)(react@18.2.0) + "@emotion/react": 11.10.5(@babel/core@7.23.6)(@types/react@18.0.25)(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/descendant@3.0.13(react@18.2.0): + /@chakra-ui/descendant@3.0.14(react@18.2.0): resolution: { - integrity: sha512-9nzxZVxUSMc4xPL5fSaRkEOQjDQWUGjGvrZI7VzWk9eq63cojOtIxtWMSW383G9148PzWJjJYt30Eud5tdZzlg==, + integrity: sha512-+Ahvp9H4HMpfScIv9w1vaecGz7qWAaK1YFHHolz/SIsGLaLGlbdp+5UNabQC7L6TUnzzJDQDxzwif78rTD7ang==, } peerDependencies: react: ">=18" dependencies: - "@chakra-ui/react-context": 2.0.7(react@18.2.0) + "@chakra-ui/react-context": 2.0.8(react@18.2.0) "@chakra-ui/react-use-merge-refs": 2.0.7(react@18.2.0) react: 18.2.0 dev: false @@ -4433,16 +3059,16 @@ packages: } dev: false - /@chakra-ui/editable@2.0.19(@chakra-ui/system@2.5.1)(react@18.2.0): + /@chakra-ui/editable@3.0.0(@chakra-ui/system@2.5.6)(react@18.2.0): resolution: { - integrity: sha512-YxRJsJ2JQd42zfPBgTKzIhg1HugT+gfQz1ZosmUN+IZT9YZXL2yodHTUz6Lee04Vc/CdEqgBFLuREXEUNBfGtA==, + integrity: sha512-q/7C/TM3iLaoQKlEiM8AY565i9NoaXtS6N6N4HWIEL5mZJPbMeHKxrCHUZlHxYuQJqFOGc09ZPD9fAFx1GkYwQ==, } peerDependencies: "@chakra-ui/system": ">=2.0.0" react: ">=18" dependencies: - "@chakra-ui/react-context": 2.0.7(react@18.2.0) + "@chakra-ui/react-context": 2.0.8(react@18.2.0) "@chakra-ui/react-types": 2.0.7(react@18.2.0) "@chakra-ui/react-use-callback-ref": 2.0.7(react@18.2.0) "@chakra-ui/react-use-controllable-state": 2.0.8(react@18.2.0) @@ -4451,7 +3077,7 @@ packages: "@chakra-ui/react-use-safe-layout-effect": 2.0.5(react@18.2.0) "@chakra-ui/react-use-update-effect": 2.0.7(react@18.2.0) "@chakra-ui/shared-utils": 2.0.5 - "@chakra-ui/system": 2.5.1(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) + "@chakra-ui/system": 2.5.6(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) react: 18.2.0 dev: false @@ -4477,28 +3103,28 @@ packages: - "@types/react" dev: false - /@chakra-ui/form-control@2.0.17(@chakra-ui/system@2.5.1)(react@18.2.0): + /@chakra-ui/form-control@2.0.18(@chakra-ui/system@2.5.6)(react@18.2.0): resolution: { - integrity: sha512-34ptCaJ2LNvQNOlB6MAKsmH1AkT1xo7E+3Vw10Urr81yTOjDTM/iU6vG3JKPfRDMyXeowPjXmutlnuk72SSjRg==, + integrity: sha512-I0a0jG01IAtRPccOXSNugyRdUAe8Dy40ctqedZvznMweOXzbMCF1m+sHPLdWeWC/VI13VoAispdPY0/zHOdjsQ==, } peerDependencies: "@chakra-ui/system": ">=2.0.0" react: ">=18" dependencies: - "@chakra-ui/icon": 3.0.16(@chakra-ui/system@2.5.1)(react@18.2.0) - "@chakra-ui/react-context": 2.0.7(react@18.2.0) + "@chakra-ui/icon": 3.0.16(@chakra-ui/system@2.5.6)(react@18.2.0) + "@chakra-ui/react-context": 2.0.8(react@18.2.0) "@chakra-ui/react-types": 2.0.7(react@18.2.0) "@chakra-ui/react-use-merge-refs": 2.0.7(react@18.2.0) "@chakra-ui/shared-utils": 2.0.5 - "@chakra-ui/system": 2.5.1(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) + "@chakra-ui/system": 2.5.6(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/hooks@2.1.6(react@18.2.0): + /@chakra-ui/hooks@2.2.0(react@18.2.0): resolution: { - integrity: sha512-oMSOeoOF6/UpwTVlDFHSROAA4hPY8WgJ0erdHs1ZkuwAwHv7UzjDkvrb6xYzAAH9qHoFzc5RIBm6jVoh3LCc+Q==, + integrity: sha512-GZE64mcr20w+3KbCUPqQJHHmiFnX5Rcp8jS3YntGA4D5X2qU85jka7QkjfBwv/iduZ5Ei0YpCMYGCpi91dhD1Q==, } peerDependencies: react: ">=18" @@ -4510,7 +3136,7 @@ packages: react: 18.2.0 dev: false - /@chakra-ui/icon@3.0.16(@chakra-ui/system@2.5.1)(react@18.2.0): + /@chakra-ui/icon@3.0.16(@chakra-ui/system@2.5.6)(react@18.2.0): resolution: { integrity: sha512-RpA1X5Ptz8Mt39HSyEIW1wxAz2AXyf9H0JJ5HVx/dBdMZaGMDJ0HyyPBVci0m4RCoJuyG1HHG/DXJaVfUTVAeg==, @@ -4520,11 +3146,11 @@ packages: react: ">=18" dependencies: "@chakra-ui/shared-utils": 2.0.5 - "@chakra-ui/system": 2.5.1(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) + "@chakra-ui/system": 2.5.6(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/icon@3.0.16(@chakra-ui/system@2.6.1)(react@18.2.0): + /@chakra-ui/icon@3.0.16(@chakra-ui/system@2.6.2)(react@18.2.0): resolution: { integrity: sha512-RpA1X5Ptz8Mt39HSyEIW1wxAz2AXyf9H0JJ5HVx/dBdMZaGMDJ0HyyPBVci0m4RCoJuyG1HHG/DXJaVfUTVAeg==, @@ -4534,11 +3160,11 @@ packages: react: ">=18" dependencies: "@chakra-ui/shared-utils": 2.0.5 - "@chakra-ui/system": 2.6.1(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) + "@chakra-ui/system": 2.6.2(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/icons@2.0.17(@chakra-ui/system@2.6.1)(react@18.2.0): + /@chakra-ui/icons@2.0.17(@chakra-ui/system@2.6.2)(react@18.2.0): resolution: { integrity: sha512-HMJP0WrJgAmFR9+Xh/CBH0nVnGMsJ4ZC8MK6tMgxPKd9/muvn0I4hsicHqdPlLpmB0TlxlhkBAKaVMtOdz6F0w==, @@ -4547,15 +3173,15 @@ packages: "@chakra-ui/system": ">=2.0.0" react: ">=18" dependencies: - "@chakra-ui/icon": 3.0.16(@chakra-ui/system@2.6.1)(react@18.2.0) - "@chakra-ui/system": 2.6.1(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) + "@chakra-ui/icon": 3.0.16(@chakra-ui/system@2.6.2)(react@18.2.0) + "@chakra-ui/system": 2.6.2(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/image@2.0.15(@chakra-ui/system@2.5.1)(react@18.2.0): + /@chakra-ui/image@2.0.16(@chakra-ui/system@2.5.6)(react@18.2.0): resolution: { - integrity: sha512-w2rElXtI3FHXuGpMCsSklus+pO1Pl2LWDwsCGdpBQUvGFbnHfl7MftQgTlaGHeD5OS95Pxva39hKrA2VklKHiQ==, + integrity: sha512-iFypk1slgP3OK7VIPOtkB0UuiqVxNalgA59yoRM43xLIeZAEZpKngUVno4A2kFS61yKN0eIY4hXD3Xjm+25EJA==, } peerDependencies: "@chakra-ui/system": ">=2.0.0" @@ -4563,44 +3189,44 @@ packages: dependencies: "@chakra-ui/react-use-safe-layout-effect": 2.0.5(react@18.2.0) "@chakra-ui/shared-utils": 2.0.5 - "@chakra-ui/system": 2.5.1(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) + "@chakra-ui/system": 2.5.6(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/input@2.0.20(@chakra-ui/system@2.5.1)(react@18.2.0): + /@chakra-ui/input@2.0.22(@chakra-ui/system@2.5.6)(react@18.2.0): resolution: { - integrity: sha512-ypmsy4n4uNBVgn6Gd24Zrpi+qRf/T9WEzWkysuYC9Qfxo+i7yuf3snp7XmBy8KSGVSiXE11eO8ZN5oCg6Xg0jg==, + integrity: sha512-dCIC0/Q7mjZf17YqgoQsnXn0bus6vgriTRn8VmxOc+WcVl+KBSTBWujGrS5yu85WIFQ0aeqQvziDnDQybPqAbA==, } peerDependencies: "@chakra-ui/system": ">=2.0.0" react: ">=18" dependencies: - "@chakra-ui/form-control": 2.0.17(@chakra-ui/system@2.5.1)(react@18.2.0) - "@chakra-ui/object-utils": 2.0.8 + "@chakra-ui/form-control": 2.0.18(@chakra-ui/system@2.5.6)(react@18.2.0) + "@chakra-ui/object-utils": 2.1.0 "@chakra-ui/react-children-utils": 2.0.6(react@18.2.0) - "@chakra-ui/react-context": 2.0.7(react@18.2.0) + "@chakra-ui/react-context": 2.0.8(react@18.2.0) "@chakra-ui/shared-utils": 2.0.5 - "@chakra-ui/system": 2.5.1(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) + "@chakra-ui/system": 2.5.6(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/layout@2.1.16(@chakra-ui/system@2.5.1)(react@18.2.0): + /@chakra-ui/layout@2.1.19(@chakra-ui/system@2.5.6)(react@18.2.0): resolution: { - integrity: sha512-QFS3feozIGsvB0H74lUocev55aRF26eNrdmhfJifwikZAiq+zzZAMdBdNU9UJhHClnMOU8/iGZ0MF7ti4zQS1A==, + integrity: sha512-g7xMVKbQFCODwKCkEF4/OmdPsr/fAavWUV+DGc1ZWVPdroUlg1FGTpK9bOTwkC/gnko7cMClILA+BIPR3Ylu9Q==, } peerDependencies: "@chakra-ui/system": ">=2.0.0" react: ">=18" dependencies: "@chakra-ui/breakpoint-utils": 2.0.8 - "@chakra-ui/icon": 3.0.16(@chakra-ui/system@2.5.1)(react@18.2.0) - "@chakra-ui/object-utils": 2.0.8 + "@chakra-ui/icon": 3.0.16(@chakra-ui/system@2.5.6)(react@18.2.0) + "@chakra-ui/object-utils": 2.1.0 "@chakra-ui/react-children-utils": 2.0.6(react@18.2.0) - "@chakra-ui/react-context": 2.0.7(react@18.2.0) + "@chakra-ui/react-context": 2.0.8(react@18.2.0) "@chakra-ui/shared-utils": 2.0.5 - "@chakra-ui/system": 2.5.1(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) + "@chakra-ui/system": 2.5.6(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) react: 18.2.0 dev: false @@ -4622,7 +3248,7 @@ packages: react: 18.2.0 dev: false - /@chakra-ui/media-query@3.2.12(@chakra-ui/system@2.5.1)(react@18.2.0): + /@chakra-ui/media-query@3.2.12(@chakra-ui/system@2.5.6)(react@18.2.0): resolution: { integrity: sha512-8pSLDf3oxxhFrhd40rs7vSeIBfvOmIKHA7DJlGUC/y+9irD24ZwgmCtFnn+y3gI47hTJsopbSX+wb8nr7XPswA==, @@ -4634,14 +3260,14 @@ packages: "@chakra-ui/breakpoint-utils": 2.0.8 "@chakra-ui/react-env": 3.0.0(react@18.2.0) "@chakra-ui/shared-utils": 2.0.5 - "@chakra-ui/system": 2.5.1(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) + "@chakra-ui/system": 2.5.6(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/menu@2.1.9(@chakra-ui/system@2.5.1)(framer-motion@9.0.3)(react@18.2.0): + /@chakra-ui/menu@2.1.13(@chakra-ui/system@2.5.6)(framer-motion@9.0.3)(react@18.2.0): resolution: { - integrity: sha512-ue5nD4QJcl3H3UwN0zZNJmH89XUebnvEdW6THAUL41hDjJ0J/Fjpg9Sgzwug2aBbBXBNbVMsUuhcCj6x91d+IQ==, + integrity: sha512-O7ESUIxbqWINRaO9jkPbZ8vJVW+lxZIZ9K0q828XgYBMh5o7BS82XhT7li7CxWaSQNqBxS4XE9BU7btp1ADMrQ==, } peerDependencies: "@chakra-ui/system": ">=2.0.0" @@ -4649,29 +3275,29 @@ packages: react: ">=18" dependencies: "@chakra-ui/clickable": 2.0.14(react@18.2.0) - "@chakra-ui/descendant": 3.0.13(react@18.2.0) + "@chakra-ui/descendant": 3.0.14(react@18.2.0) "@chakra-ui/lazy-utils": 2.0.5 "@chakra-ui/popper": 3.0.13(react@18.2.0) "@chakra-ui/react-children-utils": 2.0.6(react@18.2.0) - "@chakra-ui/react-context": 2.0.7(react@18.2.0) + "@chakra-ui/react-context": 2.0.8(react@18.2.0) "@chakra-ui/react-use-animation-state": 2.0.8(react@18.2.0) "@chakra-ui/react-use-controllable-state": 2.0.8(react@18.2.0) "@chakra-ui/react-use-disclosure": 2.0.8(react@18.2.0) - "@chakra-ui/react-use-focus-effect": 2.0.9(react@18.2.0) + "@chakra-ui/react-use-focus-effect": 2.0.10(react@18.2.0) "@chakra-ui/react-use-merge-refs": 2.0.7(react@18.2.0) - "@chakra-ui/react-use-outside-click": 2.0.7(react@18.2.0) + "@chakra-ui/react-use-outside-click": 2.1.0(react@18.2.0) "@chakra-ui/react-use-update-effect": 2.0.7(react@18.2.0) "@chakra-ui/shared-utils": 2.0.5 - "@chakra-ui/system": 2.5.1(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) - "@chakra-ui/transition": 2.0.15(framer-motion@9.0.3)(react@18.2.0) + "@chakra-ui/system": 2.5.6(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) + "@chakra-ui/transition": 2.0.16(framer-motion@9.0.3)(react@18.2.0) framer-motion: 9.0.3(react-dom@18.2.0)(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/modal@2.2.9(@chakra-ui/system@2.5.1)(@types/react@18.0.25)(framer-motion@9.0.3)(react-dom@18.2.0)(react@18.2.0): + /@chakra-ui/modal@2.2.11(@chakra-ui/system@2.5.6)(@types/react@18.0.25)(framer-motion@9.0.3)(react-dom@18.2.0)(react@18.2.0): resolution: { - integrity: sha512-nTfNp7XsVwn5+xJOtstoFA8j0kq/9sJj7KesyYzjEDaMKvCZvIOntRYowoydho43jb4+YC7ebKhp0KOIINS0gg==, + integrity: sha512-2J0ZUV5tEzkPiawdkgPz6bmex7NXAde1VXooMwdvK+vuT8PV3U61yorTJOZVLdw7TjjI1Yo94mzsp6UwBud43Q==, } peerDependencies: "@chakra-ui/system": ">=2.0.0" @@ -4679,15 +3305,15 @@ packages: react: ">=18" react-dom: ">=18" dependencies: - "@chakra-ui/close-button": 2.0.17(@chakra-ui/system@2.5.1)(react@18.2.0) + "@chakra-ui/close-button": 2.0.17(@chakra-ui/system@2.5.6)(react@18.2.0) "@chakra-ui/focus-lock": 2.0.16(@types/react@18.0.25)(react@18.2.0) - "@chakra-ui/portal": 2.0.15(react-dom@18.2.0)(react@18.2.0) - "@chakra-ui/react-context": 2.0.7(react@18.2.0) + "@chakra-ui/portal": 2.0.16(react-dom@18.2.0)(react@18.2.0) + "@chakra-ui/react-context": 2.0.8(react@18.2.0) "@chakra-ui/react-types": 2.0.7(react@18.2.0) "@chakra-ui/react-use-merge-refs": 2.0.7(react@18.2.0) "@chakra-ui/shared-utils": 2.0.5 - "@chakra-ui/system": 2.5.1(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) - "@chakra-ui/transition": 2.0.15(framer-motion@9.0.3)(react@18.2.0) + "@chakra-ui/system": 2.5.6(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) + "@chakra-ui/transition": 2.0.16(framer-motion@9.0.3)(react@18.2.0) aria-hidden: 1.2.2(@types/react@18.0.25)(react@18.2.0) framer-motion: 9.0.3(react-dom@18.2.0)(react@18.2.0) react: 18.2.0 @@ -4697,19 +3323,19 @@ packages: - "@types/react" dev: false - /@chakra-ui/number-input@2.0.18(@chakra-ui/system@2.5.1)(react@18.2.0): + /@chakra-ui/number-input@2.0.19(@chakra-ui/system@2.5.6)(react@18.2.0): resolution: { - integrity: sha512-cPkyAFFHHzeFBselrT1BtjlzMkJ6TKrTDUnHFlzqXy6aqeXuhrjFhMfXucjedSpOqedsP9ZbKFTdIAhu9DdL/A==, + integrity: sha512-HDaITvtMEqOauOrCPsARDxKD9PSHmhWywpcyCSOX0lMe4xx2aaGhU0QQFhsJsykj8Er6pytMv6t0KZksdDv3YA==, } peerDependencies: "@chakra-ui/system": ">=2.0.0" react: ">=18" dependencies: "@chakra-ui/counter": 2.0.14(react@18.2.0) - "@chakra-ui/form-control": 2.0.17(@chakra-ui/system@2.5.1)(react@18.2.0) - "@chakra-ui/icon": 3.0.16(@chakra-ui/system@2.5.1)(react@18.2.0) - "@chakra-ui/react-context": 2.0.7(react@18.2.0) + "@chakra-ui/form-control": 2.0.18(@chakra-ui/system@2.5.6)(react@18.2.0) + "@chakra-ui/icon": 3.0.16(@chakra-ui/system@2.5.6)(react@18.2.0) + "@chakra-ui/react-context": 2.0.8(react@18.2.0) "@chakra-ui/react-types": 2.0.7(react@18.2.0) "@chakra-ui/react-use-callback-ref": 2.0.7(react@18.2.0) "@chakra-ui/react-use-event-listener": 2.0.7(react@18.2.0) @@ -4718,7 +3344,7 @@ packages: "@chakra-ui/react-use-safe-layout-effect": 2.0.5(react@18.2.0) "@chakra-ui/react-use-update-effect": 2.0.7(react@18.2.0) "@chakra-ui/shared-utils": 2.0.5 - "@chakra-ui/system": 2.5.1(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) + "@chakra-ui/system": 2.5.6(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) react: 18.2.0 dev: false @@ -4729,13 +3355,6 @@ packages: } dev: false - /@chakra-ui/object-utils@2.0.8: - resolution: - { - integrity: sha512-2upjT2JgRuiupdrtBWklKBS6tqeGMA77Nh6Q0JaoQuH/8yq+15CGckqn3IUWkWoGI0Fg3bK9LDlbbD+9DLw95Q==, - } - dev: false - /@chakra-ui/object-utils@2.1.0: resolution: { @@ -4743,47 +3362,47 @@ packages: } dev: false - /@chakra-ui/pin-input@2.0.19(@chakra-ui/system@2.5.1)(react@18.2.0): + /@chakra-ui/pin-input@2.0.20(@chakra-ui/system@2.5.6)(react@18.2.0): resolution: { - integrity: sha512-6O7s4vWz4cqQ6zvMov9sYj6ZqWAsTxR/MNGe3DNgu1zWQg8veNCYtj1rNGhNS3eZNUMAa8uM2dXIphGTP53Xow==, + integrity: sha512-IHVmerrtHN8F+jRB3W1HnMir1S1TUCWhI7qDInxqPtoRffHt6mzZgLZ0izx8p1fD4HkW4c1d4/ZLEz9uH9bBRg==, } peerDependencies: "@chakra-ui/system": ">=2.0.0" react: ">=18" dependencies: - "@chakra-ui/descendant": 3.0.13(react@18.2.0) + "@chakra-ui/descendant": 3.0.14(react@18.2.0) "@chakra-ui/react-children-utils": 2.0.6(react@18.2.0) - "@chakra-ui/react-context": 2.0.7(react@18.2.0) + "@chakra-ui/react-context": 2.0.8(react@18.2.0) "@chakra-ui/react-use-controllable-state": 2.0.8(react@18.2.0) "@chakra-ui/react-use-merge-refs": 2.0.7(react@18.2.0) "@chakra-ui/shared-utils": 2.0.5 - "@chakra-ui/system": 2.5.1(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) + "@chakra-ui/system": 2.5.6(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/popover@2.1.8(@chakra-ui/system@2.5.1)(framer-motion@9.0.3)(react@18.2.0): + /@chakra-ui/popover@2.1.10(@chakra-ui/system@2.5.6)(framer-motion@9.0.3)(react@18.2.0): resolution: { - integrity: sha512-ob7fAz+WWmXIq7iGHVB3wDKzZTj+T+noYBT/U1Q+jIf+jMr2WOpJLTfb0HTZcfhvn4EBFlfBg7Wk5qbXNaOn7g==, + integrity: sha512-UCEW+zp2GEuNYvyK42+cQECSMSBFWcA0CD7Ip6TUL32BLF8EkYz5U5Gdx5Nhd/mlSE2lxo7c72/LOQd0emsO/A==, } peerDependencies: "@chakra-ui/system": ">=2.0.0" framer-motion: ">=4.0.0" react: ">=18" dependencies: - "@chakra-ui/close-button": 2.0.17(@chakra-ui/system@2.5.1)(react@18.2.0) + "@chakra-ui/close-button": 2.0.17(@chakra-ui/system@2.5.6)(react@18.2.0) "@chakra-ui/lazy-utils": 2.0.5 "@chakra-ui/popper": 3.0.13(react@18.2.0) - "@chakra-ui/react-context": 2.0.7(react@18.2.0) + "@chakra-ui/react-context": 2.0.8(react@18.2.0) "@chakra-ui/react-types": 2.0.7(react@18.2.0) "@chakra-ui/react-use-animation-state": 2.0.8(react@18.2.0) "@chakra-ui/react-use-disclosure": 2.0.8(react@18.2.0) - "@chakra-ui/react-use-focus-effect": 2.0.9(react@18.2.0) + "@chakra-ui/react-use-focus-effect": 2.0.10(react@18.2.0) "@chakra-ui/react-use-focus-on-pointer-down": 2.0.6(react@18.2.0) "@chakra-ui/react-use-merge-refs": 2.0.7(react@18.2.0) "@chakra-ui/shared-utils": 2.0.5 - "@chakra-ui/system": 2.5.1(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) + "@chakra-ui/system": 2.5.6(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) framer-motion: 9.0.3(react-dom@18.2.0)(react@18.2.0) react: 18.2.0 dev: false @@ -4802,39 +3421,39 @@ packages: react: 18.2.0 dev: false - /@chakra-ui/portal@2.0.15(react-dom@18.2.0)(react@18.2.0): + /@chakra-ui/portal@2.0.16(react-dom@18.2.0)(react@18.2.0): resolution: { - integrity: sha512-z8v7K3j1/nMuBzp2+wRIIw7s/eipVtnXLdjK5yqbMxMRa44E8Mu5VNJLz3aQFLHXEUST+ifqrjImQeli9do6LQ==, + integrity: sha512-bVID0qbQ0l4xq38LdqAN4EKD4/uFkDnXzFwOlviC9sl0dNhzICDb1ltuH/Adl1d2HTMqyN60O3GO58eHy7plnQ==, } peerDependencies: react: ">=18" react-dom: ">=18" dependencies: - "@chakra-ui/react-context": 2.0.7(react@18.2.0) + "@chakra-ui/react-context": 2.0.8(react@18.2.0) "@chakra-ui/react-use-safe-layout-effect": 2.0.5(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false - /@chakra-ui/progress@2.1.5(@chakra-ui/system@2.5.1)(react@18.2.0): + /@chakra-ui/progress@2.1.6(@chakra-ui/system@2.5.6)(react@18.2.0): resolution: { - integrity: sha512-jj5Vp4lxUchuwp4RPCepM0yAyKi344bgsOd3Apd+ldxclDcewPc82fbwDu7g/Xv27LqJkT+7E/SlQy04wGrk0g==, + integrity: sha512-hHh5Ysv4z6bK+j2GJbi/FT9CVyto2PtNUNwBmr3oNMVsoOUMoRjczfXvvYqp0EHr9PCpxqrq7sRwgQXUzhbDSw==, } peerDependencies: "@chakra-ui/system": ">=2.0.0" react: ">=18" dependencies: - "@chakra-ui/react-context": 2.0.7(react@18.2.0) - "@chakra-ui/system": 2.5.1(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) + "@chakra-ui/react-context": 2.0.8(react@18.2.0) + "@chakra-ui/system": 2.5.6(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/provider@2.1.2(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react-dom@18.2.0)(react@18.2.0): + /@chakra-ui/provider@2.2.3(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react-dom@18.2.0)(react@18.2.0): resolution: { - integrity: sha512-4lLlz8QuJv00BhfyKzWpzfoti9MDOdJ/MqXixJV/EZ02RMBOdE9qy9bSz/WckPC2MVhtRUuwMkxH+0QY21PXuw==, + integrity: sha512-vLvs69tkq3D7sjmGV5ry8c93TKK0K5XfT2hTWr0QRPRvsccDSoEbYtCI8lb36kOZdXhYa/K8nd81vM+UBp0tzw==, } peerDependencies: "@emotion/react": ^11.0.0 @@ -4842,33 +3461,33 @@ packages: react: ">=18" react-dom: ">=18" dependencies: - "@chakra-ui/css-reset": 2.0.12(@emotion/react@11.10.5)(react@18.2.0) - "@chakra-ui/portal": 2.0.15(react-dom@18.2.0)(react@18.2.0) + "@chakra-ui/css-reset": 2.1.1(@emotion/react@11.10.5)(react@18.2.0) + "@chakra-ui/portal": 2.0.16(react-dom@18.2.0)(react@18.2.0) "@chakra-ui/react-env": 3.0.0(react@18.2.0) - "@chakra-ui/system": 2.5.1(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) + "@chakra-ui/system": 2.5.6(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) "@chakra-ui/utils": 2.0.15 - "@emotion/react": 11.10.5(@babel/core@7.20.5)(@types/react@18.0.25)(react@18.2.0) - "@emotion/styled": 11.10.5(@babel/core@7.20.5)(@emotion/react@11.10.5)(@types/react@18.0.25)(react@18.2.0) + "@emotion/react": 11.10.5(@babel/core@7.23.6)(@types/react@18.0.25)(react@18.2.0) + "@emotion/styled": 11.10.5(@babel/core@7.23.6)(@emotion/react@11.10.5)(@types/react@18.0.25)(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false - /@chakra-ui/radio@2.0.19(@chakra-ui/system@2.5.1)(react@18.2.0): + /@chakra-ui/radio@2.0.22(@chakra-ui/system@2.5.6)(react@18.2.0): resolution: { - integrity: sha512-PlJiV59eGSmeKP4v/4+ccQUWGRd0cjPKkj/p3L+UbOf8pl9dWm8y9kIeL5TYbghQSDv0nzkrH4+yMnnDTZjdMQ==, + integrity: sha512-GsQ5WAnLwivWl6gPk8P1x+tCcpVakCt5R5T0HumF7DGPXKdJbjS+RaFySrbETmyTJsKY4QrfXn+g8CWVrMjPjw==, } peerDependencies: "@chakra-ui/system": ">=2.0.0" react: ">=18" dependencies: - "@chakra-ui/form-control": 2.0.17(@chakra-ui/system@2.5.1)(react@18.2.0) - "@chakra-ui/react-context": 2.0.7(react@18.2.0) + "@chakra-ui/form-control": 2.0.18(@chakra-ui/system@2.5.6)(react@18.2.0) + "@chakra-ui/react-context": 2.0.8(react@18.2.0) "@chakra-ui/react-types": 2.0.7(react@18.2.0) "@chakra-ui/react-use-merge-refs": 2.0.7(react@18.2.0) "@chakra-ui/shared-utils": 2.0.5 - "@chakra-ui/system": 2.5.1(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) - "@zag-js/focus-visible": 0.2.1 + "@chakra-ui/system": 2.5.6(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) + "@zag-js/focus-visible": 0.2.2 react: 18.2.0 dev: false @@ -4883,10 +3502,10 @@ packages: react: 18.2.0 dev: false - /@chakra-ui/react-context@2.0.7(react@18.2.0): + /@chakra-ui/react-context@2.0.8(react@18.2.0): resolution: { - integrity: sha512-i7EGmSU+h2GB30cwrKB4t1R5BMHyGoJM5L2Zz7b+ZUX4aAqyPcfe97wPiQB6Rgr1ImGXrUeov4CDVrRZ2FPgLQ==, + integrity: sha512-tRTKdn6lCTXM6WPjSokAAKCw2ioih7Eg8cNgaYRSwKBck8nkz9YqxgIIEj3dJD7MGtpl24S/SNI98iRWkRwR/A==, } peerDependencies: react: ">=18" @@ -4977,10 +3596,10 @@ packages: react: 18.2.0 dev: false - /@chakra-ui/react-use-focus-effect@2.0.9(react@18.2.0): + /@chakra-ui/react-use-focus-effect@2.0.10(react@18.2.0): resolution: { - integrity: sha512-20nfNkpbVwyb41q9wxp8c4jmVp6TUGAPE3uFTDpiGcIOyPW5aecQtPmTXPMJH+2aa8Nu1wyoT1btxO+UYiQM3g==, + integrity: sha512-HswfpzjP8gCQM3/fbeR+8wrYqt0B3ChnVTqssnYXqp9Fa/5Y1Kx1ZADUWW93zMs5SF7hIEuNt8uKeh1/3HTcqQ==, } peerDependencies: react: ">=18" @@ -5038,10 +3657,10 @@ packages: react: 18.2.0 dev: false - /@chakra-ui/react-use-outside-click@2.0.7(react@18.2.0): + /@chakra-ui/react-use-outside-click@2.1.0(react@18.2.0): resolution: { - integrity: sha512-MsAuGLkwYNxNJ5rb8lYNvXApXxYMnJ3MzqBpQj1kh5qP/+JSla9XMjE/P94ub4fSEttmNSqs43SmPPrmPuihsQ==, + integrity: sha512-JanCo4QtWvMl9ZZUpKJKV62RlMWDFdPCE0Q64a7eWTOQgWWcpyBW7TOYRunQTqrK30FqkYFJCOlAWOtn+6Rw7A==, } peerDependencies: react: ">=18" @@ -5097,15 +3716,15 @@ packages: react: 18.2.0 dev: false - /@chakra-ui/react-use-size@2.0.9(react@18.2.0): + /@chakra-ui/react-use-size@2.0.10(react@18.2.0): resolution: { - integrity: sha512-Jce7QmO1jlQZq+Y77VKckWzroRnajChzUQ8xhLQZO6VbYvrpg3cu+X2QCz3G+MZzB+1/hnvvAqmZ+uJLd8rEJg==, + integrity: sha512-fdIkH14GDnKQrtQfxX8N3gxbXRPXEl67Y3zeD9z4bKKcQUAYIMqs0MsPZY+FMpGQw8QqafM44nXfL038aIrC5w==, } peerDependencies: react: ">=18" dependencies: - "@zag-js/element-size": 0.3.1 + "@zag-js/element-size": 0.3.2 react: 18.2.0 dev: false @@ -5144,10 +3763,10 @@ packages: react: 18.2.0 dev: false - /@chakra-ui/react@2.5.1(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(@types/react@18.0.25)(framer-motion@9.0.3)(react-dom@18.2.0)(react@18.2.0): + /@chakra-ui/react@2.6.0(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(@types/react@18.0.25)(framer-motion@9.0.3)(react-dom@18.2.0)(react@18.2.0): resolution: { - integrity: sha512-ugkaqfcNMb9L4TkalWiF3rnqfr0TlUUD46JZaDIZiORVisaSwXTZTQrVfG40VghhaJT28rnC5WtiE8kd567ZBQ==, + integrity: sha512-dhufu/A4O5tQ65p//XGfvUqSrf0qRAgTmFRlBZ7HucyxF5RStQ65FXiTXV0s4Pj0X5hgSJm3oCasV6UD6MXYbw==, } peerDependencies: "@emotion/react": ^11.0.0 @@ -5156,59 +3775,60 @@ packages: react: ">=18" react-dom: ">=18" dependencies: - "@chakra-ui/accordion": 2.1.9(@chakra-ui/system@2.5.1)(framer-motion@9.0.3)(react@18.2.0) - "@chakra-ui/alert": 2.0.17(@chakra-ui/system@2.5.1)(react@18.2.0) - "@chakra-ui/avatar": 2.2.5(@chakra-ui/system@2.5.1)(react@18.2.0) - "@chakra-ui/breadcrumb": 2.1.4(@chakra-ui/system@2.5.1)(react@18.2.0) - "@chakra-ui/button": 2.0.16(@chakra-ui/system@2.5.1)(react@18.2.0) - "@chakra-ui/card": 2.1.6(@chakra-ui/system@2.5.1)(react@18.2.0) - "@chakra-ui/checkbox": 2.2.10(@chakra-ui/system@2.5.1)(react@18.2.0) - "@chakra-ui/close-button": 2.0.17(@chakra-ui/system@2.5.1)(react@18.2.0) - "@chakra-ui/control-box": 2.0.13(@chakra-ui/system@2.5.1)(react@18.2.0) + "@chakra-ui/accordion": 2.1.11(@chakra-ui/system@2.5.6)(framer-motion@9.0.3)(react@18.2.0) + "@chakra-ui/alert": 2.1.0(@chakra-ui/system@2.5.6)(react@18.2.0) + "@chakra-ui/avatar": 2.2.9(@chakra-ui/system@2.5.6)(react@18.2.0) + "@chakra-ui/breadcrumb": 2.1.5(@chakra-ui/system@2.5.6)(react@18.2.0) + "@chakra-ui/button": 2.0.18(@chakra-ui/system@2.5.6)(react@18.2.0) + "@chakra-ui/card": 2.1.6(@chakra-ui/system@2.5.6)(react@18.2.0) + "@chakra-ui/checkbox": 2.2.15(@chakra-ui/system@2.5.6)(react@18.2.0) + "@chakra-ui/close-button": 2.0.17(@chakra-ui/system@2.5.6)(react@18.2.0) + "@chakra-ui/control-box": 2.0.13(@chakra-ui/system@2.5.6)(react@18.2.0) "@chakra-ui/counter": 2.0.14(react@18.2.0) - "@chakra-ui/css-reset": 2.0.12(@emotion/react@11.10.5)(react@18.2.0) - "@chakra-ui/editable": 2.0.19(@chakra-ui/system@2.5.1)(react@18.2.0) + "@chakra-ui/css-reset": 2.1.1(@emotion/react@11.10.5)(react@18.2.0) + "@chakra-ui/editable": 3.0.0(@chakra-ui/system@2.5.6)(react@18.2.0) "@chakra-ui/focus-lock": 2.0.16(@types/react@18.0.25)(react@18.2.0) - "@chakra-ui/form-control": 2.0.17(@chakra-ui/system@2.5.1)(react@18.2.0) - "@chakra-ui/hooks": 2.1.6(react@18.2.0) - "@chakra-ui/icon": 3.0.16(@chakra-ui/system@2.5.1)(react@18.2.0) - "@chakra-ui/image": 2.0.15(@chakra-ui/system@2.5.1)(react@18.2.0) - "@chakra-ui/input": 2.0.20(@chakra-ui/system@2.5.1)(react@18.2.0) - "@chakra-ui/layout": 2.1.16(@chakra-ui/system@2.5.1)(react@18.2.0) + "@chakra-ui/form-control": 2.0.18(@chakra-ui/system@2.5.6)(react@18.2.0) + "@chakra-ui/hooks": 2.2.0(react@18.2.0) + "@chakra-ui/icon": 3.0.16(@chakra-ui/system@2.5.6)(react@18.2.0) + "@chakra-ui/image": 2.0.16(@chakra-ui/system@2.5.6)(react@18.2.0) + "@chakra-ui/input": 2.0.22(@chakra-ui/system@2.5.6)(react@18.2.0) + "@chakra-ui/layout": 2.1.19(@chakra-ui/system@2.5.6)(react@18.2.0) "@chakra-ui/live-region": 2.0.13(react@18.2.0) - "@chakra-ui/media-query": 3.2.12(@chakra-ui/system@2.5.1)(react@18.2.0) - "@chakra-ui/menu": 2.1.9(@chakra-ui/system@2.5.1)(framer-motion@9.0.3)(react@18.2.0) - "@chakra-ui/modal": 2.2.9(@chakra-ui/system@2.5.1)(@types/react@18.0.25)(framer-motion@9.0.3)(react-dom@18.2.0)(react@18.2.0) - "@chakra-ui/number-input": 2.0.18(@chakra-ui/system@2.5.1)(react@18.2.0) - "@chakra-ui/pin-input": 2.0.19(@chakra-ui/system@2.5.1)(react@18.2.0) - "@chakra-ui/popover": 2.1.8(@chakra-ui/system@2.5.1)(framer-motion@9.0.3)(react@18.2.0) + "@chakra-ui/media-query": 3.2.12(@chakra-ui/system@2.5.6)(react@18.2.0) + "@chakra-ui/menu": 2.1.13(@chakra-ui/system@2.5.6)(framer-motion@9.0.3)(react@18.2.0) + "@chakra-ui/modal": 2.2.11(@chakra-ui/system@2.5.6)(@types/react@18.0.25)(framer-motion@9.0.3)(react-dom@18.2.0)(react@18.2.0) + "@chakra-ui/number-input": 2.0.19(@chakra-ui/system@2.5.6)(react@18.2.0) + "@chakra-ui/pin-input": 2.0.20(@chakra-ui/system@2.5.6)(react@18.2.0) + "@chakra-ui/popover": 2.1.10(@chakra-ui/system@2.5.6)(framer-motion@9.0.3)(react@18.2.0) "@chakra-ui/popper": 3.0.13(react@18.2.0) - "@chakra-ui/portal": 2.0.15(react-dom@18.2.0)(react@18.2.0) - "@chakra-ui/progress": 2.1.5(@chakra-ui/system@2.5.1)(react@18.2.0) - "@chakra-ui/provider": 2.1.2(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react-dom@18.2.0)(react@18.2.0) - "@chakra-ui/radio": 2.0.19(@chakra-ui/system@2.5.1)(react@18.2.0) + "@chakra-ui/portal": 2.0.16(react-dom@18.2.0)(react@18.2.0) + "@chakra-ui/progress": 2.1.6(@chakra-ui/system@2.5.6)(react@18.2.0) + "@chakra-ui/provider": 2.2.3(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react-dom@18.2.0)(react@18.2.0) + "@chakra-ui/radio": 2.0.22(@chakra-ui/system@2.5.6)(react@18.2.0) "@chakra-ui/react-env": 3.0.0(react@18.2.0) - "@chakra-ui/select": 2.0.18(@chakra-ui/system@2.5.1)(react@18.2.0) - "@chakra-ui/skeleton": 2.0.24(@chakra-ui/system@2.5.1)(react@18.2.0) - "@chakra-ui/slider": 2.0.21(@chakra-ui/system@2.5.1)(react@18.2.0) - "@chakra-ui/spinner": 2.0.13(@chakra-ui/system@2.5.1)(react@18.2.0) - "@chakra-ui/stat": 2.0.17(@chakra-ui/system@2.5.1)(react@18.2.0) - "@chakra-ui/styled-system": 2.6.1 - "@chakra-ui/switch": 2.0.22(@chakra-ui/system@2.5.1)(framer-motion@9.0.3)(react@18.2.0) - "@chakra-ui/system": 2.5.1(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) - "@chakra-ui/table": 2.0.16(@chakra-ui/system@2.5.1)(react@18.2.0) - "@chakra-ui/tabs": 2.1.8(@chakra-ui/system@2.5.1)(react@18.2.0) - "@chakra-ui/tag": 2.0.17(@chakra-ui/system@2.5.1)(react@18.2.0) - "@chakra-ui/textarea": 2.0.18(@chakra-ui/system@2.5.1)(react@18.2.0) - "@chakra-ui/theme": 2.2.5(@chakra-ui/styled-system@2.6.1) - "@chakra-ui/theme-utils": 2.0.11 - "@chakra-ui/toast": 6.0.1(@chakra-ui/system@2.5.1)(framer-motion@9.0.3)(react-dom@18.2.0)(react@18.2.0) - "@chakra-ui/tooltip": 2.2.6(@chakra-ui/system@2.5.1)(framer-motion@9.0.3)(react-dom@18.2.0)(react@18.2.0) - "@chakra-ui/transition": 2.0.15(framer-motion@9.0.3)(react@18.2.0) + "@chakra-ui/select": 2.0.19(@chakra-ui/system@2.5.6)(react@18.2.0) + "@chakra-ui/skeleton": 2.0.24(@chakra-ui/system@2.5.6)(react@18.2.0) + "@chakra-ui/slider": 2.0.23(@chakra-ui/system@2.5.6)(react@18.2.0) + "@chakra-ui/spinner": 2.0.13(@chakra-ui/system@2.5.6)(react@18.2.0) + "@chakra-ui/stat": 2.0.18(@chakra-ui/system@2.5.6)(react@18.2.0) + "@chakra-ui/stepper": 2.1.0(@chakra-ui/system@2.5.6)(react@18.2.0) + "@chakra-ui/styled-system": 2.9.0 + "@chakra-ui/switch": 2.0.27(@chakra-ui/system@2.5.6)(framer-motion@9.0.3)(react@18.2.0) + "@chakra-ui/system": 2.5.6(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) + "@chakra-ui/table": 2.0.17(@chakra-ui/system@2.5.6)(react@18.2.0) + "@chakra-ui/tabs": 2.1.9(@chakra-ui/system@2.5.6)(react@18.2.0) + "@chakra-ui/tag": 3.0.0(@chakra-ui/system@2.5.6)(react@18.2.0) + "@chakra-ui/textarea": 2.0.19(@chakra-ui/system@2.5.6)(react@18.2.0) + "@chakra-ui/theme": 3.1.0(@chakra-ui/styled-system@2.9.0) + "@chakra-ui/theme-utils": 2.0.16 + "@chakra-ui/toast": 6.1.2(@chakra-ui/system@2.5.6)(framer-motion@9.0.3)(react-dom@18.2.0)(react@18.2.0) + "@chakra-ui/tooltip": 2.2.7(@chakra-ui/system@2.5.6)(framer-motion@9.0.3)(react-dom@18.2.0)(react@18.2.0) + "@chakra-ui/transition": 2.0.16(framer-motion@9.0.3)(react@18.2.0) "@chakra-ui/utils": 2.0.15 - "@chakra-ui/visually-hidden": 2.0.15(@chakra-ui/system@2.5.1)(react@18.2.0) - "@emotion/react": 11.10.5(@babel/core@7.20.5)(@types/react@18.0.25)(react@18.2.0) - "@emotion/styled": 11.10.5(@babel/core@7.20.5)(@emotion/react@11.10.5)(@types/react@18.0.25)(react@18.2.0) + "@chakra-ui/visually-hidden": 2.0.15(@chakra-ui/system@2.5.6)(react@18.2.0) + "@emotion/react": 11.10.5(@babel/core@7.23.6)(@types/react@18.0.25)(react@18.2.0) + "@emotion/styled": 11.10.5(@babel/core@7.23.6)(@emotion/react@11.10.5)(@types/react@18.0.25)(react@18.2.0) framer-motion: 9.0.3(react-dom@18.2.0)(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -5216,18 +3836,18 @@ packages: - "@types/react" dev: false - /@chakra-ui/select@2.0.18(@chakra-ui/system@2.5.1)(react@18.2.0): + /@chakra-ui/select@2.0.19(@chakra-ui/system@2.5.6)(react@18.2.0): resolution: { - integrity: sha512-1d2lUT5LM6oOs5x4lzBh4GFDuXX62+lr+sgV7099g951/5UNbb0CS2hSZHsO7yZThLNbr7QTWZvAOAayVcGzdw==, + integrity: sha512-eAlFh+JhwtJ17OrB6fO6gEAGOMH18ERNrXLqWbYLrs674Le7xuREgtuAYDoxUzvYXYYTTdOJtVbcHGriI3o6rA==, } peerDependencies: "@chakra-ui/system": ">=2.0.0" react: ">=18" dependencies: - "@chakra-ui/form-control": 2.0.17(@chakra-ui/system@2.5.1)(react@18.2.0) + "@chakra-ui/form-control": 2.0.18(@chakra-ui/system@2.5.6)(react@18.2.0) "@chakra-ui/shared-utils": 2.0.5 - "@chakra-ui/system": 2.5.1(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) + "@chakra-ui/system": 2.5.6(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) react: 18.2.0 dev: false @@ -5238,7 +3858,7 @@ packages: } dev: false - /@chakra-ui/skeleton@2.0.24(@chakra-ui/system@2.5.1)(react@18.2.0): + /@chakra-ui/skeleton@2.0.24(@chakra-ui/system@2.5.6)(react@18.2.0): resolution: { integrity: sha512-1jXtVKcl/jpbrJlc/TyMsFyI651GTXY5ma30kWyTXoby2E+cxbV6OR8GB/NMZdGxbQBax8/VdtYVjI0n+OBqWA==, @@ -5247,37 +3867,37 @@ packages: "@chakra-ui/system": ">=2.0.0" react: ">=18" dependencies: - "@chakra-ui/media-query": 3.2.12(@chakra-ui/system@2.5.1)(react@18.2.0) + "@chakra-ui/media-query": 3.2.12(@chakra-ui/system@2.5.6)(react@18.2.0) "@chakra-ui/react-use-previous": 2.0.5(react@18.2.0) "@chakra-ui/shared-utils": 2.0.5 - "@chakra-ui/system": 2.5.1(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) + "@chakra-ui/system": 2.5.6(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/slider@2.0.21(@chakra-ui/system@2.5.1)(react@18.2.0): + /@chakra-ui/slider@2.0.23(@chakra-ui/system@2.5.6)(react@18.2.0): resolution: { - integrity: sha512-Mm76yJxEqJl21+3waEcKg3tM8Y4elJ7mcViN6Brj35PTfzUJfSJxeBGo1nLPJ+X5jLj7o/L4kfBmUk3lY4QYEQ==, + integrity: sha512-/eyRUXLla+ZdBUPXpakE3SAS2JS8mIJR6qcUYiPVKSpRAi6tMyYeQijAXn2QC1AUVd2JrG8Pz+1Jy7Po3uA7cA==, } peerDependencies: "@chakra-ui/system": ">=2.0.0" react: ">=18" dependencies: "@chakra-ui/number-utils": 2.0.7 - "@chakra-ui/react-context": 2.0.7(react@18.2.0) + "@chakra-ui/react-context": 2.0.8(react@18.2.0) "@chakra-ui/react-types": 2.0.7(react@18.2.0) "@chakra-ui/react-use-callback-ref": 2.0.7(react@18.2.0) "@chakra-ui/react-use-controllable-state": 2.0.8(react@18.2.0) "@chakra-ui/react-use-latest-ref": 2.0.5(react@18.2.0) "@chakra-ui/react-use-merge-refs": 2.0.7(react@18.2.0) "@chakra-ui/react-use-pan-event": 2.0.9(react@18.2.0) - "@chakra-ui/react-use-size": 2.0.9(react@18.2.0) + "@chakra-ui/react-use-size": 2.0.10(react@18.2.0) "@chakra-ui/react-use-update-effect": 2.0.7(react@18.2.0) - "@chakra-ui/system": 2.5.1(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) + "@chakra-ui/system": 2.5.6(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/spinner@2.0.13(@chakra-ui/system@2.5.1)(react@18.2.0): + /@chakra-ui/spinner@2.0.13(@chakra-ui/system@2.5.6)(react@18.2.0): resolution: { integrity: sha512-T1/aSkVpUIuiYyrjfn1+LsQEG7Onbi1UE9ccS/evgf61Dzy4GgTXQUnDuWFSgpV58owqirqOu6jn/9eCwDlzlg==, @@ -5287,69 +3907,85 @@ packages: react: ">=18" dependencies: "@chakra-ui/shared-utils": 2.0.5 - "@chakra-ui/system": 2.5.1(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) + "@chakra-ui/system": 2.5.6(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/stat@2.0.17(@chakra-ui/system@2.5.1)(react@18.2.0): + /@chakra-ui/stat@2.0.18(@chakra-ui/system@2.5.6)(react@18.2.0): resolution: { - integrity: sha512-PhD+5oVLWjQmGLfeZSmexp3AtLcaggWBwoMZ4z8QMZIQzf/fJJWMk0bMqxlpTv8ORDkfY/4ImuFB/RJHvcqlcA==, + integrity: sha512-wKyfBqhVlIs9bkSerUc6F9KJMw0yTIEKArW7dejWwzToCLPr47u+CtYO6jlJHV6lRvkhi4K4Qc6pyvtJxZ3VpA==, } peerDependencies: "@chakra-ui/system": ">=2.0.0" react: ">=18" dependencies: - "@chakra-ui/icon": 3.0.16(@chakra-ui/system@2.5.1)(react@18.2.0) - "@chakra-ui/react-context": 2.0.7(react@18.2.0) + "@chakra-ui/icon": 3.0.16(@chakra-ui/system@2.5.6)(react@18.2.0) + "@chakra-ui/react-context": 2.0.8(react@18.2.0) "@chakra-ui/shared-utils": 2.0.5 - "@chakra-ui/system": 2.5.1(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) + "@chakra-ui/system": 2.5.6(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/styled-system@2.6.1: + /@chakra-ui/stepper@2.1.0(@chakra-ui/system@2.5.6)(react@18.2.0): resolution: { - integrity: sha512-jy/1dVi1LxjoRCm+Eo5mqBgvPy5SCWMlIcz6GbIZBDpkGeKZwtqrZLjekxxLBCy8ORY+kJlUB0FT6AzVR/1tjw==, + integrity: sha512-Xo/3U+nduhLWNUAAQ0XuIeJjXhSCrxyEJ0PSGwR+2I8PJq82GDIxXjvfpeDLCHoB225l3Wyuy4paeIHkUQhDxA==, } + peerDependencies: + "@chakra-ui/system": ">=2.0.0" + react: ">=18" dependencies: + "@chakra-ui/icon": 3.0.16(@chakra-ui/system@2.5.6)(react@18.2.0) + "@chakra-ui/react-context": 2.0.8(react@18.2.0) "@chakra-ui/shared-utils": 2.0.5 - csstype: 3.1.1 + "@chakra-ui/system": 2.5.6(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) + react: 18.2.0 + dev: false + + /@chakra-ui/styled-system@2.9.0: + resolution: + { + integrity: sha512-rToN30eOezrTZ5qBHmWqEwsYPenHtc3WU6ODAfMUwNnmCJQiu2erRGv8JwIjmRJnKSOEnNKccI2UXe2EwI6+JA==, + } + dependencies: + "@chakra-ui/shared-utils": 2.0.5 + csstype: 3.1.3 lodash.mergewith: 4.6.2 dev: false - /@chakra-ui/styled-system@2.9.1: + /@chakra-ui/styled-system@2.9.2: resolution: { - integrity: sha512-jhYKBLxwOPi9/bQt9kqV3ELa/4CjmNNruTyXlPp5M0v0+pDMUngPp48mVLoskm9RKZGE0h1qpvj/jZ3K7c7t8w==, + integrity: sha512-To/Z92oHpIE+4nk11uVMWqo2GGRS86coeMmjxtpnErmWRdLcp1WVCVRAvn+ZwpLiNR+reWFr2FFqJRsREuZdAg==, } dependencies: "@chakra-ui/shared-utils": 2.0.5 - csstype: 3.1.2 + csstype: 3.1.3 lodash.mergewith: 4.6.2 dev: false - /@chakra-ui/switch@2.0.22(@chakra-ui/system@2.5.1)(framer-motion@9.0.3)(react@18.2.0): + /@chakra-ui/switch@2.0.27(@chakra-ui/system@2.5.6)(framer-motion@9.0.3)(react@18.2.0): resolution: { - integrity: sha512-+/Yy6y7VFD91uSPruF8ZvePi3tl5D8UNVATtWEQ+QBI92DLSM+PtgJ2F0Y9GMZ9NzMxpZ80DqwY7/kqcPCfLvw==, + integrity: sha512-z76y2fxwMlvRBrC5W8xsZvo3gP+zAEbT3Nqy5P8uh/IPd5OvDsGeac90t5cgnQTyxMOpznUNNK+1eUZqtLxWnQ==, } peerDependencies: "@chakra-ui/system": ">=2.0.0" framer-motion: ">=4.0.0" react: ">=18" dependencies: - "@chakra-ui/checkbox": 2.2.10(@chakra-ui/system@2.5.1)(react@18.2.0) + "@chakra-ui/checkbox": 2.2.15(@chakra-ui/system@2.5.6)(react@18.2.0) "@chakra-ui/shared-utils": 2.0.5 - "@chakra-ui/system": 2.5.1(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) + "@chakra-ui/system": 2.5.6(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) framer-motion: 9.0.3(react-dom@18.2.0)(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/system@2.5.1(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0): + /@chakra-ui/system@2.5.6(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0): resolution: { - integrity: sha512-4+86OrcSoq7lGkm5fh+sJ3IWXSTzjz+HOllRbCW2Rtnmcg7ritiXVNV2VygEg2DrCcx5+tNqRHDM764zW+AEug==, + integrity: sha512-sKzonHUbjOnRxZvcysN8pqa3y0OkTb9xWPhNFnvye/Km8vZhw4SfHKbVpRXedMPVp5Q3PHOxqAXOs6Q0kpo6KA==, } peerDependencies: "@emotion/react": ^11.0.0 @@ -5357,21 +3993,21 @@ packages: react: ">=18" dependencies: "@chakra-ui/color-mode": 2.1.12(react@18.2.0) - "@chakra-ui/object-utils": 2.0.8 + "@chakra-ui/object-utils": 2.1.0 "@chakra-ui/react-utils": 2.0.12(react@18.2.0) - "@chakra-ui/styled-system": 2.6.1 - "@chakra-ui/theme-utils": 2.0.11 + "@chakra-ui/styled-system": 2.9.0 + "@chakra-ui/theme-utils": 2.0.16 "@chakra-ui/utils": 2.0.15 - "@emotion/react": 11.10.5(@babel/core@7.20.5)(@types/react@18.0.25)(react@18.2.0) - "@emotion/styled": 11.10.5(@babel/core@7.20.5)(@emotion/react@11.10.5)(@types/react@18.0.25)(react@18.2.0) + "@emotion/react": 11.10.5(@babel/core@7.23.6)(@types/react@18.0.25)(react@18.2.0) + "@emotion/styled": 11.10.5(@babel/core@7.23.6)(@emotion/react@11.10.5)(@types/react@18.0.25)(react@18.2.0) react: 18.2.0 - react-fast-compare: 3.2.0 + react-fast-compare: 3.2.1 dev: false - /@chakra-ui/system@2.6.1(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0): + /@chakra-ui/system@2.6.2(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0): resolution: { - integrity: sha512-P5Q/XRWy3f1pXJ7IxDkV+Z6AT7GJeR2JlBnQl109xewVQcBLWWMIp702fFMFw8KZ2ALB/aYKtWm5EmQMddC/tg==, + integrity: sha512-EGtpoEjLrUu4W1fHD+a62XR+hzC5YfsWm+6lO0Kybcga3yYEij9beegO0jZgug27V+Rf7vns95VPVP6mFd/DEQ==, } peerDependencies: "@emotion/react": ^11.0.0 @@ -5381,83 +4017,83 @@ packages: "@chakra-ui/color-mode": 2.2.0(react@18.2.0) "@chakra-ui/object-utils": 2.1.0 "@chakra-ui/react-utils": 2.0.12(react@18.2.0) - "@chakra-ui/styled-system": 2.9.1 - "@chakra-ui/theme-utils": 2.0.20 + "@chakra-ui/styled-system": 2.9.2 + "@chakra-ui/theme-utils": 2.0.21 "@chakra-ui/utils": 2.0.15 - "@emotion/react": 11.10.5(@babel/core@7.20.5)(@types/react@18.0.25)(react@18.2.0) - "@emotion/styled": 11.10.5(@babel/core@7.20.5)(@emotion/react@11.10.5)(@types/react@18.0.25)(react@18.2.0) + "@emotion/react": 11.10.5(@babel/core@7.23.6)(@types/react@18.0.25)(react@18.2.0) + "@emotion/styled": 11.10.5(@babel/core@7.23.6)(@emotion/react@11.10.5)(@types/react@18.0.25)(react@18.2.0) react: 18.2.0 react-fast-compare: 3.2.2 dev: false - /@chakra-ui/table@2.0.16(@chakra-ui/system@2.5.1)(react@18.2.0): + /@chakra-ui/table@2.0.17(@chakra-ui/system@2.5.6)(react@18.2.0): resolution: { - integrity: sha512-vWDXZ6Ad3Aj66curp1tZBHvCfQHX2FJ4ijLiqGgQszWFIchfhJ5vMgEBJaFMZ+BN1draAjuRTZqaQefOApzvRg==, + integrity: sha512-OScheTEp1LOYvTki2NFwnAYvac8siAhW9BI5RKm5f5ORL2gVJo4I72RUqE0aKe1oboxgm7CYt5afT5PS5cG61A==, } peerDependencies: "@chakra-ui/system": ">=2.0.0" react: ">=18" dependencies: - "@chakra-ui/react-context": 2.0.7(react@18.2.0) + "@chakra-ui/react-context": 2.0.8(react@18.2.0) "@chakra-ui/shared-utils": 2.0.5 - "@chakra-ui/system": 2.5.1(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) + "@chakra-ui/system": 2.5.6(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/tabs@2.1.8(@chakra-ui/system@2.5.1)(react@18.2.0): + /@chakra-ui/tabs@2.1.9(@chakra-ui/system@2.5.6)(react@18.2.0): resolution: { - integrity: sha512-B7LeFN04Ny2jsSy5TFOQxnbZ6ITxGxLxsB2PE0vvQjMSblBrUryOxdjw80HZhfiw6od0ikK9CeKQOIt9QCguSw==, + integrity: sha512-Yf8e0kRvaGM6jfkJum0aInQ0U3ZlCafmrYYni2lqjcTtThqu+Yosmo3iYlnullXxCw5MVznfrkb9ySvgQowuYg==, } peerDependencies: "@chakra-ui/system": ">=2.0.0" react: ">=18" dependencies: "@chakra-ui/clickable": 2.0.14(react@18.2.0) - "@chakra-ui/descendant": 3.0.13(react@18.2.0) + "@chakra-ui/descendant": 3.0.14(react@18.2.0) "@chakra-ui/lazy-utils": 2.0.5 "@chakra-ui/react-children-utils": 2.0.6(react@18.2.0) - "@chakra-ui/react-context": 2.0.7(react@18.2.0) + "@chakra-ui/react-context": 2.0.8(react@18.2.0) "@chakra-ui/react-use-controllable-state": 2.0.8(react@18.2.0) "@chakra-ui/react-use-merge-refs": 2.0.7(react@18.2.0) "@chakra-ui/react-use-safe-layout-effect": 2.0.5(react@18.2.0) "@chakra-ui/shared-utils": 2.0.5 - "@chakra-ui/system": 2.5.1(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) + "@chakra-ui/system": 2.5.6(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/tag@2.0.17(@chakra-ui/system@2.5.1)(react@18.2.0): + /@chakra-ui/tag@3.0.0(@chakra-ui/system@2.5.6)(react@18.2.0): resolution: { - integrity: sha512-A47zE9Ft9qxOJ+5r1cUseKRCoEdqCRzFm0pOtZgRcckqavglk75Xjgz8HbBpUO2zqqd49MlqdOwR8o87fXS1vg==, + integrity: sha512-YWdMmw/1OWRwNkG9pX+wVtZio+B89odaPj6XeMn5nfNN8+jyhIEpouWv34+CO9G0m1lupJTxPSfgLAd7cqXZMA==, } peerDependencies: "@chakra-ui/system": ">=2.0.0" react: ">=18" dependencies: - "@chakra-ui/icon": 3.0.16(@chakra-ui/system@2.5.1)(react@18.2.0) - "@chakra-ui/react-context": 2.0.7(react@18.2.0) - "@chakra-ui/system": 2.5.1(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) + "@chakra-ui/icon": 3.0.16(@chakra-ui/system@2.5.6)(react@18.2.0) + "@chakra-ui/react-context": 2.0.8(react@18.2.0) + "@chakra-ui/system": 2.5.6(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/textarea@2.0.18(@chakra-ui/system@2.5.1)(react@18.2.0): + /@chakra-ui/textarea@2.0.19(@chakra-ui/system@2.5.6)(react@18.2.0): resolution: { - integrity: sha512-aGHHb29vVifO0OtcK/k8cMykzjOKo/coDTU0NJqz7OOLAWIMNV2eGenvmO1n9tTZbmbqHiX+Sa1nPRX+pd14lg==, + integrity: sha512-adJk+qVGsFeJDvfn56CcJKKse8k7oMGlODrmpnpTdF+xvlsiTM+1GfaJvgNSpHHuQFdz/A0z1uJtfGefk0G2ZA==, } peerDependencies: "@chakra-ui/system": ">=2.0.0" react: ">=18" dependencies: - "@chakra-ui/form-control": 2.0.17(@chakra-ui/system@2.5.1)(react@18.2.0) + "@chakra-ui/form-control": 2.0.18(@chakra-ui/system@2.5.6)(react@18.2.0) "@chakra-ui/shared-utils": 2.0.5 - "@chakra-ui/system": 2.5.1(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) + "@chakra-ui/system": 2.5.6(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) react: 18.2.0 dev: false - /@chakra-ui/theme-tools@2.0.17(@chakra-ui/styled-system@2.6.1): + /@chakra-ui/theme-tools@2.0.17(@chakra-ui/styled-system@2.9.0): resolution: { integrity: sha512-Auu38hnihlJZQcPok6itRDBbwof3TpXGYtDPnOvrq4Xp7jnab36HLt7KEXSDPXbtOk3ZqU99pvI1en5LbDrdjg==, @@ -5467,106 +4103,106 @@ packages: dependencies: "@chakra-ui/anatomy": 2.1.2 "@chakra-ui/shared-utils": 2.0.5 - "@chakra-ui/styled-system": 2.6.1 - color2k: 2.0.2 + "@chakra-ui/styled-system": 2.9.0 + color2k: 2.0.3 dev: false - /@chakra-ui/theme-tools@2.1.1(@chakra-ui/styled-system@2.9.1): + /@chakra-ui/theme-tools@2.1.2(@chakra-ui/styled-system@2.9.2): resolution: { - integrity: sha512-n14L5L3ej3Zy+Xm/kDKO1G6/DkmieT7Li1C7NzMRcUj5C9YybQpyo7IZZ0BBUh3u+OVnKVhNC3d4P2NYDGRXmA==, + integrity: sha512-Qdj8ajF9kxY4gLrq7gA+Azp8CtFHGO9tWMN2wfF9aQNgG9AuMhPrUzMq9AMQ0MXiYcgNq/FD3eegB43nHVmXVA==, } peerDependencies: "@chakra-ui/styled-system": ">=2.0.0" dependencies: - "@chakra-ui/anatomy": 2.2.1 + "@chakra-ui/anatomy": 2.2.2 "@chakra-ui/shared-utils": 2.0.5 - "@chakra-ui/styled-system": 2.9.1 - color2k: 2.0.2 + "@chakra-ui/styled-system": 2.9.2 + color2k: 2.0.3 dev: false - /@chakra-ui/theme-utils@2.0.11: + /@chakra-ui/theme-utils@2.0.16: resolution: { - integrity: sha512-lBAay6Sq3/fl7exd3mFxWAbzgdQowytor0fnlHrpNStn1HgFjXukwsf6356XQOie2Vd8qaMM7qZtMh4AiC0dcg==, + integrity: sha512-xVrQ8YEhIX51PB27kbEGHoQ3G78erSykqOeIPkoxaEfWBV4Ba83o7RwEZG8/Qa7c7S4qYPmCSGynegBWrsQpHA==, } dependencies: "@chakra-ui/shared-utils": 2.0.5 - "@chakra-ui/styled-system": 2.6.1 - "@chakra-ui/theme": 2.2.5(@chakra-ui/styled-system@2.6.1) + "@chakra-ui/styled-system": 2.9.0 + "@chakra-ui/theme": 3.1.0(@chakra-ui/styled-system@2.9.0) lodash.mergewith: 4.6.2 dev: false - /@chakra-ui/theme-utils@2.0.20: + /@chakra-ui/theme-utils@2.0.21: resolution: { - integrity: sha512-IkAzSmwBlRIZ3dN2InDz0tf9SldbckVkgwylCobSFmYP8lnMjykL8Lex1BBo9U8UQjZxEDVZ+Qw6SeayKRntOQ==, + integrity: sha512-FjH5LJbT794r0+VSCXB3lT4aubI24bLLRWB+CuRKHijRvsOg717bRdUN/N1fEmEpFnRVrbewttWh/OQs0EWpWw==, } dependencies: "@chakra-ui/shared-utils": 2.0.5 - "@chakra-ui/styled-system": 2.9.1 - "@chakra-ui/theme": 3.3.0(@chakra-ui/styled-system@2.9.1) + "@chakra-ui/styled-system": 2.9.2 + "@chakra-ui/theme": 3.3.1(@chakra-ui/styled-system@2.9.2) lodash.mergewith: 4.6.2 dev: false - /@chakra-ui/theme@2.2.5(@chakra-ui/styled-system@2.6.1): + /@chakra-ui/theme@3.1.0(@chakra-ui/styled-system@2.9.0): resolution: { - integrity: sha512-hYASZMwu0NqEv6PPydu+F3I+kMNd44yR4TwjR/lXBz/LEh64L6UPY6kQjebCfgdVtsGdl3HKg+eLlfa7SvfRgw==, + integrity: sha512-lO2p37lyEGVmGUrr+lakHpnvrJHkkfPnSM+w9MGmR0V0rqIGTIBrirBO07vDccNRS17jcXjA8d9QZEBYzIVyNw==, } peerDependencies: - "@chakra-ui/styled-system": ">=2.0.0" + "@chakra-ui/styled-system": ">=2.8.0" dependencies: "@chakra-ui/anatomy": 2.1.2 "@chakra-ui/shared-utils": 2.0.5 - "@chakra-ui/styled-system": 2.6.1 - "@chakra-ui/theme-tools": 2.0.17(@chakra-ui/styled-system@2.6.1) + "@chakra-ui/styled-system": 2.9.0 + "@chakra-ui/theme-tools": 2.0.17(@chakra-ui/styled-system@2.9.0) dev: false - /@chakra-ui/theme@3.3.0(@chakra-ui/styled-system@2.9.1): + /@chakra-ui/theme@3.3.1(@chakra-ui/styled-system@2.9.2): resolution: { - integrity: sha512-VHY2ax5Wqgfm83U/zYBk0GS0TGD8m41s/rxQgnEq8tU+ug1YZjvOZmtOq/VjfKP/bQraFhCt05zchcxXmDpEYg==, + integrity: sha512-Hft/VaT8GYnItGCBbgWd75ICrIrIFrR7lVOhV/dQnqtfGqsVDlrztbSErvMkoPKt0UgAkd9/o44jmZ6X4U2nZQ==, } peerDependencies: "@chakra-ui/styled-system": ">=2.8.0" dependencies: - "@chakra-ui/anatomy": 2.2.1 + "@chakra-ui/anatomy": 2.2.2 "@chakra-ui/shared-utils": 2.0.5 - "@chakra-ui/styled-system": 2.9.1 - "@chakra-ui/theme-tools": 2.1.1(@chakra-ui/styled-system@2.9.1) + "@chakra-ui/styled-system": 2.9.2 + "@chakra-ui/theme-tools": 2.1.2(@chakra-ui/styled-system@2.9.2) dev: false - /@chakra-ui/toast@6.0.1(@chakra-ui/system@2.5.1)(framer-motion@9.0.3)(react-dom@18.2.0)(react@18.2.0): + /@chakra-ui/toast@6.1.2(@chakra-ui/system@2.5.6)(framer-motion@9.0.3)(react-dom@18.2.0)(react@18.2.0): resolution: { - integrity: sha512-ej2kJXvu/d2h6qnXU5D8XTyw0qpsfmbiU7hUffo/sPxkz89AUOQ08RUuUmB1ssW/FZcQvNMJ5WgzCTKHGBxtxw==, + integrity: sha512-hKSv6tX0zgZIZDMpIzs0kZM56sYrD5lvlLQ5JfERLi0KTSTeP+vbYh4+Vg3GTXPCn1JBF7mZRX0gU22WEMfJ8A==, } peerDependencies: - "@chakra-ui/system": 2.5.1 + "@chakra-ui/system": 2.5.6 framer-motion: ">=4.0.0" react: ">=18" react-dom: ">=18" dependencies: - "@chakra-ui/alert": 2.0.17(@chakra-ui/system@2.5.1)(react@18.2.0) - "@chakra-ui/close-button": 2.0.17(@chakra-ui/system@2.5.1)(react@18.2.0) - "@chakra-ui/portal": 2.0.15(react-dom@18.2.0)(react@18.2.0) - "@chakra-ui/react-context": 2.0.7(react@18.2.0) + "@chakra-ui/alert": 2.1.0(@chakra-ui/system@2.5.6)(react@18.2.0) + "@chakra-ui/close-button": 2.0.17(@chakra-ui/system@2.5.6)(react@18.2.0) + "@chakra-ui/portal": 2.0.16(react-dom@18.2.0)(react@18.2.0) + "@chakra-ui/react-context": 2.0.8(react@18.2.0) "@chakra-ui/react-use-timeout": 2.0.5(react@18.2.0) "@chakra-ui/react-use-update-effect": 2.0.7(react@18.2.0) "@chakra-ui/shared-utils": 2.0.5 - "@chakra-ui/styled-system": 2.6.1 - "@chakra-ui/system": 2.5.1(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) - "@chakra-ui/theme": 2.2.5(@chakra-ui/styled-system@2.6.1) + "@chakra-ui/styled-system": 2.9.0 + "@chakra-ui/system": 2.5.6(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) + "@chakra-ui/theme": 3.1.0(@chakra-ui/styled-system@2.9.0) framer-motion: 9.0.3(react-dom@18.2.0)(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false - /@chakra-ui/tooltip@2.2.6(@chakra-ui/system@2.5.1)(framer-motion@9.0.3)(react-dom@18.2.0)(react@18.2.0): + /@chakra-ui/tooltip@2.2.7(@chakra-ui/system@2.5.6)(framer-motion@9.0.3)(react-dom@18.2.0)(react@18.2.0): resolution: { - integrity: sha512-4cbneidZ5+HCWge3OZzewRQieIvhDjSsl+scrl4Scx7E0z3OmqlTIESU5nGIZDBLYqKn/UirEZhqaQ33FOS2fw==, + integrity: sha512-ImUJ6NnVqARaYqpgtO+kzucDRmxo8AF3jMjARw0bx2LxUkKwgRCOEaaRK5p5dHc0Kr6t5/XqjDeUNa19/sLauA==, } peerDependencies: "@chakra-ui/system": ">=2.0.0" @@ -5575,22 +4211,22 @@ packages: react-dom: ">=18" dependencies: "@chakra-ui/popper": 3.0.13(react@18.2.0) - "@chakra-ui/portal": 2.0.15(react-dom@18.2.0)(react@18.2.0) + "@chakra-ui/portal": 2.0.16(react-dom@18.2.0)(react@18.2.0) "@chakra-ui/react-types": 2.0.7(react@18.2.0) "@chakra-ui/react-use-disclosure": 2.0.8(react@18.2.0) "@chakra-ui/react-use-event-listener": 2.0.7(react@18.2.0) "@chakra-ui/react-use-merge-refs": 2.0.7(react@18.2.0) "@chakra-ui/shared-utils": 2.0.5 - "@chakra-ui/system": 2.5.1(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) + "@chakra-ui/system": 2.5.6(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) framer-motion: 9.0.3(react-dom@18.2.0)(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false - /@chakra-ui/transition@2.0.15(framer-motion@9.0.3)(react@18.2.0): + /@chakra-ui/transition@2.0.16(framer-motion@9.0.3)(react@18.2.0): resolution: { - integrity: sha512-o9LBK/llQfUDHF/Ty3cQ6nShpekKTqHUoJlUOzNKhoTsNpoRerr9v0jwojrX1YI02KtVjfhFU6PiqXlDfREoNw==, + integrity: sha512-E+RkwlPc3H7P1crEXmXwDXMB2lqY2LLia2P5siQ4IEnRWIgZXlIw+8Em+NtHNgusel2N+9yuB0wT9SeZZeZ3CQ==, } peerDependencies: framer-motion: ">=4.0.0" @@ -5613,7 +4249,7 @@ packages: lodash.mergewith: 4.6.2 dev: false - /@chakra-ui/visually-hidden@2.0.15(@chakra-ui/system@2.5.1)(react@18.2.0): + /@chakra-ui/visually-hidden@2.0.15(@chakra-ui/system@2.5.6)(react@18.2.0): resolution: { integrity: sha512-WWULIiucYRBIewHKFA7BssQ2ABLHLVd9lrUo3N3SZgR0u4ZRDDVEUNOy+r+9ruDze8+36dGbN9wsN1IdELtdOw==, @@ -5622,7 +4258,7 @@ packages: "@chakra-ui/system": ">=2.0.0" react: ">=18" dependencies: - "@chakra-ui/system": 2.5.1(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) + "@chakra-ui/system": 2.5.6(@emotion/react@11.10.5)(@emotion/styled@11.10.5)(react@18.2.0) react: 18.2.0 dev: false @@ -5644,7 +4280,7 @@ packages: engines: { node: ">=10.0.0" } dev: true - /@emotion/babel-plugin@11.10.5(@babel/core@7.20.5): + /@emotion/babel-plugin@11.10.5(@babel/core@7.23.6): resolution: { integrity: sha512-xE7/hyLHJac7D2Ve9dKroBBZqBT7WuPQmWcq7HSGb84sUuP4mlOWoB8dvVfD9yk5DHkU1m6RW7xSoDtnQHNQeA==, @@ -5652,9 +4288,9 @@ packages: peerDependencies: "@babel/core": ^7.0.0 dependencies: - "@babel/core": 7.20.5 + "@babel/core": 7.23.6 "@babel/helper-module-imports": 7.22.5 - "@babel/plugin-syntax-jsx": 7.18.6(@babel/core@7.20.5) + "@babel/plugin-syntax-jsx": 7.18.6(@babel/core@7.23.6) "@babel/runtime": 7.23.2 "@emotion/hash": 0.9.0 "@emotion/memoize": 0.8.0 @@ -5722,7 +4358,7 @@ packages: } dev: false - /@emotion/react@11.10.5(@babel/core@7.20.5)(@types/react@18.0.25)(react@18.2.0): + /@emotion/react@11.10.5(@babel/core@7.23.6)(@types/react@18.0.25)(react@18.2.0): resolution: { integrity: sha512-TZs6235tCJ/7iF6/rvTaOH4oxQg2gMAcdHemjwLKIjKz4rRuYe1HJ2TQJKnAcRAfOUDdU8XoDadCe1rl72iv8A==, @@ -5737,9 +4373,9 @@ packages: "@types/react": optional: true dependencies: - "@babel/core": 7.20.5 + "@babel/core": 7.23.6 "@babel/runtime": 7.20.13 - "@emotion/babel-plugin": 11.10.5(@babel/core@7.20.5) + "@emotion/babel-plugin": 11.10.5(@babel/core@7.23.6) "@emotion/cache": 11.10.5 "@emotion/serialize": 1.1.1 "@emotion/use-insertion-effect-with-fallbacks": 1.0.0(react@18.2.0) @@ -5760,7 +4396,7 @@ packages: "@emotion/memoize": 0.8.0 "@emotion/unitless": 0.8.0 "@emotion/utils": 1.2.0 - csstype: 3.1.1 + csstype: 3.1.3 dev: false /@emotion/sheet@1.2.1: @@ -5770,7 +4406,7 @@ packages: } dev: false - /@emotion/styled@11.10.5(@babel/core@7.20.5)(@emotion/react@11.10.5)(@types/react@18.0.25)(react@18.2.0): + /@emotion/styled@11.10.5(@babel/core@7.23.6)(@emotion/react@11.10.5)(@types/react@18.0.25)(react@18.2.0): resolution: { integrity: sha512-8EP6dD7dMkdku2foLoruPCNkRevzdcBaY6q0l0OsbyJK+x8D9HWjX27ARiSIKNF634hY9Zdoedh8bJCiva8yZw==, @@ -5786,11 +4422,11 @@ packages: "@types/react": optional: true dependencies: - "@babel/core": 7.20.5 + "@babel/core": 7.23.6 "@babel/runtime": 7.20.13 - "@emotion/babel-plugin": 11.10.5(@babel/core@7.20.5) + "@emotion/babel-plugin": 11.10.5(@babel/core@7.23.6) "@emotion/is-prop-valid": 1.2.0 - "@emotion/react": 11.10.5(@babel/core@7.20.5)(@types/react@18.0.25)(react@18.2.0) + "@emotion/react": 11.10.5(@babel/core@7.23.6)(@types/react@18.0.25)(react@18.2.0) "@emotion/serialize": 1.1.1 "@emotion/use-insertion-effect-with-fallbacks": 1.0.0(react@18.2.0) "@emotion/utils": 1.2.0 @@ -5815,6 +4451,17 @@ packages: dependencies: react: 18.2.0 + /@emotion/use-insertion-effect-with-fallbacks@1.0.1(react@18.2.0): + resolution: + { + integrity: sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==, + } + peerDependencies: + react: ">=16.8.0" + dependencies: + react: 18.2.0 + dev: true + /@emotion/utils@1.2.0: resolution: { @@ -5829,10 +4476,22 @@ packages: } dev: false - /@esbuild/android-arm64@0.17.18: + /@esbuild/aix-ppc64@0.19.10: + resolution: + { + integrity: sha512-Q+mk96KJ+FZ30h9fsJl+67IjNJm3x2eX+GBWGmocAKgzp27cowCOOqSdscX80s0SpdFXZnIv/+1xD1EctFx96Q==, + } + engines: { node: ">=12" } + cpu: [ppc64] + os: [aix] + requiresBuild: true + dev: true + optional: true + + /@esbuild/android-arm64@0.17.19: resolution: { - integrity: sha512-/iq0aK0eeHgSC3z55ucMAHO05OIqmQehiGay8eP5l/5l+iEr4EIbh4/MI8xD9qRFjqzgkc0JkX0LculNC9mXBw==, + integrity: sha512-KBMWvEZooR7+kzY0BtbTQn0OAYY7CsiydT63pVEaPtVYF0hXbUaOyZog37DKxK7NF3XacBJOpYT4adIJh+avxA==, } engines: { node: ">=12" } cpu: [arm64] @@ -5853,10 +4512,22 @@ packages: dev: true optional: true - /@esbuild/android-arm@0.17.18: + /@esbuild/android-arm64@0.19.10: + resolution: + { + integrity: sha512-1X4CClKhDgC3by7k8aOWZeBXQX8dHT5QAMCAQDArCLaYfkppoARvh0fit3X2Qs+MXDngKcHv6XXyQCpY0hkK1Q==, + } + engines: { node: ">=12" } + cpu: [arm64] + os: [android] + requiresBuild: true + dev: true + optional: true + + /@esbuild/android-arm@0.17.19: resolution: { - integrity: sha512-EmwL+vUBZJ7mhFCs5lA4ZimpUH3WMAoqvOIYhVQwdIgSpHC8ImHdsRyhHAVxpDYUSm0lWvd63z0XH1IlImS2Qw==, + integrity: sha512-rIKddzqhmav7MSmoFCmDIb6e2W57geRsM94gV2l38fzhXMwq7hZoClug9USI2pFRGL06f4IOPHHpFNOkWieR8A==, } engines: { node: ">=12" } cpu: [arm] @@ -5877,10 +4548,22 @@ packages: dev: true optional: true - /@esbuild/android-x64@0.17.18: + /@esbuild/android-arm@0.19.10: resolution: { - integrity: sha512-x+0efYNBF3NPW2Xc5bFOSFW7tTXdAcpfEg2nXmxegm4mJuVeS+i109m/7HMiOQ6M12aVGGFlqJX3RhNdYM2lWg==, + integrity: sha512-7W0bK7qfkw1fc2viBfrtAEkDKHatYfHzr/jKAHNr9BvkYDXPcC6bodtm8AyLJNNuqClLNaeTLuwURt4PRT9d7w==, + } + engines: { node: ">=12" } + cpu: [arm] + os: [android] + requiresBuild: true + dev: true + optional: true + + /@esbuild/android-x64@0.17.19: + resolution: + { + integrity: sha512-uUTTc4xGNDT7YSArp/zbtmbhO0uEEK9/ETW29Wk1thYUJBz3IVnvgEiEwEa9IeLyvnpKrWK64Utw2bgUmDveww==, } engines: { node: ">=12" } cpu: [x64] @@ -5901,10 +4584,22 @@ packages: dev: true optional: true - /@esbuild/darwin-arm64@0.17.18: + /@esbuild/android-x64@0.19.10: + resolution: + { + integrity: sha512-O/nO/g+/7NlitUxETkUv/IvADKuZXyH4BHf/g/7laqKC4i/7whLpB0gvpPc2zpF0q9Q6FXS3TS75QHac9MvVWw==, + } + engines: { node: ">=12" } + cpu: [x64] + os: [android] + requiresBuild: true + dev: true + optional: true + + /@esbuild/darwin-arm64@0.17.19: resolution: { - integrity: sha512-6tY+djEAdF48M1ONWnQb1C+6LiXrKjmqjzPNPWXhu/GzOHTHX2nh8Mo2ZAmBFg0kIodHhciEgUBtcYCAIjGbjQ==, + integrity: sha512-80wEoCfF/hFKM6WE1FyBHc9SfUblloAWx6FJkFWTWiCoht9Mc0ARGEM47e67W9rI09YoUxJL68WHfDRYEAvOhg==, } engines: { node: ">=12" } cpu: [arm64] @@ -5925,10 +4620,22 @@ packages: dev: true optional: true - /@esbuild/darwin-x64@0.17.18: + /@esbuild/darwin-arm64@0.19.10: + resolution: + { + integrity: sha512-YSRRs2zOpwypck+6GL3wGXx2gNP7DXzetmo5pHXLrY/VIMsS59yKfjPizQ4lLt5vEI80M41gjm2BxrGZ5U+VMA==, + } + engines: { node: ">=12" } + cpu: [arm64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /@esbuild/darwin-x64@0.17.19: resolution: { - integrity: sha512-Qq84ykvLvya3dO49wVC9FFCNUfSrQJLbxhoQk/TE1r6MjHo3sFF2tlJCwMjhkBVq3/ahUisj7+EpRSz0/+8+9A==, + integrity: sha512-IJM4JJsLhRYr9xdtLytPLSH9k/oxR3boaUIYiHkAawtwNOXKE8KoU8tMvryogdcT8AU+Bflmh81Xn6Q0vTZbQw==, } engines: { node: ">=12" } cpu: [x64] @@ -5949,10 +4656,22 @@ packages: dev: true optional: true - /@esbuild/freebsd-arm64@0.17.18: + /@esbuild/darwin-x64@0.19.10: + resolution: + { + integrity: sha512-alfGtT+IEICKtNE54hbvPg13xGBe4GkVxyGWtzr+yHO7HIiRJppPDhOKq3zstTcVf8msXb/t4eavW3jCDpMSmA==, + } + engines: { node: ">=12" } + cpu: [x64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /@esbuild/freebsd-arm64@0.17.19: resolution: { - integrity: sha512-fw/ZfxfAzuHfaQeMDhbzxp9mc+mHn1Y94VDHFHjGvt2Uxl10mT4CDavHm+/L9KG441t1QdABqkVYwakMUeyLRA==, + integrity: sha512-pBwbc7DufluUeGdjSU5Si+P3SoMF5DQ/F/UmTSb8HXO80ZEAJmrykPyzo1IfNbAoaqw48YRpv8shwd1NoI0jcQ==, } engines: { node: ">=12" } cpu: [arm64] @@ -5973,10 +4692,22 @@ packages: dev: true optional: true - /@esbuild/freebsd-x64@0.17.18: + /@esbuild/freebsd-arm64@0.19.10: + resolution: + { + integrity: sha512-dMtk1wc7FSH8CCkE854GyGuNKCewlh+7heYP/sclpOG6Cectzk14qdUIY5CrKDbkA/OczXq9WesqnPl09mj5dg==, + } + engines: { node: ">=12" } + cpu: [arm64] + os: [freebsd] + requiresBuild: true + dev: true + optional: true + + /@esbuild/freebsd-x64@0.17.19: resolution: { - integrity: sha512-FQFbRtTaEi8ZBi/A6kxOC0V0E9B/97vPdYjY9NdawyLd4Qk5VD5g2pbWN2VR1c0xhzcJm74HWpObPszWC+qTew==, + integrity: sha512-4lu+n8Wk0XlajEhbEffdy2xy53dpR06SlzvhGByyg36qJw6Kpfk7cp45DR/62aPH9mtJRmIyrXAS5UWBrJT6TQ==, } engines: { node: ">=12" } cpu: [x64] @@ -5997,10 +4728,22 @@ packages: dev: true optional: true - /@esbuild/linux-arm64@0.17.18: + /@esbuild/freebsd-x64@0.19.10: + resolution: + { + integrity: sha512-G5UPPspryHu1T3uX8WiOEUa6q6OlQh6gNl4CO4Iw5PS+Kg5bVggVFehzXBJY6X6RSOMS8iXDv2330VzaObm4Ag==, + } + engines: { node: ">=12" } + cpu: [x64] + os: [freebsd] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-arm64@0.17.19: resolution: { - integrity: sha512-R7pZvQZFOY2sxUG8P6A21eq6q+eBv7JPQYIybHVf1XkQYC+lT7nDBdC7wWKTrbvMXKRaGudp/dzZCwL/863mZQ==, + integrity: sha512-ct1Tg3WGwd3P+oZYqic+YZF4snNl2bsnMKRkb3ozHmnM0dGWuxcPTTntAF6bOP0Sp4x0PjSF+4uHQ1xvxfRKqg==, } engines: { node: ">=12" } cpu: [arm64] @@ -6021,10 +4764,22 @@ packages: dev: true optional: true - /@esbuild/linux-arm@0.17.18: + /@esbuild/linux-arm64@0.19.10: + resolution: + { + integrity: sha512-QxaouHWZ+2KWEj7cGJmvTIHVALfhpGxo3WLmlYfJ+dA5fJB6lDEIg+oe/0//FuyVHuS3l79/wyBxbHr0NgtxJQ==, + } + engines: { node: ">=12" } + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-arm@0.17.19: resolution: { - integrity: sha512-jW+UCM40LzHcouIaqv3e/oRs0JM76JfhHjCavPxMUti7VAPh8CaGSlS7cmyrdpzSk7A+8f0hiedHqr/LMnfijg==, + integrity: sha512-cdmT3KxjlOQ/gZ2cjfrQOtmhG4HJs6hhvm3mWSRDPtZ/lP5oe8FWceS10JaSJC13GBd4eH/haHnqf7hhGNLerA==, } engines: { node: ">=12" } cpu: [arm] @@ -6045,10 +4800,22 @@ packages: dev: true optional: true - /@esbuild/linux-ia32@0.17.18: + /@esbuild/linux-arm@0.19.10: + resolution: + { + integrity: sha512-j6gUW5aAaPgD416Hk9FHxn27On28H4eVI9rJ4az7oCGTFW48+LcgNDBN+9f8rKZz7EEowo889CPKyeaD0iw9Kg==, + } + engines: { node: ">=12" } + cpu: [arm] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-ia32@0.17.19: resolution: { - integrity: sha512-ygIMc3I7wxgXIxk6j3V00VlABIjq260i967Cp9BNAk5pOOpIXmd1RFQJQX9Io7KRsthDrQYrtcx7QCof4o3ZoQ==, + integrity: sha512-w4IRhSy1VbsNxHRQpeGCHEmibqdTUx61Vc38APcsRbuVgK0OPEnQ0YD39Brymn96mOx48Y2laBQGqgZ0j9w6SQ==, } engines: { node: ">=12" } cpu: [ia32] @@ -6057,166 +4824,274 @@ packages: dev: true optional: true - /@esbuild/linux-ia32@0.18.20: + /@esbuild/linux-ia32@0.18.20: + resolution: + { + integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==, + } + engines: { node: ">=12" } + cpu: [ia32] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-ia32@0.19.10: + resolution: + { + integrity: sha512-4ub1YwXxYjj9h1UIZs2hYbnTZBtenPw5NfXCRgEkGb0b6OJ2gpkMvDqRDYIDRjRdWSe/TBiZltm3Y3Q8SN1xNg==, + } + engines: { node: ">=12" } + cpu: [ia32] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-loong64@0.17.19: + resolution: + { + integrity: sha512-2iAngUbBPMq439a+z//gE+9WBldoMp1s5GWsUSgqHLzLJ9WoZLZhpwWuym0u0u/4XmZ3gpHmzV84PonE+9IIdQ==, + } + engines: { node: ">=12" } + cpu: [loong64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-loong64@0.18.20: + resolution: + { + integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==, + } + engines: { node: ">=12" } + cpu: [loong64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-loong64@0.19.10: + resolution: + { + integrity: sha512-lo3I9k+mbEKoxtoIbM0yC/MZ1i2wM0cIeOejlVdZ3D86LAcFXFRdeuZmh91QJvUTW51bOK5W2BznGNIl4+mDaA==, + } + engines: { node: ">=12" } + cpu: [loong64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-mips64el@0.17.19: + resolution: + { + integrity: sha512-LKJltc4LVdMKHsrFe4MGNPp0hqDFA1Wpt3jE1gEyM3nKUvOiO//9PheZZHfYRfYl6AwdTH4aTcXSqBerX0ml4A==, + } + engines: { node: ">=12" } + cpu: [mips64el] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-mips64el@0.18.20: + resolution: + { + integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==, + } + engines: { node: ">=12" } + cpu: [mips64el] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-mips64el@0.19.10: + resolution: + { + integrity: sha512-J4gH3zhHNbdZN0Bcr1QUGVNkHTdpijgx5VMxeetSk6ntdt+vR1DqGmHxQYHRmNb77tP6GVvD+K0NyO4xjd7y4A==, + } + engines: { node: ">=12" } + cpu: [mips64el] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-ppc64@0.17.19: + resolution: + { + integrity: sha512-/c/DGybs95WXNS8y3Ti/ytqETiW7EU44MEKuCAcpPto3YjQbyK3IQVKfF6nbghD7EcLUGl0NbiL5Rt5DMhn5tg==, + } + engines: { node: ">=12" } + cpu: [ppc64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-ppc64@0.18.20: resolution: { - integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==, + integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==, } engines: { node: ">=12" } - cpu: [ia32] + cpu: [ppc64] os: [linux] requiresBuild: true dev: true optional: true - /@esbuild/linux-loong64@0.17.18: + /@esbuild/linux-ppc64@0.19.10: resolution: { - integrity: sha512-bvPG+MyFs5ZlwYclCG1D744oHk1Pv7j8psF5TfYx7otCVmcJsEXgFEhQkbhNW8otDHL1a2KDINW20cfCgnzgMQ==, + integrity: sha512-tgT/7u+QhV6ge8wFMzaklOY7KqiyitgT1AUHMApau32ZlvTB/+efeCtMk4eXS+uEymYK249JsoiklZN64xt6oQ==, } engines: { node: ">=12" } - cpu: [loong64] + cpu: [ppc64] os: [linux] requiresBuild: true dev: true optional: true - /@esbuild/linux-loong64@0.18.20: + /@esbuild/linux-riscv64@0.17.19: resolution: { - integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==, + integrity: sha512-FC3nUAWhvFoutlhAkgHf8f5HwFWUL6bYdvLc/TTuxKlvLi3+pPzdZiFKSWz/PF30TB1K19SuCxDTI5KcqASJqA==, } engines: { node: ">=12" } - cpu: [loong64] + cpu: [riscv64] os: [linux] requiresBuild: true dev: true optional: true - /@esbuild/linux-mips64el@0.17.18: + /@esbuild/linux-riscv64@0.18.20: resolution: { - integrity: sha512-oVqckATOAGuiUOa6wr8TXaVPSa+6IwVJrGidmNZS1cZVx0HqkTMkqFGD2HIx9H1RvOwFeWYdaYbdY6B89KUMxA==, + integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==, } engines: { node: ">=12" } - cpu: [mips64el] + cpu: [riscv64] os: [linux] requiresBuild: true dev: true optional: true - /@esbuild/linux-mips64el@0.18.20: + /@esbuild/linux-riscv64@0.19.10: resolution: { - integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==, + integrity: sha512-0f/spw0PfBMZBNqtKe5FLzBDGo0SKZKvMl5PHYQr3+eiSscfJ96XEknCe+JoOayybWUFQbcJTrk946i3j9uYZA==, } engines: { node: ">=12" } - cpu: [mips64el] + cpu: [riscv64] os: [linux] requiresBuild: true dev: true optional: true - /@esbuild/linux-ppc64@0.17.18: + /@esbuild/linux-s390x@0.17.19: resolution: { - integrity: sha512-3dLlQO+b/LnQNxgH4l9rqa2/IwRJVN9u/bK63FhOPB4xqiRqlQAU0qDU3JJuf0BmaH0yytTBdoSBHrb2jqc5qQ==, + integrity: sha512-IbFsFbxMWLuKEbH+7sTkKzL6NJmG2vRyy6K7JJo55w+8xDk7RElYn6xvXtDW8HCfoKBFK69f3pgBJSUSQPr+4Q==, } engines: { node: ">=12" } - cpu: [ppc64] + cpu: [s390x] os: [linux] requiresBuild: true dev: true optional: true - /@esbuild/linux-ppc64@0.18.20: + /@esbuild/linux-s390x@0.18.20: resolution: { - integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==, + integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==, } engines: { node: ">=12" } - cpu: [ppc64] + cpu: [s390x] os: [linux] requiresBuild: true dev: true optional: true - /@esbuild/linux-riscv64@0.17.18: + /@esbuild/linux-s390x@0.19.10: resolution: { - integrity: sha512-/x7leOyDPjZV3TcsdfrSI107zItVnsX1q2nho7hbbQoKnmoeUWjs+08rKKt4AUXju7+3aRZSsKrJtaRmsdL1xA==, + integrity: sha512-pZFe0OeskMHzHa9U38g+z8Yx5FNCLFtUnJtQMpwhS+r4S566aK2ci3t4NCP4tjt6d5j5uo4h7tExZMjeKoehAA==, } engines: { node: ">=12" } - cpu: [riscv64] + cpu: [s390x] os: [linux] requiresBuild: true dev: true optional: true - /@esbuild/linux-riscv64@0.18.20: + /@esbuild/linux-x64@0.17.19: resolution: { - integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==, + integrity: sha512-68ngA9lg2H6zkZcyp22tsVt38mlhWde8l3eJLWkyLrp4HwMUr3c1s/M2t7+kHIhvMjglIBrFpncX1SzMckomGw==, } engines: { node: ">=12" } - cpu: [riscv64] + cpu: [x64] os: [linux] requiresBuild: true dev: true optional: true - /@esbuild/linux-s390x@0.17.18: + /@esbuild/linux-x64@0.18.20: resolution: { - integrity: sha512-cX0I8Q9xQkL/6F5zWdYmVf5JSQt+ZfZD2bJudZrWD+4mnUvoZ3TDDXtDX2mUaq6upMFv9FlfIh4Gfun0tbGzuw==, + integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==, } engines: { node: ">=12" } - cpu: [s390x] + cpu: [x64] os: [linux] requiresBuild: true dev: true optional: true - /@esbuild/linux-s390x@0.18.20: + /@esbuild/linux-x64@0.19.10: resolution: { - integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==, + integrity: sha512-SpYNEqg/6pZYoc+1zLCjVOYvxfZVZj6w0KROZ3Fje/QrM3nfvT2llI+wmKSrWuX6wmZeTapbarvuNNK/qepSgA==, } engines: { node: ">=12" } - cpu: [s390x] + cpu: [x64] os: [linux] requiresBuild: true dev: true optional: true - /@esbuild/linux-x64@0.17.18: + /@esbuild/netbsd-x64@0.17.19: resolution: { - integrity: sha512-66RmRsPlYy4jFl0vG80GcNRdirx4nVWAzJmXkevgphP1qf4dsLQCpSKGM3DUQCojwU1hnepI63gNZdrr02wHUA==, + integrity: sha512-CwFq42rXCR8TYIjIfpXCbRX0rp1jo6cPIUPSaWwzbVI4aOfX96OXY8M6KNmtPcg7QjYeDmN+DD0Wp3LaBOLf4Q==, } engines: { node: ">=12" } cpu: [x64] - os: [linux] + os: [netbsd] requiresBuild: true dev: true optional: true - /@esbuild/linux-x64@0.18.20: + /@esbuild/netbsd-x64@0.18.20: resolution: { - integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==, + integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==, } engines: { node: ">=12" } cpu: [x64] - os: [linux] + os: [netbsd] requiresBuild: true dev: true optional: true - /@esbuild/netbsd-x64@0.17.18: + /@esbuild/netbsd-x64@0.19.10: resolution: { - integrity: sha512-95IRY7mI2yrkLlTLb1gpDxdC5WLC5mZDi+kA9dmM5XAGxCME0F8i4bYH4jZreaJ6lIZ0B8hTrweqG1fUyW7jbg==, + integrity: sha512-ACbZ0vXy9zksNArWlk2c38NdKg25+L9pr/mVaj9SUq6lHZu/35nx2xnQVRGLrC1KKQqJKRIB0q8GspiHI3J80Q==, } engines: { node: ">=12" } cpu: [x64] @@ -6225,22 +5100,22 @@ packages: dev: true optional: true - /@esbuild/netbsd-x64@0.18.20: + /@esbuild/openbsd-x64@0.17.19: resolution: { - integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==, + integrity: sha512-cnq5brJYrSZ2CF6c35eCmviIN3k3RczmHz8eYaVlNasVqsNY+JKohZU5MKmaOI+KkllCdzOKKdPs762VCPC20g==, } engines: { node: ">=12" } cpu: [x64] - os: [netbsd] + os: [openbsd] requiresBuild: true dev: true optional: true - /@esbuild/openbsd-x64@0.17.18: + /@esbuild/openbsd-x64@0.18.20: resolution: { - integrity: sha512-WevVOgcng+8hSZ4Q3BKL3n1xTv5H6Nb53cBrtzzEjDbbnOmucEVcZeGCsCOi9bAOcDYEeBZbD2SJNBxlfP3qiA==, + integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==, } engines: { node: ">=12" } cpu: [x64] @@ -6249,10 +5124,10 @@ packages: dev: true optional: true - /@esbuild/openbsd-x64@0.18.20: + /@esbuild/openbsd-x64@0.19.10: resolution: { - integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==, + integrity: sha512-PxcgvjdSjtgPMiPQrM3pwSaG4kGphP+bLSb+cihuP0LYdZv1epbAIecHVl5sD3npkfYBZ0ZnOjR878I7MdJDFg==, } engines: { node: ">=12" } cpu: [x64] @@ -6261,10 +5136,10 @@ packages: dev: true optional: true - /@esbuild/sunos-x64@0.17.18: + /@esbuild/sunos-x64@0.17.19: resolution: { - integrity: sha512-Rzf4QfQagnwhQXVBS3BYUlxmEbcV7MY+BH5vfDZekU5eYpcffHSyjU8T0xucKVuOcdCsMo+Ur5wmgQJH2GfNrg==, + integrity: sha512-vCRT7yP3zX+bKWFeP/zdS6SqdWB8OIpaRq/mbXQxTGHnIxspRtigpkUcDMlSCOejlHowLqII7K2JKevwyRP2rg==, } engines: { node: ">=12" } cpu: [x64] @@ -6285,10 +5160,22 @@ packages: dev: true optional: true - /@esbuild/win32-arm64@0.17.18: + /@esbuild/sunos-x64@0.19.10: + resolution: + { + integrity: sha512-ZkIOtrRL8SEJjr+VHjmW0znkPs+oJXhlJbNwfI37rvgeMtk3sxOQevXPXjmAPZPigVTncvFqLMd+uV0IBSEzqA==, + } + engines: { node: ">=12" } + cpu: [x64] + os: [sunos] + requiresBuild: true + dev: true + optional: true + + /@esbuild/win32-arm64@0.17.19: resolution: { - integrity: sha512-Kb3Ko/KKaWhjeAm2YoT/cNZaHaD1Yk/pa3FTsmqo9uFh1D1Rfco7BBLIPdDOozrObj2sahslFuAQGvWbgWldAg==, + integrity: sha512-yYx+8jwowUstVdorcMdNlzklLYhPxjniHWFKgRqH7IFlUEa0Umu3KuYplf1HUZZ422e3NU9F4LGb+4O0Kdcaag==, } engines: { node: ">=12" } cpu: [arm64] @@ -6309,10 +5196,22 @@ packages: dev: true optional: true - /@esbuild/win32-ia32@0.17.18: + /@esbuild/win32-arm64@0.19.10: + resolution: + { + integrity: sha512-+Sa4oTDbpBfGpl3Hn3XiUe4f8TU2JF7aX8cOfqFYMMjXp6ma6NJDztl5FDG8Ezx0OjwGikIHw+iA54YLDNNVfw==, + } + engines: { node: ">=12" } + cpu: [arm64] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /@esbuild/win32-ia32@0.17.19: resolution: { - integrity: sha512-0/xUMIdkVHwkvxfbd5+lfG7mHOf2FRrxNbPiKWg9C4fFrB8H0guClmaM3BFiRUYrznVoyxTIyC/Ou2B7QQSwmw==, + integrity: sha512-eggDKanJszUtCdlVs0RB+h35wNlb5v4TWEkq4vZcmVt5u/HiDZrTXe2bWFQUez3RgNHwx/x4sk5++4NSSicKkw==, } engines: { node: ">=12" } cpu: [ia32] @@ -6333,10 +5232,22 @@ packages: dev: true optional: true - /@esbuild/win32-x64@0.17.18: + /@esbuild/win32-ia32@0.19.10: + resolution: + { + integrity: sha512-EOGVLK1oWMBXgfttJdPHDTiivYSjX6jDNaATeNOaCOFEVcfMjtbx7WVQwPSE1eIfCp/CaSF2nSrDtzc4I9f8TQ==, + } + engines: { node: ">=12" } + cpu: [ia32] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /@esbuild/win32-x64@0.17.19: resolution: { - integrity: sha512-qU25Ma1I3NqTSHJUOKi9sAH1/Mzuvlke0ioMJRthLXKm7JiSKVwFghlGbDLOO2sARECGhja4xYfRAZNPAkooYg==, + integrity: sha512-lAhycmKnVOuRYNtRtatQR1LPQf2oYCkRGkSFnseDAKPl8lu5SOsK/e1sXe5a0Pc5kHIHe6P2I/ilntNv2xf3cA==, } engines: { node: ">=12" } cpu: [x64] @@ -6357,18 +5268,51 @@ packages: dev: true optional: true - /@eslint/eslintrc@1.3.3: + /@esbuild/win32-x64@0.19.10: + resolution: + { + integrity: sha512-whqLG6Sc70AbU73fFYvuYzaE4MNMBIlR1Y/IrUeOXFrWHxBEjjbZaQ3IXIQS8wJdAzue2GwYZCjOrgrU1oUHoA==, + } + engines: { node: ">=12" } + cpu: [x64] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /@eslint-community/eslint-utils@4.4.0(eslint@8.56.0): + resolution: + { + integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 + dependencies: + eslint: 8.56.0 + eslint-visitor-keys: 3.4.3 + dev: true + + /@eslint-community/regexpp@4.10.0: + resolution: + { + integrity: sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==, + } + engines: { node: ^12.0.0 || ^14.0.0 || >=16.0.0 } + dev: true + + /@eslint/eslintrc@2.1.4: resolution: { - integrity: sha512-uj3pT6Mg+3t39fvLrj8iuCIJ38zKO9FpGtJ4BBJebJhEwjoT+KLVNCcHT5QC9NGRIEi7fZ0ZR8YRb884auB4Lg==, + integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==, } engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } dependencies: ajv: 6.12.6 debug: 4.3.4 - espree: 9.4.1 - globals: 13.17.0 - ignore: 5.2.0 + espree: 9.6.1 + globals: 13.24.0 + ignore: 5.3.0 import-fresh: 3.3.0 js-yaml: 4.1.0 minimatch: 3.1.2 @@ -6377,6 +5321,14 @@ packages: - supports-color dev: true + /@eslint/js@8.56.0: + resolution: + { + integrity: sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + dev: true + /@fal-works/esbuild-plugin-global-externals@2.1.2: resolution: { @@ -6496,14 +5448,14 @@ packages: "@hapi/hoek": 9.3.0 dev: true - /@humanwhocodes/config-array@0.11.7: + /@humanwhocodes/config-array@0.11.13: resolution: { - integrity: sha512-kBbPWzN8oVMLb0hOUYXhmxggL/1cJE6ydvjDIGi9EnAGUyA7cLVKQg+d/Dsm+KZwx2czGHrCmMVLiyg8s5JPKw==, + integrity: sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ==, } engines: { node: ">=10.10.0" } dependencies: - "@humanwhocodes/object-schema": 1.2.1 + "@humanwhocodes/object-schema": 2.0.1 debug: 4.3.4 minimatch: 3.1.2 transitivePeerDependencies: @@ -6518,10 +5470,10 @@ packages: engines: { node: ">=12.22" } dev: true - /@humanwhocodes/object-schema@1.2.1: + /@humanwhocodes/object-schema@2.0.1: resolution: { - integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==, + integrity: sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==, } dev: true @@ -7097,7 +6049,7 @@ packages: chalk: 4.1.2 dev: true - /@joshwooding/vite-plugin-react-docgen-typescript@0.3.0(typescript@4.9.3)(vite@4.3.3): + /@joshwooding/vite-plugin-react-docgen-typescript@0.3.0(typescript@5.3.3)(vite@5.0.10): resolution: { integrity: sha512-2D6y7fNvFmsLmRt6UCOFJPvFoPMJGT0Uh1Wg0RaigUp7kdQPs6yYn8Dmx6GZkOH/NW0yMTwRz/p0SRMMRo50vA==, @@ -7112,9 +6064,9 @@ packages: glob: 7.2.3 glob-promise: 4.2.2(glob@7.2.3) magic-string: 0.27.0 - react-docgen-typescript: 2.2.2(typescript@4.9.3) - typescript: 4.9.3 - vite: 4.3.3(@types/node@18.11.9) + react-docgen-typescript: 2.2.2(typescript@5.3.3) + typescript: 5.3.3 + vite: 5.0.10 dev: true /@jridgewell/gen-mapping@0.1.1: @@ -7126,6 +6078,7 @@ packages: dependencies: "@jridgewell/set-array": 1.1.2 "@jridgewell/sourcemap-codec": 1.4.14 + dev: true /@jridgewell/gen-mapping@0.3.2: resolution: @@ -7137,6 +6090,7 @@ packages: "@jridgewell/set-array": 1.1.2 "@jridgewell/sourcemap-codec": 1.4.14 "@jridgewell/trace-mapping": 0.3.17 + dev: true /@jridgewell/gen-mapping@0.3.3: resolution: @@ -7148,7 +6102,6 @@ packages: "@jridgewell/set-array": 1.1.2 "@jridgewell/sourcemap-codec": 1.4.15 "@jridgewell/trace-mapping": 0.3.20 - dev: true /@jridgewell/resolve-uri@3.1.0: resolution: @@ -7156,6 +6109,7 @@ packages: integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==, } engines: { node: ">=6.0.0" } + dev: true /@jridgewell/resolve-uri@3.1.1: resolution: @@ -7163,7 +6117,6 @@ packages: integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==, } engines: { node: ">=6.0.0" } - dev: true /@jridgewell/set-array@1.1.2: resolution: @@ -7172,28 +6125,18 @@ packages: } engines: { node: ">=6.0.0" } - /@jridgewell/source-map@0.3.5: - resolution: - { - integrity: sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==, - } - dependencies: - "@jridgewell/gen-mapping": 0.3.3 - "@jridgewell/trace-mapping": 0.3.20 - dev: true - /@jridgewell/sourcemap-codec@1.4.14: resolution: { integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==, } + dev: true /@jridgewell/sourcemap-codec@1.4.15: resolution: { integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==, } - dev: true /@jridgewell/trace-mapping@0.3.17: resolution: @@ -7203,6 +6146,7 @@ packages: dependencies: "@jridgewell/resolve-uri": 3.1.0 "@jridgewell/sourcemap-codec": 1.4.14 + dev: true /@jridgewell/trace-mapping@0.3.20: resolution: @@ -7212,7 +6156,6 @@ packages: dependencies: "@jridgewell/resolve-uri": 3.1.1 "@jridgewell/sourcemap-codec": 1.4.15 - dev: true /@juggle/resize-observer@3.4.0: resolution: @@ -7340,15 +6283,6 @@ packages: tar-fs: 2.1.1 dev: true - /@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1: - resolution: - { - integrity: sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==, - } - dependencies: - eslint-scope: 5.1.1 - dev: true - /@nicolo-ribaudo/semver-v6@6.3.3: resolution: { @@ -8068,29 +7002,165 @@ packages: } engines: { node: ">=14" } - /@rollup/pluginutils@5.0.5: + /@rollup/pluginutils@5.0.5: + resolution: + { + integrity: sha512-6aEYR910NyP73oHiJglti74iRyOwgFU4x3meH/H8OJx6Ry0j6cOVZ5X/wTvub7G7Ao6qaHBEaNsV3GLJkSsF+Q==, + } + engines: { node: ">=14.0.0" } + peerDependencies: + rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 + peerDependenciesMeta: + rollup: + optional: true + dependencies: + "@types/estree": 1.0.1 + estree-walker: 2.0.2 + picomatch: 2.3.1 + dev: true + + /@rollup/rollup-android-arm-eabi@4.9.1: + resolution: + { + integrity: sha512-6vMdBZqtq1dVQ4CWdhFwhKZL6E4L1dV6jUjuBvsavvNJSppzi6dLBbuV+3+IyUREaj9ZFvQefnQm28v4OCXlig==, + } + cpu: [arm] + os: [android] + requiresBuild: true + dev: true + optional: true + + /@rollup/rollup-android-arm64@4.9.1: + resolution: + { + integrity: sha512-Jto9Fl3YQ9OLsTDWtLFPtaIMSL2kwGyGoVCmPC8Gxvym9TCZm4Sie+cVeblPO66YZsYH8MhBKDMGZ2NDxuk/XQ==, + } + cpu: [arm64] + os: [android] + requiresBuild: true + dev: true + optional: true + + /@rollup/rollup-darwin-arm64@4.9.1: + resolution: + { + integrity: sha512-LtYcLNM+bhsaKAIGwVkh5IOWhaZhjTfNOkGzGqdHvhiCUVuJDalvDxEdSnhFzAn+g23wgsycmZk1vbnaibZwwA==, + } + cpu: [arm64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /@rollup/rollup-darwin-x64@4.9.1: + resolution: + { + integrity: sha512-KyP/byeXu9V+etKO6Lw3E4tW4QdcnzDG/ake031mg42lob5tN+5qfr+lkcT/SGZaH2PdW4Z1NX9GHEkZ8xV7og==, + } + cpu: [x64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /@rollup/rollup-linux-arm-gnueabihf@4.9.1: + resolution: + { + integrity: sha512-Yqz/Doumf3QTKplwGNrCHe/B2p9xqDghBZSlAY0/hU6ikuDVQuOUIpDP/YcmoT+447tsZTmirmjgG3znvSCR0Q==, + } + cpu: [arm] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@rollup/rollup-linux-arm64-gnu@4.9.1: + resolution: + { + integrity: sha512-u3XkZVvxcvlAOlQJ3UsD1rFvLWqu4Ef/Ggl40WAVCuogf4S1nJPHh5RTgqYFpCOvuGJ7H5yGHabjFKEZGExk5Q==, + } + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@rollup/rollup-linux-arm64-musl@4.9.1: + resolution: + { + integrity: sha512-0XSYN/rfWShW+i+qjZ0phc6vZ7UWI8XWNz4E/l+6edFt+FxoEghrJHjX1EY/kcUGCnZzYYRCl31SNdfOi450Aw==, + } + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@rollup/rollup-linux-riscv64-gnu@4.9.1: + resolution: + { + integrity: sha512-LmYIO65oZVfFt9t6cpYkbC4d5lKHLYv5B4CSHRpnANq0VZUQXGcCPXHzbCXCz4RQnx7jvlYB1ISVNCE/omz5cw==, + } + cpu: [riscv64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@rollup/rollup-linux-x64-gnu@4.9.1: + resolution: + { + integrity: sha512-kr8rEPQ6ns/Lmr/hiw8sEVj9aa07gh1/tQF2Y5HrNCCEPiCBGnBUt9tVusrcBBiJfIt1yNaXN6r1CCmpbFEDpg==, + } + cpu: [x64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@rollup/rollup-linux-x64-musl@4.9.1: + resolution: + { + integrity: sha512-t4QSR7gN+OEZLG0MiCgPqMWZGwmeHhsM4AkegJ0Kiy6TnJ9vZ8dEIwHw1LcZKhbHxTY32hp9eVCMdR3/I8MGRw==, + } + cpu: [x64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@rollup/rollup-win32-arm64-msvc@4.9.1: + resolution: + { + integrity: sha512-7XI4ZCBN34cb+BH557FJPmh0kmNz2c25SCQeT9OiFWEgf8+dL6ZwJ8f9RnUIit+j01u07Yvrsuu1rZGxJCc51g==, + } + cpu: [arm64] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /@rollup/rollup-win32-ia32-msvc@4.9.1: resolution: { - integrity: sha512-6aEYR910NyP73oHiJglti74iRyOwgFU4x3meH/H8OJx6Ry0j6cOVZ5X/wTvub7G7Ao6qaHBEaNsV3GLJkSsF+Q==, + integrity: sha512-yE5c2j1lSWOH5jp+Q0qNL3Mdhr8WuqCNVjc6BxbVfS5cAS6zRmdiw7ktb8GNpDCEUJphILY6KACoFoRtKoqNQg==, } - engines: { node: ">=14.0.0" } - peerDependencies: - rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 - peerDependenciesMeta: - rollup: - optional: true - dependencies: - "@types/estree": 1.0.1 - estree-walker: 2.0.2 - picomatch: 2.3.1 + cpu: [ia32] + os: [win32] + requiresBuild: true dev: true + optional: true - /@rushstack/eslint-patch@1.2.0: + /@rollup/rollup-win32-x64-msvc@4.9.1: resolution: { - integrity: sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg==, + integrity: sha512-PyJsSsafjmIhVgaI1Zdj7m8BB8mMckFah/xbpplObyHfiXzKcI5UOUXRyOdHW7nz4DpMCuzLnF7v5IWHenCwYA==, } + cpu: [x64] + os: [win32] + requiresBuild: true dev: true + optional: true /@sideway/address@4.1.4: resolution: @@ -8301,7 +7371,7 @@ packages: "@storybook/react-dom-shim": 7.5.1(react-dom@18.2.0)(react@18.2.0) "@storybook/theming": 7.5.1(react-dom@18.2.0)(react@18.2.0) "@storybook/types": 7.5.1 - fs-extra: 11.1.1 + fs-extra: 11.2.0 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) remark-external-links: 8.0.0 @@ -8604,7 +7674,7 @@ packages: "@storybook/preview-api": 7.5.1 "@storybook/theming": 7.5.1(react-dom@18.2.0)(react@18.2.0) "@storybook/types": 7.5.1 - "@types/lodash": 4.14.191 + "@types/lodash": 4.14.202 color-convert: 2.0.1 dequal: 2.0.3 lodash: 4.17.21 @@ -8625,6 +7695,47 @@ packages: - supports-color dev: true + /@storybook/blocks@7.6.6(@types/react-dom@18.0.9)(@types/react@18.0.25)(react-dom@18.2.0)(react@18.2.0): + resolution: + { + integrity: sha512-QLqkiSNrtGnh8RK9ipD63jVAUenkRu+72xR31DViZWRV9V8G2hzky5E/RoZWPEx+DfmBIUJ7Tcef6cCRcxEj9A==, + } + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + dependencies: + "@storybook/channels": 7.6.6 + "@storybook/client-logger": 7.6.6 + "@storybook/components": 7.6.6(@types/react-dom@18.0.9)(@types/react@18.0.25)(react-dom@18.2.0)(react@18.2.0) + "@storybook/core-events": 7.6.6 + "@storybook/csf": 0.1.2 + "@storybook/docs-tools": 7.6.6 + "@storybook/global": 5.0.0 + "@storybook/manager-api": 7.6.6(react-dom@18.2.0)(react@18.2.0) + "@storybook/preview-api": 7.6.6 + "@storybook/theming": 7.6.6(react-dom@18.2.0)(react@18.2.0) + "@storybook/types": 7.6.6 + "@types/lodash": 4.14.202 + color-convert: 2.0.1 + dequal: 2.0.3 + lodash: 4.17.21 + markdown-to-jsx: 7.3.2(react@18.2.0) + memoizerific: 1.11.3 + polished: 4.2.2 + react: 18.2.0 + react-colorful: 5.6.1(react-dom@18.2.0)(react@18.2.0) + react-dom: 18.2.0(react@18.2.0) + telejson: 7.2.0 + tocbot: 4.23.0 + ts-dedent: 2.2.0 + util-deprecate: 1.0.2 + transitivePeerDependencies: + - "@types/react" + - "@types/react-dom" + - encoding + - supports-color + dev: true + /@storybook/builder-manager@7.5.1: resolution: { @@ -8644,7 +7755,7 @@ packages: esbuild-plugin-alias: 0.2.1 express: 4.18.2 find-cache-dir: 3.3.2 - fs-extra: 11.1.1 + fs-extra: 11.2.0 process: 0.11.10 util: 0.12.5 transitivePeerDependencies: @@ -8652,7 +7763,7 @@ packages: - supports-color dev: true - /@storybook/builder-vite@7.5.1(typescript@4.9.3)(vite@4.3.3): + /@storybook/builder-vite@7.5.1(typescript@5.3.3)(vite@5.0.10): resolution: { integrity: sha512-fsF4LsxroVvjBJoI5AvRA6euhpYrb5euii5kPzrsWXLOn6gDBK0jQ0looep/io7J45MisDjRTPp14A02pi1bkw==, @@ -8683,11 +7794,11 @@ packages: es-module-lexer: 0.9.3 express: 4.18.2 find-cache-dir: 3.3.2 - fs-extra: 11.1.1 + fs-extra: 11.2.0 magic-string: 0.30.5 - rollup: 3.21.2 - typescript: 4.9.3 - vite: 4.3.3(@types/node@18.11.9) + rollup: 3.29.4 + typescript: 5.3.3 + vite: 5.0.10 transitivePeerDependencies: - encoding - supports-color @@ -8749,6 +7860,20 @@ packages: tiny-invariant: 1.3.1 dev: true + /@storybook/channels@7.6.6: + resolution: + { + integrity: sha512-vvo7fBe2WffPonNNOA7Xx7jcHAto8qJYlq+VMysfheXrsRRbhHl3WQOA18Vm8hV9txtqdqk0hwQiXOWvhYVpeQ==, + } + dependencies: + "@storybook/client-logger": 7.6.6 + "@storybook/core-events": 7.6.6 + "@storybook/global": 5.0.0 + qs: 6.11.2 + telejson: 7.2.0 + tiny-invariant: 1.3.1 + dev: true + /@storybook/cli@7.5.1: resolution: { @@ -8757,7 +7882,7 @@ packages: hasBin: true dependencies: "@babel/core": 7.23.2 - "@babel/preset-env": 7.23.2(@babel/core@7.20.5) + "@babel/preset-env": 7.23.2(@babel/core@7.23.6) "@babel/types": 7.23.0 "@ndelangen/get-tarball": 3.0.7 "@storybook/codemod": 7.5.1 @@ -8779,7 +7904,7 @@ packages: execa: 5.1.1 express: 4.18.2 find-up: 5.0.0 - fs-extra: 11.1.1 + fs-extra: 11.2.0 get-npm-tarball-url: 2.0.3 get-port: 5.1.1 giget: 1.0.0 @@ -8831,6 +7956,15 @@ packages: "@storybook/global": 5.0.0 dev: true + /@storybook/client-logger@7.6.6: + resolution: + { + integrity: sha512-WEvVyuQR5oNF8jcMmGA13zDjxP/l46kOBBvB6JSc8toUdtLZ/kZWSnU0ioNM8+ECpFqXHjBcF2K6uSJOEb6YEg==, + } + dependencies: + "@storybook/global": 5.0.0 + dev: true + /@storybook/codemod@7.5.1: resolution: { @@ -8902,6 +8036,32 @@ packages: - "@types/react-dom" dev: true + /@storybook/components@7.6.6(@types/react-dom@18.0.9)(@types/react@18.0.25)(react-dom@18.2.0)(react@18.2.0): + resolution: + { + integrity: sha512-FSfcRxdmV4+LJHjMk0eodGVnZdb2qrKKmbtsn0O/434z586zPA287/wJJsm4JS/Xr1WS9oTvU6mYMDChkcxgeQ==, + } + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + dependencies: + "@radix-ui/react-select": 1.2.2(@types/react-dom@18.0.9)(@types/react@18.0.25)(react-dom@18.2.0)(react@18.2.0) + "@radix-ui/react-toolbar": 1.0.4(@types/react-dom@18.0.9)(@types/react@18.0.25)(react-dom@18.2.0)(react@18.2.0) + "@storybook/client-logger": 7.6.6 + "@storybook/csf": 0.1.2 + "@storybook/global": 5.0.0 + "@storybook/theming": 7.6.6(react-dom@18.2.0)(react@18.2.0) + "@storybook/types": 7.6.6 + memoizerific: 1.11.3 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + use-resize-observer: 9.1.0(react-dom@18.2.0)(react@18.2.0) + util-deprecate: 1.0.2 + transitivePeerDependencies: + - "@types/react" + - "@types/react-dom" + dev: true + /@storybook/core-client@7.5.1: resolution: { @@ -8924,11 +8084,11 @@ packages: "@types/node-fetch": 2.6.4 "@types/pretty-hrtime": 1.0.1 chalk: 4.1.2 - esbuild: 0.17.18 - esbuild-register: 3.4.2(esbuild@0.17.18) + esbuild: 0.17.19 + esbuild-register: 3.4.2(esbuild@0.17.19) file-system-cache: 2.3.0 find-up: 5.0.0 - fs-extra: 11.1.1 + fs-extra: 11.2.0 glob: 8.1.0 glob-promise: 6.0.2(glob@8.1.0) handlebars: 4.7.7 @@ -8963,7 +8123,7 @@ packages: file-system-cache: 2.3.0 find-cache-dir: 3.3.2 find-up: 5.0.0 - fs-extra: 11.1.1 + fs-extra: 11.2.0 glob: 10.3.10 handlebars: 4.7.7 lazy-universal-dotenv: 4.0.0 @@ -8978,6 +8138,40 @@ packages: - supports-color dev: true + /@storybook/core-common@7.6.6: + resolution: + { + integrity: sha512-DpbFSYw8LHuwpeU2ec5uWryxrSqslFJnWTfNA7AvpzCviWXkz4kq+YYrDee9XExF6OozNwILmG6m52SnraysBA==, + } + dependencies: + "@storybook/core-events": 7.6.6 + "@storybook/node-logger": 7.6.6 + "@storybook/types": 7.6.6 + "@types/find-cache-dir": 3.2.1 + "@types/node": 18.19.3 + "@types/node-fetch": 2.6.9 + "@types/pretty-hrtime": 1.0.3 + chalk: 4.1.2 + esbuild: 0.18.20 + esbuild-register: 3.5.0(esbuild@0.18.20) + file-system-cache: 2.3.0 + find-cache-dir: 3.3.2 + find-up: 5.0.0 + fs-extra: 11.2.0 + glob: 10.3.10 + handlebars: 4.7.8 + lazy-universal-dotenv: 4.0.0 + node-fetch: 2.7.0 + picomatch: 2.3.1 + pkg-dir: 5.0.0 + pretty-hrtime: 1.0.3 + resolve-from: 5.0.0 + ts-dedent: 2.2.0 + transitivePeerDependencies: + - encoding + - supports-color + dev: true + /@storybook/core-events@7.0.26: resolution: { @@ -9001,6 +8195,15 @@ packages: ts-dedent: 2.2.0 dev: true + /@storybook/core-events@7.6.6: + resolution: + { + integrity: sha512-7+q9HiZiLxaQcwpaSLQrLdjHNHBoOoUY9ZcZXI9iNFSopOgb/ItDnzzlpv08NC7CbKae1hVKJM/t5aSTl7tCMw==, + } + dependencies: + ts-dedent: 2.2.0 + dev: true + /@storybook/core-server@7.5.1: resolution: { @@ -9032,7 +8235,7 @@ packages: compression: 1.7.4 detect-port: 1.5.1 express: 4.18.2 - fs-extra: 11.1.1 + fs-extra: 11.2.0 globby: 11.1.0 ip: 2.0.0 lodash: 4.17.21 @@ -9079,7 +8282,7 @@ packages: "@babel/types": 7.21.4 "@storybook/csf": 0.1.1 "@storybook/types": 7.0.26 - fs-extra: 11.1.1 + fs-extra: 11.2.0 recast: 0.23.1 ts-dedent: 2.2.0 transitivePeerDependencies: @@ -9098,7 +8301,7 @@ packages: "@babel/types": 7.23.0 "@storybook/csf": 0.1.1 "@storybook/types": 7.5.1 - fs-extra: 11.1.1 + fs-extra: 11.2.0 recast: 0.23.1 ts-dedent: 2.2.0 transitivePeerDependencies: @@ -9123,6 +8326,15 @@ packages: type-fest: 2.19.0 dev: true + /@storybook/csf@0.1.2: + resolution: + { + integrity: sha512-ePrvE/pS1vsKR9Xr+o+YwdqNgHUyXvg+1Xjx0h9LrVx7Zq4zNe06pd63F5EvzTbCbJsHj7GHr9tkiaqm7U8WRA==, + } + dependencies: + type-fest: 2.19.0 + dev: true + /@storybook/docs-mdx@0.1.0: resolution: { @@ -9147,6 +8359,24 @@ packages: - supports-color dev: true + /@storybook/docs-tools@7.6.6: + resolution: + { + integrity: sha512-nc5ZjN2s8SC2PtsZoFf9Wm6gD8TcSlkYbF/mjtyLCGN+Fi+k5B5iudqoa65H19hwiLlzBdcnpQ8C89AiK33J9Q==, + } + dependencies: + "@storybook/core-common": 7.6.6 + "@storybook/preview-api": 7.6.6 + "@storybook/types": 7.6.6 + "@types/doctrine": 0.0.3 + assert: 2.1.0 + doctrine: 3.0.0 + lodash: 4.17.21 + transitivePeerDependencies: + - encoding + - supports-color + dev: true + /@storybook/expect@28.1.3-5: resolution: { @@ -9276,6 +8506,32 @@ packages: ts-dedent: 2.2.0 dev: true + /@storybook/manager-api@7.6.6(react-dom@18.2.0)(react@18.2.0): + resolution: + { + integrity: sha512-euRAbSZAUzHDt6z1Pq/g45N/RNqta9RaQAym18zt/oLWiYOIrkLmdf7kCuFYsmuA5XQBytiJqwkAD7uF1aLe0g==, + } + dependencies: + "@storybook/channels": 7.6.6 + "@storybook/client-logger": 7.6.6 + "@storybook/core-events": 7.6.6 + "@storybook/csf": 0.1.2 + "@storybook/global": 5.0.0 + "@storybook/router": 7.6.6 + "@storybook/theming": 7.6.6(react-dom@18.2.0)(react@18.2.0) + "@storybook/types": 7.6.6 + dequal: 2.0.3 + lodash: 4.17.21 + memoizerific: 1.11.3 + semver: 7.5.4 + store2: 2.14.2 + telejson: 7.2.0 + ts-dedent: 2.2.0 + transitivePeerDependencies: + - react + - react-dom + dev: true + /@storybook/manager@7.5.1: resolution: { @@ -9309,6 +8565,13 @@ packages: } dev: true + /@storybook/node-logger@7.6.6: + resolution: + { + integrity: sha512-b2OF9GRNI01MlBlnDGS8S6/yOpBNl8eH/0ONafuMPzFEZs5PouHGsFflJvQwwcdVTknMjF5uVS2eSmnLZ8spvA==, + } + dev: true + /@storybook/postinstall@7.5.1: resolution: { @@ -9384,6 +8647,28 @@ packages: util-deprecate: 1.0.2 dev: true + /@storybook/preview-api@7.6.6: + resolution: + { + integrity: sha512-Bt6xIAR5yZ/JWc90X4BbLOA97iL65glZ1SOBgFFv2mHrdZ1lcdKhAlQr2aeJAf1mLvBtalPjvKzi9EuVY3FZ4w==, + } + dependencies: + "@storybook/channels": 7.6.6 + "@storybook/client-logger": 7.6.6 + "@storybook/core-events": 7.6.6 + "@storybook/csf": 0.1.2 + "@storybook/global": 5.0.0 + "@storybook/types": 7.6.6 + "@types/qs": 6.9.10 + dequal: 2.0.3 + lodash: 4.17.21 + memoizerific: 1.11.3 + qs: 6.11.2 + synchronous-promise: 2.0.17 + ts-dedent: 2.2.0 + util-deprecate: 1.0.2 + dev: true + /@storybook/preview@7.5.1: resolution: { @@ -9404,7 +8689,7 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: true - /@storybook/react-vite@7.5.1(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3)(vite@4.3.3): + /@storybook/react-vite@7.5.1(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3)(vite@5.0.10): resolution: { integrity: sha512-996/CtOqTjDWMKBGcHG8pwIVlORnoknLD+OTkPXl+aAl9oM9jUtc7psVKLJKGHSHTlVElM2wMTwIHnJ4yeP7bw==, @@ -9415,16 +8700,16 @@ packages: react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 vite: ^3.0.0 || ^4.0.0 || ^5.0.0 dependencies: - "@joshwooding/vite-plugin-react-docgen-typescript": 0.3.0(typescript@4.9.3)(vite@4.3.3) + "@joshwooding/vite-plugin-react-docgen-typescript": 0.3.0(typescript@5.3.3)(vite@5.0.10) "@rollup/pluginutils": 5.0.5 - "@storybook/builder-vite": 7.5.1(typescript@4.9.3)(vite@4.3.3) - "@storybook/react": 7.5.1(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3) - "@vitejs/plugin-react": 3.1.0(vite@4.3.3) + "@storybook/builder-vite": 7.5.1(typescript@5.3.3)(vite@5.0.10) + "@storybook/react": 7.5.1(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3) + "@vitejs/plugin-react": 3.1.0(vite@5.0.10) magic-string: 0.30.5 react: 18.2.0 react-docgen: 6.0.4 react-dom: 18.2.0(react@18.2.0) - vite: 4.3.3(@types/node@18.11.9) + vite: 5.0.10 transitivePeerDependencies: - "@preact/preset-vite" - encoding @@ -9434,7 +8719,7 @@ packages: - vite-plugin-glimmerx dev: true - /@storybook/react@7.5.1(react-dom@18.2.0)(react@18.2.0)(typescript@4.9.3): + /@storybook/react@7.5.1(react-dom@18.2.0)(react@18.2.0)(typescript@5.3.3): resolution: { integrity: sha512-IG97c30fFSmPyGpJ1awHC/+9XnCTqleeOQwROXjroMHSm8m/JTWpHMVLyM1x7b6VAnBhNHWJ+oXLZe/hXkXfpA==, @@ -9470,7 +8755,7 @@ packages: react-element-to-jsx-string: 15.0.0(react-dom@18.2.0)(react@18.2.0) ts-dedent: 2.2.0 type-fest: 2.19.0 - typescript: 4.9.3 + typescript: 5.3.3 util-deprecate: 1.0.2 transitivePeerDependencies: - encoding @@ -9525,6 +8810,17 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: true + /@storybook/router@7.6.6: + resolution: + { + integrity: sha512-dkn81MtxrG7JMDbOHEcVZkTDVKsneg72CyqJ8ELZfC81iKQcDMQkV9mdmnMl45aKn6UrscudI4K23OxQmsevkw==, + } + dependencies: + "@storybook/client-logger": 7.6.6 + memoizerific: 1.11.3 + qs: 6.11.2 + dev: true + /@storybook/telemetry@7.5.1: resolution: { @@ -9537,7 +8833,7 @@ packages: chalk: 4.1.2 detect-package-manager: 2.0.1 fetch-retry: 5.0.3 - fs-extra: 11.1.1 + fs-extra: 11.2.0 read-pkg-up: 7.0.1 transitivePeerDependencies: - encoding @@ -9650,6 +8946,23 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: true + /@storybook/theming@7.6.6(react-dom@18.2.0)(react@18.2.0): + resolution: + { + integrity: sha512-hNZOOxaF55iAGUEM0dvAIP6LfGMgPKCJQIk/qyotFk+SKkg3PBqzph89XfFl9yCD3KiX5cryqarULgVuNawLJg==, + } + peerDependencies: + react: ^16.8.0 || ^17.0.0 || ^18.0.0 + react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 + dependencies: + "@emotion/use-insertion-effect-with-fallbacks": 1.0.1(react@18.2.0) + "@storybook/client-logger": 7.6.6 + "@storybook/global": 5.0.0 + memoizerific: 1.11.3 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + dev: true + /@storybook/types@7.0.26: resolution: { @@ -9686,46 +8999,118 @@ packages: file-system-cache: 2.3.0 dev: true + /@storybook/types@7.6.6: + resolution: + { + integrity: sha512-77vbQp3GX93OD8UzFkY4a0fAmkZrqLe61XVo6yABrwbVDY0EcAwaCF5gcXRhOHldlH7KYbLfEQkDkkKTBjX7ow==, + } + dependencies: + "@storybook/channels": 7.6.6 + "@types/babel__core": 7.20.5 + "@types/express": 4.17.21 + file-system-cache: 2.3.0 + dev: true + + /@swc/core-darwin-arm64@1.3.101: + resolution: + { + integrity: sha512-mNFK+uHNPRXSnfTOG34zJOeMl2waM4hF4a2NY7dkMXrPqw9CoJn4MwTXJcyMiSz1/BnNjjTCHF3Yhj0jPxmkzQ==, + } + engines: { node: ">=10" } + cpu: [arm64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + /@swc/core-darwin-arm64@1.3.56: resolution: { - integrity: sha512-DZcu7BzDaLEdWHabz9DRTP0yEBLqkrWmskFcD5BX0lGAvoIvE4duMnAqi5F2B3X7630QioHRCYFoRw2WkeE3Cw==, + integrity: sha512-DZcu7BzDaLEdWHabz9DRTP0yEBLqkrWmskFcD5BX0lGAvoIvE4duMnAqi5F2B3X7630QioHRCYFoRw2WkeE3Cw==, + } + engines: { node: ">=10" } + cpu: [arm64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /@swc/core-darwin-x64@1.3.101: + resolution: + { + integrity: sha512-B085j8XOx73Fg15KsHvzYWG262bRweGr3JooO1aW5ec5pYbz5Ew9VS5JKYS03w2UBSxf2maWdbPz2UFAxg0whw==, + } + engines: { node: ">=10" } + cpu: [x64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /@swc/core-darwin-x64@1.3.56: + resolution: + { + integrity: sha512-VH5saqYFasdRXJy6RAT+MXm0+IjkMZvOkohJwUei+oA65cKJofQwrJ1jZro8yOJFYvUSI3jgNRGsdBkmo/4hMw==, + } + engines: { node: ">=10" } + cpu: [x64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /@swc/core-linux-arm-gnueabihf@1.3.101: + resolution: + { + integrity: sha512-9xLKRb6zSzRGPqdz52Hy5GuB1lSjmLqa0lST6MTFads3apmx4Vgs8Y5NuGhx/h2I8QM4jXdLbpqQlifpzTlSSw==, + } + engines: { node: ">=10" } + cpu: [arm] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@swc/core-linux-arm-gnueabihf@1.3.56: + resolution: + { + integrity: sha512-LWwPo6NnJkH01+ukqvkoNIOpMdw+Zundm4vBeicwyVrkP+mC3kwVfi03TUFpQUz3kRKdw/QEnxGTj+MouCPbtw==, } engines: { node: ">=10" } - cpu: [arm64] - os: [darwin] + cpu: [arm] + os: [linux] requiresBuild: true dev: true optional: true - /@swc/core-darwin-x64@1.3.56: + /@swc/core-linux-arm64-gnu@1.3.101: resolution: { - integrity: sha512-VH5saqYFasdRXJy6RAT+MXm0+IjkMZvOkohJwUei+oA65cKJofQwrJ1jZro8yOJFYvUSI3jgNRGsdBkmo/4hMw==, + integrity: sha512-oE+r1lo7g/vs96Weh2R5l971dt+ZLuhaUX+n3BfDdPxNHfObXgKMjO7E+QS5RbGjv/AwiPCxQmbdCp/xN5ICJA==, } engines: { node: ">=10" } - cpu: [x64] - os: [darwin] + cpu: [arm64] + os: [linux] requiresBuild: true dev: true optional: true - /@swc/core-linux-arm-gnueabihf@1.3.56: + /@swc/core-linux-arm64-gnu@1.3.56: resolution: { - integrity: sha512-LWwPo6NnJkH01+ukqvkoNIOpMdw+Zundm4vBeicwyVrkP+mC3kwVfi03TUFpQUz3kRKdw/QEnxGTj+MouCPbtw==, + integrity: sha512-GzsUy/4egJ4cMlxbM+Ub7AMi5CKAc+pxBxrh8MUPQbyStW8jGgnQsJouTnGy0LHawtdEnsCOl6PcO6OgvktXuQ==, } engines: { node: ">=10" } - cpu: [arm] + cpu: [arm64] os: [linux] requiresBuild: true dev: true optional: true - /@swc/core-linux-arm64-gnu@1.3.56: + /@swc/core-linux-arm64-musl@1.3.101: resolution: { - integrity: sha512-GzsUy/4egJ4cMlxbM+Ub7AMi5CKAc+pxBxrh8MUPQbyStW8jGgnQsJouTnGy0LHawtdEnsCOl6PcO6OgvktXuQ==, + integrity: sha512-OGjYG3H4BMOTnJWJyBIovCez6KiHF30zMIu4+lGJTCrxRI2fAjGLml3PEXj8tC3FMcud7U2WUn6TdG0/te2k6g==, } engines: { node: ">=10" } cpu: [arm64] @@ -9746,6 +9131,18 @@ packages: dev: true optional: true + /@swc/core-linux-x64-gnu@1.3.101: + resolution: + { + integrity: sha512-/kBMcoF12PRO/lwa8Z7w4YyiKDcXQEiLvM+S3G9EvkoKYGgkkz4Q6PSNhF5rwg/E3+Hq5/9D2R+6nrkF287ihg==, + } + engines: { node: ">=10" } + cpu: [x64] + os: [linux] + requiresBuild: true + dev: true + optional: true + /@swc/core-linux-x64-gnu@1.3.56: resolution: { @@ -9758,6 +9155,18 @@ packages: dev: true optional: true + /@swc/core-linux-x64-musl@1.3.101: + resolution: + { + integrity: sha512-kDN8lm4Eew0u1p+h1l3JzoeGgZPQ05qDE0czngnjmfpsH2sOZxVj1hdiCwS5lArpy7ktaLu5JdRnx70MkUzhXw==, + } + engines: { node: ">=10" } + cpu: [x64] + os: [linux] + requiresBuild: true + dev: true + optional: true + /@swc/core-linux-x64-musl@1.3.56: resolution: { @@ -9770,6 +9179,18 @@ packages: dev: true optional: true + /@swc/core-win32-arm64-msvc@1.3.101: + resolution: + { + integrity: sha512-9Wn8TTLWwJKw63K/S+jjrZb9yoJfJwCE2RV5vPCCWmlMf3U1AXj5XuWOLUX+Rp2sGKau7wZKsvywhheWm+qndQ==, + } + engines: { node: ">=10" } + cpu: [arm64] + os: [win32] + requiresBuild: true + dev: true + optional: true + /@swc/core-win32-arm64-msvc@1.3.56: resolution: { @@ -9782,6 +9203,18 @@ packages: dev: true optional: true + /@swc/core-win32-ia32-msvc@1.3.101: + resolution: + { + integrity: sha512-onO5KvICRVlu2xmr4//V2je9O2XgS1SGKpbX206KmmjcJhXN5EYLSxW9qgg+kgV5mip+sKTHTAu7IkzkAtElYA==, + } + engines: { node: ">=10" } + cpu: [ia32] + os: [win32] + requiresBuild: true + dev: true + optional: true + /@swc/core-win32-ia32-msvc@1.3.56: resolution: { @@ -9794,6 +9227,18 @@ packages: dev: true optional: true + /@swc/core-win32-x64-msvc@1.3.101: + resolution: + { + integrity: sha512-T3GeJtNQV00YmiVw/88/nxJ/H43CJvFnpvBHCVn17xbahiVUOPOduh3rc9LgAkKiNt/aV8vU3OJR+6PhfMR7UQ==, + } + engines: { node: ">=10" } + cpu: [x64] + os: [win32] + requiresBuild: true + dev: true + optional: true + /@swc/core-win32-x64-msvc@1.3.56: resolution: { @@ -9806,6 +9251,34 @@ packages: dev: true optional: true + /@swc/core@1.3.101: + resolution: + { + integrity: sha512-w5aQ9qYsd/IYmXADAnkXPGDMTqkQalIi+kfFf/MHRKTpaOL7DHjMXwPp/n8hJ0qNjRvchzmPtOqtPBiER50d8A==, + } + engines: { node: ">=10" } + requiresBuild: true + peerDependencies: + "@swc/helpers": ^0.5.0 + peerDependenciesMeta: + "@swc/helpers": + optional: true + dependencies: + "@swc/counter": 0.1.2 + "@swc/types": 0.1.5 + optionalDependencies: + "@swc/core-darwin-arm64": 1.3.101 + "@swc/core-darwin-x64": 1.3.101 + "@swc/core-linux-arm-gnueabihf": 1.3.101 + "@swc/core-linux-arm64-gnu": 1.3.101 + "@swc/core-linux-arm64-musl": 1.3.101 + "@swc/core-linux-x64-gnu": 1.3.101 + "@swc/core-linux-x64-musl": 1.3.101 + "@swc/core-win32-arm64-msvc": 1.3.101 + "@swc/core-win32-ia32-msvc": 1.3.101 + "@swc/core-win32-x64-msvc": 1.3.101 + dev: true + /@swc/core@1.3.56: resolution: { @@ -9831,6 +9304,13 @@ packages: "@swc/core-win32-x64-msvc": 1.3.56 dev: true + /@swc/counter@0.1.2: + resolution: + { + integrity: sha512-9F4ys4C74eSTEUNndnER3VJ15oru2NumfQxS8geE+f3eB5xvfxpWyqE5XlVnxb/R14uoXi6SLbBwwiDSkv+XEw==, + } + dev: true + /@swc/jest@0.2.29(@swc/core@1.3.56): resolution: { @@ -9845,6 +9325,13 @@ packages: jsonc-parser: 3.2.0 dev: true + /@swc/types@0.1.5: + resolution: + { + integrity: sha512-myfUej5naTBWnqOCc/MdVOLVjXUXtIA+NpDrDBKJtLLg2shUjBu3cZmB/85RyitKc55+lUUyl7oRfLOvkr2hsw==, + } + dev: true + /@tanstack/query-core@4.24.6: resolution: { @@ -9880,7 +9367,7 @@ packages: } engines: { node: ">=14" } dependencies: - "@babel/code-frame": 7.22.5 + "@babel/code-frame": 7.23.5 "@babel/runtime": 7.23.2 "@types/aria-query": 5.0.1 aria-query: 5.1.3 @@ -10013,6 +9500,19 @@ packages: "@types/babel__traverse": 7.18.3 dev: true + /@types/babel__core@7.20.5: + resolution: + { + integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==, + } + dependencies: + "@babel/parser": 7.23.6 + "@babel/types": 7.23.6 + "@types/babel__generator": 7.6.8 + "@types/babel__template": 7.4.4 + "@types/babel__traverse": 7.20.4 + dev: true + /@types/babel__generator@7.6.4: resolution: { @@ -10022,6 +9522,15 @@ packages: "@babel/types": 7.23.0 dev: true + /@types/babel__generator@7.6.8: + resolution: + { + integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==, + } + dependencies: + "@babel/types": 7.23.6 + dev: true + /@types/babel__template@7.4.1: resolution: { @@ -10032,6 +9541,16 @@ packages: "@babel/types": 7.23.0 dev: true + /@types/babel__template@7.4.4: + resolution: + { + integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==, + } + dependencies: + "@babel/parser": 7.23.6 + "@babel/types": 7.23.6 + dev: true + /@types/babel__traverse@7.18.3: resolution: { @@ -10041,6 +9560,15 @@ packages: "@babel/types": 7.23.0 dev: true + /@types/babel__traverse@7.20.4: + resolution: + { + integrity: sha512-mSM/iKUk5fDDrEV/e83qY+Cr3I1+Q3qqTuEn++HAWYjEa1+NxZr6CNrcJGf2ZTnq4HoFGC3zaTPZTobCzCFukA==, + } + dependencies: + "@babel/types": 7.23.6 + dev: true + /@types/body-parser@1.19.2: resolution: { @@ -10051,6 +9579,16 @@ packages: "@types/node": 20.8.7 dev: true + /@types/body-parser@1.19.5: + resolution: + { + integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==, + } + dependencies: + "@types/connect": 3.4.38 + "@types/node": 20.10.5 + dev: true + /@types/chai-subset@1.3.3: resolution: { @@ -10076,6 +9614,15 @@ packages: "@types/node": 20.8.7 dev: true + /@types/connect@3.4.38: + resolution: + { + integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==, + } + dependencies: + "@types/node": 20.10.5 + dev: true + /@types/cookie@0.4.1: resolution: { @@ -10143,26 +9690,6 @@ packages: } dev: true - /@types/eslint-scope@3.7.6: - resolution: - { - integrity: sha512-zfM4ipmxVKWdxtDaJ3MP3pBurDXOCoyjvlpE3u6Qzrmw4BPbfm4/ambIeTk/r/J0iq/+2/xp0Fmt+gFvXJY2PQ==, - } - dependencies: - "@types/eslint": 8.44.6 - "@types/estree": 1.0.3 - dev: true - - /@types/eslint@8.44.6: - resolution: - { - integrity: sha512-P6bY56TVmX8y9J87jHNgQh43h6VVU+6H7oN7hgvivV81K2XY8qJZ5vqPy/HdUoVIelii2kChYVzQanlswPWVFw==, - } - dependencies: - "@types/estree": 1.0.3 - "@types/json-schema": 7.0.14 - dev: true - /@types/estree@0.0.51: resolution: { @@ -10177,13 +9704,6 @@ packages: } dev: true - /@types/estree@1.0.3: - resolution: - { - integrity: sha512-CS2rOaoQ/eAgAfcTfq6amKG7bsN+EMcgGY4FAFQdvSj2y1ixvOZTUA9mOtCai7E1SYu283XNw7urKK30nP3wkQ==, - } - dev: true - /@types/express-serve-static-core@4.17.31: resolution: { @@ -10195,6 +9715,18 @@ packages: "@types/range-parser": 1.2.4 dev: true + /@types/express-serve-static-core@4.17.41: + resolution: + { + integrity: sha512-OaJ7XLaelTgrvlZD8/aa0vvvxZdUmlCn6MtWeB7TkiKW70BQLc9XEPpDLPdbo52ZhXUCrznlWdCHWxJWtdyajA==, + } + dependencies: + "@types/node": 20.10.5 + "@types/qs": 6.9.10 + "@types/range-parser": 1.2.7 + "@types/send": 0.17.4 + dev: true + /@types/express@4.17.15: resolution: { @@ -10207,6 +9739,18 @@ packages: "@types/serve-static": 1.15.0 dev: true + /@types/express@4.17.21: + resolution: + { + integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==, + } + dependencies: + "@types/body-parser": 1.19.5 + "@types/express-serve-static-core": 4.17.41 + "@types/qs": 6.9.10 + "@types/serve-static": 1.15.5 + dev: true + /@types/find-cache-dir@3.2.1: resolution: { @@ -10243,6 +9787,13 @@ packages: "@types/node": 20.8.7 dev: true + /@types/http-errors@2.0.4: + resolution: + { + integrity: sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==, + } + dev: true + /@types/istanbul-lib-coverage@2.0.4: resolution: { @@ -10302,17 +9853,10 @@ packages: } dev: true - /@types/json-schema@7.0.14: - resolution: - { - integrity: sha512-U3PUjAudAdJBeC2pgN8uTIKgxrb4nlDF3SF0++EldXQvQBGkpFZMSnwQiIoDU77tv45VgNkl/L4ouD+rEomujw==, - } - dev: true - - /@types/json5@0.0.29: + /@types/json-schema@7.0.15: resolution: { - integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==, + integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==, } dev: true @@ -10331,7 +9875,7 @@ packages: integrity: sha512-3m+lkO5CLRRYU0fhGRp7zbsGi6+BZj0uTVSwvcKU+nSlhjA9/QRNfuSGnD2mX6hQA7ZbmcCkzk5h4ZYGOtk14A==, } dependencies: - "@types/lodash": 4.14.191 + "@types/lodash": 4.14.202 dev: false /@types/lodash@4.14.191: @@ -10339,6 +9883,13 @@ packages: { integrity: sha512-BdZ5BCCvho3EIXw6wUCXHe7rS53AIDPLE+JzwgT+OsJk53oBfbSmZZ7CX4VaRoN78N+TJpFi9QPlfIVNmJYWxQ==, } + dev: true + + /@types/lodash@4.14.202: + resolution: + { + integrity: sha512-OvlIYQK9tNneDlS0VN54LLd5uiPCBOp7gS5Z0f1mjoJYBrtStzgmJBxONW3U6OZqdtNzZPmn9BS/7WI7BFFcFQ==, + } /@types/mdast@3.0.11: resolution: @@ -10363,6 +9914,13 @@ packages: } dev: true + /@types/mime@1.3.5: + resolution: + { + integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==, + } + dev: true + /@types/mime@3.0.1: resolution: { @@ -10370,6 +9928,13 @@ packages: } dev: true + /@types/mime@3.0.4: + resolution: + { + integrity: sha512-iJt33IQnVRkqeqC7PzBHPTC6fDlRNRW8vjrgqtScAhrmMwe8c4Eo7+fUGTa+XdWrpEgpyKWMYmi2dIwMAYRzPw==, + } + dev: true + /@types/minimatch@3.0.5: resolution: { @@ -10401,6 +9966,16 @@ packages: form-data: 3.0.1 dev: true + /@types/node-fetch@2.6.9: + resolution: + { + integrity: sha512-bQVlnMLFJ2d35DkPNjEPmd9ueO/rh5EiaZt2bhqiSarPjZIuIV6bPQVqcrEyvNo+AfTrRGVazle1tl597w3gfA==, + } + dependencies: + "@types/node": 20.10.5 + form-data: 4.0.0 + dev: true + /@types/node@16.18.10: resolution: { @@ -10415,6 +9990,24 @@ packages: } dev: true + /@types/node@18.19.3: + resolution: + { + integrity: sha512-k5fggr14DwAytoA/t8rPrIz++lXK7/DqckthCmoZOKNsEbJkId4Z//BqgApXBUGrGddrigYa1oqheo/7YmW4rg==, + } + dependencies: + undici-types: 5.26.5 + dev: true + + /@types/node@20.10.5: + resolution: + { + integrity: sha512-nNPsNE65wjMxEKI93yOP+NPGGBJz/PoN3kZsVLee0XMiJolxSekEVD8wRwBUBqkwc7UWop0edW50yrCQW4CyRw==, + } + dependencies: + undici-types: 5.26.5 + dev: true + /@types/node@20.8.7: resolution: { @@ -10443,6 +10036,7 @@ packages: { integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==, } + dev: false /@types/prettier@2.7.1: resolution: @@ -10458,12 +10052,26 @@ packages: } dev: true + /@types/pretty-hrtime@1.0.3: + resolution: + { + integrity: sha512-nj39q0wAIdhwn7DGUyT9irmsKK1tV0bd5WFEhgpqNTMFZ8cE+jieuTphCW0tfdm47S2zVT5mr09B28b1chmQMA==, + } + dev: true + /@types/prop-types@15.7.5: resolution: { integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==, } + /@types/qs@6.9.10: + resolution: + { + integrity: sha512-3Gnx08Ns1sEoCrWssEgTSJs/rsT2vhGP+Ja9cnnk9k4ALxinORlQneLXFeFKOTJMOeZUFD1s7w+w2AphTpvzZw==, + } + dev: true + /@types/qs@6.9.7: resolution: { @@ -10478,6 +10086,13 @@ packages: } dev: true + /@types/range-parser@1.2.7: + resolution: + { + integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==, + } + dev: true + /@types/react-dom@18.0.9: resolution: { @@ -10505,7 +10120,7 @@ packages: dependencies: "@types/prop-types": 15.7.5 "@types/scheduler": 0.16.2 - csstype: 3.1.1 + csstype: 3.1.3 dev: true /@types/resolve@1.20.4: @@ -10528,6 +10143,23 @@ packages: } dev: true + /@types/semver@7.5.6: + resolution: + { + integrity: sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==, + } + dev: true + + /@types/send@0.17.4: + resolution: + { + integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==, + } + dependencies: + "@types/mime": 1.3.5 + "@types/node": 20.10.5 + dev: true + /@types/serve-static@1.15.0: resolution: { @@ -10538,6 +10170,17 @@ packages: "@types/node": 20.8.7 dev: true + /@types/serve-static@1.15.5: + resolution: + { + integrity: sha512-PDRk21MnK70hja/YF8AHfC7yIsiQHn1rcXx7ijCFBX/k+XQJhQT/gw3xekXKJvx+5SXaMMS8oqQy09Mzvz2TuQ==, + } + dependencies: + "@types/http-errors": 2.0.4 + "@types/mime": 3.0.4 + "@types/node": 20.10.5 + dev: true + /@types/set-cookie-parser@2.4.2: resolution: { @@ -10604,140 +10247,127 @@ packages: "@types/yargs-parser": 21.0.0 dev: true - /@typescript-eslint/eslint-plugin@5.43.0(@typescript-eslint/parser@5.43.0)(eslint@8.27.0)(typescript@4.9.3): + /@typescript-eslint/eslint-plugin@6.15.0(@typescript-eslint/parser@6.15.0)(eslint@8.56.0)(typescript@5.3.3): resolution: { - integrity: sha512-wNPzG+eDR6+hhW4yobEmpR36jrqqQv1vxBq5LJO3fBAktjkvekfr4BRl+3Fn1CM/A+s8/EiGUbOMDoYqWdbtXA==, + integrity: sha512-j5qoikQqPccq9QoBAupOP+CBu8BaJ8BLjaXSioDISeTZkVO3ig7oSIKh3H+rEpee7xCXtWwSB4KIL5l6hWZzpg==, } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + engines: { node: ^16.0.0 || >=18.0.0 } peerDependencies: - "@typescript-eslint/parser": ^5.0.0 - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + "@typescript-eslint/parser": ^6.0.0 || ^6.0.0-alpha + eslint: ^7.0.0 || ^8.0.0 typescript: "*" peerDependenciesMeta: typescript: - optional: true - dependencies: - "@typescript-eslint/parser": 5.43.0(eslint@8.27.0)(typescript@4.9.3) - "@typescript-eslint/scope-manager": 5.43.0 - "@typescript-eslint/type-utils": 5.43.0(eslint@8.27.0)(typescript@4.9.3) - "@typescript-eslint/utils": 5.43.0(eslint@8.27.0)(typescript@4.9.3) - debug: 4.3.4 - eslint: 8.27.0 - ignore: 5.2.0 - natural-compare-lite: 1.4.0 - regexpp: 3.2.0 - semver: 7.5.4 - tsutils: 3.21.0(typescript@4.9.3) - typescript: 4.9.3 - transitivePeerDependencies: - - supports-color - dev: true - - /@typescript-eslint/experimental-utils@5.43.0(eslint@8.27.0)(typescript@4.9.3): - resolution: - { - integrity: sha512-WkT637CumTJbm/hRbFfnHBMgfUYTKr08LitVsD7gQId7bi6rnkx3pu3jac67lmp5ObW4MpJ9SNFZAIOUB/Qbsw==, - } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + optional: true dependencies: - "@typescript-eslint/utils": 5.43.0(eslint@8.27.0)(typescript@4.9.3) - eslint: 8.27.0 + "@eslint-community/regexpp": 4.10.0 + "@typescript-eslint/parser": 6.15.0(eslint@8.56.0)(typescript@5.3.3) + "@typescript-eslint/scope-manager": 6.15.0 + "@typescript-eslint/type-utils": 6.15.0(eslint@8.56.0)(typescript@5.3.3) + "@typescript-eslint/utils": 6.15.0(eslint@8.56.0)(typescript@5.3.3) + "@typescript-eslint/visitor-keys": 6.15.0 + debug: 4.3.4 + eslint: 8.56.0 + graphemer: 1.4.0 + ignore: 5.3.0 + natural-compare: 1.4.0 + semver: 7.5.4 + ts-api-utils: 1.0.3(typescript@5.3.3) + typescript: 5.3.3 transitivePeerDependencies: - supports-color - - typescript dev: true - /@typescript-eslint/parser@5.43.0(eslint@8.27.0)(typescript@4.9.3): + /@typescript-eslint/parser@6.15.0(eslint@8.56.0)(typescript@5.3.3): resolution: { - integrity: sha512-2iHUK2Lh7PwNUlhFxxLI2haSDNyXvebBO9izhjhMoDC+S3XI9qt2DGFUsiJ89m2k7gGYch2aEpYqV5F/+nwZug==, + integrity: sha512-MkgKNnsjC6QwcMdlNAel24jjkEO/0hQaMDLqP4S9zq5HBAUJNQB6y+3DwLjX7b3l2b37eNAxMPLwb3/kh8VKdA==, } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + engines: { node: ^16.0.0 || >=18.0.0 } peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + eslint: ^7.0.0 || ^8.0.0 typescript: "*" peerDependenciesMeta: typescript: optional: true dependencies: - "@typescript-eslint/scope-manager": 5.43.0 - "@typescript-eslint/types": 5.43.0 - "@typescript-eslint/typescript-estree": 5.43.0(typescript@4.9.3) + "@typescript-eslint/scope-manager": 6.15.0 + "@typescript-eslint/types": 6.15.0 + "@typescript-eslint/typescript-estree": 6.15.0(typescript@5.3.3) + "@typescript-eslint/visitor-keys": 6.15.0 debug: 4.3.4 - eslint: 8.27.0 - typescript: 4.9.3 + eslint: 8.56.0 + typescript: 5.3.3 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/scope-manager@5.43.0: + /@typescript-eslint/scope-manager@5.46.0: resolution: { - integrity: sha512-XNWnGaqAtTJsUiZaoiGIrdJYHsUOd3BZ3Qj5zKp9w6km6HsrjPk/TGZv0qMTWyWj0+1QOqpHQ2gZOLXaGA9Ekw==, + integrity: sha512-7wWBq9d/GbPiIM6SqPK9tfynNxVbfpihoY5cSFMer19OYUA3l4powA2uv0AV2eAZV6KoAh6lkzxv4PoxOLh1oA==, } engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } dependencies: - "@typescript-eslint/types": 5.43.0 - "@typescript-eslint/visitor-keys": 5.43.0 + "@typescript-eslint/types": 5.46.0 + "@typescript-eslint/visitor-keys": 5.46.0 dev: true - /@typescript-eslint/scope-manager@5.46.0: + /@typescript-eslint/scope-manager@6.15.0: resolution: { - integrity: sha512-7wWBq9d/GbPiIM6SqPK9tfynNxVbfpihoY5cSFMer19OYUA3l4powA2uv0AV2eAZV6KoAh6lkzxv4PoxOLh1oA==, + integrity: sha512-+BdvxYBltqrmgCNu4Li+fGDIkW9n//NrruzG9X1vBzaNK+ExVXPoGB71kneaVw/Jp+4rH/vaMAGC6JfMbHstVg==, } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + engines: { node: ^16.0.0 || >=18.0.0 } dependencies: - "@typescript-eslint/types": 5.46.0 - "@typescript-eslint/visitor-keys": 5.46.0 + "@typescript-eslint/types": 6.15.0 + "@typescript-eslint/visitor-keys": 6.15.0 dev: true - /@typescript-eslint/type-utils@5.43.0(eslint@8.27.0)(typescript@4.9.3): + /@typescript-eslint/type-utils@6.15.0(eslint@8.56.0)(typescript@5.3.3): resolution: { - integrity: sha512-K21f+KY2/VvYggLf5Pk4tgBOPs2otTaIHy2zjclo7UZGLyFH86VfUOm5iq+OtDtxq/Zwu2I3ujDBykVW4Xtmtg==, + integrity: sha512-CnmHKTfX6450Bo49hPg2OkIm/D/TVYV7jO1MCfPYGwf6x3GO0VU8YMO5AYMn+u3X05lRRxA4fWCz87GFQV6yVQ==, } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + engines: { node: ^16.0.0 || >=18.0.0 } peerDependencies: - eslint: "*" + eslint: ^7.0.0 || ^8.0.0 typescript: "*" peerDependenciesMeta: typescript: optional: true dependencies: - "@typescript-eslint/typescript-estree": 5.43.0(typescript@4.9.3) - "@typescript-eslint/utils": 5.43.0(eslint@8.27.0)(typescript@4.9.3) + "@typescript-eslint/typescript-estree": 6.15.0(typescript@5.3.3) + "@typescript-eslint/utils": 6.15.0(eslint@8.56.0)(typescript@5.3.3) debug: 4.3.4 - eslint: 8.27.0 - tsutils: 3.21.0(typescript@4.9.3) - typescript: 4.9.3 + eslint: 8.56.0 + ts-api-utils: 1.0.3(typescript@5.3.3) + typescript: 5.3.3 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/types@5.43.0: + /@typescript-eslint/types@5.46.0: resolution: { - integrity: sha512-jpsbcD0x6AUvV7tyOlyvon0aUsQpF8W+7TpJntfCUWU1qaIKu2K34pMwQKSzQH8ORgUrGYY6pVIh1Pi8TNeteg==, + integrity: sha512-wHWgQHFB+qh6bu0IAPAJCdeCdI0wwzZnnWThlmHNY01XJ9Z97oKqKOzWYpR2I83QmshhQJl6LDM9TqMiMwJBTw==, } engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } dev: true - /@typescript-eslint/types@5.46.0: + /@typescript-eslint/types@6.15.0: resolution: { - integrity: sha512-wHWgQHFB+qh6bu0IAPAJCdeCdI0wwzZnnWThlmHNY01XJ9Z97oKqKOzWYpR2I83QmshhQJl6LDM9TqMiMwJBTw==, + integrity: sha512-yXjbt//E4T/ee8Ia1b5mGlbNj9fB9lJP4jqLbZualwpP2BCQ5is6BcWwxpIsY4XKAhmdv3hrW92GdtJbatC6dQ==, } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + engines: { node: ^16.0.0 || >=18.0.0 } dev: true - /@typescript-eslint/typescript-estree@5.43.0(typescript@4.9.3): + /@typescript-eslint/typescript-estree@5.46.0(typescript@5.3.3): resolution: { - integrity: sha512-BZ1WVe+QQ+igWal2tDbNg1j2HWUkAa+CVqdU79L4HP9izQY6CNhXfkNwd1SS4+sSZAP/EthI1uiCSY/+H0pROg==, + integrity: sha512-kDLNn/tQP+Yp8Ro2dUpyyVV0Ksn2rmpPpB0/3MO874RNmXtypMwSeazjEN/Q6CTp8D7ExXAAekPEcCEB/vtJkw==, } engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } peerDependencies: @@ -10746,46 +10376,46 @@ packages: typescript: optional: true dependencies: - "@typescript-eslint/types": 5.43.0 - "@typescript-eslint/visitor-keys": 5.43.0 + "@typescript-eslint/types": 5.46.0 + "@typescript-eslint/visitor-keys": 5.46.0 debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 semver: 7.5.4 - tsutils: 3.21.0(typescript@4.9.3) - typescript: 4.9.3 + tsutils: 3.21.0(typescript@5.3.3) + typescript: 5.3.3 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/typescript-estree@5.46.0(typescript@4.9.3): + /@typescript-eslint/typescript-estree@6.15.0(typescript@5.3.3): resolution: { - integrity: sha512-kDLNn/tQP+Yp8Ro2dUpyyVV0Ksn2rmpPpB0/3MO874RNmXtypMwSeazjEN/Q6CTp8D7ExXAAekPEcCEB/vtJkw==, + integrity: sha512-7mVZJN7Hd15OmGuWrp2T9UvqR2Ecg+1j/Bp1jXUEY2GZKV6FXlOIoqVDmLpBiEiq3katvj/2n2mR0SDwtloCew==, } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + engines: { node: ^16.0.0 || >=18.0.0 } peerDependencies: typescript: "*" peerDependenciesMeta: typescript: optional: true dependencies: - "@typescript-eslint/types": 5.46.0 - "@typescript-eslint/visitor-keys": 5.46.0 + "@typescript-eslint/types": 6.15.0 + "@typescript-eslint/visitor-keys": 6.15.0 debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 semver: 7.5.4 - tsutils: 3.21.0(typescript@4.9.3) - typescript: 4.9.3 + ts-api-utils: 1.0.3(typescript@5.3.3) + typescript: 5.3.3 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/utils@5.43.0(eslint@8.27.0)(typescript@4.9.3): + /@typescript-eslint/utils@5.46.0(eslint@8.56.0)(typescript@5.3.3): resolution: { - integrity: sha512-8nVpA6yX0sCjf7v/NDfeaOlyaIIqL7OaIGOWSPFqUKK59Gnumd3Wa+2l8oAaYO2lk0sO+SbWFWRSvhu8gLGv4A==, + integrity: sha512-4O+Ps1CRDw+D+R40JYh5GlKLQERXRKW5yIQoNDpmXPJ+C7kaPF9R7GWl+PxGgXjB3PQCqsaaZUpZ9dG4U6DO7g==, } engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } peerDependencies: @@ -10793,78 +10423,84 @@ packages: dependencies: "@types/json-schema": 7.0.11 "@types/semver": 7.3.13 - "@typescript-eslint/scope-manager": 5.43.0 - "@typescript-eslint/types": 5.43.0 - "@typescript-eslint/typescript-estree": 5.43.0(typescript@4.9.3) - eslint: 8.27.0 + "@typescript-eslint/scope-manager": 5.46.0 + "@typescript-eslint/types": 5.46.0 + "@typescript-eslint/typescript-estree": 5.46.0(typescript@5.3.3) + eslint: 8.56.0 eslint-scope: 5.1.1 - eslint-utils: 3.0.0(eslint@8.27.0) + eslint-utils: 3.0.0(eslint@8.56.0) semver: 7.5.4 transitivePeerDependencies: - supports-color - typescript dev: true - /@typescript-eslint/utils@5.46.0(eslint@8.27.0)(typescript@4.9.3): + /@typescript-eslint/utils@6.15.0(eslint@8.56.0)(typescript@5.3.3): resolution: { - integrity: sha512-4O+Ps1CRDw+D+R40JYh5GlKLQERXRKW5yIQoNDpmXPJ+C7kaPF9R7GWl+PxGgXjB3PQCqsaaZUpZ9dG4U6DO7g==, + integrity: sha512-eF82p0Wrrlt8fQSRL0bGXzK5nWPRV2dYQZdajcfzOD9+cQz9O7ugifrJxclB+xVOvWvagXfqS4Es7vpLP4augw==, } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + engines: { node: ^16.0.0 || >=18.0.0 } peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + eslint: ^7.0.0 || ^8.0.0 dependencies: - "@types/json-schema": 7.0.11 - "@types/semver": 7.3.13 - "@typescript-eslint/scope-manager": 5.46.0 - "@typescript-eslint/types": 5.46.0 - "@typescript-eslint/typescript-estree": 5.46.0(typescript@4.9.3) - eslint: 8.27.0 - eslint-scope: 5.1.1 - eslint-utils: 3.0.0(eslint@8.27.0) + "@eslint-community/eslint-utils": 4.4.0(eslint@8.56.0) + "@types/json-schema": 7.0.15 + "@types/semver": 7.5.6 + "@typescript-eslint/scope-manager": 6.15.0 + "@typescript-eslint/types": 6.15.0 + "@typescript-eslint/typescript-estree": 6.15.0(typescript@5.3.3) + eslint: 8.56.0 semver: 7.5.4 transitivePeerDependencies: - supports-color - typescript dev: true - /@typescript-eslint/visitor-keys@5.43.0: + /@typescript-eslint/visitor-keys@5.46.0: resolution: { - integrity: sha512-icl1jNH/d18OVHLfcwdL3bWUKsBeIiKYTGxMJCoGe7xFht+E4QgzOqoWYrU8XSLJWhVw8nTacbm03v23J/hFTg==, + integrity: sha512-E13gBoIXmaNhwjipuvQg1ByqSAu/GbEpP/qzFihugJ+MomtoJtFAJG/+2DRPByf57B863m0/q7Zt16V9ohhANw==, } engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } dependencies: - "@typescript-eslint/types": 5.43.0 - eslint-visitor-keys: 3.3.0 + "@typescript-eslint/types": 5.46.0 + eslint-visitor-keys: 3.4.3 dev: true - /@typescript-eslint/visitor-keys@5.46.0: + /@typescript-eslint/visitor-keys@6.15.0: resolution: { - integrity: sha512-E13gBoIXmaNhwjipuvQg1ByqSAu/GbEpP/qzFihugJ+MomtoJtFAJG/+2DRPByf57B863m0/q7Zt16V9ohhANw==, + integrity: sha512-1zvtdC1a9h5Tb5jU9x3ADNXO9yjP8rXlaoChu0DQX40vf5ACVpYIVIZhIMZ6d5sDXH7vq4dsZBT1fEGj8D2n2w==, } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + engines: { node: ^16.0.0 || >=18.0.0 } dependencies: - "@typescript-eslint/types": 5.46.0 - eslint-visitor-keys: 3.3.0 + "@typescript-eslint/types": 6.15.0 + eslint-visitor-keys: 3.4.3 + dev: true + + /@ungap/structured-clone@1.2.0: + resolution: + { + integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==, + } dev: true - /@vitejs/plugin-react-swc@3.3.0(vite@4.3.3): + /@vitejs/plugin-react-swc@3.5.0(vite@5.0.10): resolution: { - integrity: sha512-Ycg+n2eyCOTpn/wRy+evVo859+hw7qCj9iaX5CMny6x1fx1Uoq0xBG+a98lFtwLNGfGEnpI0F26YigRuxCRkwg==, + integrity: sha512-1PrOvAaDpqlCV+Up8RkAh9qaiUjoDUcjtttyhXDKw53XA6Ve16SOp6cCOpRs8Dj8DqUQs6eTW5YkLcLJjrXAig==, } peerDependencies: - vite: ^4 + vite: ^4 || ^5 dependencies: - "@swc/core": 1.3.56 - vite: 4.3.3(@types/node@18.11.9) + "@swc/core": 1.3.101 + vite: 5.0.10 transitivePeerDependencies: - "@swc/helpers" dev: true - /@vitejs/plugin-react@3.1.0(vite@4.3.3): + /@vitejs/plugin-react@3.1.0(vite@5.0.10): resolution: { integrity: sha512-AfgcRL8ZBhAlc3BFdigClmTUMISmmzHn7sB2h9U1odvc5U/MjWXsAaz18b/WoppUTDBzxOJwo2VdClfUcItu9g==, @@ -10878,162 +10514,11 @@ packages: "@babel/plugin-transform-react-jsx-source": 7.19.6(@babel/core@7.22.8) magic-string: 0.27.0 react-refresh: 0.14.0 - vite: 4.3.3(@types/node@18.11.9) + vite: 5.0.10 transitivePeerDependencies: - supports-color dev: true - /@webassemblyjs/ast@1.11.6: - resolution: - { - integrity: sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==, - } - dependencies: - "@webassemblyjs/helper-numbers": 1.11.6 - "@webassemblyjs/helper-wasm-bytecode": 1.11.6 - dev: true - - /@webassemblyjs/floating-point-hex-parser@1.11.6: - resolution: - { - integrity: sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==, - } - dev: true - - /@webassemblyjs/helper-api-error@1.11.6: - resolution: - { - integrity: sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==, - } - dev: true - - /@webassemblyjs/helper-buffer@1.11.6: - resolution: - { - integrity: sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==, - } - dev: true - - /@webassemblyjs/helper-numbers@1.11.6: - resolution: - { - integrity: sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==, - } - dependencies: - "@webassemblyjs/floating-point-hex-parser": 1.11.6 - "@webassemblyjs/helper-api-error": 1.11.6 - "@xtuc/long": 4.2.2 - dev: true - - /@webassemblyjs/helper-wasm-bytecode@1.11.6: - resolution: - { - integrity: sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==, - } - dev: true - - /@webassemblyjs/helper-wasm-section@1.11.6: - resolution: - { - integrity: sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==, - } - dependencies: - "@webassemblyjs/ast": 1.11.6 - "@webassemblyjs/helper-buffer": 1.11.6 - "@webassemblyjs/helper-wasm-bytecode": 1.11.6 - "@webassemblyjs/wasm-gen": 1.11.6 - dev: true - - /@webassemblyjs/ieee754@1.11.6: - resolution: - { - integrity: sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==, - } - dependencies: - "@xtuc/ieee754": 1.2.0 - dev: true - - /@webassemblyjs/leb128@1.11.6: - resolution: - { - integrity: sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==, - } - dependencies: - "@xtuc/long": 4.2.2 - dev: true - - /@webassemblyjs/utf8@1.11.6: - resolution: - { - integrity: sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==, - } - dev: true - - /@webassemblyjs/wasm-edit@1.11.6: - resolution: - { - integrity: sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==, - } - dependencies: - "@webassemblyjs/ast": 1.11.6 - "@webassemblyjs/helper-buffer": 1.11.6 - "@webassemblyjs/helper-wasm-bytecode": 1.11.6 - "@webassemblyjs/helper-wasm-section": 1.11.6 - "@webassemblyjs/wasm-gen": 1.11.6 - "@webassemblyjs/wasm-opt": 1.11.6 - "@webassemblyjs/wasm-parser": 1.11.6 - "@webassemblyjs/wast-printer": 1.11.6 - dev: true - - /@webassemblyjs/wasm-gen@1.11.6: - resolution: - { - integrity: sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==, - } - dependencies: - "@webassemblyjs/ast": 1.11.6 - "@webassemblyjs/helper-wasm-bytecode": 1.11.6 - "@webassemblyjs/ieee754": 1.11.6 - "@webassemblyjs/leb128": 1.11.6 - "@webassemblyjs/utf8": 1.11.6 - dev: true - - /@webassemblyjs/wasm-opt@1.11.6: - resolution: - { - integrity: sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==, - } - dependencies: - "@webassemblyjs/ast": 1.11.6 - "@webassemblyjs/helper-buffer": 1.11.6 - "@webassemblyjs/wasm-gen": 1.11.6 - "@webassemblyjs/wasm-parser": 1.11.6 - dev: true - - /@webassemblyjs/wasm-parser@1.11.6: - resolution: - { - integrity: sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==, - } - dependencies: - "@webassemblyjs/ast": 1.11.6 - "@webassemblyjs/helper-api-error": 1.11.6 - "@webassemblyjs/helper-wasm-bytecode": 1.11.6 - "@webassemblyjs/ieee754": 1.11.6 - "@webassemblyjs/leb128": 1.11.6 - "@webassemblyjs/utf8": 1.11.6 - dev: true - - /@webassemblyjs/wast-printer@1.11.6: - resolution: - { - integrity: sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==, - } - dependencies: - "@webassemblyjs/ast": 1.11.6 - "@xtuc/long": 4.2.2 - dev: true - /@xmldom/xmldom@0.8.6: resolution: { @@ -11042,20 +10527,6 @@ packages: engines: { node: ">=10.0.0" } dev: true - /@xtuc/ieee754@1.2.0: - resolution: - { - integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==, - } - dev: true - - /@xtuc/long@4.2.2: - resolution: - { - integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==, - } - dev: true - /@yarnpkg/esbuild-plugin-pnp@3.0.0-rc.15(esbuild@0.18.20): resolution: { @@ -11066,7 +10537,7 @@ packages: esbuild: ">=0.10.0" dependencies: esbuild: 0.18.20 - tslib: 2.5.0 + tslib: 2.6.2 dev: true /@yarnpkg/fslib@2.10.3: @@ -11091,17 +10562,17 @@ packages: tslib: 1.14.1 dev: true - /@zag-js/element-size@0.3.1: + /@zag-js/element-size@0.3.2: resolution: { - integrity: sha512-jR5j4G//bRzcxwAACWi9EfITnwjNmn10LxF4NmALrdZU7/PNWP3uUCdhCxd/0SCyeiJXUl0yvD57rWAbKPs1nw==, + integrity: sha512-bVvvigUGvAuj7PCkE5AbzvTJDTw5f3bg9nQdv+ErhVN8SfPPppLJEmmWdxqsRzrHXgx8ypJt/+Ty0kjtISVDsQ==, } dev: false - /@zag-js/focus-visible@0.2.1: + /@zag-js/focus-visible@0.2.2: resolution: { - integrity: sha512-19uTjoZGP4/Ax7kSNhhay9JA83BirKzpqLkeEAilrpdI1hE5xuq6q+tzJOsrMOOqJrm7LkmZp5lbsTQzvK2pYg==, + integrity: sha512-0j2gZq8HiZ51z4zNnSkF1iSkqlwRDvdH+son3wHdoz+7IUdMN/5Exd4TxMJ+gq2Of1DiXReYLL9qqh2PdQ4wgA==, } dev: false @@ -11142,17 +10613,6 @@ packages: acorn-walk: 8.2.0 dev: true - /acorn-import-assertions@1.9.0(acorn@8.10.0): - resolution: - { - integrity: sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==, - } - peerDependencies: - acorn: ^8 - dependencies: - acorn: 8.10.0 - dev: true - /acorn-jsx@5.3.2(acorn@7.4.1): resolution: { @@ -11164,7 +10624,7 @@ packages: acorn: 7.4.1 dev: true - /acorn-jsx@5.3.2(acorn@8.8.2): + /acorn-jsx@5.3.2(acorn@8.11.2): resolution: { integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==, @@ -11172,7 +10632,7 @@ packages: peerDependencies: acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: - acorn: 8.8.2 + acorn: 8.11.2 dev: true /acorn-walk@7.2.0: @@ -11200,10 +10660,10 @@ packages: hasBin: true dev: true - /acorn@8.10.0: + /acorn@8.11.2: resolution: { - integrity: sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==, + integrity: sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==, } engines: { node: ">=0.4.0" } hasBin: true @@ -11257,17 +10717,6 @@ packages: indent-string: 4.0.0 dev: true - /ajv-keywords@3.5.2(ajv@6.12.6): - resolution: - { - integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==, - } - peerDependencies: - ajv: ^6.9.1 - dependencies: - ajv: 6.12.6 - dev: true - /ajv@6.12.6: resolution: { @@ -11297,7 +10746,7 @@ packages: } engines: { node: ">=14.16" } dependencies: - type-fest: 3.3.0 + type-fest: 3.13.1 dev: true /ansi-regex@5.0.1: @@ -11435,26 +10884,25 @@ packages: dependencies: "@types/react": 18.0.25 react: 18.2.0 - tslib: 2.5.0 + tslib: 2.6.2 - /aria-query@4.2.2: + /aria-query@5.1.3: resolution: { - integrity: sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==, + integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==, } - engines: { node: ">=6.0" } dependencies: - "@babel/runtime": 7.23.2 - "@babel/runtime-corejs3": 7.20.1 + deep-equal: 2.1.0 dev: true - /aria-query@5.1.3: + /array-buffer-byte-length@1.0.0: resolution: { - integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==, + integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==, } dependencies: - deep-equal: 2.1.0 + call-bind: 1.0.5 + is-array-buffer: 3.0.2 dev: true /array-differ@3.0.0: @@ -11472,17 +10920,17 @@ packages: } dev: true - /array-includes@3.1.6: + /array-includes@3.1.7: resolution: { - integrity: sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==, + integrity: sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==, } engines: { node: ">= 0.4" } dependencies: - call-bind: 1.0.2 - define-properties: 1.1.4 - es-abstract: 1.20.4 - get-intrinsic: 1.1.3 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + get-intrinsic: 1.2.2 is-string: 1.0.7 dev: true @@ -11494,30 +10942,59 @@ packages: engines: { node: ">=8" } dev: true - /array.prototype.flat@1.3.1: + /array.prototype.flat@1.3.2: + resolution: + { + integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==, + } + engines: { node: ">= 0.4" } + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + es-shim-unscopables: 1.0.2 + dev: true + + /array.prototype.flatmap@1.3.2: resolution: { - integrity: sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==, + integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==, } engines: { node: ">= 0.4" } dependencies: - call-bind: 1.0.2 - define-properties: 1.1.4 - es-abstract: 1.20.4 - es-shim-unscopables: 1.0.0 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + es-shim-unscopables: 1.0.2 + dev: true + + /array.prototype.tosorted@1.1.2: + resolution: + { + integrity: sha512-HuQCHOlk1Weat5jzStICBCd83NxiIMwqDg/dHEsoefabn/hJRj5pVdWcPUSpRrwhwxZOsQassMpgN/xRYFBMIg==, + } + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + es-shim-unscopables: 1.0.2 + get-intrinsic: 1.2.2 dev: true - /array.prototype.flatmap@1.3.1: + /arraybuffer.prototype.slice@1.0.2: resolution: { - integrity: sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==, + integrity: sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==, } engines: { node: ">= 0.4" } dependencies: - call-bind: 1.0.2 - define-properties: 1.1.4 - es-abstract: 1.20.4 - es-shim-unscopables: 1.0.0 + array-buffer-byte-length: 1.0.0 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + get-intrinsic: 1.2.2 + is-array-buffer: 3.0.2 + is-shared-array-buffer: 1.0.2 dev: true /arrify@2.0.1: @@ -11540,17 +11017,23 @@ packages: util: 0.12.5 dev: true - /assertion-error@1.1.0: + /assert@2.1.0: resolution: { - integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==, + integrity: sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==, } + dependencies: + call-bind: 1.0.5 + is-nan: 1.3.2 + object-is: 1.1.5 + object.assign: 4.1.5 + util: 0.12.5 dev: true - /ast-types-flow@0.0.7: + /assertion-error@1.1.0: resolution: { - integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==, + integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==, } dev: true @@ -11561,7 +11044,7 @@ packages: } engines: { node: ">=4" } dependencies: - tslib: 2.5.0 + tslib: 2.6.2 dev: true /ast-types@0.16.1: @@ -11571,7 +11054,7 @@ packages: } engines: { node: ">=4" } dependencies: - tslib: 2.5.0 + tslib: 2.6.2 dev: true /async-limiter@1.0.1: @@ -11597,6 +11080,15 @@ packages: } dev: true + /asynciterator.prototype@1.0.0: + resolution: + { + integrity: sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg==, + } + dependencies: + has-symbols: 1.0.3 + dev: true + /asynckit@0.4.0: resolution: { @@ -11671,13 +11163,6 @@ packages: - debug dev: true - /axobject-query@2.2.0: - resolution: - { - integrity: sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==, - } - dev: true - /babel-core@7.0.0-bridge.0(@babel/core@7.23.2): resolution: { @@ -11731,24 +11216,6 @@ packages: - supports-color dev: true - /babel-loader@8.3.0(@babel/core@7.20.5)(webpack@5.89.0): - resolution: - { - integrity: sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==, - } - engines: { node: ">= 8.9" } - peerDependencies: - "@babel/core": ^7.0.0 - webpack: ">=2" - dependencies: - "@babel/core": 7.20.5 - find-cache-dir: 3.3.2 - loader-utils: 2.0.4 - make-dir: 3.1.0 - schema-utils: 2.7.1 - webpack: 5.89.0(@swc/core@1.3.56)(esbuild@0.18.20) - dev: true - /babel-plugin-istanbul@6.1.1: resolution: { @@ -11801,24 +11268,9 @@ packages: "@babel/runtime": 7.23.2 cosmiconfig: 7.1.0 resolve: 1.22.1 + dev: false - /babel-plugin-polyfill-corejs2@0.3.3(@babel/core@7.22.8): - resolution: - { - integrity: sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==, - } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/compat-data": 7.22.6 - "@babel/core": 7.22.8 - "@babel/helper-define-polyfill-provider": 0.3.3(@babel/core@7.22.8) - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - dev: true - - /babel-plugin-polyfill-corejs2@0.4.6(@babel/core@7.20.5): + /babel-plugin-polyfill-corejs2@0.4.6(@babel/core@7.23.6): resolution: { integrity: sha512-jhHiWVZIlnPbEUKSSNb9YoWcQGdlTLq7z1GHL4AjFxaoOUMuuEVJ+Y4pAaQUGOGk93YsVCKPbqbfw3m0SM6H8Q==, @@ -11827,29 +11279,14 @@ packages: "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: "@babel/compat-data": 7.23.2 - "@babel/core": 7.20.5 - "@babel/helper-define-polyfill-provider": 0.4.3(@babel/core@7.20.5) + "@babel/core": 7.23.6 + "@babel/helper-define-polyfill-provider": 0.4.3(@babel/core@7.23.6) semver: 6.3.1 transitivePeerDependencies: - supports-color dev: true - /babel-plugin-polyfill-corejs3@0.6.0(@babel/core@7.22.8): - resolution: - { - integrity: sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==, - } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.22.8 - "@babel/helper-define-polyfill-provider": 0.3.3(@babel/core@7.22.8) - core-js-compat: 3.26.1 - transitivePeerDependencies: - - supports-color - dev: true - - /babel-plugin-polyfill-corejs3@0.8.5(@babel/core@7.20.5): + /babel-plugin-polyfill-corejs3@0.8.5(@babel/core@7.23.6): resolution: { integrity: sha512-Q6CdATeAvbScWPNLB8lzSO7fgUVBkQt6zLgNlfyeCr/EQaEQR+bWiBYYPYAFyE528BMjRhL+1QBMOI4jc/c5TA==, @@ -11857,28 +11294,14 @@ packages: peerDependencies: "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: - "@babel/core": 7.20.5 - "@babel/helper-define-polyfill-provider": 0.4.3(@babel/core@7.20.5) - core-js-compat: 3.33.1 - transitivePeerDependencies: - - supports-color - dev: true - - /babel-plugin-polyfill-regenerator@0.4.1(@babel/core@7.22.8): - resolution: - { - integrity: sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==, - } - peerDependencies: - "@babel/core": ^7.0.0-0 - dependencies: - "@babel/core": 7.22.8 - "@babel/helper-define-polyfill-provider": 0.3.3(@babel/core@7.22.8) + "@babel/core": 7.23.6 + "@babel/helper-define-polyfill-provider": 0.4.3(@babel/core@7.23.6) + core-js-compat: 3.33.1 transitivePeerDependencies: - supports-color dev: true - /babel-plugin-polyfill-regenerator@0.5.3(@babel/core@7.20.5): + /babel-plugin-polyfill-regenerator@0.5.3(@babel/core@7.23.6): resolution: { integrity: sha512-8sHeDOmXC8csczMrYEOf0UTNa4yE2SxV5JGeT/LP1n0OYVDUUFPxG9vdk2AlDlIit4t+Kf0xCtpgXPBwnn/9pw==, @@ -11886,19 +11309,12 @@ packages: peerDependencies: "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: - "@babel/core": 7.20.5 - "@babel/helper-define-polyfill-provider": 0.4.3(@babel/core@7.20.5) + "@babel/core": 7.23.6 + "@babel/helper-define-polyfill-provider": 0.4.3(@babel/core@7.23.6) transitivePeerDependencies: - supports-color dev: true - /babel-plugin-transform-react-remove-prop-types@0.4.24: - resolution: - { - integrity: sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==, - } - dev: true - /babel-preset-current-node-syntax@1.0.1(@babel/core@7.22.8): resolution: { @@ -11950,33 +11366,6 @@ packages: babel-preset-current-node-syntax: 1.0.1(@babel/core@7.22.8) dev: true - /babel-preset-react-app@10.0.1: - resolution: - { - integrity: sha512-b0D9IZ1WhhCWkrTXyFuIIgqGzSkRIH5D5AmB0bXbzYAB1OBAwHcUeyWW2LorutLWF5btNo/N7r/cIdmvvKJlYg==, - } - dependencies: - "@babel/core": 7.22.8 - "@babel/plugin-proposal-class-properties": 7.18.6(@babel/core@7.22.8) - "@babel/plugin-proposal-decorators": 7.20.2(@babel/core@7.22.8) - "@babel/plugin-proposal-nullish-coalescing-operator": 7.18.6(@babel/core@7.22.8) - "@babel/plugin-proposal-numeric-separator": 7.18.6(@babel/core@7.22.8) - "@babel/plugin-proposal-optional-chaining": 7.21.0(@babel/core@7.22.8) - "@babel/plugin-proposal-private-methods": 7.18.6(@babel/core@7.22.8) - "@babel/plugin-proposal-private-property-in-object": 7.21.0(@babel/core@7.22.8) - "@babel/plugin-transform-flow-strip-types": 7.19.0(@babel/core@7.22.8) - "@babel/plugin-transform-react-display-name": 7.18.6(@babel/core@7.22.8) - "@babel/plugin-transform-runtime": 7.19.6(@babel/core@7.22.8) - "@babel/preset-env": 7.21.4(@babel/core@7.22.8) - "@babel/preset-react": 7.18.6(@babel/core@7.22.8) - "@babel/preset-typescript": 7.18.6(@babel/core@7.22.8) - "@babel/runtime": 7.23.2 - babel-plugin-macros: 3.1.0 - babel-plugin-transform-react-remove-prop-types: 0.4.24 - transitivePeerDependencies: - - supports-color - dev: true - /bail@2.0.2: resolution: { @@ -12026,13 +11415,6 @@ packages: engines: { node: ">=0.6" } dev: true - /big.js@5.2.2: - resolution: - { - integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==, - } - dev: true - /binary-extensions@2.2.0: resolution: { @@ -12130,19 +11512,6 @@ packages: pako: 0.2.9 dev: true - /browserslist@4.21.4: - resolution: - { - integrity: sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==, - } - engines: { node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 } - hasBin: true - dependencies: - caniuse-lite: 1.0.30001513 - electron-to-chromium: 1.4.454 - node-releases: 2.0.13 - update-browserslist-db: 1.0.11(browserslist@4.21.4) - /browserslist@4.21.9: resolution: { @@ -12171,6 +11540,19 @@ packages: update-browserslist-db: 1.0.13(browserslist@4.22.1) dev: true + /browserslist@4.22.2: + resolution: + { + integrity: sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==, + } + engines: { node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 } + hasBin: true + dependencies: + caniuse-lite: 1.0.30001570 + electron-to-chromium: 1.4.615 + node-releases: 2.0.14 + update-browserslist-db: 1.0.13(browserslist@4.22.2) + /bser@2.1.1: resolution: { @@ -12241,14 +11623,15 @@ packages: write-file-atomic: 3.0.3 dev: true - /call-bind@1.0.2: + /call-bind@1.0.5: resolution: { - integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==, + integrity: sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==, } dependencies: - function-bind: 1.1.1 - get-intrinsic: 1.1.3 + function-bind: 1.1.2 + get-intrinsic: 1.2.2 + set-function-length: 1.1.1 dev: true /callsites@3.1.0: @@ -12287,6 +11670,7 @@ packages: { integrity: sha512-pnjGJo7SOOjAGytZZ203Em95MRM8Cr6jhCXNF/FAXTpCTRTECnqQWLpiTRqrFtdYcth8hf4WECUpkezuYsMVww==, } + dev: true /caniuse-lite@1.0.30001551: resolution: @@ -12295,6 +11679,12 @@ packages: } dev: true + /caniuse-lite@1.0.30001570: + resolution: + { + integrity: sha512-+3e0ASu4sw1SWaoCtvPeyXp+5PsjigkSt8OXZbF9StH5pQWbxEjLAZE3n8Aup5udop1uRiKA7a4utUk/uoSpUw==, + } + /ccount@2.0.1: resolution: { @@ -12432,14 +11822,6 @@ packages: engines: { node: ">=10" } dev: true - /chrome-trace-event@1.0.3: - resolution: - { - integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==, - } - engines: { node: ">=6.0" } - dev: true - /ci-info@3.7.0: resolution: { @@ -12598,10 +11980,10 @@ packages: hasBin: true dev: true - /color2k@2.0.2: + /color2k@2.0.3: resolution: { - integrity: sha512-kJhwH5nAwb34tmyuqq/lgjEKzlFXn1U99NlnB6Ws4qVaERcRUYeYP1cBw6BJ4vxaWStAUEef4WMr7WjOCnBt8w==, + integrity: sha512-zW190nQTIoXcGCaU08DvVNFTmQhUpnJfVuAKfWqUQkflXKpaDdpaYoM0iluLS9lgJNHyBF58KKA2FBEwkD7wog==, } dev: false @@ -12622,13 +12004,6 @@ packages: delayed-stream: 1.0.0 dev: true - /commander@2.20.3: - resolution: - { - integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==, - } - dev: true - /commander@3.0.2: resolution: { @@ -12756,13 +12131,6 @@ packages: yargs: 17.7.2 dev: true - /confusing-browser-globals@1.0.11: - resolution: - { - integrity: sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==, - } - dev: true - /console-control-strings@1.1.0: resolution: { @@ -12799,7 +12167,6 @@ packages: { integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==, } - dev: true /cookie-signature@1.0.6: resolution: @@ -12833,15 +12200,6 @@ packages: toggle-selection: 1.0.6 dev: false - /core-js-compat@3.26.1: - resolution: - { - integrity: sha512-622/KzTudvXCDLRw70iHW4KKs1aGpcRcowGWyYJr2DEBfRrd6hNJybxSWJFuZYD4ma86xhrwDDHxmDaIq4EA8A==, - } - dependencies: - browserslist: 4.21.9 - dev: true - /core-js-compat@3.33.1: resolution: { @@ -12851,14 +12209,6 @@ packages: browserslist: 4.22.1 dev: true - /core-js-pure@3.26.1: - resolution: - { - integrity: sha512-VVXcDpp/xJ21KdULRq/lXdLzQAtX7+37LzpyfFM973il0tWSsDEoyzG38G14AjTpK9VTfiNM9jnFauq/CpaWGQ==, - } - requiresBuild: true - dev: true - /core-util-is@1.0.3: resolution: { @@ -12886,6 +12236,7 @@ packages: parse-json: 5.2.0 path-type: 4.0.0 yaml: 1.10.2 + dev: false /cross-spawn@7.0.3: resolution: @@ -12939,12 +12290,11 @@ packages: integrity: sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw==, } - /csstype@3.1.2: + /csstype@3.1.3: resolution: { - integrity: sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==, + integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==, } - dev: false /cwd@0.10.0: resolution: @@ -12957,13 +12307,6 @@ packages: fs-exists-sync: 0.1.0 dev: true - /damerau-levenshtein@1.0.8: - resolution: - { - integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==, - } - dev: true - /data-urls@4.0.0: resolution: { @@ -13083,16 +12426,16 @@ packages: integrity: sha512-2pxgvWu3Alv1PoWEyVg7HS8YhGlUFUV7N5oOvfL6d+7xAmLSemMwv/c8Zv/i9KFzxV5Kt5CAvQc70fLwVuf4UA==, } dependencies: - call-bind: 1.0.2 + call-bind: 1.0.5 es-get-iterator: 1.1.2 - get-intrinsic: 1.1.3 + get-intrinsic: 1.2.2 is-arguments: 1.1.1 is-date-object: 1.0.5 is-regex: 1.1.4 isarray: 2.0.5 object-is: 1.1.5 object-keys: 1.1.1 - object.assign: 4.1.4 + object.assign: 4.1.5 regexp.prototype.flags: 1.4.3 side-channel: 1.0.4 which-boxed-primitive: 1.0.2 @@ -13145,6 +12488,18 @@ packages: clone: 1.0.4 dev: true + /define-data-property@1.1.1: + resolution: + { + integrity: sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==, + } + engines: { node: ">= 0.4" } + dependencies: + get-intrinsic: 1.2.2 + gopd: 1.0.1 + has-property-descriptors: 1.0.1 + dev: true + /define-lazy-prop@2.0.0: resolution: { @@ -13153,14 +12508,15 @@ packages: engines: { node: ">=8" } dev: true - /define-properties@1.1.4: + /define-properties@1.2.1: resolution: { - integrity: sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==, + integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==, } engines: { node: ">= 0.4" } dependencies: - has-property-descriptors: 1.0.0 + define-data-property: 1.1.1 + has-property-descriptors: 1.0.1 object-keys: 1.1.1 dev: true @@ -13453,6 +12809,7 @@ packages: { integrity: sha512-pmf1rbAStw8UEQ0sr2cdJtWl48ZMuPD9Sto8HVQOq9vx9j2WgDEN6lYoaqFvqEHYOmGA9oRGn7LqWI9ta0YugQ==, } + dev: true /electron-to-chromium@1.4.563: resolution: @@ -13461,6 +12818,12 @@ packages: } dev: true + /electron-to-chromium@1.4.615: + resolution: + { + integrity: sha512-/bKPPcgZVUziECqDc+0HkT87+0zhaWSZHNXqF8FLd2lQcptpmUFwoCSWjCdOng9Gdq+afKArPdEg/0ZW461Eng==, + } + /emittery@0.10.2: resolution: { @@ -13491,14 +12854,6 @@ packages: } dev: true - /emojis-list@3.0.0: - resolution: - { - integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==, - } - engines: { node: ">= 4" } - dev: true - /encodeurl@1.0.2: resolution: { @@ -13516,17 +12871,6 @@ packages: once: 1.4.0 dev: true - /enhanced-resolve@5.15.0: - resolution: - { - integrity: sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==, - } - engines: { node: ">=10.13.0" } - dependencies: - graceful-fs: 4.2.11 - tapable: 2.2.1 - dev: true - /entities@1.1.2: resolution: { @@ -13566,37 +12910,52 @@ packages: dependencies: is-arrayish: 0.2.1 - /es-abstract@1.20.4: + /es-abstract@1.22.3: resolution: { - integrity: sha512-0UtvRN79eMe2L+UNEF1BwRe364sj/DXhQ/k5FmivgoSdpM90b8Jc0mDzKMGo7QS0BVbOP/bTwBKNnDc9rNzaPA==, + integrity: sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==, } engines: { node: ">= 0.4" } dependencies: - call-bind: 1.0.2 + array-buffer-byte-length: 1.0.0 + arraybuffer.prototype.slice: 1.0.2 + available-typed-arrays: 1.0.5 + call-bind: 1.0.5 + es-set-tostringtag: 2.0.2 es-to-primitive: 1.2.1 - function-bind: 1.1.1 - function.prototype.name: 1.1.5 - get-intrinsic: 1.1.3 + function.prototype.name: 1.1.6 + get-intrinsic: 1.2.2 get-symbol-description: 1.0.0 - has: 1.0.3 - has-property-descriptors: 1.0.0 + globalthis: 1.0.3 + gopd: 1.0.1 + has-property-descriptors: 1.0.1 + has-proto: 1.0.1 has-symbols: 1.0.3 - internal-slot: 1.0.3 + hasown: 2.0.0 + internal-slot: 1.0.6 + is-array-buffer: 3.0.2 is-callable: 1.2.7 is-negative-zero: 2.0.2 is-regex: 1.1.4 is-shared-array-buffer: 1.0.2 is-string: 1.0.7 + is-typed-array: 1.1.12 is-weakref: 1.0.2 - object-inspect: 1.12.2 + object-inspect: 1.13.1 object-keys: 1.1.1 - object.assign: 4.1.4 - regexp.prototype.flags: 1.4.3 + object.assign: 4.1.5 + regexp.prototype.flags: 1.5.1 + safe-array-concat: 1.0.1 safe-regex-test: 1.0.0 - string.prototype.trimend: 1.0.6 - string.prototype.trimstart: 1.0.6 + string.prototype.trim: 1.2.8 + string.prototype.trimend: 1.0.7 + string.prototype.trimstart: 1.0.7 + typed-array-buffer: 1.0.0 + typed-array-byte-length: 1.0.0 + typed-array-byte-offset: 1.0.0 + typed-array-length: 1.0.4 unbox-primitive: 1.0.2 + which-typed-array: 1.1.13 dev: true /es-get-iterator@1.1.2: @@ -13605,8 +12964,8 @@ packages: integrity: sha512-+DTO8GYwbMCwbywjimwZMHp8AuYXOS2JZFWoi2AlPOS3ebnII9w/NLpNZtA7A0YLaVDw+O7KFCeoIV7OPvM7hQ==, } dependencies: - call-bind: 1.0.2 - get-intrinsic: 1.1.3 + call-bind: 1.0.5 + get-intrinsic: 1.2.2 has-symbols: 1.0.3 is-arguments: 1.1.1 is-map: 2.0.2 @@ -13615,6 +12974,28 @@ packages: isarray: 2.0.5 dev: true + /es-iterator-helpers@1.0.15: + resolution: + { + integrity: sha512-GhoY8uYqd6iwUl2kgjTm4CZAf6oo5mHK7BPqx3rKgx893YSsy0LGHV6gfqqQvZt/8xM8xeOnfXBCfqclMKkJ5g==, + } + dependencies: + asynciterator.prototype: 1.0.0 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + es-set-tostringtag: 2.0.2 + function-bind: 1.1.2 + get-intrinsic: 1.2.2 + globalthis: 1.0.3 + has-property-descriptors: 1.0.1 + has-proto: 1.0.1 + has-symbols: 1.0.3 + internal-slot: 1.0.6 + iterator.prototype: 1.1.2 + safe-array-concat: 1.0.1 + dev: true + /es-module-lexer@0.9.3: resolution: { @@ -13622,20 +13003,25 @@ packages: } dev: true - /es-module-lexer@1.3.1: + /es-set-tostringtag@2.0.2: resolution: { - integrity: sha512-JUFAyicQV9mXc3YRxPnDlrfBKpqt6hUYzz9/boprUJHs4e4KVr3XwOF70doO6gwXUor6EWZJAyWAfKki84t20Q==, + integrity: sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==, } + engines: { node: ">= 0.4" } + dependencies: + get-intrinsic: 1.2.2 + has-tostringtag: 1.0.0 + hasown: 2.0.0 dev: true - /es-shim-unscopables@1.0.0: + /es-shim-unscopables@1.0.2: resolution: { - integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==, + integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==, } dependencies: - has: 1.0.3 + hasown: 2.0.0 dev: true /es-to-primitive@1.2.1: @@ -13671,7 +13057,7 @@ packages: } dev: true - /esbuild-register@3.4.2(esbuild@0.17.18): + /esbuild-register@3.4.2(esbuild@0.17.19): resolution: { integrity: sha512-kG/XyTDyz6+YDuyfB9ZoSIOOmgyFCH+xPRtsCa8W85HLRV5Csp+o3jWVbOSHgSLfyLc5DmP+KFDNwty4mEjC+Q==, @@ -13680,7 +13066,7 @@ packages: esbuild: ">=0.12 <1" dependencies: debug: 4.3.4 - esbuild: 0.17.18 + esbuild: 0.17.19 transitivePeerDependencies: - supports-color dev: true @@ -13699,37 +13085,37 @@ packages: - supports-color dev: true - /esbuild@0.17.18: + /esbuild@0.17.19: resolution: { - integrity: sha512-z1lix43jBs6UKjcZVKOw2xx69ffE2aG0PygLL5qJ9OS/gy0Ewd1gW/PUQIOIQGXBHWNywSc0floSKoMFF8aK2w==, + integrity: sha512-XQ0jAPFkK/u3LcVRcvVHQcTIqD6E2H1fvZMA5dQPSOWb3suUbWbfbRf94pjc0bNzRYLfIrDRQXr7X+LHIm5oHw==, } engines: { node: ">=12" } hasBin: true requiresBuild: true optionalDependencies: - "@esbuild/android-arm": 0.17.18 - "@esbuild/android-arm64": 0.17.18 - "@esbuild/android-x64": 0.17.18 - "@esbuild/darwin-arm64": 0.17.18 - "@esbuild/darwin-x64": 0.17.18 - "@esbuild/freebsd-arm64": 0.17.18 - "@esbuild/freebsd-x64": 0.17.18 - "@esbuild/linux-arm": 0.17.18 - "@esbuild/linux-arm64": 0.17.18 - "@esbuild/linux-ia32": 0.17.18 - "@esbuild/linux-loong64": 0.17.18 - "@esbuild/linux-mips64el": 0.17.18 - "@esbuild/linux-ppc64": 0.17.18 - "@esbuild/linux-riscv64": 0.17.18 - "@esbuild/linux-s390x": 0.17.18 - "@esbuild/linux-x64": 0.17.18 - "@esbuild/netbsd-x64": 0.17.18 - "@esbuild/openbsd-x64": 0.17.18 - "@esbuild/sunos-x64": 0.17.18 - "@esbuild/win32-arm64": 0.17.18 - "@esbuild/win32-ia32": 0.17.18 - "@esbuild/win32-x64": 0.17.18 + "@esbuild/android-arm": 0.17.19 + "@esbuild/android-arm64": 0.17.19 + "@esbuild/android-x64": 0.17.19 + "@esbuild/darwin-arm64": 0.17.19 + "@esbuild/darwin-x64": 0.17.19 + "@esbuild/freebsd-arm64": 0.17.19 + "@esbuild/freebsd-x64": 0.17.19 + "@esbuild/linux-arm": 0.17.19 + "@esbuild/linux-arm64": 0.17.19 + "@esbuild/linux-ia32": 0.17.19 + "@esbuild/linux-loong64": 0.17.19 + "@esbuild/linux-mips64el": 0.17.19 + "@esbuild/linux-ppc64": 0.17.19 + "@esbuild/linux-riscv64": 0.17.19 + "@esbuild/linux-s390x": 0.17.19 + "@esbuild/linux-x64": 0.17.19 + "@esbuild/netbsd-x64": 0.17.19 + "@esbuild/openbsd-x64": 0.17.19 + "@esbuild/sunos-x64": 0.17.19 + "@esbuild/win32-arm64": 0.17.19 + "@esbuild/win32-ia32": 0.17.19 + "@esbuild/win32-x64": 0.17.19 dev: true /esbuild@0.18.20: @@ -13765,6 +13151,40 @@ packages: "@esbuild/win32-x64": 0.18.20 dev: true + /esbuild@0.19.10: + resolution: + { + integrity: sha512-S1Y27QGt/snkNYrRcswgRFqZjaTG5a5xM3EQo97uNBnH505pdzSNe/HLBq1v0RO7iK/ngdbhJB6mDAp0OK+iUA==, + } + engines: { node: ">=12" } + hasBin: true + requiresBuild: true + optionalDependencies: + "@esbuild/aix-ppc64": 0.19.10 + "@esbuild/android-arm": 0.19.10 + "@esbuild/android-arm64": 0.19.10 + "@esbuild/android-x64": 0.19.10 + "@esbuild/darwin-arm64": 0.19.10 + "@esbuild/darwin-x64": 0.19.10 + "@esbuild/freebsd-arm64": 0.19.10 + "@esbuild/freebsd-x64": 0.19.10 + "@esbuild/linux-arm": 0.19.10 + "@esbuild/linux-arm64": 0.19.10 + "@esbuild/linux-ia32": 0.19.10 + "@esbuild/linux-loong64": 0.19.10 + "@esbuild/linux-mips64el": 0.19.10 + "@esbuild/linux-ppc64": 0.19.10 + "@esbuild/linux-riscv64": 0.19.10 + "@esbuild/linux-s390x": 0.19.10 + "@esbuild/linux-x64": 0.19.10 + "@esbuild/netbsd-x64": 0.19.10 + "@esbuild/openbsd-x64": 0.19.10 + "@esbuild/sunos-x64": 0.19.10 + "@esbuild/win32-arm64": 0.19.10 + "@esbuild/win32-ia32": 0.19.10 + "@esbuild/win32-x64": 0.19.10 + dev: true + /escalade@3.1.1: resolution: { @@ -13840,229 +13260,35 @@ packages: source-map: 0.6.1 dev: true - /eslint-config-react-app@7.0.1(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(eslint@8.27.0)(jest@29.3.1)(typescript@4.9.3): - resolution: - { - integrity: sha512-K6rNzvkIeHaTd8m/QEh1Zko0KI7BACWkkneSs6s9cKZC/J27X3eZR6Upt1jkmZ/4FK+XUOPPxMEN7+lbUXfSlA==, - } - engines: { node: ">=14.0.0" } - peerDependencies: - eslint: ^8.0.0 - typescript: "*" - peerDependenciesMeta: - typescript: - optional: true - dependencies: - "@babel/core": 7.21.3 - "@babel/eslint-parser": 7.19.1(@babel/core@7.21.3)(eslint@8.27.0) - "@rushstack/eslint-patch": 1.2.0 - "@typescript-eslint/eslint-plugin": 5.43.0(@typescript-eslint/parser@5.43.0)(eslint@8.27.0)(typescript@4.9.3) - "@typescript-eslint/parser": 5.43.0(eslint@8.27.0)(typescript@4.9.3) - babel-preset-react-app: 10.0.1 - confusing-browser-globals: 1.0.11 - eslint: 8.27.0 - eslint-plugin-flowtype: 8.0.3(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(eslint@8.27.0) - eslint-plugin-import: 2.26.0(@typescript-eslint/parser@5.43.0)(eslint@8.27.0) - eslint-plugin-jest: 25.7.0(@typescript-eslint/eslint-plugin@5.43.0)(eslint@8.27.0)(jest@29.3.1)(typescript@4.9.3) - eslint-plugin-jsx-a11y: 6.6.1(eslint@8.27.0) - eslint-plugin-react: 7.31.10(eslint@8.27.0) - eslint-plugin-react-hooks: 4.6.0(eslint@8.27.0) - eslint-plugin-testing-library: 5.9.1(eslint@8.27.0)(typescript@4.9.3) - typescript: 4.9.3 - transitivePeerDependencies: - - "@babel/plugin-syntax-flow" - - "@babel/plugin-transform-react-jsx" - - eslint-import-resolver-typescript - - eslint-import-resolver-webpack - - jest - - supports-color - dev: true - - /eslint-import-resolver-node@0.3.6: - resolution: - { - integrity: sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==, - } - dependencies: - debug: 3.2.7 - resolve: 1.22.1 - transitivePeerDependencies: - - supports-color - dev: true - - /eslint-module-utils@2.7.4(@typescript-eslint/parser@5.43.0)(eslint-import-resolver-node@0.3.6)(eslint@8.27.0): - resolution: - { - integrity: sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==, - } - engines: { node: ">=4" } - peerDependencies: - "@typescript-eslint/parser": "*" - eslint: "*" - eslint-import-resolver-node: "*" - eslint-import-resolver-typescript: "*" - eslint-import-resolver-webpack: "*" - peerDependenciesMeta: - "@typescript-eslint/parser": - optional: true - eslint: - optional: true - eslint-import-resolver-node: - optional: true - eslint-import-resolver-typescript: - optional: true - eslint-import-resolver-webpack: - optional: true - dependencies: - "@typescript-eslint/parser": 5.43.0(eslint@8.27.0)(typescript@4.9.3) - debug: 3.2.7 - eslint: 8.27.0 - eslint-import-resolver-node: 0.3.6 - transitivePeerDependencies: - - supports-color - dev: true - - /eslint-plugin-flowtype@8.0.3(@babel/plugin-syntax-flow@7.22.5)(@babel/plugin-transform-react-jsx@7.22.15)(eslint@8.27.0): - resolution: - { - integrity: sha512-dX8l6qUL6O+fYPtpNRideCFSpmWOUVx5QcaGLVqe/vlDiBSe4vYljDWDETwnyFzpl7By/WVIu6rcrniCgH9BqQ==, - } - engines: { node: ">=12.0.0" } - peerDependencies: - "@babel/plugin-syntax-flow": ^7.14.5 - "@babel/plugin-transform-react-jsx": ^7.14.9 - eslint: ^8.1.0 - dependencies: - "@babel/plugin-syntax-flow": 7.22.5(@babel/core@7.20.5) - "@babel/plugin-transform-react-jsx": 7.22.15(@babel/core@7.20.5) - eslint: 8.27.0 - lodash: 4.17.21 - string-natural-compare: 3.0.1 - dev: true - - /eslint-plugin-import@2.26.0(@typescript-eslint/parser@5.43.0)(eslint@8.27.0): - resolution: - { - integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==, - } - engines: { node: ">=4" } - peerDependencies: - "@typescript-eslint/parser": "*" - eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 - peerDependenciesMeta: - "@typescript-eslint/parser": - optional: true - dependencies: - "@typescript-eslint/parser": 5.43.0(eslint@8.27.0)(typescript@4.9.3) - array-includes: 3.1.6 - array.prototype.flat: 1.3.1 - debug: 2.6.9 - doctrine: 2.1.0 - eslint: 8.27.0 - eslint-import-resolver-node: 0.3.6 - eslint-module-utils: 2.7.4(@typescript-eslint/parser@5.43.0)(eslint-import-resolver-node@0.3.6)(eslint@8.27.0) - has: 1.0.3 - is-core-module: 2.11.0 - is-glob: 4.0.3 - minimatch: 3.1.2 - object.values: 1.1.6 - resolve: 1.22.1 - tsconfig-paths: 3.14.1 - transitivePeerDependencies: - - eslint-import-resolver-typescript - - eslint-import-resolver-webpack - - supports-color - dev: true - - /eslint-plugin-jest@25.7.0(@typescript-eslint/eslint-plugin@5.43.0)(eslint@8.27.0)(jest@29.3.1)(typescript@4.9.3): - resolution: - { - integrity: sha512-PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ==, - } - engines: { node: ^12.13.0 || ^14.15.0 || >=16.0.0 } - peerDependencies: - "@typescript-eslint/eslint-plugin": ^4.0.0 || ^5.0.0 - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - jest: "*" - peerDependenciesMeta: - "@typescript-eslint/eslint-plugin": - optional: true - jest: - optional: true - dependencies: - "@typescript-eslint/eslint-plugin": 5.43.0(@typescript-eslint/parser@5.43.0)(eslint@8.27.0)(typescript@4.9.3) - "@typescript-eslint/experimental-utils": 5.43.0(eslint@8.27.0)(typescript@4.9.3) - eslint: 8.27.0 - jest: 29.3.1 - transitivePeerDependencies: - - supports-color - - typescript - dev: true - - /eslint-plugin-jsx-a11y@6.6.1(eslint@8.27.0): - resolution: - { - integrity: sha512-sXgFVNHiWffBq23uiS/JaP6eVR622DqwB4yTzKvGZGcPq6/yZ3WmOZfuBks/vHWo9GaFOqC2ZK4i6+C35knx7Q==, - } - engines: { node: ">=4.0" } - peerDependencies: - eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 - dependencies: - "@babel/runtime": 7.23.2 - aria-query: 4.2.2 - array-includes: 3.1.6 - ast-types-flow: 0.0.7 - axe-core: 4.6.3 - axobject-query: 2.2.0 - damerau-levenshtein: 1.0.8 - emoji-regex: 9.2.2 - eslint: 8.27.0 - has: 1.0.3 - jsx-ast-utils: 3.3.3 - language-tags: 1.0.5 - minimatch: 3.1.2 - semver: 6.3.1 - dev: true - - /eslint-plugin-react-hooks@4.6.0(eslint@8.27.0): - resolution: - { - integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==, - } - engines: { node: ">=10" } - peerDependencies: - eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 - dependencies: - eslint: 8.27.0 - dev: true - - /eslint-plugin-react@7.31.10(eslint@8.27.0): + /eslint-plugin-react@7.33.2(eslint@8.56.0): resolution: { - integrity: sha512-e4N/nc6AAlg4UKW/mXeYWd3R++qUano5/o+t+wnWxIf+bLsOaH3a4q74kX3nDjYym3VBN4HyO9nEn1GcAqgQOA==, + integrity: sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==, } engines: { node: ">=4" } peerDependencies: eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 dependencies: - array-includes: 3.1.6 - array.prototype.flatmap: 1.3.1 + array-includes: 3.1.7 + array.prototype.flatmap: 1.3.2 + array.prototype.tosorted: 1.1.2 doctrine: 2.1.0 - eslint: 8.27.0 + es-iterator-helpers: 1.0.15 + eslint: 8.56.0 estraverse: 5.3.0 - jsx-ast-utils: 3.3.3 + jsx-ast-utils: 3.3.5 minimatch: 3.1.2 - object.entries: 1.1.6 - object.fromentries: 2.0.6 - object.hasown: 1.1.2 - object.values: 1.1.6 + object.entries: 1.1.7 + object.fromentries: 2.0.7 + object.hasown: 1.1.3 + object.values: 1.1.7 prop-types: 15.8.1 - resolve: 2.0.0-next.4 + resolve: 2.0.0-next.5 semver: 6.3.1 - string.prototype.matchall: 4.0.8 + string.prototype.matchall: 4.0.10 dev: true - /eslint-plugin-storybook@0.6.15(eslint@8.27.0)(typescript@4.9.3): + /eslint-plugin-storybook@0.6.15(eslint@8.56.0)(typescript@5.3.3): resolution: { integrity: sha512-lAGqVAJGob47Griu29KXYowI4G7KwMoJDOkEip8ujikuDLxU+oWJ1l0WL6F2oDO4QiyUFXvtDkEkISMOPzo+7w==, @@ -14072,26 +13298,10 @@ packages: eslint: ">=6" dependencies: "@storybook/csf": 0.0.1 - "@typescript-eslint/utils": 5.46.0(eslint@8.27.0)(typescript@4.9.3) - eslint: 8.27.0 + "@typescript-eslint/utils": 5.46.0(eslint@8.56.0)(typescript@5.3.3) + eslint: 8.56.0 requireindex: 1.2.0 - ts-dedent: 2.2.0 - transitivePeerDependencies: - - supports-color - - typescript - dev: true - - /eslint-plugin-testing-library@5.9.1(eslint@8.27.0)(typescript@4.9.3): - resolution: - { - integrity: sha512-6BQp3tmb79jLLasPHJmy8DnxREe+2Pgf7L+7o09TSWPfdqqtQfRZmZNetr5mOs3yqZk/MRNxpN3RUpJe0wB4LQ==, - } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0, npm: ">=6" } - peerDependencies: - eslint: ^7.5.0 || ^8.0.0 - dependencies: - "@typescript-eslint/utils": 5.46.0(eslint@8.27.0)(typescript@4.9.3) - eslint: 8.27.0 + ts-dedent: 2.2.0 transitivePeerDependencies: - supports-color - typescript @@ -14108,10 +13318,10 @@ packages: estraverse: 4.3.0 dev: true - /eslint-scope@7.1.1: + /eslint-scope@7.2.2: resolution: { - integrity: sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==, + integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==, } engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } dependencies: @@ -14119,7 +13329,7 @@ packages: estraverse: 5.3.0 dev: true - /eslint-utils@3.0.0(eslint@8.27.0): + /eslint-utils@3.0.0(eslint@8.56.0): resolution: { integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==, @@ -14128,7 +13338,7 @@ packages: peerDependencies: eslint: ">=5" dependencies: - eslint: 8.27.0 + eslint: 8.56.0 eslint-visitor-keys: 2.1.0 dev: true @@ -14140,75 +13350,74 @@ packages: engines: { node: ">=10" } dev: true - /eslint-visitor-keys@3.3.0: + /eslint-visitor-keys@3.4.3: resolution: { - integrity: sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==, + integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==, } engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } dev: true - /eslint@8.27.0: + /eslint@8.56.0: resolution: { - integrity: sha512-0y1bfG2ho7mty+SiILVf9PfuRA49ek4Nc60Wmmu62QlobNR+CeXa4xXIJgcuwSQgZiWaPH+5BDsctpIW0PR/wQ==, + integrity: sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ==, } engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } hasBin: true dependencies: - "@eslint/eslintrc": 1.3.3 - "@humanwhocodes/config-array": 0.11.7 + "@eslint-community/eslint-utils": 4.4.0(eslint@8.56.0) + "@eslint-community/regexpp": 4.10.0 + "@eslint/eslintrc": 2.1.4 + "@eslint/js": 8.56.0 + "@humanwhocodes/config-array": 0.11.13 "@humanwhocodes/module-importer": 1.0.1 "@nodelib/fs.walk": 1.2.8 + "@ungap/structured-clone": 1.2.0 ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.3 debug: 4.3.4 doctrine: 3.0.0 escape-string-regexp: 4.0.0 - eslint-scope: 7.1.1 - eslint-utils: 3.0.0(eslint@8.27.0) - eslint-visitor-keys: 3.3.0 - espree: 9.4.1 - esquery: 1.4.0 + eslint-scope: 7.2.2 + eslint-visitor-keys: 3.4.3 + espree: 9.6.1 + esquery: 1.5.0 esutils: 2.0.3 fast-deep-equal: 3.1.3 file-entry-cache: 6.0.1 find-up: 5.0.0 glob-parent: 6.0.2 - globals: 13.17.0 - grapheme-splitter: 1.0.4 + globals: 13.24.0 + graphemer: 1.4.0 ignore: 5.2.0 - import-fresh: 3.3.0 imurmurhash: 0.1.4 is-glob: 4.0.3 is-path-inside: 3.0.3 - js-sdsl: 4.1.5 js-yaml: 4.1.0 json-stable-stringify-without-jsonify: 1.0.1 levn: 0.4.1 lodash.merge: 4.6.2 minimatch: 3.1.2 natural-compare: 1.4.0 - optionator: 0.9.1 - regexpp: 3.2.0 + optionator: 0.9.3 strip-ansi: 6.0.1 - strip-json-comments: 3.1.1 text-table: 0.2.0 transitivePeerDependencies: - supports-color dev: true - /espree@9.4.1: + /espree@9.6.1: resolution: { - integrity: sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg==, + integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==, } engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } dependencies: - acorn: 8.8.2 - acorn-jsx: 5.3.2(acorn@8.8.2) - eslint-visitor-keys: 3.3.0 + acorn: 8.11.2 + acorn-jsx: 5.3.2(acorn@8.11.2) + eslint-visitor-keys: 3.4.3 dev: true /esprima@4.0.1: @@ -14220,10 +13429,10 @@ packages: hasBin: true dev: true - /esquery@1.4.0: + /esquery@1.5.0: resolution: { - integrity: sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==, + integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==, } engines: { node: ">=0.10" } dependencies: @@ -14480,6 +13689,20 @@ packages: micromatch: 4.0.5 dev: true + /fast-glob@3.3.2: + resolution: + { + integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==, + } + engines: { node: ">=8.6.0" } + dependencies: + "@nodelib/fs.stat": 2.0.5 + "@nodelib/fs.walk": 1.2.8 + glob-parent: 5.1.2 + merge2: 1.4.1 + micromatch: 4.0.5 + dev: true + /fast-json-stable-stringify@2.1.0: resolution: { @@ -14564,7 +13787,7 @@ packages: integrity: sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==, } dependencies: - minimatch: 5.1.1 + minimatch: 5.1.6 dev: true /fill-range@7.0.1: @@ -14734,7 +13957,7 @@ packages: } engines: { node: ">=10" } dependencies: - tslib: 2.5.0 + tslib: 2.6.2 dev: false /follow-redirects@1.15.2: @@ -14879,7 +14102,19 @@ packages: dependencies: graceful-fs: 4.2.11 jsonfile: 6.1.0 - universalify: 2.0.0 + universalify: 2.0.1 + dev: true + + /fs-extra@11.2.0: + resolution: + { + integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==, + } + engines: { node: ">=14.14" } + dependencies: + graceful-fs: 4.2.11 + jsonfile: 6.1.0 + universalify: 2.0.1 dev: true /fs-minipass@2.1.0: @@ -14910,22 +14145,22 @@ packages: dev: true optional: true - /function-bind@1.1.1: + /function-bind@1.1.2: resolution: { - integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==, + integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==, } - /function.prototype.name@1.1.5: + /function.prototype.name@1.1.6: resolution: { - integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==, + integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==, } engines: { node: ">= 0.4" } dependencies: - call-bind: 1.0.2 - define-properties: 1.1.4 - es-abstract: 1.20.4 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 functions-have-names: 1.2.3 dev: true @@ -14976,15 +14211,16 @@ packages: } dev: true - /get-intrinsic@1.1.3: + /get-intrinsic@1.2.2: resolution: { - integrity: sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==, + integrity: sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==, } dependencies: - function-bind: 1.1.1 - has: 1.0.3 + function-bind: 1.1.2 + has-proto: 1.0.1 has-symbols: 1.0.3 + hasown: 2.0.0 dev: true /get-nonce@1.0.1: @@ -15043,8 +14279,8 @@ packages: } engines: { node: ">= 0.4" } dependencies: - call-bind: 1.0.2 - get-intrinsic: 1.1.3 + call-bind: 1.0.5 + get-intrinsic: 1.2.2 dev: true /giget@1.0.0: @@ -15164,7 +14400,7 @@ packages: fs.realpath: 1.0.0 inflight: 1.0.6 inherits: 2.0.4 - minimatch: 5.1.1 + minimatch: 5.1.6 once: 1.4.0 dev: true @@ -15199,16 +14435,26 @@ packages: } engines: { node: ">=4" } - /globals@13.17.0: + /globals@13.24.0: resolution: { - integrity: sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw==, + integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==, } engines: { node: ">=8" } dependencies: type-fest: 0.20.2 dev: true + /globalthis@1.0.3: + resolution: + { + integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==, + } + engines: { node: ">= 0.4" } + dependencies: + define-properties: 1.2.1 + dev: true + /globby@11.1.0: resolution: { @@ -15218,8 +14464,8 @@ packages: dependencies: array-union: 2.1.0 dir-glob: 3.0.1 - fast-glob: 3.2.12 - ignore: 5.2.0 + fast-glob: 3.3.2 + ignore: 5.3.0 merge2: 1.4.1 slash: 3.0.0 dev: true @@ -15237,7 +14483,7 @@ packages: integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==, } dependencies: - get-intrinsic: 1.1.3 + get-intrinsic: 1.2.2 dev: true /graceful-fs@4.2.11: @@ -15247,10 +14493,10 @@ packages: } dev: true - /grapheme-splitter@1.0.4: + /graphemer@1.4.0: resolution: { - integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==, + integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==, } dev: true @@ -15293,6 +14539,22 @@ packages: uglify-js: 3.17.4 dev: true + /handlebars@4.7.8: + resolution: + { + integrity: sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==, + } + engines: { node: ">=0.4.7" } + hasBin: true + dependencies: + minimist: 1.2.8 + neo-async: 2.6.2 + source-map: 0.6.1 + wordwrap: 1.0.0 + optionalDependencies: + uglify-js: 3.17.4 + dev: true + /has-bigints@1.0.2: resolution: { @@ -15315,13 +14577,21 @@ packages: engines: { node: ">=8" } dev: true - /has-property-descriptors@1.0.0: + /has-property-descriptors@1.0.1: resolution: { - integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==, + integrity: sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==, } dependencies: - get-intrinsic: 1.1.3 + get-intrinsic: 1.2.2 + dev: true + + /has-proto@1.0.1: + resolution: + { + integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==, + } + engines: { node: ">= 0.4" } dev: true /has-symbols@1.0.3: @@ -15356,7 +14626,7 @@ packages: } engines: { node: ">= 0.4.0" } dependencies: - function-bind: 1.1.1 + function-bind: 1.1.2 /hasha@5.2.2: resolution: @@ -15369,6 +14639,16 @@ packages: type-fest: 0.8.1 dev: true + /hasown@2.0.0: + resolution: + { + integrity: sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==, + } + engines: { node: ">= 0.4" } + dependencies: + function-bind: 1.1.2 + dev: true + /he@1.2.0: resolution: { @@ -15610,6 +14890,14 @@ packages: engines: { node: ">= 4" } dev: true + /ignore@5.3.0: + resolution: + { + integrity: sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==, + } + engines: { node: ">= 4" } + dev: true + /import-fresh@3.3.0: resolution: { @@ -15696,15 +14984,15 @@ packages: wrap-ansi: 7.0.0 dev: true - /internal-slot@1.0.3: + /internal-slot@1.0.6: resolution: { - integrity: sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==, + integrity: sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==, } engines: { node: ">= 0.4" } dependencies: - get-intrinsic: 1.1.3 - has: 1.0.3 + get-intrinsic: 1.2.2 + hasown: 2.0.0 side-channel: 1.0.4 dev: true @@ -15758,16 +15046,37 @@ packages: } engines: { node: ">= 0.4" } dependencies: - call-bind: 1.0.2 + call-bind: 1.0.5 has-tostringtag: 1.0.0 dev: true + /is-array-buffer@3.0.2: + resolution: + { + integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==, + } + dependencies: + call-bind: 1.0.5 + get-intrinsic: 1.2.2 + is-typed-array: 1.1.12 + dev: true + /is-arrayish@0.2.1: resolution: { integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==, } + /is-async-function@2.0.0: + resolution: + { + integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==, + } + engines: { node: ">= 0.4" } + dependencies: + has-tostringtag: 1.0.0 + dev: true + /is-bigint@1.0.4: resolution: { @@ -15794,7 +15103,7 @@ packages: } engines: { node: ">= 0.4" } dependencies: - call-bind: 1.0.2 + call-bind: 1.0.5 has-tostringtag: 1.0.0 dev: true @@ -15822,6 +15131,15 @@ packages: dependencies: has: 1.0.3 + /is-core-module@2.13.1: + resolution: + { + integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==, + } + dependencies: + hasown: 2.0.0 + dev: true + /is-date-object@1.0.5: resolution: { @@ -15856,6 +15174,15 @@ packages: engines: { node: ">=0.10.0" } dev: true + /is-finalizationregistry@1.0.2: + resolution: + { + integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==, + } + dependencies: + call-bind: 1.0.5 + dev: true + /is-fullwidth-code-point@3.0.0: resolution: { @@ -15922,8 +15249,8 @@ packages: } engines: { node: ">= 0.4" } dependencies: - call-bind: 1.0.2 - define-properties: 1.1.4 + call-bind: 1.0.5 + define-properties: 1.2.1 dev: true /is-negative-zero@2.0.2: @@ -16015,7 +15342,7 @@ packages: } engines: { node: ">= 0.4" } dependencies: - call-bind: 1.0.2 + call-bind: 1.0.5 has-tostringtag: 1.0.0 dev: true @@ -16032,7 +15359,7 @@ packages: integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==, } dependencies: - call-bind: 1.0.2 + call-bind: 1.0.5 dev: true /is-stream@2.0.1: @@ -16071,12 +15398,22 @@ packages: engines: { node: ">= 0.4" } dependencies: available-typed-arrays: 1.0.5 - call-bind: 1.0.2 + call-bind: 1.0.5 for-each: 0.3.3 gopd: 1.0.1 has-tostringtag: 1.0.0 dev: true + /is-typed-array@1.1.12: + resolution: + { + integrity: sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==, + } + engines: { node: ">= 0.4" } + dependencies: + which-typed-array: 1.1.13 + dev: true + /is-typedarray@1.0.0: resolution: { @@ -16105,7 +15442,7 @@ packages: integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==, } dependencies: - call-bind: 1.0.2 + call-bind: 1.0.5 dev: true /is-weakset@2.0.2: @@ -16114,8 +15451,8 @@ packages: integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==, } dependencies: - call-bind: 1.0.2 - get-intrinsic: 1.1.3 + call-bind: 1.0.5 + get-intrinsic: 1.2.2 dev: true /is-windows@0.2.0: @@ -16274,6 +15611,19 @@ packages: istanbul-lib-report: 3.0.0 dev: true + /iterator.prototype@1.1.2: + resolution: + { + integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==, + } + dependencies: + define-properties: 1.2.1 + get-intrinsic: 1.2.2 + has-symbols: 1.0.3 + reflect.getprototypeof: 1.0.4 + set-function-name: 2.0.1 + dev: true + /jackspeak@2.3.6: resolution: { @@ -16767,7 +16117,7 @@ packages: } engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } dependencies: - "@babel/code-frame": 7.22.5 + "@babel/code-frame": 7.23.5 "@jest/types": 28.1.3 "@types/stack-utils": 2.0.1 chalk: 4.1.2 @@ -16785,7 +16135,7 @@ packages: } engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } dependencies: - "@babel/code-frame": 7.22.5 + "@babel/code-frame": 7.23.5 "@jest/types": 29.3.1 "@types/stack-utils": 2.0.1 chalk: 4.1.2 @@ -17267,7 +16617,7 @@ packages: jest: 28.1.3 jest-regex-util: 29.2.0 jest-watcher: 29.3.1 - slash: 5.0.0 + slash: 5.1.0 string-length: 5.0.1 strip-ansi: 7.0.1 dev: true @@ -17306,18 +16656,6 @@ packages: string-length: 4.0.2 dev: true - /jest-worker@27.5.1: - resolution: - { - integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==, - } - engines: { node: ">= 10.13.0" } - dependencies: - "@types/node": 20.8.7 - merge-stream: 2.0.0 - supports-color: 8.1.1 - dev: true - /jest-worker@28.1.3: resolution: { @@ -17410,13 +16748,6 @@ packages: engines: { node: ">=0.10.0" } dev: true - /js-sdsl@4.1.5: - resolution: - { - integrity: sha512-08bOAKweV2NUC1wqTtf3qZlnpOX/R2DU9ikpjOHs0H+ibQv3zpncVQg6um4uYtRtrwIX8M4Nh3ytK4HGlYAq7Q==, - } - dev: true - /js-tokens@4.0.0: resolution: { @@ -17557,16 +16888,6 @@ packages: } dev: true - /json5@1.0.1: - resolution: - { - integrity: sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==, - } - hasBin: true - dependencies: - minimist: 1.2.7 - dev: true - /json5@2.2.3: resolution: { @@ -17588,20 +16909,22 @@ packages: integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==, } dependencies: - universalify: 2.0.0 + universalify: 2.0.1 optionalDependencies: graceful-fs: 4.2.11 dev: true - /jsx-ast-utils@3.3.3: + /jsx-ast-utils@3.3.5: resolution: { - integrity: sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==, + integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==, } engines: { node: ">=4.0" } dependencies: - array-includes: 3.1.6 - object.assign: 4.1.4 + array-includes: 3.1.7 + array.prototype.flat: 1.3.2 + object.assign: 4.1.5 + object.values: 1.1.7 dev: true /kind-of@6.0.3: @@ -17636,22 +16959,6 @@ packages: engines: { node: ">=14.16" } dev: false - /language-subtag-registry@0.3.22: - resolution: - { - integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==, - } - dev: true - - /language-tags@1.0.5: - resolution: - { - integrity: sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==, - } - dependencies: - language-subtag-registry: 0.3.22 - dev: true - /lazy-universal-dotenv@4.0.0: resolution: { @@ -17700,26 +17007,6 @@ packages: integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==, } - /loader-runner@4.3.0: - resolution: - { - integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==, - } - engines: { node: ">=6.11.5" } - dev: true - - /loader-utils@2.0.4: - resolution: - { - integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==, - } - engines: { node: ">=8.9.0" } - dependencies: - big.js: 5.2.2 - emojis-list: 3.0.0 - json5: 2.2.3 - dev: true - /local-pkg@0.4.2: resolution: { @@ -17844,10 +17131,10 @@ packages: get-func-name: 2.0.0 dev: true - /lru-cache@10.0.1: + /lru-cache@10.1.0: resolution: { - integrity: sha512-IJ4uwUTi2qCccrioU6g9g/5rvvVl13bsdczUUcqbciD9iLr095yj8DQKdObriEvuNSx325N1rV1O0sJFszx75g==, + integrity: sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==, } engines: { node: 14 || >=16.14 } dev: true @@ -17906,7 +17193,7 @@ packages: engines: { node: ">=6" } dependencies: pify: 4.0.1 - semver: 5.7.1 + semver: 5.7.2 dev: true /make-dir@3.1.0: @@ -17916,7 +17203,7 @@ packages: } engines: { node: ">=8" } dependencies: - semver: 6.3.0 + semver: 6.3.1 dev: true /makeerror@1.0.12: @@ -17954,6 +17241,18 @@ packages: react: 18.2.0 dev: true + /markdown-to-jsx@7.3.2(react@18.2.0): + resolution: + { + integrity: sha512-B+28F5ucp83aQm+OxNrPkS8z0tMKaeHiy0lHJs3LqCyDQFtWuenaIrkaVTgAm1pf1AU85LXltva86hlaT17i8Q==, + } + engines: { node: ">= 10" } + peerDependencies: + react: ">= 0.14.0" + dependencies: + react: 18.2.0 + dev: true + /mdast-util-definitions@4.0.0: resolution: { @@ -18565,10 +17864,10 @@ packages: brace-expansion: 1.1.11 dev: true - /minimatch@5.1.1: + /minimatch@5.1.6: resolution: { - integrity: sha512-362NP+zlprccbEt/SkxKfRMHnNY85V74mVnpUpNyr3F35covl09Kec7/sEFLt3RA4oXmewtoaanoIf67SE5Y5g==, + integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==, } engines: { node: ">=10" } dependencies: @@ -18592,6 +17891,13 @@ packages: } dev: true + /minimist@1.2.8: + resolution: + { + integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==, + } + dev: true + /minipass@3.3.6: resolution: { @@ -18706,10 +18012,10 @@ packages: msw: ">=0.35.0 <2.0.0" dependencies: is-node-process: 1.0.1 - msw: 1.1.0(typescript@4.9.3) + msw: 1.1.0(typescript@5.3.3) dev: true - /msw@1.1.0(typescript@4.9.3): + /msw@1.1.0(typescript@5.3.3): resolution: { integrity: sha512-oqMvUXm1bMbwvGpoXAQVz8vXXQyQyx52HBDg3EDOK+dFXkQHssgkXEG4LfMwwZyr2Qt18I/w04XPaY4BkFTkzA==, @@ -18741,7 +18047,7 @@ packages: path-to-regexp: 6.2.1 strict-event-emitter: 0.4.6 type-fest: 2.19.0 - typescript: 4.9.3 + typescript: 5.3.3 yargs: 17.6.2 transitivePeerDependencies: - encoding @@ -18777,22 +18083,15 @@ packages: } dev: true - /nanoid@3.3.6: + /nanoid@3.3.7: resolution: { - integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==, + integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==, } engines: { node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 } hasBin: true dev: true - /natural-compare-lite@1.4.0: - resolution: - { - integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==, - } - dev: true - /natural-compare@1.4.0: resolution: { @@ -18847,6 +18146,21 @@ packages: whatwg-url: 5.0.0 dev: true + /node-fetch@2.7.0: + resolution: + { + integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==, + } + engines: { node: 4.x || >=6.0.0 } + peerDependencies: + encoding: ^0.1.0 + peerDependenciesMeta: + encoding: + optional: true + dependencies: + whatwg-url: 5.0.0 + dev: true + /node-int64@0.4.0: resolution: { @@ -18869,6 +18183,13 @@ packages: { integrity: sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==, } + dev: true + + /node-releases@2.0.14: + resolution: + { + integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==, + } /normalize-package-data@2.5.0: resolution: @@ -18878,7 +18199,7 @@ packages: dependencies: hosted-git-info: 2.8.9 resolve: 1.22.1 - semver: 5.7.1 + semver: 5.7.2 validate-npm-package-license: 3.0.4 dev: true @@ -18972,6 +18293,13 @@ packages: } dev: true + /object-inspect@1.13.1: + resolution: + { + integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==, + } + dev: true + /object-is@1.1.5: resolution: { @@ -18979,8 +18307,8 @@ packages: } engines: { node: ">= 0.4" } dependencies: - call-bind: 1.0.2 - define-properties: 1.1.4 + call-bind: 1.0.5 + define-properties: 1.2.1 dev: true /object-keys@1.1.1: @@ -18991,63 +18319,63 @@ packages: engines: { node: ">= 0.4" } dev: true - /object.assign@4.1.4: + /object.assign@4.1.5: resolution: { - integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==, + integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==, } engines: { node: ">= 0.4" } dependencies: - call-bind: 1.0.2 - define-properties: 1.1.4 + call-bind: 1.0.5 + define-properties: 1.2.1 has-symbols: 1.0.3 object-keys: 1.1.1 dev: true - /object.entries@1.1.6: + /object.entries@1.1.7: resolution: { - integrity: sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==, + integrity: sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==, } engines: { node: ">= 0.4" } dependencies: - call-bind: 1.0.2 - define-properties: 1.1.4 - es-abstract: 1.20.4 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 dev: true - /object.fromentries@2.0.6: + /object.fromentries@2.0.7: resolution: { - integrity: sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==, + integrity: sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==, } engines: { node: ">= 0.4" } dependencies: - call-bind: 1.0.2 - define-properties: 1.1.4 - es-abstract: 1.20.4 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 dev: true - /object.hasown@1.1.2: + /object.hasown@1.1.3: resolution: { - integrity: sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==, + integrity: sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==, } dependencies: - define-properties: 1.1.4 - es-abstract: 1.20.4 + define-properties: 1.2.1 + es-abstract: 1.22.3 dev: true - /object.values@1.1.6: + /object.values@1.1.7: resolution: { - integrity: sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==, + integrity: sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==, } engines: { node: ">= 0.4" } dependencies: - call-bind: 1.0.2 - define-properties: 1.1.4 - es-abstract: 1.20.4 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 dev: true /on-finished@2.4.1: @@ -19122,19 +18450,19 @@ packages: word-wrap: 1.2.3 dev: true - /optionator@0.9.1: + /optionator@0.9.3: resolution: { - integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==, + integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==, } engines: { node: ">= 0.8.0" } dependencies: + "@aashutoshrathi/word-wrap": 1.2.6 deep-is: 0.1.4 fast-levenshtein: 2.0.6 levn: 0.4.1 prelude-ls: 1.2.1 type-check: 0.4.0 - word-wrap: 1.2.3 dev: true /ora@5.4.1: @@ -19292,7 +18620,7 @@ packages: } engines: { node: ">=8" } dependencies: - "@babel/code-frame": 7.22.5 + "@babel/code-frame": 7.23.5 error-ex: 1.3.2 json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 @@ -19367,7 +18695,7 @@ packages: } engines: { node: ">=16 || 14 >=14.17" } dependencies: - lru-cache: 10.0.1 + lru-cache: 10.1.0 minipass: 7.0.4 dev: true @@ -19547,14 +18875,14 @@ packages: - supports-color dev: true - /postcss@8.4.23: + /postcss@8.4.32: resolution: { - integrity: sha512-bQ3qMcpF6A/YjR55xtoTr0jGOlnPOKAIMdOWiv0EIT6HVPEaJiJB4NLljSbiHoC2RX7DN5Uvjtpbg1NPdwv1oA==, + integrity: sha512-D/kj5JNu6oo2EIy+XL/26JEDTlIbB8hw85G8StOE6L74RQAVVP5rej6wxCNqyMbR4RkPfqvezVbPw81Ngd6Kcw==, } engines: { node: ^10 || ^12 || >=14 } dependencies: - nanoid: 3.3.6 + nanoid: 3.3.7 picocolors: 1.0.0 source-map-js: 1.0.2 dev: true @@ -19799,6 +19127,16 @@ packages: side-channel: 1.0.4 dev: true + /qs@6.11.2: + resolution: + { + integrity: sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==, + } + engines: { node: ">=0.6" } + dependencies: + side-channel: 1.0.4 + dev: true + /query-string@8.1.0: resolution: { @@ -19832,15 +19170,6 @@ packages: } dev: true - /randombytes@2.1.0: - resolution: - { - integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==, - } - dependencies: - safe-buffer: 5.2.1 - dev: true - /range-parser@1.2.1: resolution: { @@ -19887,7 +19216,7 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: true - /react-docgen-typescript@2.2.2(typescript@4.9.3): + /react-docgen-typescript@2.2.2(typescript@5.3.3): resolution: { integrity: sha512-tvg2ZtOpOi6QDwsb3GZhOjDkkX0h8Z2gipvTg6OVMUyoYoURhEiRNePT8NZItTVCDh39JJHnLdfCOkzoLbFnTg==, @@ -19895,7 +19224,7 @@ packages: peerDependencies: typescript: ">= 4.3.x" dependencies: - typescript: 4.9.3 + typescript: 5.3.3 dev: true /react-docgen@6.0.4: @@ -19959,10 +19288,10 @@ packages: "@babel/runtime": 7.20.13 react: 18.2.0 - /react-fast-compare@3.2.0: + /react-fast-compare@3.2.1: resolution: { - integrity: sha512-rtGImPZ0YyLrscKI9xTpV8psd6I8VAtjKCzQDlzyDvqJA8XOW78TXYQwNRNd8g8JZnDu8q9Fu/1v4HPAVwVdHA==, + integrity: sha512-xTYf9zFim2pEif/Fw16dBiXpe0hoy5PxcD8+OwBnTtNLfIm3g6WxhKNurY+6OmdH1u6Ta/W/Vl6vjbYP1MFnDg==, } dev: false @@ -20068,7 +19397,7 @@ packages: "@types/react": 18.0.25 react: 18.2.0 react-style-singleton: 2.2.1(@types/react@18.0.25)(react@18.2.0) - tslib: 2.5.0 + tslib: 2.6.2 /react-remove-scroll@2.5.5(@types/react@18.0.25)(react@18.2.0): resolution: @@ -20087,7 +19416,7 @@ packages: react: 18.2.0 react-remove-scroll-bar: 2.3.4(@types/react@18.0.25)(react@18.2.0) react-style-singleton: 2.2.1(@types/react@18.0.25)(react@18.2.0) - tslib: 2.5.0 + tslib: 2.6.2 use-callback-ref: 1.3.0(@types/react@18.0.25)(react@18.2.0) use-sidecar: 1.1.2(@types/react@18.0.25)(react@18.2.0) @@ -20149,7 +19478,7 @@ packages: get-nonce: 1.0.1 invariant: 2.2.4 react: 18.2.0 - tslib: 2.5.0 + tslib: 2.6.2 /react@18.2.0: resolution: @@ -20232,7 +19561,7 @@ packages: ast-types: 0.15.2 esprima: 4.0.1 source-map: 0.6.1 - tslib: 2.5.0 + tslib: 2.6.2 dev: true /recast@0.23.1: @@ -20246,7 +19575,7 @@ packages: ast-types: 0.16.1 esprima: 4.0.1 source-map: 0.6.1 - tslib: 2.5.0 + tslib: 2.6.2 dev: true /redent@3.0.0: @@ -20260,6 +19589,21 @@ packages: strip-indent: 3.0.0 dev: true + /reflect.getprototypeof@1.0.4: + resolution: + { + integrity: sha512-ECkTw8TmJwW60lOTR+ZkODISW6RQ8+2CL3COqtiJKLd6MmB45hN51HprHFziKLGkAuTGQhBb91V8cy+KHlaCjw==, + } + engines: { node: ">= 0.4" } + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + get-intrinsic: 1.2.2 + globalthis: 1.0.3 + which-builtin-type: 1.1.3 + dev: true + /regenerate-unicode-properties@10.1.0: resolution: { @@ -20289,15 +19633,6 @@ packages: integrity: sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==, } - /regenerator-transform@0.15.1: - resolution: - { - integrity: sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==, - } - dependencies: - "@babel/runtime": 7.23.2 - dev: true - /regenerator-transform@0.15.2: resolution: { @@ -20314,17 +19649,21 @@ packages: } engines: { node: ">= 0.4" } dependencies: - call-bind: 1.0.2 - define-properties: 1.1.4 + call-bind: 1.0.5 + define-properties: 1.2.1 functions-have-names: 1.2.3 dev: true - /regexpp@3.2.0: + /regexp.prototype.flags@1.5.1: resolution: { - integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==, + integrity: sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==, } - engines: { node: ">=8" } + engines: { node: ">= 0.4" } + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + set-function-name: 2.0.1 dev: true /regexpu-core@5.3.2: @@ -20485,14 +19824,14 @@ packages: path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 - /resolve@2.0.0-next.4: + /resolve@2.0.0-next.5: resolution: { - integrity: sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==, + integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==, } hasBin: true dependencies: - is-core-module: 2.11.0 + is-core-module: 2.13.1 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 dev: true @@ -20546,10 +19885,10 @@ packages: glob: 7.2.3 dev: true - /rollup@3.21.2: + /rollup@3.29.4: resolution: { - integrity: sha512-c4vC+JZ3bbF4Kqq2TtM7zSKtSyMybFOjqmomFax3xpfYaPZDZ4iz8NMIuBRMjnXOcKYozw7bC6vhJjiWD6JpzQ==, + integrity: sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==, } engines: { node: ">=14.18.0", npm: ">=8.0.0" } hasBin: true @@ -20557,6 +19896,30 @@ packages: fsevents: 2.3.3 dev: true + /rollup@4.9.1: + resolution: + { + integrity: sha512-pgPO9DWzLoW/vIhlSoDByCzcpX92bKEorbgXuZrqxByte3JFk2xSW2JEeAcyLc9Ru9pqcNNW+Ob7ntsk2oT/Xw==, + } + engines: { node: ">=18.0.0", npm: ">=8.0.0" } + hasBin: true + optionalDependencies: + "@rollup/rollup-android-arm-eabi": 4.9.1 + "@rollup/rollup-android-arm64": 4.9.1 + "@rollup/rollup-darwin-arm64": 4.9.1 + "@rollup/rollup-darwin-x64": 4.9.1 + "@rollup/rollup-linux-arm-gnueabihf": 4.9.1 + "@rollup/rollup-linux-arm64-gnu": 4.9.1 + "@rollup/rollup-linux-arm64-musl": 4.9.1 + "@rollup/rollup-linux-riscv64-gnu": 4.9.1 + "@rollup/rollup-linux-x64-gnu": 4.9.1 + "@rollup/rollup-linux-x64-musl": 4.9.1 + "@rollup/rollup-win32-arm64-msvc": 4.9.1 + "@rollup/rollup-win32-ia32-msvc": 4.9.1 + "@rollup/rollup-win32-x64-msvc": 4.9.1 + fsevents: 2.3.3 + dev: true + /rrweb-cssom@0.6.0: resolution: { @@ -20597,7 +19960,7 @@ packages: integrity: sha512-F2+gxDshqmIub1KdvZkaEfGDwLNpPvk9Fs6LD/MyQxNgMds/WH9OdDDXOmxUZpME+iSK3rQCctkL0DYyytUqMg==, } dependencies: - tslib: 2.5.0 + tslib: 2.6.2 dev: true /rxjs@7.8.1: @@ -20606,7 +19969,7 @@ packages: integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==, } dependencies: - tslib: 2.5.0 + tslib: 2.6.2 dev: true /sade@1.8.1: @@ -20616,7 +19979,20 @@ packages: } engines: { node: ">=6" } dependencies: - mri: 1.2.0 + mri: 1.2.0 + dev: true + + /safe-array-concat@1.0.1: + resolution: + { + integrity: sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==, + } + engines: { node: ">=0.4" } + dependencies: + call-bind: 1.0.5 + get-intrinsic: 1.2.2 + has-symbols: 1.0.3 + isarray: 2.0.5 dev: true /safe-buffer@5.1.2: @@ -20639,8 +20015,8 @@ packages: integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==, } dependencies: - call-bind: 1.0.2 - get-intrinsic: 1.1.3 + call-bind: 1.0.5 + get-intrinsic: 1.2.2 is-regex: 1.1.4 dev: true @@ -20669,30 +20045,6 @@ packages: dependencies: loose-envify: 1.4.0 - /schema-utils@2.7.1: - resolution: - { - integrity: sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==, - } - engines: { node: ">= 8.9.0" } - dependencies: - "@types/json-schema": 7.0.11 - ajv: 6.12.6 - ajv-keywords: 3.5.2(ajv@6.12.6) - dev: true - - /schema-utils@3.3.0: - resolution: - { - integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==, - } - engines: { node: ">= 10.13.0" } - dependencies: - "@types/json-schema": 7.0.14 - ajv: 6.12.6 - ajv-keywords: 3.5.2(ajv@6.12.6) - dev: true - /secure-compare@3.0.1: resolution: { @@ -20700,28 +20052,20 @@ packages: } dev: true - /semver@5.7.1: + /semver@5.7.2: resolution: { - integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==, + integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==, } hasBin: true dev: true - /semver@6.3.0: - resolution: - { - integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==, - } - hasBin: true - /semver@6.3.1: resolution: { integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==, } hasBin: true - dev: true /semver@7.5.4: resolution: @@ -20758,15 +20102,6 @@ packages: - supports-color dev: true - /serialize-javascript@6.0.1: - resolution: - { - integrity: sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==, - } - dependencies: - randombytes: 2.1.0 - dev: true - /serve-static@1.15.0: resolution: { @@ -20796,6 +20131,31 @@ packages: } dev: true + /set-function-length@1.1.1: + resolution: + { + integrity: sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==, + } + engines: { node: ">= 0.4" } + dependencies: + define-data-property: 1.1.1 + get-intrinsic: 1.2.2 + gopd: 1.0.1 + has-property-descriptors: 1.0.1 + dev: true + + /set-function-name@2.0.1: + resolution: + { + integrity: sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==, + } + engines: { node: ">= 0.4" } + dependencies: + define-data-property: 1.1.1 + functions-have-names: 1.2.3 + has-property-descriptors: 1.0.1 + dev: true + /setprototypeof@1.2.0: resolution: { @@ -20844,8 +20204,8 @@ packages: integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==, } dependencies: - call-bind: 1.0.2 - get-intrinsic: 1.1.3 + call-bind: 1.0.5 + get-intrinsic: 1.2.2 object-inspect: 1.12.2 dev: true @@ -20896,10 +20256,10 @@ packages: engines: { node: ">=8" } dev: true - /slash@5.0.0: + /slash@5.1.0: resolution: { - integrity: sha512-n6KkmvKS0623igEVj3FF0OZs1gYYJ0o0Hj939yc1fyxl2xt+xYpLnzJB6xBSqOfV9ZFLEWodBBN/heZJahuIJQ==, + integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==, } engines: { node: ">=14.16" } dev: true @@ -21078,7 +20438,7 @@ packages: } dev: true - /storybook-addon-react-router-v6@2.0.8(@storybook/blocks@7.5.1)(@storybook/channels@7.5.1)(@storybook/components@7.5.1)(@storybook/core-events@7.5.1)(@storybook/manager-api@7.5.1)(@storybook/preview-api@7.5.1)(@storybook/theming@7.5.1)(react-dom@18.2.0)(react-router-dom@6.9.0)(react@18.2.0): + /storybook-addon-react-router-v6@2.0.8(@storybook/blocks@7.6.6)(@storybook/channels@7.6.6)(@storybook/components@7.6.6)(@storybook/core-events@7.6.6)(@storybook/manager-api@7.6.6)(@storybook/preview-api@7.6.6)(@storybook/theming@7.6.6)(react-dom@18.2.0)(react-router-dom@6.9.0)(react@18.2.0): resolution: { integrity: sha512-Pi97ccelVq6RiLxSg8/puVeiNQnpdl5WlEcpF2wn6IxKlOIpOBOv70W1VGemUpAmJur+7EM79Mf6vMXiRK2W0g==, @@ -21100,13 +20460,13 @@ packages: react-dom: optional: true dependencies: - "@storybook/blocks": 7.5.1(@types/react-dom@18.0.9)(@types/react@18.0.25)(react-dom@18.2.0)(react@18.2.0) - "@storybook/channels": 7.5.1 - "@storybook/components": 7.5.1(@types/react-dom@18.0.9)(@types/react@18.0.25)(react-dom@18.2.0)(react@18.2.0) - "@storybook/core-events": 7.5.1 - "@storybook/manager-api": 7.5.1(react-dom@18.2.0)(react@18.2.0) - "@storybook/preview-api": 7.5.1 - "@storybook/theming": 7.5.1(react-dom@18.2.0)(react@18.2.0) + "@storybook/blocks": 7.6.6(@types/react-dom@18.0.9)(@types/react@18.0.25)(react-dom@18.2.0)(react@18.2.0) + "@storybook/channels": 7.6.6 + "@storybook/components": 7.6.6(@types/react-dom@18.0.9)(@types/react@18.0.25)(react-dom@18.2.0)(react@18.2.0) + "@storybook/core-events": 7.6.6 + "@storybook/manager-api": 7.6.6(react-dom@18.2.0)(react@18.2.0) + "@storybook/preview-api": 7.6.6 + "@storybook/theming": 7.6.6(react-dom@18.2.0)(react@18.2.0) compare-versions: 6.1.0 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -21200,13 +20560,6 @@ packages: strip-ansi: 7.0.1 dev: true - /string-natural-compare@3.0.1: - resolution: - { - integrity: sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw==, - } - dev: true - /string-width@4.2.3: resolution: { @@ -21231,42 +20584,55 @@ packages: strip-ansi: 7.0.1 dev: true - /string.prototype.matchall@4.0.8: + /string.prototype.matchall@4.0.10: resolution: { - integrity: sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==, + integrity: sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ==, } dependencies: - call-bind: 1.0.2 - define-properties: 1.1.4 - es-abstract: 1.20.4 - get-intrinsic: 1.1.3 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + get-intrinsic: 1.2.2 has-symbols: 1.0.3 - internal-slot: 1.0.3 - regexp.prototype.flags: 1.4.3 + internal-slot: 1.0.6 + regexp.prototype.flags: 1.5.1 + set-function-name: 2.0.1 side-channel: 1.0.4 dev: true - /string.prototype.trimend@1.0.6: + /string.prototype.trim@1.2.8: + resolution: + { + integrity: sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==, + } + engines: { node: ">= 0.4" } + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + dev: true + + /string.prototype.trimend@1.0.7: resolution: { - integrity: sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==, + integrity: sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==, } dependencies: - call-bind: 1.0.2 - define-properties: 1.1.4 - es-abstract: 1.20.4 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 dev: true - /string.prototype.trimstart@1.0.6: + /string.prototype.trimstart@1.0.7: resolution: { - integrity: sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==, + integrity: sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==, } dependencies: - call-bind: 1.0.2 - define-properties: 1.1.4 - es-abstract: 1.20.4 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 dev: true /string_decoder@1.1.1: @@ -21307,14 +20673,6 @@ packages: ansi-regex: 6.0.1 dev: true - /strip-bom@3.0.0: - resolution: - { - integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==, - } - engines: { node: ">=4" } - dev: true - /strip-bom@4.0.0: resolution: { @@ -21436,12 +20794,11 @@ packages: } dev: true - /tapable@2.2.1: + /synchronous-promise@2.0.17: resolution: { - integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==, + integrity: sha512-AsS729u2RHUfEra9xJrE39peJcc2stq2+poBXX8bcM08Y6g9j/i/PUzwNQqkaJde7Ntg1TO7bSREbR5sdosQ+g==, } - engines: { node: ">=6" } dev: true /tar-fs@2.1.1: @@ -21537,49 +20894,6 @@ packages: supports-hyperlinks: 2.3.0 dev: true - /terser-webpack-plugin@5.3.9(@swc/core@1.3.56)(esbuild@0.18.20)(webpack@5.89.0): - resolution: - { - integrity: sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==, - } - engines: { node: ">= 10.13.0" } - peerDependencies: - "@swc/core": "*" - esbuild: "*" - uglify-js: "*" - webpack: ^5.1.0 - peerDependenciesMeta: - "@swc/core": - optional: true - esbuild: - optional: true - uglify-js: - optional: true - dependencies: - "@jridgewell/trace-mapping": 0.3.20 - "@swc/core": 1.3.56 - esbuild: 0.18.20 - jest-worker: 27.5.1 - schema-utils: 3.3.0 - serialize-javascript: 6.0.1 - terser: 5.22.0 - webpack: 5.89.0(@swc/core@1.3.56)(esbuild@0.18.20) - dev: true - - /terser@5.22.0: - resolution: - { - integrity: sha512-hHZVLgRA2z4NWcN6aS5rQDc+7Dcy58HOf2zbYwmFcQ+ua3h6eEFf5lIDKTzbWwlazPyOZsFQO8V80/IjVNExEw==, - } - engines: { node: ">=10" } - hasBin: true - dependencies: - "@jridgewell/source-map": 0.3.5 - acorn: 8.10.0 - commander: 2.20.3 - source-map-support: 0.5.21 - dev: true - /test-exclude@6.0.0: resolution: { @@ -21686,6 +21000,13 @@ packages: } dev: true + /tocbot@4.23.0: + resolution: + { + integrity: sha512-5DWuSZXsqG894mkGb8ZsQt9myyQyVxE50AiGRZ0obV0BVUTVkaZmc9jbgpknaAAPUm4FIrzGkEseD6FuQJYJDQ==, + } + dev: true + /toggle-selection@1.0.6: resolution: { @@ -21746,6 +21067,18 @@ packages: } dev: true + /ts-api-utils@1.0.3(typescript@5.3.3): + resolution: + { + integrity: sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==, + } + engines: { node: ">=16.13.0" } + peerDependencies: + typescript: ">=4.2.0" + dependencies: + typescript: 5.3.3 + dev: true + /ts-dedent@2.2.0: resolution: { @@ -21754,32 +21087,20 @@ packages: engines: { node: ">=6.10" } dev: true - /tsconfck@2.0.2(typescript@4.9.3): + /tsconfck@2.1.2(typescript@5.3.3): resolution: { - integrity: sha512-H3DWlwKpow+GpVLm/2cpmok72pwRr1YFROV3YzAmvzfGFiC1zEM/mc9b7+1XnrxuXtEbhJ7xUSIqjPFbedp7aQ==, + integrity: sha512-ghqN1b0puy3MhhviwO2kGF8SeMDNhEbnKxjK7h6+fvY9JAxqvXi8y5NAHSQv687OVboS2uZIByzGd45/YxrRHg==, } - engines: { node: ^14.13.1 || ^16 || >=18, pnpm: ^7.18.0 } + engines: { node: ^14.13.1 || ^16 || >=18 } hasBin: true peerDependencies: - typescript: ^4.3.5 + typescript: ^4.3.5 || ^5.0.0 peerDependenciesMeta: typescript: optional: true dependencies: - typescript: 4.9.3 - dev: true - - /tsconfig-paths@3.14.1: - resolution: - { - integrity: sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==, - } - dependencies: - "@types/json5": 0.0.29 - json5: 1.0.1 - minimist: 1.2.7 - strip-bom: 3.0.0 + typescript: 5.3.3 dev: true /tslib@1.14.1: @@ -21801,8 +21122,15 @@ packages: { integrity: sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==, } + dev: false + + /tslib@2.6.2: + resolution: + { + integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==, + } - /tsutils@3.21.0(typescript@4.9.3): + /tsutils@3.21.0(typescript@5.3.3): resolution: { integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==, @@ -21812,7 +21140,7 @@ packages: typescript: ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" dependencies: tslib: 1.14.1 - typescript: 4.9.3 + typescript: 5.3.3 dev: true /type-check@0.3.2: @@ -21891,10 +21219,10 @@ packages: engines: { node: ">=12.20" } dev: true - /type-fest@3.3.0: + /type-fest@3.13.1: resolution: { - integrity: sha512-gezeeOIZyQLGW5uuCeEnXF1aXmtt2afKspXz3YqoOcZ3l/YMJq1pujvgT+cz/Nw1O/7q/kSav5fihJHsC/AOUg==, + integrity: sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==, } engines: { node: ">=14.16" } dev: true @@ -21910,6 +21238,56 @@ packages: mime-types: 2.1.35 dev: true + /typed-array-buffer@1.0.0: + resolution: + { + integrity: sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==, + } + engines: { node: ">= 0.4" } + dependencies: + call-bind: 1.0.5 + get-intrinsic: 1.2.2 + is-typed-array: 1.1.12 + dev: true + + /typed-array-byte-length@1.0.0: + resolution: + { + integrity: sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==, + } + engines: { node: ">= 0.4" } + dependencies: + call-bind: 1.0.5 + for-each: 0.3.3 + has-proto: 1.0.1 + is-typed-array: 1.1.12 + dev: true + + /typed-array-byte-offset@1.0.0: + resolution: + { + integrity: sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==, + } + engines: { node: ">= 0.4" } + dependencies: + available-typed-arrays: 1.0.5 + call-bind: 1.0.5 + for-each: 0.3.3 + has-proto: 1.0.1 + is-typed-array: 1.1.12 + dev: true + + /typed-array-length@1.0.4: + resolution: + { + integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==, + } + dependencies: + call-bind: 1.0.5 + for-each: 0.3.3 + is-typed-array: 1.1.12 + dev: true + /typedarray-to-buffer@3.1.5: resolution: { @@ -21926,12 +21304,12 @@ packages: } dev: true - /typescript@4.9.3: + /typescript@5.3.3: resolution: { - integrity: sha512-CIfGzTelbKNEnLpLdGFgdyKhG23CKdKgQPOBc+OUNrkJ2vr+KSzsSV5kq5iWhEQbok+quxgGzrAtGWCyU7tHnA==, + integrity: sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==, } - engines: { node: ">=4.2.0" } + engines: { node: ">=14.17" } hasBin: true dev: true @@ -21959,7 +21337,7 @@ packages: integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==, } dependencies: - call-bind: 1.0.2 + call-bind: 1.0.5 has-bigints: 1.0.2 has-symbols: 1.0.3 which-boxed-primitive: 1.0.2 @@ -21972,6 +21350,13 @@ packages: } dev: true + /undici-types@5.26.5: + resolution: + { + integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==, + } + dev: true + /unicode-canonical-property-names-ecmascript@2.0.0: resolution: { @@ -22117,10 +21502,10 @@ packages: engines: { node: ">= 4.0.0" } dev: true - /universalify@2.0.0: + /universalify@2.0.1: resolution: { - integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==, + integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==, } engines: { node: ">= 10.0.0" } dev: true @@ -22139,7 +21524,7 @@ packages: integrity: sha512-9ZdRwbh/4gcm1JTOkp9lAkIDrtOyOxgHmY7cjuwI8L/2RTikMcVG25GsZwNAgRuap3iDw2jeq7eoqtAsz5rW3A==, } dependencies: - acorn: 8.10.0 + acorn: 8.11.2 chokidar: 3.5.3 webpack-sources: 3.2.3 webpack-virtual-modules: 0.5.0 @@ -22153,7 +21538,7 @@ packages: engines: { node: ">=8" } dev: true - /update-browserslist-db@1.0.11(browserslist@4.21.4): + /update-browserslist-db@1.0.11(browserslist@4.21.9): resolution: { integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==, @@ -22162,25 +21547,26 @@ packages: peerDependencies: browserslist: ">= 4.21.0" dependencies: - browserslist: 4.21.4 + browserslist: 4.21.9 escalade: 3.1.1 picocolors: 1.0.0 + dev: true - /update-browserslist-db@1.0.11(browserslist@4.21.9): + /update-browserslist-db@1.0.13(browserslist@4.22.1): resolution: { - integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==, + integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==, } hasBin: true peerDependencies: browserslist: ">= 4.21.0" dependencies: - browserslist: 4.21.9 + browserslist: 4.22.1 escalade: 3.1.1 picocolors: 1.0.0 dev: true - /update-browserslist-db@1.0.13(browserslist@4.22.1): + /update-browserslist-db@1.0.13(browserslist@4.22.2): resolution: { integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==, @@ -22189,10 +21575,9 @@ packages: peerDependencies: browserslist: ">= 4.21.0" dependencies: - browserslist: 4.22.1 + browserslist: 4.22.2 escalade: 3.1.1 picocolors: 1.0.0 - dev: true /uri-js@4.4.1: resolution: @@ -22235,7 +21620,7 @@ packages: dependencies: "@types/react": 18.0.25 react: 18.2.0 - tslib: 2.5.0 + tslib: 2.6.2 /use-resize-observer@9.1.0(react-dom@18.2.0)(react@18.2.0): resolution: @@ -22267,7 +21652,7 @@ packages: "@types/react": 18.0.25 detect-node-es: 1.1.0 react: 18.2.0 - tslib: 2.5.0 + tslib: 2.6.2 /use-sync-external-store@1.2.0(react@18.2.0): resolution: @@ -22405,10 +21790,11 @@ packages: picocolors: 1.0.0 source-map: 0.6.1 source-map-support: 0.5.21 - vite: 4.3.3(@types/node@18.11.9) + vite: 4.5.1(@types/node@18.11.9) transitivePeerDependencies: - "@types/node" - less + - lightningcss - sass - stylus - sugarss @@ -22416,10 +21802,10 @@ packages: - terser dev: true - /vite-plugin-checker@0.5.4(eslint@8.27.0)(typescript@4.9.3)(vite@4.3.3): + /vite-plugin-checker@0.6.2(eslint@8.56.0)(typescript@5.3.3)(vite@5.0.10): resolution: { - integrity: sha512-T6y+OHXqwOjGrCErbhzg5x79NQZV46cgLwYTxuMQnDzAfA6skh2i8PIHcKks8ZlxopzbkvMb5vwc2DpNXiHJdg==, + integrity: sha512-YvvvQ+IjY09BX7Ab+1pjxkELQsBd4rPhWNw8WLBeFVxu/E7O+n6VYAqNsKdK/a2luFlX/sMpoWdGFfg4HvwdJQ==, } engines: { node: ">=14.16" } peerDependencies: @@ -22431,7 +21817,7 @@ packages: vite: ">=2.0.0" vls: "*" vti: "*" - vue-tsc: "*" + vue-tsc: ">=1.3.9" peerDependenciesMeta: eslint: optional: true @@ -22450,50 +21836,59 @@ packages: vue-tsc: optional: true dependencies: - "@babel/code-frame": 7.21.4 + "@babel/code-frame": 7.23.5 ansi-escapes: 4.3.2 chalk: 4.1.2 chokidar: 3.5.3 commander: 8.3.0 - eslint: 8.27.0 + eslint: 8.56.0 fast-glob: 3.2.12 + fs-extra: 11.2.0 lodash.debounce: 4.0.8 lodash.pick: 4.4.0 npm-run-path: 4.0.1 + semver: 7.5.4 strip-ansi: 6.0.1 tiny-invariant: 1.3.1 - typescript: 4.9.3 - vite: 4.3.3(@types/node@18.11.9) + typescript: 5.3.3 + vite: 5.0.10 vscode-languageclient: 7.0.0 vscode-languageserver: 7.0.0 vscode-languageserver-textdocument: 1.0.7 vscode-uri: 3.0.6 dev: true - /vite-tsconfig-paths@4.0.5(typescript@4.9.3): + /vite-tsconfig-paths@4.2.2(typescript@5.3.3)(vite@5.0.10): resolution: { - integrity: sha512-/L/eHwySFYjwxoYt1WRJniuK/jPv+WGwgRGBYx3leciR5wBeqntQpUE6Js6+TJemChc+ter7fDBKieyEWDx4yQ==, + integrity: sha512-dq0FjyxHHDnp0uS3P12WEOX2W7NeuLzX9AWP38D7Zw2CTbFErapwQVlCiT5DMJcVWKQ1MMdTe92PZl/rBQ7qcw==, } + peerDependencies: + vite: "*" + peerDependenciesMeta: + vite: + optional: true dependencies: debug: 4.3.4 globrex: 0.1.2 - tsconfck: 2.0.2(typescript@4.9.3) + tsconfck: 2.1.2(typescript@5.3.3) + vite: 5.0.10 transitivePeerDependencies: - supports-color - typescript dev: true - /vite@4.3.3(@types/node@18.11.9): + /vite@4.5.1(@types/node@18.11.9): resolution: { - integrity: sha512-MwFlLBO4udZXd+VBcezo3u8mC77YQk+ik+fbc0GZWGgzfbPP+8Kf0fldhARqvSYmtIWoAJ5BXPClUbMTlqFxrA==, + integrity: sha512-AXXFaAJ8yebyqzoNB9fu2pHoo/nWX+xZlaRwoeYUxEqBO+Zj4msE5G+BhGBll9lYEKv9Hfks52PAF2X7qDYXQA==, } engines: { node: ^14.18.0 || >=16.0.0 } hasBin: true peerDependencies: "@types/node": ">= 14" less: "*" + lightningcss: ^1.21.0 sass: "*" stylus: "*" sugarss: "*" @@ -22503,6 +21898,8 @@ packages: optional: true less: optional: true + lightningcss: + optional: true sass: optional: true stylus: @@ -22513,9 +21910,47 @@ packages: optional: true dependencies: "@types/node": 18.11.9 - esbuild: 0.17.18 - postcss: 8.4.23 - rollup: 3.21.2 + esbuild: 0.18.20 + postcss: 8.4.32 + rollup: 3.29.4 + optionalDependencies: + fsevents: 2.3.3 + dev: true + + /vite@5.0.10: + resolution: + { + integrity: sha512-2P8J7WWgmc355HUMlFrwofacvr98DAjoE52BfdbwQtyLH06XKwaL/FMnmKM2crF0iX4MpmMKoDlNCB1ok7zHCw==, + } + engines: { node: ^18.0.0 || >=20.0.0 } + hasBin: true + peerDependencies: + "@types/node": ^18.0.0 || >=20.0.0 + less: "*" + lightningcss: ^1.21.0 + sass: "*" + stylus: "*" + sugarss: "*" + terser: ^5.4.0 + peerDependenciesMeta: + "@types/node": + optional: true + less: + optional: true + lightningcss: + optional: true + sass: + optional: true + stylus: + optional: true + sugarss: + optional: true + terser: + optional: true + dependencies: + esbuild: 0.19.10 + postcss: 8.4.32 + rollup: 4.9.1 optionalDependencies: fsevents: 2.3.3 dev: true @@ -22562,11 +21997,12 @@ packages: tinybench: 2.3.1 tinypool: 0.3.0 tinyspy: 1.0.2 - vite: 4.3.3(@types/node@18.11.9) + vite: 4.5.1(@types/node@18.11.9) vite-node: 0.27.3(@types/node@18.11.9) why-is-node-running: 2.2.2 transitivePeerDependencies: - less + - lightningcss - sass - stylus - sugarss @@ -22764,49 +22200,6 @@ packages: } dev: true - /webpack@5.89.0(@swc/core@1.3.56)(esbuild@0.18.20): - resolution: - { - integrity: sha512-qyfIC10pOr70V+jkmud8tMfajraGCZMBWJtrmuBymQKCrLTRejBI8STDp1MCyZu/QTdZSeacCQYpYNQVOzX5kw==, - } - engines: { node: ">=10.13.0" } - hasBin: true - peerDependencies: - webpack-cli: "*" - peerDependenciesMeta: - webpack-cli: - optional: true - dependencies: - "@types/eslint-scope": 3.7.6 - "@types/estree": 1.0.3 - "@webassemblyjs/ast": 1.11.6 - "@webassemblyjs/wasm-edit": 1.11.6 - "@webassemblyjs/wasm-parser": 1.11.6 - acorn: 8.10.0 - acorn-import-assertions: 1.9.0(acorn@8.10.0) - browserslist: 4.22.1 - chrome-trace-event: 1.0.3 - enhanced-resolve: 5.15.0 - es-module-lexer: 1.3.1 - eslint-scope: 5.1.1 - events: 3.3.0 - glob-to-regexp: 0.4.1 - graceful-fs: 4.2.11 - json-parse-even-better-errors: 2.3.1 - loader-runner: 4.3.0 - mime-types: 2.1.35 - neo-async: 2.6.2 - schema-utils: 3.3.0 - tapable: 2.2.1 - terser-webpack-plugin: 5.3.9(@swc/core@1.3.56)(esbuild@0.18.20)(webpack@5.89.0) - watchpack: 2.4.0 - webpack-sources: 3.2.3 - transitivePeerDependencies: - - "@swc/core" - - esbuild - - uglify-js - dev: true - /whatwg-encoding@2.0.0: resolution: { @@ -22859,6 +22252,27 @@ packages: is-symbol: 1.0.4 dev: true + /which-builtin-type@1.1.3: + resolution: + { + integrity: sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==, + } + engines: { node: ">= 0.4" } + dependencies: + function.prototype.name: 1.1.6 + has-tostringtag: 1.0.0 + is-async-function: 2.0.0 + is-date-object: 1.0.5 + is-finalizationregistry: 1.0.2 + is-generator-function: 1.0.10 + is-regex: 1.1.4 + is-weakref: 1.0.2 + isarray: 2.0.5 + which-boxed-primitive: 1.0.2 + which-collection: 1.0.1 + which-typed-array: 1.1.9 + dev: true + /which-collection@1.0.1: resolution: { @@ -22878,6 +22292,20 @@ packages: } dev: true + /which-typed-array@1.1.13: + resolution: + { + integrity: sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==, + } + engines: { node: ">= 0.4" } + dependencies: + available-typed-arrays: 1.0.5 + call-bind: 1.0.5 + for-each: 0.3.3 + gopd: 1.0.1 + has-tostringtag: 1.0.0 + dev: true + /which-typed-array@1.1.9: resolution: { @@ -22886,7 +22314,7 @@ packages: engines: { node: ">= 0.4" } dependencies: available-typed-arrays: 1.0.5 - call-bind: 1.0.2 + call-bind: 1.0.5 for-each: 0.3.3 gopd: 1.0.1 has-tostringtag: 1.0.0 @@ -23124,6 +22552,7 @@ packages: integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==, } engines: { node: ">= 6" } + dev: false /yargs-parser@18.1.3: resolution: