diff --git a/.gitignore b/.gitignore index a8f55c7fe..8200e5bd8 100644 --- a/.gitignore +++ b/.gitignore @@ -1,8 +1,4 @@ -node_modules - -packages/core/lib/ -packages/ui/lib/ -packages/styles/lib/ -apps/**/dist - +**/node_modules +**/dist +**/*.tsbuildinfo **/.DS_Store \ No newline at end of file diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 000000000..1d7ac851e --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,3 @@ +{ + "recommendations": ["dbaeumer.vscode-eslint", "esbenp.prettier-vscode"] +} diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 000000000..85ebebd17 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,16 @@ +{ + "files.exclude": { + "**/.git": true, + "**/.gitkeep": true, + "**/node_modules": true + }, + "prettier.configPath": ".prettierrc", + "editor.defaultFormatter": "esbenp.prettier-vscode", + "editor.formatOnSave": true, + "editor.codeActionsOnSave": { + "source.fixAll.eslint": true + }, + "eslint.rules.customizations": [{ "rule": "*", "severity": "error" }], + "scss.lint.unknownAtRules": "ignore", + "typescript.tsdk": "./node_modules/typescript/lib" +} diff --git a/apps/example/package.json b/apps/example/package.json index b01a5f060..b9e6ebd1d 100644 --- a/apps/example/package.json +++ b/apps/example/package.json @@ -10,10 +10,13 @@ "build": "vite build" }, "dependencies": { - "@web3uikit/core": "0.1.0", - "@web3uikit/ui": "0.1.0", + "@web3uikit/core": "*", + "@web3uikit/ui": "*", "react": "^18.0.0", "react-dom": "^18.0.0", "react-router-dom": "^6.3.0" + }, + "devDependencies": { + "@web3uikit/config": "*" } } \ No newline at end of file diff --git a/apps/example/tsconfig.json b/apps/example/tsconfig.json index b2b633a77..f33228e04 100644 --- a/apps/example/tsconfig.json +++ b/apps/example/tsconfig.json @@ -1,8 +1,8 @@ { - "extends": "../../tsconfig.ui.json", + "extends": "@web3uikit/config/tsconfig.ui.json", "compilerOptions": { - "noEmit": true, - "rootDir": "src" + "baseUrl": ".", + "rootDir": "src", }, "include": ["src"] } diff --git a/apps/example/vite.config.ts b/apps/example/vite.config.ts index d65a852b8..0ed750be9 100644 --- a/apps/example/vite.config.ts +++ b/apps/example/vite.config.ts @@ -2,7 +2,7 @@ import { resolve } from 'path'; import react from '@vitejs/plugin-react'; import { defineConfig } from 'vite'; -const { name, version, dependencies } = require('./package.json'); +const { dependencies } = require('./package.json'); const vendor = Object.keys(dependencies); const renderChunks = (deps: Record) => { @@ -15,12 +15,6 @@ const renderChunks = (deps: Record) => { }; export default defineConfig({ - define: { - pkgJson: { name, version }, - }, - esbuild: { - jsxInject: `import React from 'react'`, - }, plugins: [react()], server: { open: true, diff --git a/nx.json b/nx.json index d150d0aba..71acecbfc 100644 --- a/nx.json +++ b/nx.json @@ -17,7 +17,7 @@ "default": { "runner": "nx/tasks-runners/default", "options": { - "cacheableOperations": ["build"] + "cacheableOperations": ["build", "test"] } } }, diff --git a/package.json b/package.json index b4357dfe9..02ffaa913 100644 --- a/package.json +++ b/package.json @@ -10,6 +10,8 @@ ], "scripts": { "build": "nx run-many --target=build --all --parallel --verbose=true", + "test": "nx affected --target=test --all --parallel --verbose=true", + "nm:clear": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +", "nx:clear": "nx clear-cache", "nx:graph": "nx graph --skip-nx-cache", "start:dev": "nx run-many --target=start:dev --all --parallel --verbose=true", @@ -31,6 +33,7 @@ "@nrwl/linter": "14.1.5", "@storybook/addon-essentials": "^6.4.22", "@storybook/addon-links": "^6.4.22", + "@storybook/builder-vite": "^0.1.36", "@storybook/react": "^6.4.22", "@storybook/testing-react": "^1.2.4", "@testing-library/jest-dom": "^5.16.4", @@ -51,7 +54,6 @@ "react-dom": "^18.0.0", "react-lazily": "^0.9.1", "rollup-plugin-dts": "^4.2.1", - "storybook-builder-vite": "^0.1.23", "styled-components": "^5.3.5", "ts-jest": "27.1.4", "ts-node": "9.1.1", diff --git a/packages/config/index.ts b/packages/config/index.ts deleted file mode 100644 index 83ea8db6b..000000000 --- a/packages/config/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -/** - * a package for shared config like ts or jest - */ diff --git a/packages/config/package.json b/packages/config/package.json new file mode 100644 index 000000000..e96f74417 --- /dev/null +++ b/packages/config/package.json @@ -0,0 +1,12 @@ +{ + "name": "@web3uikit/config", + "version": "0.1.0", + "sideEffects": false, + "devDependencies": { + "@types/node": "^17.0.36", + "@vitejs/plugin-react": "^1.3.2", + "vite": "^2.9.9", + "vite-plugin-dts": "^1.2.0", + "vite-tsconfig-paths": "^3.5.0" + } +} diff --git a/tsconfig.base.json b/packages/config/tsconfig.json similarity index 100% rename from tsconfig.base.json rename to packages/config/tsconfig.json diff --git a/tsconfig.ui.json b/packages/config/tsconfig.ui.json similarity index 86% rename from tsconfig.ui.json rename to packages/config/tsconfig.ui.json index 6fabb0390..b78982414 100644 --- a/tsconfig.ui.json +++ b/packages/config/tsconfig.ui.json @@ -1,5 +1,5 @@ { - "extends": "./tsconfig.base.json", + "extends": "./tsconfig.json", "compilerOptions": { "allowJs": true, "allowSyntheticDefaultImports": true, diff --git a/packages/config/vite.config.ts b/packages/config/vite.config.ts new file mode 100644 index 000000000..fd804f0eb --- /dev/null +++ b/packages/config/vite.config.ts @@ -0,0 +1,34 @@ +import react from '@vitejs/plugin-react'; +import tsconfigPaths from 'vite-tsconfig-paths'; + +import { UserConfigExport } from 'vite'; +import dts from 'vite-plugin-dts'; + +/** + * + * @param cwd + * @param external + */ +const config = (cwd: string, external?: string[]): UserConfigExport => { + return { + root: cwd, + plugins: [ + react(), + tsconfigPaths({ root: cwd }), + dts({ entryRoot: cwd + "/src", outputDir: cwd + "/dist" }), + ], + build: { + emptyOutDir: true, + lib: { + entry: cwd + '/src/index.ts', + fileName: 'index', + formats: ['es', 'cjs'], + }, + outDir: cwd + '/dist', + rollupOptions: { + external, + }, + }, + }; +}; +export default config; diff --git a/packages/core/package.json b/packages/core/package.json index d6cc77ebc..de2a607fa 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -5,15 +5,15 @@ "sideEffects": false, "files": [ "package.json", - "lib" + "dist" ], - "main": "./lib/index.umd.js", - "module": "./lib/index.es.js", - "types": "./lib/index.d.ts", + "main": "./dist/index.cjs.js", + "module": "./dist/index.es.js", + "types": "./dist/index.d.ts", "exports": { ".": { - "import": "./lib/index.es.js", - "require": "./lib/index.umd.js" + "require": "./dist/index.cjs.js", + "import": "./dist/index.es.js" } }, "scripts": { @@ -31,7 +31,8 @@ }, "dependencies": { - "@web3uikit/styles": "0.1.0", + "@web3uikit/config": "*", + "@web3uikit/styles": "*", "react-blockies": "^1.4.1" } } diff --git a/packages/core/tsconfig.json b/packages/core/tsconfig.json index 5effd3770..12dfbfa56 100644 --- a/packages/core/tsconfig.json +++ b/packages/core/tsconfig.json @@ -1,11 +1,8 @@ { - "extends": "../../tsconfig.ui.json", + "extends": "@web3uikit/config/tsconfig.ui.json", "compilerOptions": { "baseUrl": ".", - "declarationDir": "lib", - "emitDeclarationOnly": true, "rootDir": "src" }, - "include": ["src"], - "exclude": ["node_modules", "package.json"] + "include": ["src", "index.ts"] } diff --git a/packages/core/vite.config.ts b/packages/core/vite.config.ts index de3c3ad37..5d38e238f 100644 --- a/packages/core/vite.config.ts +++ b/packages/core/vite.config.ts @@ -1,34 +1,4 @@ -import path from 'path'; -import react from '@vitejs/plugin-react'; -import tsconfigPaths from 'vite-tsconfig-paths'; - import { defineConfig } from 'vite'; -const { name, version } = require('./package.json'); - -import dts from 'vite-plugin-dts'; +import config from './node_modules/@web3uikit/config/vite.config'; -export default defineConfig({ - define: { - pkgJson: { name, version }, - }, - plugins: [react(), tsconfigPaths(), dts({ entryRoot: './src' })], - build: { - lib: { - entry: path.resolve(__dirname, 'src/index.ts'), - fileName: 'index', - formats: ['es'], - }, - outDir: './lib', - rollupOptions: { - // externalize deps that shouldn't be bundled - external: ['react', 'react-dom'], - output: { - // global vars to use in UMD build for externalized deps - globals: { - react: 'React', - 'react-dom': 'ReactDOM', - }, - }, - }, - }, -}); +export default defineConfig({ ...config(__dirname) }); diff --git a/packages/styles/package.json b/packages/styles/package.json index a3215cfcb..004c90098 100644 --- a/packages/styles/package.json +++ b/packages/styles/package.json @@ -5,15 +5,15 @@ "sideEffects": false, "files": [ "package.json", - "lib" + "dist" ], - "main": "./lib/index.umd.js", - "module": "./lib/index.es.js", - "types": "./lib/index.d.ts", + "main": "./dist/index.cjs.js", + "module": "./dist/index.es.js", + "types": "./dist/index.d.ts", "exports": { ".": { - "import": "./lib/index.es.js", - "require": "./lib/index.umd.js" + "require": "./dist/index.cjs.js", + "import": "./dist/index.es.js" } }, "scripts": { @@ -26,5 +26,8 @@ "devDependencies": { "react": "^18.0.0", "react-dom": "^18.0.0" + }, + "dependencies": { + "@web3uikit/config": "*" } } diff --git a/packages/styles/tsconfig.json b/packages/styles/tsconfig.json index 5effd3770..f33228e04 100644 --- a/packages/styles/tsconfig.json +++ b/packages/styles/tsconfig.json @@ -1,11 +1,8 @@ { - "extends": "../../tsconfig.ui.json", + "extends": "@web3uikit/config/tsconfig.ui.json", "compilerOptions": { "baseUrl": ".", - "declarationDir": "lib", - "emitDeclarationOnly": true, - "rootDir": "src" + "rootDir": "src", }, - "include": ["src"], - "exclude": ["node_modules", "package.json"] + "include": ["src"] } diff --git a/packages/styles/vite.config.ts b/packages/styles/vite.config.ts index caf662064..5d38e238f 100644 --- a/packages/styles/vite.config.ts +++ b/packages/styles/vite.config.ts @@ -1,34 +1,4 @@ -import path from 'path'; -import react from '@vitejs/plugin-react'; -import tsconfigPaths from 'vite-tsconfig-paths'; - import { defineConfig } from 'vite'; -const { name, version } = require('./package.json'); - -import dts from 'vite-plugin-dts'; +import config from './node_modules/@web3uikit/config/vite.config'; -export default defineConfig({ - define: { - pkgJson: { name, version } - }, - plugins: [react(), tsconfigPaths(), dts({ entryRoot: './src' })], - build: { - lib: { - entry: path.resolve(__dirname, 'src/index.ts'), - fileName: 'index', - formats: ['es'] - }, - outDir: './lib', - rollupOptions: { - // externalize deps that shouldn't be bundled - external: ['react', 'react-dom'], - output: { - // global vars to use in UMD build for externalized deps - globals: { - react: 'React', - 'react-dom': 'ReactDOM' - } - } - } - } -}); +export default defineConfig({ ...config(__dirname) }); diff --git a/packages/ui/package.json b/packages/ui/package.json index 2742b081a..4dfbd0dcc 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -5,15 +5,15 @@ "sideEffects": false, "files": [ "package.json", - "lib" + "dist" ], - "main": "./lib/index.umd.js", - "module": "./lib/index.es.js", - "types": "./lib/index.d.ts", + "main": "./dist/index.cjs.js", + "module": "./dist/index.es.js", + "types": "./dist/index.d.ts", "exports": { ".": { - "import": "./lib/index.es.js", - "require": "./lib/index.umd.js" + "require": "./dist/index.cjs.js", + "import": "./dist/index.es.js" } }, "scripts": { @@ -32,8 +32,9 @@ "dependencies": { "@ethersproject/transactions": "^5.6.2", "@moralisweb3/evm-wallet-connect-connector": "2.0.0-alpha.1", - "@web3uikit/core": "0.1.0", - "@web3uikit/styles": "0.1.0", + "@web3uikit/config": "*", + "@web3uikit/core": "*", + "@web3uikit/styles": "*", "react-blockies": "^1.4.1" } } diff --git a/packages/ui/src/lib/ConnectButton/ConnectButton.tsx b/packages/ui/src/lib/ConnectButton/ConnectButton.tsx index 60a5f74c6..6b0fbee8a 100644 --- a/packages/ui/src/lib/ConnectButton/ConnectButton.tsx +++ b/packages/ui/src/lib/ConnectButton/ConnectButton.tsx @@ -1,4 +1,4 @@ -import { Button } from "@web3uikit/core" +import { Button } from "@web3uikit/core" import Moralis from '@moralisweb3/evm-wallet-connect-connector' export const ConnectButton = () => { return ( diff --git a/packages/ui/tsconfig.json b/packages/ui/tsconfig.json index 0dce12a83..f33228e04 100644 --- a/packages/ui/tsconfig.json +++ b/packages/ui/tsconfig.json @@ -1,11 +1,8 @@ { - "extends": "../../tsconfig.ui.json", + "extends": "@web3uikit/config/tsconfig.ui.json", "compilerOptions": { "baseUrl": ".", - "declarationDir": "lib", - "emitDeclarationOnly": true, - "rootDir": "src" + "rootDir": "src", }, - "include": ["src"], - "exclude": ["node_modules", "package.json"] -} \ No newline at end of file + "include": ["src"] +} diff --git a/packages/ui/vite.config.ts b/packages/ui/vite.config.ts index de3c3ad37..5d38e238f 100644 --- a/packages/ui/vite.config.ts +++ b/packages/ui/vite.config.ts @@ -1,34 +1,4 @@ -import path from 'path'; -import react from '@vitejs/plugin-react'; -import tsconfigPaths from 'vite-tsconfig-paths'; - import { defineConfig } from 'vite'; -const { name, version } = require('./package.json'); - -import dts from 'vite-plugin-dts'; +import config from './node_modules/@web3uikit/config/vite.config'; -export default defineConfig({ - define: { - pkgJson: { name, version }, - }, - plugins: [react(), tsconfigPaths(), dts({ entryRoot: './src' })], - build: { - lib: { - entry: path.resolve(__dirname, 'src/index.ts'), - fileName: 'index', - formats: ['es'], - }, - outDir: './lib', - rollupOptions: { - // externalize deps that shouldn't be bundled - external: ['react', 'react-dom'], - output: { - // global vars to use in UMD build for externalized deps - globals: { - react: 'React', - 'react-dom': 'ReactDOM', - }, - }, - }, - }, -}); +export default defineConfig({ ...config(__dirname) }); diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index addf6cfb3..7367b69bb 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -5,23 +5,24 @@ importers: .: specifiers: '@babel/core': ^7.18.2 - '@jscutlery/semver': ^2.22.0 + '@jscutlery/semver': ^2.25.1 '@mdx-js/react': ^2.1.1 '@nrwl/eslint-plugin-nx': 14.1.5 '@nrwl/jest': 14.1.9 '@nrwl/js': 14.1.9 '@nrwl/linter': 14.1.5 - '@nrwl/workspace': ^14.1.4 - '@storybook/addon-essentials': ^6.4.22 - '@storybook/addon-links': ^6.4.22 - '@storybook/react': ^6.4.22 - '@storybook/testing-react': ^1.2.4 + '@nrwl/workspace': ^14.1.9 + '@storybook/addon-essentials': ^6.5.6 + '@storybook/addon-links': ^6.5.6 + '@storybook/builder-vite': ^0.1.36 + '@storybook/react': ^6.5.6 + '@storybook/testing-react': ^1.3.0 '@testing-library/jest-dom': ^5.16.4 - '@testing-library/react': ^13.2.0 - '@types/jest': ^27.5.1 - '@types/node': ^17.0.26 - '@types/react': ^18.0.6 - '@types/react-dom': ^18.0.2 + '@testing-library/react': ^13.3.0 + '@types/jest': ^27.5.2 + '@types/node': ^17.0.39 + '@types/react': ^18.0.10 + '@types/react-dom': ^18.0.5 '@types/styled-components': ^5.1.25 '@typescript-eslint/eslint-plugin': ~5.18.0 '@typescript-eslint/parser': ~5.18.0 @@ -31,36 +32,36 @@ importers: eslint-config-prettier: 8.1.0 jest: ^28.1.0 jest-styled-components: ^7.0.8 - nx: ^14.1.4 - react: ^18.0.0 - react-dom: ^18.0.0 + nx: ^14.1.9 + react: ^18.1.0 + react-dom: ^18.1.0 react-lazily: ^0.9.1 - rollup-plugin-dts: ^4.2.1 - storybook-builder-vite: ^0.1.23 + rollup-plugin-dts: ^4.2.2 styled-components: ^5.3.5 ts-jest: 27.1.4 ts-node: 9.1.1 - tslib: ^2.3.0 - typescript: ^4.6.4 - vite: ^2.9.5 - vite-plugin-dts: ^1.1.1 - vite-tsconfig-paths: ^3.4.1 + tslib: ^2.4.0 + typescript: ^4.7.3 + vite: ^2.9.9 + vite-plugin-dts: ^1.2.0 + vite-tsconfig-paths: ^3.5.0 dependencies: '@babel/core': 7.18.2 '@jscutlery/semver': 2.25.1 - '@nrwl/workspace': 14.1.9_zixgkd2vx5stlf4zg66gkt4try + '@nrwl/workspace': 14.1.9_w527hawdj3oyr6eaa7a2qhg2iu dotenv: 16.0.1 - nx: 14.1.9_typescript@4.6.4 + nx: 14.1.9_typescript@4.7.3 tslib: 2.4.0 devDependencies: '@mdx-js/react': 2.1.1_react@18.1.0 - '@nrwl/eslint-plugin-nx': 14.1.5_6cgcjopam4mc7w7qyqp54oy2n4 - '@nrwl/jest': 14.1.9_u3hct3etyflpkcge2zchqdoyky - '@nrwl/js': 14.1.9_mcb7kdupvpri4hml77ajot75xa - '@nrwl/linter': 14.1.5_mcb7kdupvpri4hml77ajot75xa - '@storybook/addon-essentials': 6.5.6_etccdq7rsg7ihjm4kr5o6pcy3y + '@nrwl/eslint-plugin-nx': 14.1.5_cw7cd3vdidnj5ij7fq66m7w3yy + '@nrwl/jest': 14.1.9_falpuauwk5pyt73ej4r4s4leo4 + '@nrwl/js': 14.1.9_d23e6vdtqo5ecjkg7oswajhuje + '@nrwl/linter': 14.1.5_d23e6vdtqo5ecjkg7oswajhuje + '@storybook/addon-essentials': 6.5.6_ptlutfo7dafjxeh4chvtjnspb4 '@storybook/addon-links': 6.5.6_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/react': 6.5.6_etccdq7rsg7ihjm4kr5o6pcy3y + '@storybook/builder-vite': 0.1.36_i2zgygkw4werwuj4w6bczo4nii + '@storybook/react': 6.5.6_ptlutfo7dafjxeh4chvtjnspb4 '@storybook/testing-react': 1.3.0_ybpdw4jw443jzd7brjkyna6jea '@testing-library/jest-dom': 5.16.4 '@testing-library/react': 13.3.0_ef5jwxihqo6n7gxfmzogljlgcm @@ -69,8 +70,8 @@ importers: '@types/react': 18.0.10 '@types/react-dom': 18.0.5 '@types/styled-components': 5.1.25 - '@typescript-eslint/eslint-plugin': 5.18.0_qop66kdz473gtxyqakjhziybiy - '@typescript-eslint/parser': 5.18.0_uhoeudlwl7kc47h4kncsfowede + '@typescript-eslint/eslint-plugin': 5.18.0_jmjjotaglh7vhkxrv3g4ow6eyi + '@typescript-eslint/parser': 5.18.0_x66lnsojg54lmfpjeg6pogs53i '@vitejs/plugin-react': 1.3.2 eslint: 8.12.0 eslint-config-prettier: 8.1.0_eslint@8.12.0 @@ -79,39 +80,56 @@ importers: react: 18.1.0 react-dom: 18.1.0_react@18.1.0 react-lazily: 0.9.1_ef5jwxihqo6n7gxfmzogljlgcm - rollup-plugin-dts: 4.2.2_typescript@4.6.4 - storybook-builder-vite: 0.1.23_tntbyaimxmpetkyahqieeppnbm + rollup-plugin-dts: 4.2.2_typescript@4.7.3 styled-components: 5.3.5_ef5jwxihqo6n7gxfmzogljlgcm - ts-jest: 27.1.4_zjiisyiocj24hlcxqje3u42dum - ts-node: 9.1.1_typescript@4.6.4 - typescript: 4.6.4 + ts-jest: 27.1.4_56wx5gwwkqwqliy46mul2nqkmy + ts-node: 9.1.1_typescript@4.7.3 + typescript: 4.7.3 vite: 2.9.9 vite-plugin-dts: 1.2.0_vite@2.9.9 vite-tsconfig-paths: 3.5.0_vite@2.9.9 apps/example: specifiers: - '@web3uikit/core': 0.1.0 - '@web3uikit/ui': 0.1.0 + '@web3uikit/config': '*' + '@web3uikit/core': '*' + '@web3uikit/ui': '*' react: ^18.0.0 react-dom: ^18.0.0 react-router-dom: ^6.3.0 dependencies: + '@web3uikit/config': link:../../packages/config '@web3uikit/core': link:../../packages/core '@web3uikit/ui': link:../../packages/ui react: 18.1.0 react-dom: 18.1.0_react@18.1.0 react-router-dom: 6.3.0_ef5jwxihqo6n7gxfmzogljlgcm + packages/config: + specifiers: + '@types/node': ^17.0.36 + '@vitejs/plugin-react': ^1.3.2 + vite: ^2.9.9 + vite-plugin-dts: ^1.2.0 + vite-tsconfig-paths: ^3.5.0 + devDependencies: + '@types/node': 17.0.39 + '@vitejs/plugin-react': 1.3.2 + vite: 2.9.9 + vite-plugin-dts: 1.2.0_vite@2.9.9 + vite-tsconfig-paths: 3.5.0_vite@2.9.9 + packages/core: specifiers: '@types/react-blockies': ^1.4.1 - '@web3uikit/styles': 0.1.0 + '@web3uikit/config': '*' + '@web3uikit/styles': '*' react: ^18.0.0 react-blockies: ^1.4.1 react-dom: ^18.0.0 react-router-dom: ^6.3.0 dependencies: + '@web3uikit/config': link:../config '@web3uikit/styles': link:../styles react-blockies: 1.4.1_react@18.1.0 devDependencies: @@ -122,8 +140,11 @@ importers: packages/styles: specifiers: + '@web3uikit/config': '*' react: ^18.0.0 react-dom: ^18.0.0 + dependencies: + '@web3uikit/config': link:../config devDependencies: react: 18.1.0 react-dom: 18.1.0_react@18.1.0 @@ -133,8 +154,9 @@ importers: '@ethersproject/transactions': ^5.6.2 '@moralisweb3/evm-wallet-connect-connector': 2.0.0-alpha.1 '@types/react-blockies': ^1.4.1 - '@web3uikit/core': 0.1.0 - '@web3uikit/styles': 0.1.0 + '@web3uikit/config': '*' + '@web3uikit/core': '*' + '@web3uikit/styles': '*' react: ^18.0.0 react-blockies: ^1.4.1 react-dom: ^18.0.0 @@ -142,6 +164,7 @@ importers: dependencies: '@ethersproject/transactions': 5.6.2 '@moralisweb3/evm-wallet-connect-connector': 2.0.0-alpha.1 + '@web3uikit/config': link:../config '@web3uikit/core': link:../core '@web3uikit/styles': link:../styles react-blockies: 1.4.1_react@18.1.0 @@ -199,6 +222,29 @@ packages: - supports-color dev: true + /@babel/core/7.17.10: + resolution: {integrity: sha512-liKoppandF3ZcBnIYFjfSDHZLKdLHGJRkoWtG8zQyGJBQfIYobpnVGI5+pLBNtS6psFLDzyq8+h5HiVljW9PNA==} + engines: {node: '>=6.9.0'} + dependencies: + '@ampproject/remapping': 2.2.0 + '@babel/code-frame': 7.16.7 + '@babel/generator': 7.17.10 + '@babel/helper-compilation-targets': 7.17.10_@babel+core@7.17.10 + '@babel/helper-module-transforms': 7.17.7 + '@babel/helpers': 7.17.9 + '@babel/parser': 7.17.10 + '@babel/template': 7.16.7 + '@babel/traverse': 7.17.10 + '@babel/types': 7.17.10 + convert-source-map: 1.8.0 + debug: 4.3.4 + gensync: 1.0.0-beta.2 + json5: 2.2.1 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + dev: false + /@babel/core/7.18.2: resolution: {integrity: sha512-A8pri1YJiC5UnkdrWcmfZTJTV85b4UXTAfImGmCfYmax4TR9Cw8sDS0MOk++Gp2mE/BefVJ5nwy5yzqNJbP/DQ==} engines: {node: '>=6.9.0'} @@ -221,6 +267,15 @@ packages: transitivePeerDependencies: - supports-color + /@babel/generator/7.17.10: + resolution: {integrity: sha512-46MJZZo9y3o4kmhBVc7zW7i8dtR1oIK/sdO5NcfcZRhTGYi+KKJRtHNgsU6c4VUcJmUNV/LQdebD/9Dlv4K+Tg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.17.10 + '@jridgewell/gen-mapping': 0.1.1 + jsesc: 2.5.2 + dev: false + /@babel/generator/7.18.2: resolution: {integrity: sha512-W1lG5vUwFvfMd8HVXqdfbuG7RuaSrTCCD8cl8fP8wOivdbtbIg2Db3IWUcgvfxKbbn6ZBGYRW/Zk1MIwK49mgw==} engines: {node: '>=6.9.0'} @@ -244,6 +299,19 @@ packages: '@babel/types': 7.18.4 dev: true + /@babel/helper-compilation-targets/7.17.10_@babel+core@7.17.10: + resolution: {integrity: sha512-gh3RxjWbauw/dFiU/7whjd0qN9K6nPJMqe6+Er7rOavFh0CQUSwhAE3IcTho2rywPJFxej6TUUHDkWcYI6gGqQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/compat-data': 7.17.10 + '@babel/core': 7.17.10 + '@babel/helper-validator-option': 7.16.7 + browserslist: 4.20.3 + semver: 6.3.0 + dev: false + /@babel/helper-compilation-targets/7.18.2: resolution: {integrity: sha512-s1jnPotJS9uQnzFtiZVBUxe67CuBa679oWFHpxYYnTpRL/1ffhyX44R9uYiXoa/pLXcY9H2moJta0iaanlk/rQ==} engines: {node: '>=6.9.0'} @@ -350,6 +418,13 @@ packages: - supports-color dev: true + /@babel/helper-environment-visitor/7.16.7: + resolution: {integrity: sha512-SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.17.10 + dev: false + /@babel/helper-environment-visitor/7.18.2: resolution: {integrity: sha512-14GQKWkX9oJzPiQQ7/J36FTXcD4kSp8egKjO9nINlSKiHITRA9q/R74qu8S9xlc/b/yjsJItQUeeh3xnGN0voQ==} engines: {node: '>=6.9.0'} @@ -387,6 +462,22 @@ packages: dependencies: '@babel/types': 7.18.4 + /@babel/helper-module-transforms/7.17.7: + resolution: {integrity: sha512-VmZD99F3gNTYB7fJRDTi+u6l/zxY0BE6OIxPSU7a50s6ZUQkHwSDmV92FfM+oCG0pZRVojGYhkR8I0OGeCVREw==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-environment-visitor': 7.16.7 + '@babel/helper-module-imports': 7.16.7 + '@babel/helper-simple-access': 7.17.7 + '@babel/helper-split-export-declaration': 7.16.7 + '@babel/helper-validator-identifier': 7.16.7 + '@babel/template': 7.16.7 + '@babel/traverse': 7.17.10 + '@babel/types': 7.17.10 + transitivePeerDependencies: + - supports-color + dev: false + /@babel/helper-module-transforms/7.18.0: resolution: {integrity: sha512-kclUYSUBIjlvnzN2++K9f2qzYKFgjmnmjwL4zlmU5f8ZtzgWe8s0rUPSTGy2HmK4P8T52MQsS+HTQAgZd3dMEA==} engines: {node: '>=6.9.0'} @@ -441,6 +532,13 @@ packages: - supports-color dev: true + /@babel/helper-simple-access/7.17.7: + resolution: {integrity: sha512-txyMCGroZ96i+Pxr3Je3lzEJjqwaRC9buMUgtomcrLe5Nd0+fk1h0LLA+ixUF5OW7AhHuQ7Es1WcQJZmZsz2XA==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.17.10 + dev: false + /@babel/helper-simple-access/7.18.2: resolution: {integrity: sha512-7LIrjYzndorDY88MycupkpQLKS1AFfsVRm2k/9PtKScSy5tZq0McZTj+DiMRynboZfIqOKvo03pmhTaUgiD6fQ==} engines: {node: '>=6.9.0'} @@ -480,6 +578,17 @@ packages: - supports-color dev: true + /@babel/helpers/7.17.9: + resolution: {integrity: sha512-cPCt915ShDWUEzEp3+UNRktO2n6v49l5RSnG9M5pS24hA+2FAc5si+Pn1i4VVbQQ+jh+bIZhPFQOJOzbrOYY1Q==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/template': 7.16.7 + '@babel/traverse': 7.17.10 + '@babel/types': 7.17.10 + transitivePeerDependencies: + - supports-color + dev: false + /@babel/helpers/7.18.2: resolution: {integrity: sha512-j+d+u5xT5utcQSzrh9p+PaJX94h++KN+ng9b9WEJq7pkUPAd61FGqhjuUEdfknb3E/uDBb7ruwEeKkIxNJPIrg==} engines: {node: '>=6.9.0'} @@ -498,6 +607,14 @@ packages: chalk: 2.4.2 js-tokens: 4.0.0 + /@babel/parser/7.17.10: + resolution: {integrity: sha512-n2Q6i+fnJqzOaq2VkdXxy2TCPCWQZHiCo0XqmrCvDWcZQKRyZzYi4Z0yxlBuN0w+r2ZHmre+Q087DSrw3pbJDQ==} + engines: {node: '>=6.0.0'} + hasBin: true + dependencies: + '@babel/types': 7.17.10 + dev: false + /@babel/parser/7.18.4: resolution: {integrity: sha512-FDge0dFazETFcxGw/EXzOkN8uJp0PC7Qbm+Pe9T+av2zlBpOgunFHkQPPn+eRuClU73JF+98D531UgayY89tow==} engines: {node: '>=6.0.0'} @@ -668,7 +785,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-plugin-utils': 7.17.12 + '@babel/helper-plugin-utils': 7.10.4 '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.12.9 '@babel/plugin-transform-parameters': 7.17.12_@babel+core@7.12.9 dev: true @@ -1599,6 +1716,12 @@ packages: dependencies: regenerator-runtime: 0.13.9 + /@babel/runtime/7.18.3: + resolution: {integrity: sha512-38Y8f7YUhce/K7RMwTp7m0uCumpv9hZkitCbBClqQIow1qSbCvGkcegKOXpEWCQLfWmevgRiWokZ1GkpfhbZug==} + engines: {node: '>=6.9.0'} + dependencies: + regenerator-runtime: 0.13.9 + /@babel/template/7.16.7: resolution: {integrity: sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==} engines: {node: '>=6.9.0'} @@ -1607,6 +1730,24 @@ packages: '@babel/parser': 7.18.4 '@babel/types': 7.18.4 + /@babel/traverse/7.17.10: + resolution: {integrity: sha512-VmbrTHQteIdUUQNTb+zE12SHS/xQVIShmBPhlNP12hD5poF2pbITW1Z4172d03HegaQWhLffdkRJYtAzp0AGcw==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/code-frame': 7.16.7 + '@babel/generator': 7.17.10 + '@babel/helper-environment-visitor': 7.16.7 + '@babel/helper-function-name': 7.17.9 + '@babel/helper-hoist-variables': 7.16.7 + '@babel/helper-split-export-declaration': 7.16.7 + '@babel/parser': 7.17.10 + '@babel/types': 7.17.10 + debug: 4.3.4 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + dev: false + /@babel/traverse/7.18.2: resolution: {integrity: sha512-9eNwoeovJ6KH9zcCNnENY7DMFwTU9JdGCFtqNLfUAqtUHRCOsTOqWoffosP8vKmNYeSBUv3yVJXjfd8ucwOjUA==} engines: {node: '>=6.9.0'} @@ -1642,6 +1783,14 @@ packages: - supports-color dev: true + /@babel/types/7.17.10: + resolution: {integrity: sha512-9O26jG0mBYfGkUYCYZRnBwbVLd1UZOICEr2Em6InB6jVfsAv1GKgwXHmrSg+WFWDmeKTA6vyTZiN8tCSM5Oo3A==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-validator-identifier': 7.16.7 + to-fast-properties: 2.0.0 + dev: false + /@babel/types/7.18.4: resolution: {integrity: sha512-ThN1mBcMq5pG/Vm2IcBmPPfyPXbd8S02rS+OBIDENdufvqC7Z/jHPCv9IcP01277aKtDI8g/2XysBN4hA8niiw==} engines: {node: '>=6.9.0'} @@ -1715,6 +1864,16 @@ packages: transitivePeerDependencies: - supports-color + /@ethersproject/address/5.6.0: + resolution: {integrity: sha512-6nvhYXjbXsHPS+30sHZ+U4VMagFC/9zAk6Gd/h3S21YW4+yfb0WfRtaAIZ4kfM4rrVwqiy284LP0GtL5HXGLxQ==} + dependencies: + '@ethersproject/bignumber': 5.6.2 + '@ethersproject/bytes': 5.6.1 + '@ethersproject/keccak256': 5.6.1 + '@ethersproject/logger': 5.6.0 + '@ethersproject/rlp': 5.6.1 + dev: false + /@ethersproject/address/5.6.1: resolution: {integrity: sha512-uOgF0kS5MJv9ZvCz7x6T2EXJSzotiybApn4XlOgoTX0xdtyVIJ7pF+6cGPxiEq/dpBiTfMiw7Yc81JcwhSYA0Q==} dependencies: @@ -1725,6 +1884,14 @@ packages: '@ethersproject/rlp': 5.6.1 dev: false + /@ethersproject/bignumber/5.6.0: + resolution: {integrity: sha512-VziMaXIUHQlHJmkv1dlcd6GY2PmT0khtAqaMctCIDogxkrarMzA9L94KN1NeXqqOfFD6r0sJT3vCTOFSmZ07DA==} + dependencies: + '@ethersproject/bytes': 5.6.1 + '@ethersproject/logger': 5.6.0 + bn.js: 4.12.0 + dev: false + /@ethersproject/bignumber/5.6.2: resolution: {integrity: sha512-v7+EEUbhGqT3XJ9LMPsKvXYHFc8eHxTowFCG/HgJErmq4XHJ2WR7aeyICg3uTOAQ7Icn0GFHAohXEhxQHq4Ubw==} dependencies: @@ -1794,8 +1961,8 @@ packages: '@ethersproject/signing-key': 5.6.2 dev: false - /@ethersproject/units/5.6.1: - resolution: {integrity: sha512-rEfSEvMQ7obcx3KWD5EWWx77gqv54K6BKiZzKxkQJqtpriVsICrktIQmKl8ReNToPeIYPnFHpXvKpi068YFZXw==} + /@ethersproject/units/5.6.0: + resolution: {integrity: sha512-tig9x0Qmh8qbo1w8/6tmtyrm/QQRviBh389EQ+d8fP4wDsBrJBf08oZfoiz1/uenKK9M78yAP4PoR7SsVoTjsw==} dependencies: '@ethersproject/bignumber': 5.6.2 '@ethersproject/constants': 5.6.1 @@ -1844,7 +2011,7 @@ packages: dependencies: '@jest/types': 27.5.1 '@types/node': 17.0.39 - chalk: 4.1.2 + chalk: 4.1.0 jest-message-util: 27.5.1 jest-util: 27.5.1 slash: 3.0.0 @@ -1997,7 +2164,7 @@ packages: '@jest/transform': 27.5.1 '@jest/types': 27.5.1 '@types/node': 17.0.39 - chalk: 4.1.2 + chalk: 4.1.0 collect-v8-coverage: 1.0.1 exit: 0.1.2 glob: 7.2.3 @@ -2150,7 +2317,7 @@ packages: '@babel/core': 7.18.2 '@jest/types': 27.5.1 babel-plugin-istanbul: 6.1.1 - chalk: 4.1.2 + chalk: 4.1.0 convert-source-map: 1.8.0 fast-json-stable-stringify: 2.1.0 graceful-fs: 4.2.10 @@ -2207,7 +2374,7 @@ packages: '@types/istanbul-reports': 3.0.1 '@types/node': 17.0.39 '@types/yargs': 16.0.4 - chalk: 4.1.2 + chalk: 4.1.0 /@jest/types/28.1.0: resolution: {integrity: sha512-xmEggMPr317MIOjjDoZ4ejCSr9Lpbt/u34+dvc99t7DS8YirW5rwZEhzKPC2BMUFkUhI48qs6qLUSGw5FuL0GA==} @@ -2221,16 +2388,17 @@ packages: chalk: 4.1.2 dev: true - /@joshwooding/vite-plugin-react-docgen-typescript/0.0.2_adglpeacpkr34s2da2envfjpva: - resolution: {integrity: sha512-0hbsoX2c7Z3lJKY+88ToduiQDyh+Mggpd6Go0vVV3PchMRyE9iOCVUBiqd4FFfgNdFdk6iNKrO9bdIiHOpW6jA==} + /@joshwooding/vite-plugin-react-docgen-typescript/0.0.4_w2ia2u24h3y5wbn5vvjywyz3ga: + resolution: {integrity: sha512-ezL7SU//1OV4Oyt/zQ3CsX8uLujVEYUHuULkqgcW6wOuQfRnvgkn99HZtLWwS257GmZVwszGQzhL7VE3PbMAYw==} peerDependencies: typescript: '>= 4.3.x' vite: '>2.0.0-0' dependencies: glob: 7.2.3 glob-promise: 4.2.2_glob@7.2.3 - react-docgen-typescript: 2.2.2_typescript@4.6.4 - typescript: 4.6.4 + magic-string: 0.26.2 + react-docgen-typescript: 2.2.2_typescript@4.7.3 + typescript: 4.7.3 vite: 2.9.9 dev: true @@ -2378,9 +2546,9 @@ packages: /@moralisweb3/core/2.0.0-alpha.1: resolution: {integrity: sha512-Fpr2PF+hcf2awQ32SNBoVYW6ejPKZj9Xvy4OqX2IimTaEeC8/zfjzXbwk7oy2O0ChJOCBmjKk18ZVbSa9mZAbg==} dependencies: - '@ethersproject/address': 5.6.1 - '@ethersproject/bignumber': 5.6.2 - '@ethersproject/units': 5.6.1 + '@ethersproject/address': 5.6.0 + '@ethersproject/bignumber': 5.6.0 + '@ethersproject/units': 5.6.0 '@xstate/fsm': 2.0.0 ky: 0.30.0 ky-universal: 0.10.1_ky@0.30.0 @@ -2458,19 +2626,19 @@ packages: rimraf: 3.0.2 dev: true - /@nrwl/cli/14.1.5_typescript@4.6.4: + /@nrwl/cli/14.1.5_typescript@4.7.3: resolution: {integrity: sha512-TGMZykGuu2FbGqY+Xj9tDoTNVzBeccIDnG6ofsnVLem5horZGB8OoRFgXXszfnCXebJeYw8WgqHO7F0fqw3ssA==} dependencies: - nx: 14.1.5_typescript@4.6.4 + nx: 14.1.5_typescript@4.7.3 transitivePeerDependencies: - supports-color - typescript dev: true - /@nrwl/cli/14.1.9_typescript@4.6.4: + /@nrwl/cli/14.1.9_typescript@4.7.3: resolution: {integrity: sha512-7T03yVUNxXXR478L9TRRYlg1gsxvERpikSa1dppW+YjL0K4L2PLkZEPJqDMbrPmyAryeZpUCn9vLVOIThW47rA==} dependencies: - nx: 14.1.9_typescript@4.6.4 + nx: 14.1.9_typescript@4.7.3 transitivePeerDependencies: - supports-color - typescript @@ -2482,7 +2650,7 @@ packages: dependencies: ejs: 3.1.8 ignore: 5.2.0 - nx: 14.1.5_typescript@4.6.4 + nx: 14.1.5_typescript@4.7.3 rxjs: 6.6.7 semver: 7.3.4 tslib: 2.4.0 @@ -2495,7 +2663,7 @@ packages: dependencies: ejs: 3.1.8 ignore: 5.2.0 - nx: 14.1.9_typescript@4.6.4 + nx: 14.1.9_typescript@4.7.3 rxjs: 6.6.7 semver: 7.3.4 tslib: 2.4.0 @@ -2508,12 +2676,12 @@ packages: dependencies: ejs: 3.1.8 ignore: 5.2.0 - nx: 14.1.9_typescript@4.6.4 + nx: 14.1.9_typescript@4.7.3 rxjs: 6.6.7 semver: 7.3.4 tslib: 2.4.0 - /@nrwl/eslint-plugin-nx/14.1.5_6cgcjopam4mc7w7qyqp54oy2n4: + /@nrwl/eslint-plugin-nx/14.1.5_cw7cd3vdidnj5ij7fq66m7w3yy: resolution: {integrity: sha512-T6na69fUq2y+cjtEtjIVu7LQ+s2F4WuiXOh0AYDAj5fn44WOKa1jUv0qY1Ue4DYwuLrlErdb7MldpJm/tW9KbA==} peerDependencies: '@typescript-eslint/parser': ~5.18.0 @@ -2523,9 +2691,9 @@ packages: optional: true dependencies: '@nrwl/devkit': 14.1.5_nx@14.1.9 - '@nrwl/workspace': 14.1.5_zixgkd2vx5stlf4zg66gkt4try - '@typescript-eslint/experimental-utils': 5.18.0_uhoeudlwl7kc47h4kncsfowede - '@typescript-eslint/parser': 5.18.0_uhoeudlwl7kc47h4kncsfowede + '@nrwl/workspace': 14.1.5_w527hawdj3oyr6eaa7a2qhg2iu + '@typescript-eslint/experimental-utils': 5.18.0_x66lnsojg54lmfpjeg6pogs53i + '@typescript-eslint/parser': 5.18.0_x66lnsojg54lmfpjeg6pogs53i chalk: 4.1.0 confusing-browser-globals: 1.0.11 eslint-config-prettier: 8.1.0_eslint@8.12.0 @@ -2590,13 +2758,13 @@ packages: - utf-8-validate dev: true - /@nrwl/jest/14.1.9_u3hct3etyflpkcge2zchqdoyky: + /@nrwl/jest/14.1.9_falpuauwk5pyt73ej4r4s4leo4: resolution: {integrity: sha512-rZ/+X7OzhW8nKLaYOpbIwUKzEAIDLlQd/m6qndAKU1rbSOZZVa7ZwHRQpzBMooyXCQB/wJLTM+epAI6vWjCiNg==} dependencies: '@jest/reporters': 27.5.1 '@jest/test-result': 27.5.1 '@nrwl/devkit': 14.1.9_nx@14.1.9 - '@phenomnomnominal/tsquery': 4.1.1_typescript@4.6.4 + '@phenomnomnominal/tsquery': 4.1.1_typescript@4.7.3 chalk: 4.1.0 identity-obj-proxy: 3.0.0 jest-config: 27.5.1_ts-node@9.1.1 @@ -2615,13 +2783,13 @@ packages: - typescript - utf-8-validate - /@nrwl/js/14.1.9_mcb7kdupvpri4hml77ajot75xa: + /@nrwl/js/14.1.9_d23e6vdtqo5ecjkg7oswajhuje: resolution: {integrity: sha512-bpwOjBfkSAs/knuRAJX+bpM0B6lWPol8AYbh9emgG+AP6rM+OU6BgpzRtkLruIiBUDV87bO5RSXgGkodUqNgVQ==} dependencies: '@nrwl/devkit': 14.1.9_nx@14.1.9 - '@nrwl/jest': 14.1.9_u3hct3etyflpkcge2zchqdoyky - '@nrwl/linter': 14.1.9_mcb7kdupvpri4hml77ajot75xa - '@nrwl/workspace': 14.1.9_zixgkd2vx5stlf4zg66gkt4try + '@nrwl/jest': 14.1.9_falpuauwk5pyt73ej4r4s4leo4 + '@nrwl/linter': 14.1.9_d23e6vdtqo5ecjkg7oswajhuje + '@nrwl/workspace': 14.1.9_w527hawdj3oyr6eaa7a2qhg2iu '@parcel/watcher': 2.0.4 chalk: 4.1.0 fast-glob: 3.2.7 @@ -2644,7 +2812,7 @@ packages: - utf-8-validate dev: true - /@nrwl/linter/14.1.5_3v2ebd2nutniahsor7utfr4aye: + /@nrwl/linter/14.1.5_d23e6vdtqo5ecjkg7oswajhuje: resolution: {integrity: sha512-Yk+rK8dqDYO+ls3yBLnuy6okYA/44VwUR5KwliTO5FKiAmr1VUXRS9+78EHquQr1RAgxLkS7JxIerwBKGhl2hQ==} peerDependencies: eslint: ^8.0.0 @@ -2652,9 +2820,9 @@ packages: eslint: optional: true dependencies: - '@nrwl/devkit': 14.1.5_nx@14.1.5 - '@nrwl/jest': 14.1.5_nx@14.1.5+ts-node@9.1.1 - '@phenomnomnominal/tsquery': 4.1.1_typescript@4.6.4 + '@nrwl/devkit': 14.1.5_nx@14.1.9 + '@nrwl/jest': 14.1.5_nx@14.1.9+ts-node@9.1.1 + '@phenomnomnominal/tsquery': 4.1.1_typescript@4.7.3 eslint: 8.12.0 tmp: 0.2.1 tslib: 2.4.0 @@ -2669,7 +2837,7 @@ packages: - utf-8-validate dev: true - /@nrwl/linter/14.1.5_mcb7kdupvpri4hml77ajot75xa: + /@nrwl/linter/14.1.5_o5tbwu3uwmllo6ixh3gx5loauy: resolution: {integrity: sha512-Yk+rK8dqDYO+ls3yBLnuy6okYA/44VwUR5KwliTO5FKiAmr1VUXRS9+78EHquQr1RAgxLkS7JxIerwBKGhl2hQ==} peerDependencies: eslint: ^8.0.0 @@ -2677,9 +2845,9 @@ packages: eslint: optional: true dependencies: - '@nrwl/devkit': 14.1.5_nx@14.1.9 - '@nrwl/jest': 14.1.5_nx@14.1.9+ts-node@9.1.1 - '@phenomnomnominal/tsquery': 4.1.1_typescript@4.6.4 + '@nrwl/devkit': 14.1.5_nx@14.1.5 + '@nrwl/jest': 14.1.5_nx@14.1.5+ts-node@9.1.1 + '@phenomnomnominal/tsquery': 4.1.1_typescript@4.7.3 eslint: 8.12.0 tmp: 0.2.1 tslib: 2.4.0 @@ -2694,7 +2862,7 @@ packages: - utf-8-validate dev: true - /@nrwl/linter/14.1.9_mcb7kdupvpri4hml77ajot75xa: + /@nrwl/linter/14.1.9_d23e6vdtqo5ecjkg7oswajhuje: resolution: {integrity: sha512-QgXTNWl1xzbEJuGbcOPJcvp58Tycd3yWTA1JnrAc3ZdOsouL0EphP5n1+JCePzR7mVo+kmfNhYbJhvpc8c4WEQ==} peerDependencies: eslint: ^8.0.0 @@ -2703,8 +2871,8 @@ packages: optional: true dependencies: '@nrwl/devkit': 14.1.9_nx@14.1.9 - '@nrwl/jest': 14.1.9_u3hct3etyflpkcge2zchqdoyky - '@phenomnomnominal/tsquery': 4.1.1_typescript@4.6.4 + '@nrwl/jest': 14.1.9_falpuauwk5pyt73ej4r4s4leo4 + '@phenomnomnominal/tsquery': 4.1.1_typescript@4.7.3 eslint: 8.12.0 tmp: 0.2.1 tslib: 2.4.0 @@ -2718,26 +2886,26 @@ packages: - typescript - utf-8-validate - /@nrwl/tao/14.1.5_typescript@4.6.4: + /@nrwl/tao/14.1.5_typescript@4.7.3: resolution: {integrity: sha512-C30aBxnAJ/0r5uBl8hQKsfllGb+jtMl9sLKStHwP4WEpIO9A8NelL/bGXEKXUiTQ8zFOZmCeHMo0VPfb/xePEg==} hasBin: true dependencies: - nx: 14.1.5_typescript@4.6.4 + nx: 14.1.5_typescript@4.7.3 transitivePeerDependencies: - supports-color - typescript dev: true - /@nrwl/tao/14.1.9_typescript@4.6.4: + /@nrwl/tao/14.1.9_typescript@4.7.3: resolution: {integrity: sha512-XUmnYJIrLd2Lui94LsVbXteFhWpNHTjIDDlt/krysEJD8lqE8uoD44uvjKaqIMZXTH8AOH1M4leWraqBSVU0ig==} hasBin: true dependencies: - nx: 14.1.9_typescript@4.6.4 + nx: 14.1.9_typescript@4.7.3 transitivePeerDependencies: - supports-color - typescript - /@nrwl/workspace/14.1.5_zixgkd2vx5stlf4zg66gkt4try: + /@nrwl/workspace/14.1.5_w527hawdj3oyr6eaa7a2qhg2iu: resolution: {integrity: sha512-TRv2p6aE4YxURyH3e4Eg0aXGm8opOp4WJbkJnCbAEoNWyfhTJOuDiUUqRUbkMH0MWQU9n7e8n3mPDEOz8lJCww==} peerDependencies: prettier: ^2.5.1 @@ -2747,7 +2915,7 @@ packages: dependencies: '@nrwl/devkit': 14.1.5_nx@14.1.5 '@nrwl/jest': 14.1.5_nx@14.1.5+ts-node@9.1.1 - '@nrwl/linter': 14.1.5_3v2ebd2nutniahsor7utfr4aye + '@nrwl/linter': 14.1.5_o5tbwu3uwmllo6ixh3gx5loauy '@parcel/watcher': 2.0.4 chalk: 4.1.0 chokidar: 3.5.3 @@ -2762,7 +2930,7 @@ packages: ignore: 5.2.0 minimatch: 3.0.4 npm-run-path: 4.0.1 - nx: 14.1.5_typescript@4.6.4 + nx: 14.1.5_typescript@4.7.3 open: 8.4.0 rxjs: 6.6.7 semver: 7.3.4 @@ -2781,7 +2949,7 @@ packages: - utf-8-validate dev: true - /@nrwl/workspace/14.1.9_zixgkd2vx5stlf4zg66gkt4try: + /@nrwl/workspace/14.1.9_w527hawdj3oyr6eaa7a2qhg2iu: resolution: {integrity: sha512-zb7/EgT0P7UN8EDrxd9+5yR2RfPvBDGwtuoa9Sl4FO3jnNr5o+qBf33408BtchigN4y885+9S9SoXq9mSfzhDg==} peerDependencies: prettier: ^2.5.1 @@ -2790,8 +2958,8 @@ packages: optional: true dependencies: '@nrwl/devkit': 14.1.9_nx@14.1.9 - '@nrwl/jest': 14.1.9_u3hct3etyflpkcge2zchqdoyky - '@nrwl/linter': 14.1.9_mcb7kdupvpri4hml77ajot75xa + '@nrwl/jest': 14.1.9_falpuauwk5pyt73ej4r4s4leo4 + '@nrwl/linter': 14.1.9_d23e6vdtqo5ecjkg7oswajhuje '@parcel/watcher': 2.0.4 chalk: 4.1.0 chokidar: 3.5.3 @@ -2806,7 +2974,7 @@ packages: ignore: 5.2.0 minimatch: 3.0.4 npm-run-path: 4.0.1 - nx: 14.1.9_typescript@4.6.4 + nx: 14.1.9_typescript@4.7.3 open: 8.4.0 rxjs: 6.6.7 semver: 7.3.4 @@ -2832,13 +3000,13 @@ packages: node-addon-api: 3.2.1 node-gyp-build: 4.4.0 - /@phenomnomnominal/tsquery/4.1.1_typescript@4.6.4: + /@phenomnomnominal/tsquery/4.1.1_typescript@4.7.3: resolution: {integrity: sha512-jjMmK1tnZbm1Jq5a7fBliM4gQwjxMU7TFoRNwIyzwlO+eHPRCFv/Nv+H/Gi1jc3WR7QURG8D5d0Tn12YGrUqBQ==} peerDependencies: typescript: ^3 || ^4 dependencies: esquery: 1.4.0 - typescript: 4.6.4 + typescript: 4.7.3 /@pmmmwh/react-refresh-webpack-plugin/0.5.7_aumhct55s6lhceplyc622fxoum: resolution: {integrity: sha512-bcKCAzF0DV2IIROp9ZHkRJa6O4jy7NlnHdWL3GmcUxYWNjLXkK5kfELELwEfSP5hXPfVL/qOGMAROuMQb9GG8Q==} @@ -2999,7 +3167,7 @@ packages: util-deprecate: 1.0.2 dev: true - /@storybook/addon-controls/6.5.6_22fp3udwupnbvrirenjxdrtvni: + /@storybook/addon-controls/6.5.6_skh5kpl5bzwjy4fkl4cxbpxbiu: resolution: {integrity: sha512-pJz2ltdL8d9/2wX1XOMdXeGwMNoBX5hIXkNfBCvBfOCmeVEXOczPOZARvwx4QTqmMSu1KikhFIGT64wwoETmBg==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -3014,7 +3182,7 @@ packages: '@storybook/api': 6.5.6_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/client-logger': 6.5.6 '@storybook/components': 6.5.6_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/core-common': 6.5.6_22fp3udwupnbvrirenjxdrtvni + '@storybook/core-common': 6.5.6_skh5kpl5bzwjy4fkl4cxbpxbiu '@storybook/csf': 0.0.2--canary.4566f4d.1 '@storybook/node-logger': 6.5.6 '@storybook/store': 6.5.6_ef5jwxihqo6n7gxfmzogljlgcm @@ -3033,7 +3201,7 @@ packages: - webpack-command dev: true - /@storybook/addon-docs/6.5.6_etccdq7rsg7ihjm4kr5o6pcy3y: + /@storybook/addon-docs/6.5.6_ptlutfo7dafjxeh4chvtjnspb4: resolution: {integrity: sha512-18MOB4Cvr10ibRlA58Y2MqaC0EM9NG758iSjweThaU4kZtSBSDn8R2qBLDGQPwEFkww+4+oAFXxR5/J0qO2xEw==} peerDependencies: '@storybook/mdx2-csf': ^0.0.3 @@ -3054,7 +3222,7 @@ packages: '@storybook/addons': 6.5.6_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/api': 6.5.6_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/components': 6.5.6_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/core-common': 6.5.6_22fp3udwupnbvrirenjxdrtvni + '@storybook/core-common': 6.5.6_skh5kpl5bzwjy4fkl4cxbpxbiu '@storybook/core-events': 6.5.6 '@storybook/csf': 0.0.2--canary.4566f4d.1 '@storybook/docs-tools': 6.5.6_ef5jwxihqo6n7gxfmzogljlgcm @@ -3088,7 +3256,7 @@ packages: - webpack-command dev: true - /@storybook/addon-essentials/6.5.6_etccdq7rsg7ihjm4kr5o6pcy3y: + /@storybook/addon-essentials/6.5.6_ptlutfo7dafjxeh4chvtjnspb4: resolution: {integrity: sha512-n+kDN/AI6NDJNJjofYXjGBh618Yg17DuRppFdXROnocwndKufuImF+/tRaQ0YLwXmnULpAiFSGbja6F0pc7fOw==} peerDependencies: '@babel/core': ^7.9.6 @@ -3148,15 +3316,15 @@ packages: '@babel/core': 7.18.2 '@storybook/addon-actions': 6.5.6_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/addon-backgrounds': 6.5.6_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/addon-controls': 6.5.6_22fp3udwupnbvrirenjxdrtvni - '@storybook/addon-docs': 6.5.6_etccdq7rsg7ihjm4kr5o6pcy3y + '@storybook/addon-controls': 6.5.6_skh5kpl5bzwjy4fkl4cxbpxbiu + '@storybook/addon-docs': 6.5.6_ptlutfo7dafjxeh4chvtjnspb4 '@storybook/addon-measure': 6.5.6_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/addon-outline': 6.5.6_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/addon-toolbars': 6.5.6_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/addon-viewport': 6.5.6_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/addons': 6.5.6_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/api': 6.5.6_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/core-common': 6.5.6_22fp3udwupnbvrirenjxdrtvni + '@storybook/core-common': 6.5.6_skh5kpl5bzwjy4fkl4cxbpxbiu '@storybook/node-logger': 6.5.6 core-js: 3.22.8 react: 18.1.0 @@ -3344,7 +3512,37 @@ packages: util-deprecate: 1.0.2 dev: true - /@storybook/builder-webpack4/6.5.6_22fp3udwupnbvrirenjxdrtvni: + /@storybook/builder-vite/0.1.36_i2zgygkw4werwuj4w6bczo4nii: + resolution: {integrity: sha512-08g3NfPDAlBFIR0Axo30cgT0RT7NLICel4FVJBlJZKvxwA6Go1wi3IoO93DPJsVjAAQTfxoBiQ6/gkDBlhZE5w==} + peerDependencies: + '@storybook/core-common': '>=6.4.3 || >=6.5.0-alpha.0' + '@storybook/node-logger': '>=6.4.3 || >=6.5.0-alpha.0' + vite: '>=2.6.7' + dependencies: + '@joshwooding/vite-plugin-react-docgen-typescript': 0.0.4_w2ia2u24h3y5wbn5vvjywyz3ga + '@mdx-js/mdx': 1.6.22 + '@storybook/csf-tools': 6.5.6 + '@storybook/source-loader': 6.5.6_ef5jwxihqo6n7gxfmzogljlgcm + '@vitejs/plugin-react': 1.3.2 + ast-types: 0.14.2 + es-module-lexer: 0.9.3 + glob: 7.2.3 + glob-promise: 4.2.2_glob@7.2.3 + magic-string: 0.26.2 + react-docgen: 6.0.0-alpha.2 + slash: 3.0.0 + sveltedoc-parser: 4.2.1 + vite: 2.9.9 + vite-plugin-mdx: 3.5.10_f34f3gtijkpgkfxkddkqpkzmfq + transitivePeerDependencies: + - '@storybook/mdx2-csf' + - react + - react-dom + - supports-color + - typescript + dev: true + + /@storybook/builder-webpack4/6.5.6_skh5kpl5bzwjy4fkl4cxbpxbiu: resolution: {integrity: sha512-/nACQ5SoddCs1geGUKXrrXiYDvYdTVXWXc0L6mXawjYANBeWIkAKFlhRpoXGN/KiFuuExO2+UgNCKlUyD0a51Q==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -3362,7 +3560,7 @@ packages: '@storybook/client-api': 6.5.6_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/client-logger': 6.5.6 '@storybook/components': 6.5.6_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/core-common': 6.5.6_22fp3udwupnbvrirenjxdrtvni + '@storybook/core-common': 6.5.6_skh5kpl5bzwjy4fkl4cxbpxbiu '@storybook/core-events': 6.5.6 '@storybook/node-logger': 6.5.6 '@storybook/preview-web': 6.5.6_ef5jwxihqo6n7gxfmzogljlgcm @@ -3380,12 +3578,12 @@ packages: css-loader: 3.6.0_webpack@4.46.0 file-loader: 6.2.0_webpack@4.46.0 find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 4.1.6_64ksehz7gganjtk3d3fc3nseae + fork-ts-checker-webpack-plugin: 4.1.6_iinatuf4d5qkasqikzik6m7obu glob: 7.2.3 glob-promise: 3.4.0_glob@7.2.3 global: 4.4.0 html-webpack-plugin: 4.5.2_webpack@4.46.0 - pnp-webpack-plugin: 1.6.4_typescript@4.6.4 + pnp-webpack-plugin: 1.6.4_typescript@4.7.3 postcss: 7.0.39 postcss-flexbugs-fixes: 4.2.1 postcss-loader: 4.3.0_gzaxsinx64nntyd3vmdqwl7coe @@ -3396,7 +3594,7 @@ packages: style-loader: 1.3.0_webpack@4.46.0 terser-webpack-plugin: 4.2.3_webpack@4.46.0 ts-dedent: 2.2.0 - typescript: 4.6.4 + typescript: 4.7.3 url-loader: 4.1.1_lit45vopotvaqup7lrvlnvtxwy util-deprecate: 1.0.2 webpack: 4.46.0 @@ -3499,7 +3697,7 @@ packages: util-deprecate: 1.0.2 dev: true - /@storybook/core-client/6.5.6_vjwcdjge4qnjbh6jsdi5wgjg6y: + /@storybook/core-client/6.5.6_7uc6nxoo2a76yj4ajiwz6zkemm: resolution: {integrity: sha512-Xmjt95GYYVRp7ra49Y955BLH/FYlOmuLC4aFTGurjmCay7zUqvExxFk9AUKOkyBb1/S/8iQCG59D0ES6YWoMRw==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -3530,13 +3728,13 @@ packages: react-dom: 18.1.0_react@18.1.0 regenerator-runtime: 0.13.9 ts-dedent: 2.2.0 - typescript: 4.6.4 + typescript: 4.7.3 unfetch: 4.2.0 util-deprecate: 1.0.2 webpack: 5.73.0 dev: true - /@storybook/core-client/6.5.6_wkltl2tqxbfcmxjycns2ely3qm: + /@storybook/core-client/6.5.6_ep5i7rh3xck6dvekot5qk64pi4: resolution: {integrity: sha512-Xmjt95GYYVRp7ra49Y955BLH/FYlOmuLC4aFTGurjmCay7zUqvExxFk9AUKOkyBb1/S/8iQCG59D0ES6YWoMRw==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -3567,13 +3765,13 @@ packages: react-dom: 18.1.0_react@18.1.0 regenerator-runtime: 0.13.9 ts-dedent: 2.2.0 - typescript: 4.6.4 + typescript: 4.7.3 unfetch: 4.2.0 util-deprecate: 1.0.2 webpack: 4.46.0 dev: true - /@storybook/core-common/6.5.6_22fp3udwupnbvrirenjxdrtvni: + /@storybook/core-common/6.5.6_skh5kpl5bzwjy4fkl4cxbpxbiu: resolution: {integrity: sha512-+k+D9CzyFHNAy59jt2sfKnb/KU/nXO1hvBVaJAhdocjrDMvHtwYuXWWQrWYX3/VGp9wCa9TC0JG1kz+DWSYXaQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -3617,7 +3815,7 @@ packages: express: 4.18.1 file-system-cache: 1.1.0 find-up: 5.0.0 - fork-ts-checker-webpack-plugin: 6.5.2_64ksehz7gganjtk3d3fc3nseae + fork-ts-checker-webpack-plugin: 6.5.2_iinatuf4d5qkasqikzik6m7obu fs-extra: 9.1.0 glob: 7.2.3 handlebars: 4.7.7 @@ -3633,7 +3831,7 @@ packages: slash: 3.0.0 telejson: 6.0.8 ts-dedent: 2.2.0 - typescript: 4.6.4 + typescript: 4.7.3 util-deprecate: 1.0.2 webpack: 4.46.0 transitivePeerDependencies: @@ -3650,7 +3848,7 @@ packages: core-js: 3.22.8 dev: true - /@storybook/core-server/6.5.6_22fp3udwupnbvrirenjxdrtvni: + /@storybook/core-server/6.5.6_skh5kpl5bzwjy4fkl4cxbpxbiu: resolution: {integrity: sha512-65kwbSXsKPl/0BKjGr9RTihv6jYGGIG/prfLscZPtm3u4/Z8ZxCX94rznztxcUatjLlUfKJ8iimizhUOIa0FJA==} peerDependencies: '@storybook/builder-webpack5': '*' @@ -3667,17 +3865,17 @@ packages: optional: true dependencies: '@discoveryjs/json-ext': 0.5.7 - '@storybook/builder-webpack4': 6.5.6_22fp3udwupnbvrirenjxdrtvni - '@storybook/core-client': 6.5.6_wkltl2tqxbfcmxjycns2ely3qm - '@storybook/core-common': 6.5.6_22fp3udwupnbvrirenjxdrtvni + '@storybook/builder-webpack4': 6.5.6_skh5kpl5bzwjy4fkl4cxbpxbiu + '@storybook/core-client': 6.5.6_ep5i7rh3xck6dvekot5qk64pi4 + '@storybook/core-common': 6.5.6_skh5kpl5bzwjy4fkl4cxbpxbiu '@storybook/core-events': 6.5.6 '@storybook/csf': 0.0.2--canary.4566f4d.1 '@storybook/csf-tools': 6.5.6 - '@storybook/manager-webpack4': 6.5.6_22fp3udwupnbvrirenjxdrtvni + '@storybook/manager-webpack4': 6.5.6_skh5kpl5bzwjy4fkl4cxbpxbiu '@storybook/node-logger': 6.5.6 '@storybook/semver': 7.3.2 '@storybook/store': 6.5.6_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/telemetry': 6.5.6_22fp3udwupnbvrirenjxdrtvni + '@storybook/telemetry': 6.5.6_skh5kpl5bzwjy4fkl4cxbpxbiu '@types/node': 16.11.38 '@types/node-fetch': 2.6.1 '@types/pretty-hrtime': 1.0.1 @@ -3708,7 +3906,7 @@ packages: slash: 3.0.0 telejson: 6.0.8 ts-dedent: 2.2.0 - typescript: 4.6.4 + typescript: 4.7.3 util-deprecate: 1.0.2 watchpack: 2.4.0 webpack: 4.46.0 @@ -3727,7 +3925,7 @@ packages: - webpack-command dev: true - /@storybook/core/6.5.6_q7egwwkjy52nhmy3y62gh44iwa: + /@storybook/core/6.5.6_2vfrysgq2owohx5f75gi5dvsri: resolution: {integrity: sha512-DS6Q8SrEXBDoDS2K865NoWggSXEg8L9p+jx8sILLkLrr2QXJT0x6YIFSwEh6rGwkahxDV5ikON/rW39Wlxzk1w==} peerDependencies: '@storybook/builder-webpack5': '*' @@ -3744,11 +3942,11 @@ packages: typescript: optional: true dependencies: - '@storybook/core-client': 6.5.6_vjwcdjge4qnjbh6jsdi5wgjg6y - '@storybook/core-server': 6.5.6_22fp3udwupnbvrirenjxdrtvni + '@storybook/core-client': 6.5.6_7uc6nxoo2a76yj4ajiwz6zkemm + '@storybook/core-server': 6.5.6_skh5kpl5bzwjy4fkl4cxbpxbiu react: 18.1.0 react-dom: 18.1.0_react@18.1.0 - typescript: 4.6.4 + typescript: 4.7.3 webpack: 5.73.0 transitivePeerDependencies: - '@storybook/mdx2-csf' @@ -3817,7 +4015,7 @@ packages: - supports-color dev: true - /@storybook/manager-webpack4/6.5.6_22fp3udwupnbvrirenjxdrtvni: + /@storybook/manager-webpack4/6.5.6_skh5kpl5bzwjy4fkl4cxbpxbiu: resolution: {integrity: sha512-GaUT1bNmGebq8Ci52M07XF0Zn9Ak7L8ZaKn8rdBJ4VSPhg0vEAeo7trD3aur3+h/3gLQmK64LhiNSOfvZfQDAw==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -3831,8 +4029,8 @@ packages: '@babel/plugin-transform-template-literals': 7.18.2_@babel+core@7.18.2 '@babel/preset-react': 7.17.12_@babel+core@7.18.2 '@storybook/addons': 6.5.6_ef5jwxihqo6n7gxfmzogljlgcm - '@storybook/core-client': 6.5.6_wkltl2tqxbfcmxjycns2ely3qm - '@storybook/core-common': 6.5.6_22fp3udwupnbvrirenjxdrtvni + '@storybook/core-client': 6.5.6_ep5i7rh3xck6dvekot5qk64pi4 + '@storybook/core-common': 6.5.6_skh5kpl5bzwjy4fkl4cxbpxbiu '@storybook/node-logger': 6.5.6 '@storybook/theming': 6.5.6_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/ui': 6.5.6_ef5jwxihqo6n7gxfmzogljlgcm @@ -3849,7 +4047,7 @@ packages: fs-extra: 9.1.0 html-webpack-plugin: 4.5.2_webpack@4.46.0 node-fetch: 2.6.7 - pnp-webpack-plugin: 1.6.4_typescript@4.6.4 + pnp-webpack-plugin: 1.6.4_typescript@4.7.3 react: 18.1.0 react-dom: 18.1.0_react@18.1.0 read-pkg-up: 7.0.1 @@ -3859,7 +4057,7 @@ packages: telejson: 6.0.8 terser-webpack-plugin: 4.2.3_webpack@4.46.0 ts-dedent: 2.2.0 - typescript: 4.6.4 + typescript: 4.7.3 url-loader: 4.1.1_lit45vopotvaqup7lrvlnvtxwy util-deprecate: 1.0.2 webpack: 4.46.0 @@ -3936,7 +4134,7 @@ packages: util-deprecate: 1.0.2 dev: true - /@storybook/react-docgen-typescript-plugin/1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0_dydffymiyrgjbmyedhp7lreziy: + /@storybook/react-docgen-typescript-plugin/1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0_jy5w4alwxi2du2dgjfsq7k3iza: resolution: {integrity: sha512-eVg3BxlOm2P+chijHBTByr90IZVUtgRW56qEOLX7xlww2NBuKrcavBlcmn+HH7GIUktquWkMPtvy6e0W0NgA5w==} peerDependencies: typescript: '>= 3.x' @@ -3947,15 +4145,15 @@ packages: find-cache-dir: 3.3.2 flat-cache: 3.0.4 micromatch: 4.0.5 - react-docgen-typescript: 2.2.2_typescript@4.6.4 + react-docgen-typescript: 2.2.2_typescript@4.7.3 tslib: 2.4.0 - typescript: 4.6.4 + typescript: 4.7.3 webpack: 5.73.0 transitivePeerDependencies: - supports-color dev: true - /@storybook/react/6.5.6_etccdq7rsg7ihjm4kr5o6pcy3y: + /@storybook/react/6.5.6_ptlutfo7dafjxeh4chvtjnspb4: resolution: {integrity: sha512-lU2ggvZe9PbKWK4cbwHI6eDT7tlRAqdx489kLrfKhGTUVE8zhc/uosVEMpxbxS/zf1YYnXumr2DH1Uw2S3JeqA==} engines: {node: '>=10.13.0'} hasBin: true @@ -3989,12 +4187,12 @@ packages: '@pmmmwh/react-refresh-webpack-plugin': 0.5.7_aumhct55s6lhceplyc622fxoum '@storybook/addons': 6.5.6_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/client-logger': 6.5.6 - '@storybook/core': 6.5.6_q7egwwkjy52nhmy3y62gh44iwa - '@storybook/core-common': 6.5.6_22fp3udwupnbvrirenjxdrtvni + '@storybook/core': 6.5.6_2vfrysgq2owohx5f75gi5dvsri + '@storybook/core-common': 6.5.6_skh5kpl5bzwjy4fkl4cxbpxbiu '@storybook/csf': 0.0.2--canary.4566f4d.1 '@storybook/docs-tools': 6.5.6_ef5jwxihqo6n7gxfmzogljlgcm '@storybook/node-logger': 6.5.6 - '@storybook/react-docgen-typescript-plugin': 1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0_dydffymiyrgjbmyedhp7lreziy + '@storybook/react-docgen-typescript-plugin': 1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0_jy5w4alwxi2du2dgjfsq7k3iza '@storybook/semver': 7.3.2 '@storybook/store': 6.5.6_ef5jwxihqo6n7gxfmzogljlgcm '@types/estree': 0.0.51 @@ -4019,7 +4217,7 @@ packages: read-pkg-up: 7.0.1 regenerator-runtime: 0.13.9 ts-dedent: 2.2.0 - typescript: 4.6.4 + typescript: 4.7.3 util-deprecate: 1.0.2 webpack: 5.73.0 transitivePeerDependencies: @@ -4111,11 +4309,11 @@ packages: util-deprecate: 1.0.2 dev: true - /@storybook/telemetry/6.5.6_22fp3udwupnbvrirenjxdrtvni: + /@storybook/telemetry/6.5.6_skh5kpl5bzwjy4fkl4cxbpxbiu: resolution: {integrity: sha512-l0vbStCgVA9u0ITvowZ1LNxmf32vAAdnPqSmB9DdA3ZO2wCpttW9rPyg1O4OV8c5uq7QJZ7mrKZ04p9SLo8wrw==} dependencies: '@storybook/client-logger': 6.5.6 - '@storybook/core-common': 6.5.6_22fp3udwupnbvrirenjxdrtvni + '@storybook/core-common': 6.5.6_skh5kpl5bzwjy4fkl4cxbpxbiu chalk: 4.1.2 core-js: 3.22.8 detect-package-manager: 2.0.1 @@ -4149,7 +4347,7 @@ packages: react: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: '@storybook/csf': 0.0.2--canary.87bc651.0 - '@storybook/react': 6.5.6_etccdq7rsg7ihjm4kr5o6pcy3y + '@storybook/react': 6.5.6_ptlutfo7dafjxeh4chvtjnspb4 react: 18.1.0 dev: true @@ -4194,7 +4392,7 @@ packages: dependencies: '@swc/core': 1.2.196 - /@swc-node/register/1.5.1_typescript@4.6.4: + /@swc-node/register/1.5.1_typescript@4.7.3: resolution: {integrity: sha512-6IL5s4QShKGs08qAeNou3rDA3gbp2WHk6fo0XnJXQn/aC9k6FnVBbj/thGOIEDtgNhC/DKpZT8tCY1LpQnOZFg==} peerDependencies: typescript: '>= 4.3' @@ -4205,7 +4403,7 @@ packages: debug: 4.3.4 pirates: 4.0.5 tslib: 2.4.0 - typescript: 4.6.4 + typescript: 4.7.3 transitivePeerDependencies: - supports-color @@ -4342,7 +4540,7 @@ packages: engines: {node: '>=12'} dependencies: '@babel/code-frame': 7.16.7 - '@babel/runtime': 7.17.9 + '@babel/runtime': 7.18.3 '@types/aria-query': 4.2.2 aria-query: 5.0.0 chalk: 4.1.2 @@ -4355,7 +4553,7 @@ packages: resolution: {integrity: sha512-Gy+IoFutbMQcky0k+bqqumXZ1cTGswLsFqmNLzNdSKkU9KGV2u9oXhukCbbJ9/LRPKiqwxEE8VpV/+YZlfkPUA==} engines: {node: '>=8', npm: '>=6', yarn: '>=1'} dependencies: - '@babel/runtime': 7.17.9 + '@babel/runtime': 7.18.3 '@types/testing-library__jest-dom': 5.14.3 aria-query: 5.0.0 chalk: 3.0.0 @@ -4373,7 +4571,7 @@ packages: react: ^18.0.0 react-dom: ^18.0.0 dependencies: - '@babel/runtime': 7.17.9 + '@babel/runtime': 7.18.3 '@testing-library/dom': 8.13.0 '@types/react-dom': 18.0.5 react: 18.1.0 @@ -4589,7 +4787,7 @@ packages: /@types/react-blockies/1.4.1: resolution: {integrity: sha512-aDX0g0hwzdodkGLSDNUQr6gXxwclGjnhS8jhsR8uQhAfe/7i3GZD/NDcSlQ2SiQiLhfRxX3NlY+nvBwf5Y0tTg==} dependencies: - '@types/react': 18.0.10 + '@types/react': 18.0.9 dev: true /@types/react-dom/18.0.5: @@ -4612,6 +4810,14 @@ packages: csstype: 3.1.0 dev: true + /@types/react/18.0.9: + resolution: {integrity: sha512-9bjbg1hJHUm4De19L1cHiW0Jvx3geel6Qczhjd0qY5VKVE2X5+x77YxAepuCwVh4vrgZJdgEJw48zrhRIeF4Nw==} + dependencies: + '@types/prop-types': 15.7.5 + '@types/scheduler': 0.16.2 + csstype: 3.0.11 + dev: true + /@types/scheduler/0.16.2: resolution: {integrity: sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==} dev: true @@ -4700,7 +4906,7 @@ packages: '@types/yargs-parser': 21.0.0 dev: true - /@typescript-eslint/eslint-plugin/5.18.0_qop66kdz473gtxyqakjhziybiy: + /@typescript-eslint/eslint-plugin/5.18.0_jmjjotaglh7vhkxrv3g4ow6eyi: resolution: {integrity: sha512-tzrmdGMJI/uii9/V6lurMo4/o+dMTKDH82LkNjhJ3adCW22YQydoRs5MwTiqxGF9CSYxPxQ7EYb4jLNlIs+E+A==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -4711,36 +4917,36 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/parser': 5.18.0_uhoeudlwl7kc47h4kncsfowede + '@typescript-eslint/parser': 5.18.0_x66lnsojg54lmfpjeg6pogs53i '@typescript-eslint/scope-manager': 5.18.0 - '@typescript-eslint/type-utils': 5.18.0_uhoeudlwl7kc47h4kncsfowede - '@typescript-eslint/utils': 5.18.0_uhoeudlwl7kc47h4kncsfowede + '@typescript-eslint/type-utils': 5.18.0_x66lnsojg54lmfpjeg6pogs53i + '@typescript-eslint/utils': 5.18.0_x66lnsojg54lmfpjeg6pogs53i debug: 4.3.4 eslint: 8.12.0 functional-red-black-tree: 1.0.1 ignore: 5.2.0 regexpp: 3.2.0 semver: 7.3.7 - tsutils: 3.21.0_typescript@4.6.4 - typescript: 4.6.4 + tsutils: 3.21.0_typescript@4.7.3 + typescript: 4.7.3 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/experimental-utils/5.18.0_uhoeudlwl7kc47h4kncsfowede: + /@typescript-eslint/experimental-utils/5.18.0_x66lnsojg54lmfpjeg6pogs53i: resolution: {integrity: sha512-hypiw5N0aM2aH91/uMmG7RpyUH3PN/iOhilMwkMFZIbm/Bn/G3ZnbaYdSoAN4PG/XHQjdhBYLi0ZoRZsRYT4hA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: - '@typescript-eslint/utils': 5.18.0_uhoeudlwl7kc47h4kncsfowede + '@typescript-eslint/utils': 5.18.0_x66lnsojg54lmfpjeg6pogs53i eslint: 8.12.0 transitivePeerDependencies: - supports-color - typescript dev: true - /@typescript-eslint/parser/5.18.0_uhoeudlwl7kc47h4kncsfowede: + /@typescript-eslint/parser/5.18.0_x66lnsojg54lmfpjeg6pogs53i: resolution: {integrity: sha512-+08nYfurBzSSPndngnHvFw/fniWYJ5ymOrn/63oMIbgomVQOvIDhBoJmYZ9lwQOCnQV9xHGvf88ze3jFGUYooQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -4752,10 +4958,10 @@ packages: dependencies: '@typescript-eslint/scope-manager': 5.18.0 '@typescript-eslint/types': 5.18.0 - '@typescript-eslint/typescript-estree': 5.18.0_typescript@4.6.4 + '@typescript-eslint/typescript-estree': 5.18.0_typescript@4.7.3 debug: 4.3.4 eslint: 8.12.0 - typescript: 4.6.4 + typescript: 4.7.3 transitivePeerDependencies: - supports-color dev: true @@ -4768,7 +4974,7 @@ packages: '@typescript-eslint/visitor-keys': 5.18.0 dev: true - /@typescript-eslint/type-utils/5.18.0_uhoeudlwl7kc47h4kncsfowede: + /@typescript-eslint/type-utils/5.18.0_x66lnsojg54lmfpjeg6pogs53i: resolution: {integrity: sha512-vcn9/6J5D6jtHxpEJrgK8FhaM8r6J1/ZiNu70ZUJN554Y3D9t3iovi6u7JF8l/e7FcBIxeuTEidZDR70UuCIfA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -4778,11 +4984,11 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/utils': 5.18.0_uhoeudlwl7kc47h4kncsfowede + '@typescript-eslint/utils': 5.18.0_x66lnsojg54lmfpjeg6pogs53i debug: 4.3.4 eslint: 8.12.0 - tsutils: 3.21.0_typescript@4.6.4 - typescript: 4.6.4 + tsutils: 3.21.0_typescript@4.7.3 + typescript: 4.7.3 transitivePeerDependencies: - supports-color dev: true @@ -4792,7 +4998,7 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /@typescript-eslint/typescript-estree/5.18.0_typescript@4.6.4: + /@typescript-eslint/typescript-estree/5.18.0_typescript@4.7.3: resolution: {integrity: sha512-wa+2VAhOPpZs1bVij9e5gyVu60ReMi/KuOx4LKjGx2Y3XTNUDJgQ+5f77D49pHtqef/klglf+mibuHs9TrPxdQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -4807,13 +5013,13 @@ packages: globby: 11.1.0 is-glob: 4.0.3 semver: 7.3.7 - tsutils: 3.21.0_typescript@4.6.4 - typescript: 4.6.4 + tsutils: 3.21.0_typescript@4.7.3 + typescript: 4.7.3 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/utils/5.18.0_uhoeudlwl7kc47h4kncsfowede: + /@typescript-eslint/utils/5.18.0_x66lnsojg54lmfpjeg6pogs53i: resolution: {integrity: sha512-+hFGWUMMri7OFY26TsOlGa+zgjEy1ssEipxpLjtl4wSll8zy85x0GrUSju/FHdKfVorZPYJLkF3I4XPtnCTewA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -4822,7 +5028,7 @@ packages: '@types/json-schema': 7.0.11 '@typescript-eslint/scope-manager': 5.18.0 '@typescript-eslint/types': 5.18.0 - '@typescript-eslint/typescript-estree': 5.18.0_typescript@4.6.4 + '@typescript-eslint/typescript-estree': 5.18.0_typescript@4.7.3 eslint: 8.12.0 eslint-scope: 5.1.1 eslint-utils: 3.0.0_eslint@8.12.0 @@ -4932,8 +5138,8 @@ packages: keyvaluestorage-interface: 1.0.0 dev: false - /@walletconnect/jsonrpc-utils/1.0.1: - resolution: {integrity: sha512-Ptmcq5SsXlJDE4xuwiqpCGZddPxvneXwDfQL20Ut4TyuZZwR4ZhNFcUBu3FDHBbtDL5qojnmZ1GHqABLJchpBQ==} + /@walletconnect/jsonrpc-utils/1.0.0: + resolution: {integrity: sha512-qUHbKUK6sHeHn67qtHZoLoYk5hS6x1arTPjKDRkY93/6Fx+ZmNIpdm1owX3l6aYueyegJ7mz43FpvYHUqJ8xcw==} dependencies: '@walletconnect/environment': 1.0.0 '@walletconnect/jsonrpc-types': 1.0.0 @@ -4987,7 +5193,7 @@ packages: dependencies: '@walletconnect/browser-utils': 1.7.8 '@walletconnect/encoding': 1.0.1 - '@walletconnect/jsonrpc-utils': 1.0.1 + '@walletconnect/jsonrpc-utils': 1.0.0 '@walletconnect/types': 1.7.8 bn.js: 4.11.8 js-sha3: 0.8.0 @@ -5779,7 +5985,7 @@ packages: '@types/babel__core': 7.1.19 babel-plugin-istanbul: 6.1.1 babel-preset-jest: 27.5.1_@babel+core@7.18.2 - chalk: 4.1.2 + chalk: 4.1.0 graceful-fs: 4.2.10 slash: 3.0.0 transitivePeerDependencies: @@ -5893,7 +6099,7 @@ packages: resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==} engines: {node: '>=10', npm: '>=6'} dependencies: - '@babel/runtime': 7.17.9 + '@babel/runtime': 7.18.3 cosmiconfig: 7.0.1 resolve: 1.22.0 dev: true @@ -6117,6 +6323,7 @@ packages: /bindings/1.5.0: resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==} + requiresBuild: true dependencies: file-uri-to-path: 1.0.0 dev: true @@ -6370,7 +6577,7 @@ packages: dev: true /bytes/3.0.0: - resolution: {integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==} + resolution: {integrity: sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=} engines: {node: '>= 0.8'} dev: true @@ -7358,6 +7565,10 @@ packages: dependencies: cssom: 0.3.8 + /csstype/3.0.11: + resolution: {integrity: sha512-sa6P2wJ+CAbgyy4KFssIb/JNMLxFvKF1pCYCSXS8ZMuqZnMsrxqI2E5sPyoTpxoPU/gVZMzr2zjOfg8GIZOMsw==} + dev: true + /csstype/3.1.0: resolution: {integrity: sha512-uX1KG+x9h5hIJsaKR9xHUeUraxf8IODOwq9JLNPq6BwB04a/xgpq3rcx47l5BZu5zBPlgD342tdke3Hom/nJRA==} dev: true @@ -7679,6 +7890,13 @@ packages: dependencies: webidl-conversions: 5.0.0 + /domhandler/3.3.0: + resolution: {integrity: sha512-J1C5rIANUbuYK+FuFL98650rihynUOEzRLxW+90bKZRWB6A1X1Tf82GxR1qAWLyfNPRvjqfip3Q5tdYlmAa9lA==} + engines: {node: '>= 4'} + dependencies: + domelementtype: 2.3.0 + dev: true + /domhandler/4.3.1: resolution: {integrity: sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==} engines: {node: '>= 4'} @@ -8373,6 +8591,16 @@ packages: eslint: 8.12.0 eslint-visitor-keys: 2.1.0 + /eslint-utils/3.0.0_eslint@8.4.1: + resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} + engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} + peerDependencies: + eslint: '>=5' + dependencies: + eslint: 8.4.1 + eslint-visitor-keys: 2.1.0 + dev: true + /eslint-visitor-keys/2.1.0: resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==} engines: {node: '>=10'} @@ -8424,6 +8652,62 @@ packages: transitivePeerDependencies: - supports-color + /eslint/8.4.1: + resolution: {integrity: sha512-TxU/p7LB1KxQ6+7aztTnO7K0i+h0tDi81YRY9VzB6Id71kNz+fFYnf5HD5UOQmxkzcoa0TlVZf9dpMtUv0GpWg==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + hasBin: true + dependencies: + '@eslint/eslintrc': 1.3.0 + '@humanwhocodes/config-array': 0.9.5 + ajv: 6.12.6 + chalk: 4.1.2 + cross-spawn: 7.0.3 + debug: 4.3.4 + doctrine: 3.0.0 + enquirer: 2.3.6 + escape-string-regexp: 4.0.0 + eslint-scope: 7.1.1 + eslint-utils: 3.0.0_eslint@8.4.1 + eslint-visitor-keys: 3.3.0 + espree: 9.2.0 + esquery: 1.4.0 + esutils: 2.0.3 + fast-deep-equal: 3.1.3 + file-entry-cache: 6.0.1 + functional-red-black-tree: 1.0.1 + glob-parent: 6.0.2 + globals: 13.15.0 + ignore: 4.0.6 + import-fresh: 3.3.0 + imurmurhash: 0.1.4 + is-glob: 4.0.3 + 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 + progress: 2.0.3 + regexpp: 3.2.0 + semver: 7.3.7 + strip-ansi: 6.0.1 + strip-json-comments: 3.1.1 + text-table: 0.2.0 + v8-compile-cache: 2.3.0 + transitivePeerDependencies: + - supports-color + dev: true + + /espree/9.2.0: + resolution: {integrity: sha512-oP3utRkynpZWF/F2x/HZJ+AGtnIclaR7z1pYPxy7NYM2fSO6LgK/Rkny8anRSPK/VwEA1eqm2squui0T7ZMOBg==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dependencies: + acorn: 8.7.1 + acorn-jsx: 5.3.2_acorn@8.7.1 + eslint-visitor-keys: 3.3.0 + dev: true + /espree/9.3.2: resolution: {integrity: sha512-D211tC7ZwouTIuY5x9XnS0E9sWNChB7IYKX/Xp5eQj3nFXhqmiUDB9q27y76oFl8jTg3pXcQx/bpxMfs3CIZbA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -8485,8 +8769,9 @@ packages: /eth-block-tracker/4.4.3: resolution: {integrity: sha512-A8tG4Z4iNg4mw5tP1Vung9N9IjgMNqpiMoJ/FouSFwNCGHv2X0mmOYwtQOJzki6XN7r7Tyo01S29p7b224I4jw==} dependencies: + '@babel/core': 7.17.10 '@babel/plugin-transform-runtime': 7.18.2 - '@babel/runtime': 7.17.9 + '@babel/runtime': 7.18.3 eth-query: 2.1.2 json-rpc-random-id: 1.0.1 pify: 3.0.0 @@ -8865,7 +9150,7 @@ packages: dev: true /extsprintf/1.3.0: - resolution: {integrity: sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==} + resolution: {integrity: sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=} engines: {'0': node >=0.6.0} dev: false @@ -8991,6 +9276,7 @@ packages: /file-uri-to-path/1.0.0: resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==} + requiresBuild: true dev: true optional: true @@ -9122,7 +9408,7 @@ packages: resolution: {integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==} dev: false - /fork-ts-checker-webpack-plugin/4.1.6_64ksehz7gganjtk3d3fc3nseae: + /fork-ts-checker-webpack-plugin/4.1.6_iinatuf4d5qkasqikzik6m7obu: resolution: {integrity: sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw==} engines: {node: '>=6.11.5', yarn: '>=1.0.0'} peerDependencies: @@ -9143,14 +9429,14 @@ packages: minimatch: 3.1.2 semver: 5.7.1 tapable: 1.1.3 - typescript: 4.6.4 + typescript: 4.7.3 webpack: 4.46.0 worker-rpc: 0.1.1 transitivePeerDependencies: - supports-color dev: true - /fork-ts-checker-webpack-plugin/6.5.2_64ksehz7gganjtk3d3fc3nseae: + /fork-ts-checker-webpack-plugin/6.5.2_iinatuf4d5qkasqikzik6m7obu: resolution: {integrity: sha512-m5cUmF30xkZ7h4tWUgTAcEaKmUW7tfyUyTqNNOz7OxWJ0v1VWKTcOvH8FWHUwSjlW/356Ijc9vi3XfcPstpQKA==} engines: {node: '>=10', yarn: '>=1.0.0'} peerDependencies: @@ -9178,7 +9464,7 @@ packages: schema-utils: 2.7.0 semver: 7.3.7 tapable: 1.1.3 - typescript: 4.6.4 + typescript: 4.7.3 webpack: 4.46.0 dev: true @@ -9505,7 +9791,7 @@ packages: fs.realpath: 1.0.0 inflight: 1.0.6 inherits: 2.0.4 - minimatch: 3.1.2 + minimatch: 3.0.4 once: 1.4.0 path-is-absolute: 1.0.1 @@ -9856,6 +10142,15 @@ packages: webpack: 4.46.0 dev: true + /htmlparser2-svelte/4.1.0: + resolution: {integrity: sha512-+4f4RBFz7Rj2Hp0ZbFbXC+Kzbd6S9PgjiuFtdT76VMNgKogrEZy0pG2UrPycPbrZzVEIM5lAT3lAdkSTCHLPjg==} + dependencies: + domelementtype: 2.3.0 + domhandler: 3.3.0 + domutils: 2.8.0 + entities: 2.2.0 + dev: true + /htmlparser2/6.1.0: resolution: {integrity: sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==} dependencies: @@ -10538,9 +10833,9 @@ packages: hasBin: true dependencies: async: 3.2.3 - chalk: 4.1.2 + chalk: 4.1.0 filelist: 1.0.4 - minimatch: 3.1.2 + minimatch: 3.0.4 /jest-changed-files/28.0.2: resolution: {integrity: sha512-QX9u+5I2s54ZnGoMEjiM2WeBvJR2J7w/8ZUmH2um/WLAuGAYFQcsVXY9+1YL6k0H/AGUdH8pXUAv6erDqEsvIA==} @@ -10558,7 +10853,7 @@ packages: '@jest/test-result': 27.5.1 '@jest/types': 27.5.1 '@types/node': 17.0.39 - chalk: 4.1.2 + chalk: 4.1.0 co: 4.6.0 dedent: 0.7.0 expect: 27.5.1 @@ -10644,7 +10939,7 @@ packages: '@jest/test-sequencer': 27.5.1 '@jest/types': 27.5.1 babel-jest: 27.5.1_@babel+core@7.18.2 - chalk: 4.1.2 + chalk: 4.1.0 ci-info: 3.3.1 deepmerge: 4.2.2 glob: 7.2.3 @@ -10664,7 +10959,7 @@ packages: pretty-format: 27.5.1 slash: 3.0.0 strip-json-comments: 3.1.1 - ts-node: 9.1.1_typescript@4.6.4 + ts-node: 9.1.1_typescript@4.7.3 transitivePeerDependencies: - bufferutil - canvas @@ -10706,7 +11001,7 @@ packages: pretty-format: 28.1.0 slash: 3.0.0 strip-json-comments: 3.1.1 - ts-node: 9.1.1_typescript@4.6.4 + ts-node: 9.1.1_typescript@4.7.3 transitivePeerDependencies: - supports-color dev: true @@ -10748,7 +11043,7 @@ packages: engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: '@jest/types': 27.5.1 - chalk: 4.1.2 + chalk: 4.1.0 jest-get-type: 27.5.1 jest-util: 27.5.1 pretty-format: 27.5.1 @@ -10883,7 +11178,7 @@ packages: '@jest/test-result': 27.5.1 '@jest/types': 27.5.1 '@types/node': 17.0.39 - chalk: 4.1.2 + chalk: 4.1.0 co: 4.6.0 expect: 27.5.1 is-generator-fn: 2.1.0 @@ -10939,7 +11234,7 @@ packages: '@babel/code-frame': 7.16.7 '@jest/types': 27.5.1 '@types/stack-utils': 2.0.1 - chalk: 4.1.2 + chalk: 4.1.0 graceful-fs: 4.2.10 micromatch: 4.0.5 pretty-format: 27.5.1 @@ -11028,7 +11323,7 @@ packages: engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: '@jest/types': 27.5.1 - chalk: 4.1.2 + chalk: 4.1.0 graceful-fs: 4.2.10 jest-haste-map: 27.5.1 jest-pnp-resolver: 1.2.2_jest-resolve@27.5.1 @@ -11063,7 +11358,7 @@ packages: '@jest/transform': 27.5.1 '@jest/types': 27.5.1 '@types/node': 17.0.39 - chalk: 4.1.2 + chalk: 4.1.0 emittery: 0.8.1 graceful-fs: 4.2.10 jest-docblock: 27.5.1 @@ -11124,7 +11419,7 @@ packages: '@jest/test-result': 27.5.1 '@jest/transform': 27.5.1 '@jest/types': 27.5.1 - chalk: 4.1.2 + chalk: 4.1.0 cjs-module-lexer: 1.2.2 collect-v8-coverage: 1.0.1 execa: 5.1.1 @@ -11201,7 +11496,7 @@ packages: '@types/babel__traverse': 7.17.1 '@types/prettier': 2.6.3 babel-preset-current-node-syntax: 1.0.1_@babel+core@7.18.2 - chalk: 4.1.2 + chalk: 4.1.0 expect: 27.5.1 graceful-fs: 4.2.10 jest-diff: 27.5.1 @@ -11275,7 +11570,7 @@ packages: dependencies: '@jest/types': 27.5.1 '@types/node': 17.0.39 - chalk: 4.1.2 + chalk: 4.1.0 ci-info: 3.3.1 graceful-fs: 4.2.10 picomatch: 2.3.1 @@ -11298,7 +11593,7 @@ packages: dependencies: '@jest/types': 27.5.1 camelcase: 6.3.0 - chalk: 4.1.2 + chalk: 4.1.0 jest-get-type: 27.5.1 leven: 3.1.0 pretty-format: 27.5.1 @@ -11625,7 +11920,7 @@ packages: resolution: {integrity: sha512-prXSYk799h3GY3iOWnC6ZigYzMPjxN2svgjJ9shk7oMadSNX3wXy0B6F32PMJv7qtMnrIbUxoEHzbutvxR2LBQ==} engines: {node: '>=6.0.0', npm: '>=6.0.0', yarn: '>=1.0.0'} dependencies: - '@babel/runtime': 7.17.9 + '@babel/runtime': 7.18.3 app-root-dir: 1.0.2 core-js: 3.22.8 dotenv: 8.6.0 @@ -11791,7 +12086,7 @@ packages: resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} /lodash.uniq/4.5.0: - resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==} + resolution: {integrity: sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=} dev: true /lodash/4.17.21: @@ -12278,6 +12573,7 @@ packages: /nan/2.16.0: resolution: {integrity: sha512-UdAqHyFngu7TfQKsCBgAA6pWDkT8MAO7d0jyOecVhN5354xbLqdn8mV9Tat9gepAupm0bt2DbeaSC8vS52MuFA==} + requiresBuild: true dev: true optional: true @@ -12478,15 +12774,15 @@ packages: /nwsapi/2.2.0: resolution: {integrity: sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==} - /nx/14.1.5_typescript@4.6.4: + /nx/14.1.5_typescript@4.7.3: resolution: {integrity: sha512-fbafloyQV8kaoLR+cV5XadXga7WxWbtQ9wwvQ26cAtv1mOj+HjF9bTgQAFvxquiyoDgr3ZwFIeLOcQPwxAQvxw==} hasBin: true requiresBuild: true dependencies: - '@nrwl/cli': 14.1.5_typescript@4.6.4 - '@nrwl/tao': 14.1.5_typescript@4.6.4 + '@nrwl/cli': 14.1.5_typescript@4.7.3 + '@nrwl/tao': 14.1.5_typescript@4.7.3 '@parcel/watcher': 2.0.4 - '@swc-node/register': 1.5.1_typescript@4.6.4 + '@swc-node/register': 1.5.1_typescript@4.7.3 '@swc/core': 1.2.196 chalk: 4.1.0 chokidar: 3.5.3 @@ -12521,15 +12817,15 @@ packages: - typescript dev: true - /nx/14.1.9_typescript@4.6.4: + /nx/14.1.9_typescript@4.7.3: resolution: {integrity: sha512-O+zpqtGrJkiTNqh4qK4MwXN1OLgWXCm7YWNO+F7y9kKGfOlGC/krx2lmSSGbMEOPgIP4Z2MMTXGlVULqZyRVHw==} hasBin: true requiresBuild: true dependencies: - '@nrwl/cli': 14.1.9_typescript@4.6.4 - '@nrwl/tao': 14.1.9_typescript@4.6.4 + '@nrwl/cli': 14.1.9_typescript@4.7.3 + '@nrwl/tao': 14.1.9_typescript@4.7.3 '@parcel/watcher': 2.0.4 - '@swc-node/register': 1.5.1_typescript@4.6.4 + '@swc-node/register': 1.5.1_typescript@4.7.3 '@swc/core': 1.2.196 chalk: 4.1.0 chokidar: 3.5.3 @@ -13103,11 +13399,11 @@ packages: engines: {node: '>=4.0.0'} dev: false - /pnp-webpack-plugin/1.6.4_typescript@4.6.4: + /pnp-webpack-plugin/1.6.4_typescript@4.7.3: resolution: {integrity: sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg==} engines: {node: '>=6'} dependencies: - ts-pnp: 1.2.0_typescript@4.6.4 + ts-pnp: 1.2.0_typescript@4.7.3 transitivePeerDependencies: - typescript dev: true @@ -13116,7 +13412,7 @@ packages: resolution: {integrity: sha512-Sz2Lkdxz6F2Pgnpi9U5Ng/WdWAUZxmHrNPoVlm3aAemxoy2Qy7LGjQg4uf8qKelDAUW94F4np3iH2YPf2qefcQ==} engines: {node: '>=10'} dependencies: - '@babel/runtime': 7.17.9 + '@babel/runtime': 7.18.3 dev: true /posix-character-classes/0.1.1: @@ -13277,6 +13573,11 @@ packages: resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==} engines: {node: '>= 0.6.0'} + /progress/2.0.3: + resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==} + engines: {node: '>=0.4.0'} + dev: true + /promise-inflight/1.0.1: resolution: {integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==} peerDependencies: @@ -13452,7 +13753,7 @@ packages: dev: true /querystring/0.2.0: - resolution: {integrity: sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=} + resolution: {integrity: sha512-X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g==} engines: {node: '>=0.4.x'} deprecated: The querystring API is considered Legacy. new code should use the URLSearchParams API instead. dev: true @@ -13522,12 +13823,12 @@ packages: react: 18.1.0 dev: false - /react-docgen-typescript/2.2.2_typescript@4.6.4: + /react-docgen-typescript/2.2.2_typescript@4.7.3: resolution: {integrity: sha512-tvg2ZtOpOi6QDwsb3GZhOjDkkX0h8Z2gipvTg6OVMUyoYoURhEiRNePT8NZItTVCDh39JJHnLdfCOkzoLbFnTg==} peerDependencies: typescript: '>= 4.3.x' dependencies: - typescript: 4.6.4 + typescript: 4.7.3 dev: true /react-docgen/5.4.1: @@ -13537,7 +13838,7 @@ packages: dependencies: '@babel/core': 7.18.2 '@babel/generator': 7.18.2 - '@babel/runtime': 7.17.9 + '@babel/runtime': 7.18.3 ast-types: 0.14.2 commander: 2.20.3 doctrine: 3.0.0 @@ -13549,6 +13850,25 @@ packages: - supports-color dev: true + /react-docgen/6.0.0-alpha.2: + resolution: {integrity: sha512-VHgaazAkzmuwgJsGIzmzidwYDP7/ra5j3BB61jar/VqvrKzk8G2zE77AYxp/qYzByK3mqBP+ytqjy6paXTy62A==} + engines: {node: '>=12.0.0'} + hasBin: true + dependencies: + '@babel/core': 7.18.2 + '@babel/generator': 7.18.2 + ast-types: 0.14.2 + commander: 2.20.3 + doctrine: 3.0.0 + estree-to-babel: 3.2.1 + neo-async: 2.6.2 + node-dir: 0.1.17 + resolve: 1.22.0 + strip-indent: 3.0.0 + transitivePeerDependencies: + - supports-color + dev: true + /react-dom/18.1.0_react@18.1.0: resolution: {integrity: sha512-fU1Txz7Budmvamp7bshe4Zi32d0ll7ect+ccxNu9FlObT605GOEB8BfO4tmRJ39R5Zj831VCpvQ05QPBW5yb+w==} peerDependencies: @@ -13576,7 +13896,7 @@ packages: peerDependencies: react: ^16.8.4 || ^17.0.0 dependencies: - '@babel/runtime': 7.17.9 + '@babel/runtime': 7.18.3 is-dom: 1.1.0 prop-types: 15.8.1 react: 18.1.0 @@ -13642,7 +13962,7 @@ packages: peerDependencies: react: '>= 0.14.0' dependencies: - '@babel/runtime': 7.17.9 + '@babel/runtime': 7.18.3 highlight.js: 10.7.3 lowlight: 1.20.0 prismjs: 1.28.0 @@ -13805,7 +14125,7 @@ packages: /regenerator-transform/0.15.0: resolution: {integrity: sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg==} dependencies: - '@babel/runtime': 7.17.9 + '@babel/runtime': 7.18.3 dev: true /regex-not/1.0.2: @@ -14060,7 +14380,7 @@ packages: resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} hasBin: true dependencies: - glob: 7.2.3 + glob: 7.1.4 /ripemd160/2.0.2: resolution: {integrity: sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==} @@ -14075,7 +14395,7 @@ packages: bn.js: 5.2.1 dev: false - /rollup-plugin-dts/4.2.2_typescript@4.6.4: + /rollup-plugin-dts/4.2.2_typescript@4.7.3: resolution: {integrity: sha512-A3g6Rogyko/PXeKoUlkjxkP++8UDVpgA7C+Tdl77Xj4fgEaIjPSnxRmR53EzvoYy97VMVwLAOcWJudaVAuxneQ==} engines: {node: '>=v12.22.11'} peerDependencies: @@ -14083,7 +14403,7 @@ packages: typescript: ^4.1 dependencies: magic-string: 0.26.2 - typescript: 4.6.4 + typescript: 4.7.3 optionalDependencies: '@babel/code-frame': 7.16.7 dev: true @@ -14670,32 +14990,6 @@ packages: resolution: {integrity: sha512-CMtO2Uneg3SAz/d6fZ/6qbqqQHi2ynq6/KzMD/26gTkiEShCcpqFfTHgOxsE0egAq6SX3FmN4CeSqn8BzXQkJg==} dev: true - /storybook-builder-vite/0.1.23_tntbyaimxmpetkyahqieeppnbm: - resolution: {integrity: sha512-PmeeYKHaBNQgRVJEwhfyo4Psev1Y7Gj51nlYxUDIG3dpy1e1aGzFubDgsmg9W/BhyHKcLIKp98JBpa1DwL702A==} - deprecated: storybook-builder-vite has been renamed to @storybook/builder-vite - peerDependencies: - '@storybook/core-common': ^6.4.3 - vite: '>=2.6.7' - dependencies: - '@joshwooding/vite-plugin-react-docgen-typescript': 0.0.2_adglpeacpkr34s2da2envfjpva - '@mdx-js/mdx': 1.6.22 - '@storybook/csf-tools': 6.5.6 - '@storybook/source-loader': 6.5.6_ef5jwxihqo6n7gxfmzogljlgcm - '@vitejs/plugin-react': 1.3.2 - es-module-lexer: 0.9.3 - glob: 7.2.3 - glob-promise: 4.2.2_glob@7.2.3 - slash: 3.0.0 - vite: 2.9.9 - vite-plugin-mdx: 3.5.10_f34f3gtijkpgkfxkddkqpkzmfq - transitivePeerDependencies: - - '@storybook/mdx2-csf' - - react - - react-dom - - supports-color - - typescript - dev: true - /stream-browserify/2.0.2: resolution: {integrity: sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==} dependencies: @@ -14963,6 +15257,17 @@ packages: resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} engines: {node: '>= 0.4'} + /sveltedoc-parser/4.2.1: + resolution: {integrity: sha512-sWJRa4qOfRdSORSVw9GhfDEwsbsYsegnDzBevUCF6k/Eis/QqCu9lJ6I0+d/E2wOWCjOhlcJ3+jl/Iur+5mmCw==} + engines: {node: '>=10.0.0'} + dependencies: + eslint: 8.4.1 + espree: 9.2.0 + htmlparser2-svelte: 4.1.0 + transitivePeerDependencies: + - supports-color + dev: true + /symbol-tree/3.2.4: resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} @@ -15284,7 +15589,7 @@ packages: engines: {node: '>=6.10'} dev: true - /ts-jest/27.1.4_zjiisyiocj24hlcxqje3u42dum: + /ts-jest/27.1.4_56wx5gwwkqwqliy46mul2nqkmy: resolution: {integrity: sha512-qjkZlVPWVctAezwsOD1OPzbZ+k7zA5z3oxII4dGdZo5ggX/PL7kvwTM0pXTr10fAtbiVpJaL3bWd502zAhpgSQ==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} hasBin: true @@ -15315,7 +15620,7 @@ packages: lodash.memoize: 4.1.2 make-error: 1.3.6 semver: 7.3.7 - typescript: 4.6.4 + typescript: 4.7.3 yargs-parser: 20.2.9 dev: true @@ -15326,7 +15631,7 @@ packages: code-block-writer: 11.0.0 dev: true - /ts-node/9.1.1_typescript@4.6.4: + /ts-node/9.1.1_typescript@4.7.3: resolution: {integrity: sha512-hPlt7ZACERQGf03M253ytLY3dHbGNGrAq9qIHWUY9XHYl1z7wYngSr3OQ5xmui8o2AaxsONxIzjafLUiWBo1Fg==} engines: {node: '>=10.0.0'} hasBin: true @@ -15338,10 +15643,10 @@ packages: diff: 4.0.2 make-error: 1.3.6 source-map-support: 0.5.21 - typescript: 4.6.4 + typescript: 4.7.3 yn: 3.1.1 - /ts-pnp/1.2.0_typescript@4.6.4: + /ts-pnp/1.2.0_typescript@4.7.3: resolution: {integrity: sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==} engines: {node: '>=6'} peerDependencies: @@ -15350,7 +15655,7 @@ packages: typescript: optional: true dependencies: - typescript: 4.6.4 + typescript: 4.7.3 dev: true /tsconfig-paths/3.14.1: @@ -15379,14 +15684,14 @@ packages: /tslib/2.4.0: resolution: {integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==} - /tsutils/3.21.0_typescript@4.6.4: + /tsutils/3.21.0_typescript@4.7.3: resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} engines: {node: '>= 6'} peerDependencies: typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' dependencies: tslib: 1.14.1 - typescript: 4.6.4 + typescript: 4.7.3 dev: true /tty-browserify/0.0.0: @@ -15460,6 +15765,12 @@ packages: resolution: {integrity: sha512-9ia/jWHIEbo49HfjrLGfKbZSuWo9iTMwXO+Ca3pRsSpbsMbc7/IU8NKdCZVRRBafVPGnoJeFL76ZOAA84I9fEg==} engines: {node: '>=4.2.0'} hasBin: true + dev: true + + /typescript/4.7.3: + resolution: {integrity: sha512-WOkT3XYvrpXx4vMMqlD+8R8R37fZkjyLGlxavMc4iB8lrl8L0DeTcHbYgw/v0N/z9wAFsgBhcsF0ruoySS22mA==} + engines: {node: '>=4.2.0'} + hasBin: true /uglify-js/3.15.5: resolution: {integrity: sha512-hNM5q5GbBRB5xB+PMqVRcgYe4c8jbyZ1pzZhS6jbq54/4F2gFK869ZheiE5A8/t+W5jtTNpWef/5Q9zk639FNQ==} diff --git a/tsconfig.json b/tsconfig.json index da9b47d4f..c375c218f 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,4 +1,4 @@ { "files": [], - "references": [{ "path": "packages/core" }, { "path": "packages/ui" }, { "path": "packages/styles" }] + "references": [{ "path": "packages/core" }, { "path": "packages/styles" }, { "path": "packages/ui" }] }