diff --git a/apps/desktop/package.json b/apps/desktop/package.json index ae87cf7fa..c311719e9 100644 --- a/apps/desktop/package.json +++ b/apps/desktop/package.json @@ -14,33 +14,33 @@ "build:app": "tauri build" }, "dependencies": { - "@blocksuite/blocks": "0.5.0-20230313100532-099b92b", - "@blocksuite/editor": "0.5.0-20230313100532-099b92b", + "@blocksuite/blocks": "0.5.0-20230317014705-a881b9c", + "@blocksuite/editor": "0.5.0-20230317014705-a881b9c", "@blocksuite/icons": "2.0.17", - "@blocksuite/store": "0.5.0-20230313100532-099b92b", + "@blocksuite/store": "0.5.0-20230317014705-a881b9c", "@emotion/react": "^11.10.6", "@emotion/styled": "^11.10.6", "@tauri-apps/api": "^1.2.0", "json-schema-to-typescript": "^11.0.5", - "lib0": "^0.2.63", + "lib0": "^0.2.68", "next": "13.1.0", "react": "^18.2.0", "react-dom": "^18.2.0", "y-protocols": "^1.0.5", - "yjs": "^13.5.48" + "yjs": "^13.5.50" }, "devDependencies": { "@tauri-apps/cli": "^1.2.3", - "@types/node": "^18.14.4", + "@types/node": "^18.15.3", "@types/react": "^18.0.28", "@types/react-dom": "^18.0.11", "esbuild": "^0.17.8", "lit": "^2.6.1", "prettier": "2.8.4", "rimraf": "^4.1.3", - "typescript": "^4.9.5", + "typescript": "^5.0.2", "typesync": "^0.10.0", - "vite": "^4.1.4", + "vite": "^4.2.0", "zx": "^7.2.0" } } diff --git a/apps/web/package.json b/apps/web/package.json index 965594ddd..90d497e71 100644 --- a/apps/web/package.json +++ b/apps/web/package.json @@ -14,16 +14,16 @@ "@affine/debug": "workspace:*", "@affine/env": "workspace:*", "@affine/i18n": "workspace:*", - "@blocksuite/blocks": "0.5.0-20230313100532-099b92b", - "@blocksuite/editor": "0.5.0-20230313100532-099b92b", + "@blocksuite/blocks": "0.5.0-20230317014705-a881b9c", + "@blocksuite/editor": "0.5.0-20230317014705-a881b9c", "@blocksuite/icons": "2.0.23", - "@blocksuite/react": "0.5.0-20230313100532-099b92b", - "@blocksuite/store": "0.5.0-20230313100532-099b92b", + "@blocksuite/react": "0.5.0-20230317014705-a881b9c", + "@blocksuite/store": "0.5.0-20230317014705-a881b9c", "@emotion/cache": "^11.10.5", "@emotion/react": "^11.10.6", "@emotion/server": "^11.10.0", "@emotion/styled": "^11.10.6", - "@mui/material": "^5.11.11", + "@mui/material": "^5.11.13", "cmdk": "^0.1.22", "css-spring": "^4.1.0", "dayjs": "^1.11.7", @@ -38,7 +38,7 @@ "swr": "^2.0.4", "y-indexeddb": "^9.0.9", "y-protocols": "^1.0.5", - "yjs": "^13.5.48", + "yjs": "^13.5.50", "zod": "^3.21.3" }, "devDependencies": { @@ -50,15 +50,15 @@ "@types/react-dom": "^18.0.11", "@types/webpack-env": "^1.18.0", "dotenv": "^16.0.3", - "eslint": "^8.35.0", + "eslint": "^8.36.0", "eslint-config-next": "^13.2.3", - "next": "^13.2.2", + "next": "=13.2.2", "next-debug-local": "^0.1.5", "next-router-mock": "^0.9.2", "raw-loader": "^4.0.2", "redux": "^4.2.1", "swc-plugin-coverage-instrument": "^0.0.14", - "typescript": "^4.9.5", - "webpack": "^5.75.0" + "typescript": "^5.0.2", + "webpack": "^5.76.2" } } diff --git a/apps/web/src/pages/preview/[previewId].tsx b/apps/web/src/pages/preview/[previewId].tsx index d27209c28..024ed9dd8 100644 --- a/apps/web/src/pages/preview/[previewId].tsx +++ b/apps/web/src/pages/preview/[previewId].tsx @@ -71,9 +71,12 @@ const PreviewPage: NextPage = ({ pageBlockId ); page.addBlockByFlavour('affine:paragraph', {}, frameId); - editor.clipboard.importMarkdown(text, frameId).then(() => { - page.resetHistory(); - }); + setTimeout(() => { + // hotfix: contentParser.importMarkdown is not working in the first render + editor.contentParser.importMarkdown(text, frameId).then(() => { + page.resetHistory(); + }); + }, 0); }} /> diff --git a/apps/web/src/utils/blocksuite.ts b/apps/web/src/utils/blocksuite.ts index f7356c370..bc817f721 100644 --- a/apps/web/src/utils/blocksuite.ts +++ b/apps/web/src/utils/blocksuite.ts @@ -49,6 +49,9 @@ export function _initPageWithDemoMarkdown( page.addBlockByFlavour('affine:surface', {}, null); const frameId = page.addBlockByFlavour('affine:frame', {}, pageBlockId); page.addBlockByFlavour('affine:paragraph', {}, frameId); - editor.clipboard.importMarkdown(demoText, frameId); + setTimeout(() => { + // hotfix: contentParser.importMarkdown is not working in the first render + editor.contentParser.importMarkdown(demoText, frameId); + }, 0); page.workspace.setPageMeta(page.id, { demoTitle }); } diff --git a/package.json b/package.json index 73bce0251..e7a12e8fb 100644 --- a/package.json +++ b/package.json @@ -30,34 +30,34 @@ "*.{ts,tsx,js,jsx}": "eslint --cache --fix" }, "devDependencies": { - "@perfsee/sdk": "^1.3.0", - "@playwright/test": "^1.31.1", + "@perfsee/sdk": "^1.5.1", + "@playwright/test": "^1.31.2", "@testing-library/react": "^14.0.0", - "@types/eslint": "^8.21.1", - "@types/node": "^18.14.4", - "@typescript-eslint/eslint-plugin": "^5.54.0", - "@typescript-eslint/parser": "^5.54.0", + "@types/eslint": "^8.21.2", + "@types/node": "^18.15.3", + "@typescript-eslint/eslint-plugin": "^5.55.0", + "@typescript-eslint/parser": "^5.55.0", "@vitejs/plugin-react": "^3.1.0", "@vitest/coverage-istanbul": "^0.28.5", - "@vitest/ui": "^0.29.2", - "eslint": "^8.35.0", - "eslint-config-prettier": "^8.6.0", + "@vitest/ui": "^0.29.3", + "eslint": "^8.36.0", + "eslint-config-prettier": "^8.7.0", "eslint-plugin-import": "^2.27.5", "eslint-plugin-prettier": "^4.2.1", "eslint-plugin-react": "^7.32.2", "eslint-plugin-simple-import-sort": "^10.0.0", "eslint-plugin-unused-imports": "^2.0.0", "fake-indexeddb": "4.0.1", - "got": "^12.5.3", + "got": "^12.6.0", "happy-dom": "^8.9.0", "husky": "^8.0.3", - "lint-staged": "^13.1.2", + "lint-staged": "^13.2.0", "nyc": "^15.1.0", "prettier": "^2.8.4", "react": "^18.2.0", "react-dom": "^18.2.0", - "typescript": "^4.9.5", - "vite": "^4.1.2", + "typescript": "^5.0.2", + "vite": "^4.2.0", "vitest": "^0.28.5", "vitest-fetch-mock": "^0.2.2" }, diff --git a/packages/component/package.json b/packages/component/package.json index db17573a8..8ca18deee 100644 --- a/packages/component/package.json +++ b/packages/component/package.json @@ -15,19 +15,19 @@ "dependencies": { "@affine/debug": "workspace:*", "@affine/i18n": "workspace:*", - "@blocksuite/blocks": "0.5.0-20230313100532-099b92b", - "@blocksuite/editor": "0.5.0-20230313100532-099b92b", - "@blocksuite/global": "0.5.0-20230313100532-099b92b", - "@blocksuite/icons": "2.0.17", - "@blocksuite/react": "0.5.0-20230313100532-099b92b", - "@blocksuite/store": "0.5.0-20230313100532-099b92b", + "@blocksuite/blocks": "0.5.0-20230317014705-a881b9c", + "@blocksuite/editor": "0.5.0-20230317014705-a881b9c", + "@blocksuite/global": "0.5.0-20230317014705-a881b9c", + "@blocksuite/icons": "2.0.23", + "@blocksuite/react": "0.5.0-20230317014705-a881b9c", + "@blocksuite/store": "0.5.0-20230317014705-a881b9c", "@emotion/cache": "^11.10.5", "@emotion/react": "^11.10.6", "@emotion/server": "^11.10.0", "@emotion/styled": "^11.10.6", - "@mui/base": "5.0.0-alpha.119", + "@mui/base": "5.0.0-alpha.121", "@mui/icons-material": "^5.11.11", - "@mui/material": "^5.11.11", + "@mui/material": "^5.11.13", "lit": "^2.6.1", "react": "^18.2.0", "react-dom": "^18.2.0", @@ -42,7 +42,7 @@ "@storybook/jest": "0.0.11-next.0", "@storybook/react": "7.0.0-rc.1", "@storybook/react-vite": "7.0.0-rc.1", - "@storybook/test-runner": "^0.10.0-next.10", + "@storybook/test-runner": "0.10.0-next.11", "@storybook/testing-library": "0.0.14-next.1", "@types/react": "^18.0.28", "@types/react-dom": "18.0.11", @@ -50,8 +50,8 @@ "jest-mock": "^28.1.3", "storybook": "7.0.0-rc.1", "storybook-dark-mode-v7": "3.0.0-alpha.0", - "typescript": "^4.9.5", - "vite": "^4.1.2", - "yjs": "^13.5.48" + "typescript": "^5.0.2", + "vite": "^4.2.0", + "yjs": "^13.5.50" } } diff --git a/packages/data-center/package.json b/packages/data-center/package.json index 4e80a03e2..a1ab566be 100644 --- a/packages/data-center/package.json +++ b/packages/data-center/package.json @@ -10,22 +10,22 @@ }, "devDependencies": { "fake-indexeddb": "4.0.1", - "typescript": "^4.9.5" + "typescript": "^5.0.2" }, "dependencies": { "@affine/debug": "workspace:*", - "@blocksuite/blocks": "0.5.0-20230313100532-099b92b", - "@blocksuite/store": "0.5.0-20230313100532-099b92b", + "@blocksuite/blocks": "0.5.0-20230317014705-a881b9c", + "@blocksuite/store": "0.5.0-20230317014705-a881b9c", "@tauri-apps/api": "^1.2.0", "encoding": "^0.1.13", - "firebase": "^9.17.1", + "firebase": "^9.18.0", "idb-keyval": "^6.2.0", "js-base64": "^3.7.5", - "ky": "^0.33.2", + "ky": "^0.33.3", "ky-universal": "^0.11.0", - "lib0": "^0.2.63", + "lib0": "^0.2.68", "lit": "^2.6.1", "y-protocols": "^1.0.5", - "yjs": "^13.5.48" + "yjs": "^13.5.50" } } diff --git a/packages/env/package.json b/packages/env/package.json index d2932591f..54f7f1295 100644 --- a/packages/env/package.json +++ b/packages/env/package.json @@ -3,13 +3,13 @@ "private": true, "main": "./src/index.ts", "devDependencies": { - "next": "^13.2.3", + "next": "=13.2.2", "react": "^18.2.0", "react-dom": "^18.2.0", "zod": "^3.21.3" }, "dependencies": { - "@blocksuite/global": "0.5.0-20230313100532-099b92b", + "@blocksuite/global": "0.5.0-20230317014705-a881b9c", "lit": "^2.6.1" } } diff --git a/packages/i18n/package.json b/packages/i18n/package.json index 67241b714..0e464b21d 100644 --- a/packages/i18n/package.json +++ b/packages/i18n/package.json @@ -27,17 +27,17 @@ }, "dependencies": { "@affine/debug": "workspace:*", - "i18next": "^22.4.10", + "i18next": "^22.4.11", "react": "^18.2.0", "react-i18next": "^12.2.0" }, "devDependencies": { - "@types/node": "^18.14.4", + "@types/node": "^18.15.3", "@types/prettier": "^2.7.2", - "next": "^13.2.3", + "next": "=13.2.2", "prettier": "^2.8.4", "react-dom": "^18.2.0", "ts-node": "^10.9.1", - "typescript": "^4.9.5" + "typescript": "^5.0.2" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index d73b29153..11aeb18cd 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -19,123 +19,123 @@ importers: .: specifiers: - '@perfsee/sdk': ^1.3.0 - '@playwright/test': ^1.31.1 + '@perfsee/sdk': ^1.5.1 + '@playwright/test': ^1.31.2 '@testing-library/react': ^14.0.0 - '@types/eslint': ^8.21.1 - '@types/node': ^18.14.4 - '@typescript-eslint/eslint-plugin': ^5.54.0 - '@typescript-eslint/parser': ^5.54.0 + '@types/eslint': ^8.21.2 + '@types/node': ^18.15.3 + '@typescript-eslint/eslint-plugin': ^5.55.0 + '@typescript-eslint/parser': ^5.55.0 '@vitejs/plugin-react': ^3.1.0 '@vitest/coverage-istanbul': ^0.28.5 - '@vitest/ui': ^0.29.2 - eslint: ^8.35.0 - eslint-config-prettier: ^8.6.0 + '@vitest/ui': ^0.29.3 + eslint: ^8.36.0 + eslint-config-prettier: ^8.7.0 eslint-plugin-import: ^2.27.5 eslint-plugin-prettier: ^4.2.1 eslint-plugin-react: ^7.32.2 eslint-plugin-simple-import-sort: ^10.0.0 eslint-plugin-unused-imports: ^2.0.0 fake-indexeddb: 4.0.1 - got: ^12.5.3 + got: ^12.6.0 happy-dom: ^8.9.0 husky: ^8.0.3 - lint-staged: ^13.1.2 + lint-staged: ^13.2.0 nyc: ^15.1.0 prettier: ^2.8.4 react: ^18.2.0 react-dom: ^18.2.0 - typescript: ^4.9.5 - vite: ^4.1.2 + typescript: ^5.0.2 + vite: ^4.2.0 vitest: ^0.28.5 vitest-fetch-mock: ^0.2.2 devDependencies: - '@perfsee/sdk': 1.3.0 - '@playwright/test': 1.31.1 + '@perfsee/sdk': 1.5.1 + '@playwright/test': 1.31.2 '@testing-library/react': 14.0.0_biqbaboplfbrettd7655fr4n2y - '@types/eslint': 8.21.1 - '@types/node': 18.14.4 - '@typescript-eslint/eslint-plugin': 5.54.0_6mj2wypvdnknez7kws2nfdgupi - '@typescript-eslint/parser': 5.54.0_ycpbpc6yetojsgtrx3mwntkhsu - '@vitejs/plugin-react': 3.1.0_vite@4.1.4 - '@vitest/coverage-istanbul': 0.28.5_oscpa7jhv6f2pwrg7t4qxe6ngi - '@vitest/ui': 0.29.2 - eslint: 8.35.0 - eslint-config-prettier: 8.6.0_eslint@8.35.0 - eslint-plugin-import: 2.27.5_ajyizmi44oc3hrc35l6ndh7p4e - eslint-plugin-prettier: 4.2.1_u2zha4kiojzs42thzpgwygphmy - eslint-plugin-react: 7.32.2_eslint@8.35.0 - eslint-plugin-simple-import-sort: 10.0.0_eslint@8.35.0 - eslint-plugin-unused-imports: 2.0.0_hlu2tevvfejtijvruutuci6rky + '@types/eslint': 8.21.2 + '@types/node': 18.15.3 + '@typescript-eslint/eslint-plugin': 5.55.0_qsnvknysi52qtaxqdyqyohkcku + '@typescript-eslint/parser': 5.55.0_j4766f7ecgqbon3u7zlxn5zszu + '@vitejs/plugin-react': 3.1.0_vite@4.2.0 + '@vitest/coverage-istanbul': 0.28.5_mxq3od2slsrg7ecyoqpfviqdky + '@vitest/ui': 0.29.3 + eslint: 8.36.0 + eslint-config-prettier: 8.7.0_eslint@8.36.0 + eslint-plugin-import: 2.27.5_a7er6olmtneep4uytpot6gt7wu + eslint-plugin-prettier: 4.2.1_eqzx3hpkgx5nnvxls3azrcc7dm + eslint-plugin-react: 7.32.2_eslint@8.36.0 + eslint-plugin-simple-import-sort: 10.0.0_eslint@8.36.0 + eslint-plugin-unused-imports: 2.0.0_dchlkxfdm6cbfc25bfo3oeha6e fake-indexeddb: 4.0.1 - got: 12.5.3 + got: 12.6.0 happy-dom: 8.9.0 husky: 8.0.3 - lint-staged: 13.1.2 + lint-staged: 13.2.0 nyc: 15.1.0 prettier: 2.8.4 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 - typescript: 4.9.5 - vite: 4.1.4_@types+node@18.14.4 - vitest: 0.28.5_oscpa7jhv6f2pwrg7t4qxe6ngi + typescript: 5.0.2 + vite: 4.2.0_@types+node@18.15.3 + vitest: 0.28.5_mxq3od2slsrg7ecyoqpfviqdky vitest-fetch-mock: 0.2.2_vitest@0.28.5 apps/desktop: specifiers: - '@blocksuite/blocks': 0.5.0-20230313100532-099b92b - '@blocksuite/editor': 0.5.0-20230313100532-099b92b + '@blocksuite/blocks': 0.5.0-20230317014705-a881b9c + '@blocksuite/editor': 0.5.0-20230317014705-a881b9c '@blocksuite/icons': 2.0.17 - '@blocksuite/store': 0.5.0-20230313100532-099b92b + '@blocksuite/store': 0.5.0-20230317014705-a881b9c '@emotion/react': ^11.10.6 '@emotion/styled': ^11.10.6 '@tauri-apps/api': ^1.2.0 '@tauri-apps/cli': ^1.2.3 - '@types/node': ^18.14.4 + '@types/node': ^18.15.3 '@types/react': ^18.0.28 '@types/react-dom': ^18.0.11 esbuild: ^0.17.8 json-schema-to-typescript: ^11.0.5 - lib0: ^0.2.63 + lib0: ^0.2.68 lit: ^2.6.1 next: 13.1.0 prettier: 2.8.4 react: ^18.2.0 react-dom: ^18.2.0 rimraf: ^4.1.3 - typescript: ^4.9.5 + typescript: ^5.0.2 typesync: ^0.10.0 - vite: ^4.1.4 + vite: ^4.2.0 y-protocols: ^1.0.5 - yjs: ^13.5.48 + yjs: ^13.5.50 zx: ^7.2.0 dependencies: - '@blocksuite/blocks': 0.5.0-20230313100532-099b92b_mzmkwvwfdgdo6do3worf3gxh6y - '@blocksuite/editor': 0.5.0-20230313100532-099b92b_p3x5lbosopz6spgnnj7v5jib7y + '@blocksuite/blocks': 0.5.0-20230317014705-a881b9c_4ibzbfxya34az3mmn3hwy4tlvi + '@blocksuite/editor': 0.5.0-20230317014705-a881b9c_i6g3jpotga6fasl6t4dgk2meca '@blocksuite/icons': 2.0.17_pmekkgnqduwlme35zpnqhenc34 - '@blocksuite/store': 0.5.0-20230313100532-099b92b_lit@2.6.1+yjs@13.5.48 + '@blocksuite/store': 0.5.0-20230317014705-a881b9c_lit@2.6.1+yjs@13.5.50 '@emotion/react': 11.10.6_pmekkgnqduwlme35zpnqhenc34 '@emotion/styled': 11.10.6_oouaibmszuch5k64ms7uxp2aia '@tauri-apps/api': 1.2.0_nb4isgkwd3sres4g7j7rgtldsu json-schema-to-typescript: 11.0.5 - lib0: 0.2.66 + lib0: 0.2.68 next: 13.1.0_biqbaboplfbrettd7655fr4n2y react: 18.2.0 react-dom: 18.2.0_react@18.2.0 y-protocols: 1.0.5 - yjs: 13.5.48 + yjs: 13.5.50 devDependencies: '@tauri-apps/cli': 1.2.3 - '@types/node': 18.14.4 + '@types/node': 18.15.3 '@types/react': 18.0.28 '@types/react-dom': 18.0.11 esbuild: 0.17.11 lit: 2.6.1 prettier: 2.8.4 rimraf: 4.4.0 - typescript: 4.9.5 + typescript: 5.0.2 typesync: 0.10.0 - vite: 4.1.4_@types+node@18.14.4 + vite: 4.2.0_@types+node@18.15.3 zx: 7.2.0 apps/web: @@ -145,16 +145,16 @@ importers: '@affine/debug': workspace:* '@affine/env': workspace:* '@affine/i18n': workspace:* - '@blocksuite/blocks': 0.5.0-20230313100532-099b92b - '@blocksuite/editor': 0.5.0-20230313100532-099b92b + '@blocksuite/blocks': 0.5.0-20230317014705-a881b9c + '@blocksuite/editor': 0.5.0-20230317014705-a881b9c '@blocksuite/icons': 2.0.23 - '@blocksuite/react': 0.5.0-20230313100532-099b92b - '@blocksuite/store': 0.5.0-20230313100532-099b92b + '@blocksuite/react': 0.5.0-20230317014705-a881b9c + '@blocksuite/store': 0.5.0-20230317014705-a881b9c '@emotion/cache': ^11.10.5 '@emotion/react': ^11.10.6 '@emotion/server': ^11.10.0 '@emotion/styled': ^11.10.6 - '@mui/material': ^5.11.11 + '@mui/material': ^5.11.13 '@perfsee/webpack': ^1.3.0 '@redux-devtools/extension': ^3.2.5 '@swc-jotai/debug-label': ^0.0.6 @@ -166,13 +166,13 @@ importers: css-spring: ^4.1.0 dayjs: ^1.11.7 dotenv: ^16.0.3 - eslint: ^8.35.0 + eslint: ^8.36.0 eslint-config-next: ^13.2.3 jotai: ^2.0.3 jotai-devtools: ^0.2.0 lit: ^2.6.1 lottie-web: ^5.10.2 - next: ^13.2.2 + next: '=13.2.2' next-debug-local: ^0.1.5 next-router-mock: ^0.9.2 next-themes: ^0.2.1 @@ -183,11 +183,11 @@ importers: redux: ^4.2.1 swc-plugin-coverage-instrument: ^0.0.14 swr: ^2.0.4 - typescript: ^4.9.5 - webpack: ^5.75.0 + typescript: ^5.0.2 + webpack: ^5.76.2 y-indexeddb: ^9.0.9 y-protocols: ^1.0.5 - yjs: ^13.5.48 + yjs: ^13.5.50 zod: ^3.21.3 dependencies: '@affine/component': link:../../packages/component @@ -195,16 +195,16 @@ importers: '@affine/debug': link:../../packages/debug '@affine/env': link:../../packages/env '@affine/i18n': link:../../packages/i18n - '@blocksuite/blocks': 0.5.0-20230313100532-099b92b_mzmkwvwfdgdo6do3worf3gxh6y - '@blocksuite/editor': 0.5.0-20230313100532-099b92b_p3x5lbosopz6spgnnj7v5jib7y + '@blocksuite/blocks': 0.5.0-20230317014705-a881b9c_4ibzbfxya34az3mmn3hwy4tlvi + '@blocksuite/editor': 0.5.0-20230317014705-a881b9c_i6g3jpotga6fasl6t4dgk2meca '@blocksuite/icons': 2.0.23_pmekkgnqduwlme35zpnqhenc34 - '@blocksuite/react': 0.5.0-20230313100532-099b92b_htlf2ip4cscjsuf3ta3pqbrgdq - '@blocksuite/store': 0.5.0-20230313100532-099b92b_lit@2.6.1+yjs@13.5.48 + '@blocksuite/react': 0.5.0-20230317014705-a881b9c_7vwa4erxsa4oloiomtggxo4ys4 + '@blocksuite/store': 0.5.0-20230317014705-a881b9c_lit@2.6.1+yjs@13.5.50 '@emotion/cache': 11.10.5 '@emotion/react': 11.10.6_pmekkgnqduwlme35zpnqhenc34 '@emotion/server': 11.10.0 '@emotion/styled': 11.10.6_oouaibmszuch5k64ms7uxp2aia - '@mui/material': 5.11.11_xqeqsl5kvjjtyxwyi3jhw3yuli + '@mui/material': 5.11.13_xqeqsl5kvjjtyxwyi3jhw3yuli cmdk: 0.1.22_zula6vjvt3wdocc4mwcxqa6nzi css-spring: 4.1.0 dayjs: 1.11.7 @@ -212,17 +212,17 @@ importers: jotai-devtools: 0.2.0_tfg3pgykuuhpvkcrwis64xs5oq lit: 2.6.1 lottie-web: 5.10.2 - next-themes: 0.2.1_nvzgbose6yf6w7ijjprgspqefi + next-themes: 0.2.1_yinf3kx724a5qkfsgvpslo2rma react: 18.2.0 react-dom: 18.2.0_react@18.2.0 react-is: 18.2.0 swr: 2.1.0_react@18.2.0 - y-indexeddb: 9.0.9_yjs@13.5.48 + y-indexeddb: 9.0.9_yjs@13.5.50 y-protocols: 1.0.5 - yjs: 13.5.48 + yjs: 13.5.50 zod: 3.21.4 devDependencies: - '@perfsee/webpack': 1.5.0_webpack@5.76.1 + '@perfsee/webpack': 1.5.0_webpack@5.76.2 '@redux-devtools/extension': 3.2.5_redux@4.2.1 '@swc-jotai/debug-label': 0.0.6 '@swc-jotai/react-refresh': 0.0.4 @@ -230,34 +230,34 @@ importers: '@types/react-dom': 18.0.11 '@types/webpack-env': 1.18.0 dotenv: 16.0.3 - eslint: 8.35.0 - eslint-config-next: 13.2.4_ycpbpc6yetojsgtrx3mwntkhsu - next: 13.2.3_biqbaboplfbrettd7655fr4n2y + eslint: 8.36.0 + eslint-config-next: 13.2.4_j4766f7ecgqbon3u7zlxn5zszu + next: 13.2.2_biqbaboplfbrettd7655fr4n2y next-debug-local: 0.1.5 - next-router-mock: 0.9.2_next@13.2.3+react@18.2.0 - raw-loader: 4.0.2_webpack@5.76.1 + next-router-mock: 0.9.2_next@13.2.2+react@18.2.0 + raw-loader: 4.0.2_webpack@5.76.2 redux: 4.2.1 swc-plugin-coverage-instrument: 0.0.14 - typescript: 4.9.5 - webpack: 5.76.1 + typescript: 5.0.2 + webpack: 5.76.2 packages/component: specifiers: '@affine/debug': workspace:* '@affine/i18n': workspace:* - '@blocksuite/blocks': 0.5.0-20230313100532-099b92b - '@blocksuite/editor': 0.5.0-20230313100532-099b92b - '@blocksuite/global': 0.5.0-20230313100532-099b92b - '@blocksuite/icons': 2.0.17 - '@blocksuite/react': 0.5.0-20230313100532-099b92b - '@blocksuite/store': 0.5.0-20230313100532-099b92b + '@blocksuite/blocks': 0.5.0-20230317014705-a881b9c + '@blocksuite/editor': 0.5.0-20230317014705-a881b9c + '@blocksuite/global': 0.5.0-20230317014705-a881b9c + '@blocksuite/icons': 2.0.23 + '@blocksuite/react': 0.5.0-20230317014705-a881b9c + '@blocksuite/store': 0.5.0-20230317014705-a881b9c '@emotion/cache': ^11.10.5 '@emotion/react': ^11.10.6 '@emotion/server': ^11.10.0 '@emotion/styled': ^11.10.6 - '@mui/base': 5.0.0-alpha.119 + '@mui/base': 5.0.0-alpha.121 '@mui/icons-material': ^5.11.11 - '@mui/material': ^5.11.11 + '@mui/material': ^5.11.13 '@storybook/addon-actions': 7.0.0-rc.1 '@storybook/addon-essentials': 7.0.0-rc.1 '@storybook/addon-interactions': 7.0.0-rc.1 @@ -266,7 +266,7 @@ importers: '@storybook/jest': 0.0.11-next.0 '@storybook/react': 7.0.0-rc.1 '@storybook/react-vite': 7.0.0-rc.1 - '@storybook/test-runner': ^0.10.0-next.10 + '@storybook/test-runner': 0.10.0-next.11 '@storybook/testing-library': 0.0.14-next.1 '@types/react': ^18.0.28 '@types/react-dom': 18.0.11 @@ -278,25 +278,25 @@ importers: react-is: ^18.2.0 storybook: 7.0.0-rc.1 storybook-dark-mode-v7: 3.0.0-alpha.0 - typescript: ^4.9.5 - vite: ^4.1.2 - yjs: ^13.5.48 + typescript: ^5.0.2 + vite: ^4.2.0 + yjs: ^13.5.50 dependencies: '@affine/debug': link:../debug '@affine/i18n': link:../i18n - '@blocksuite/blocks': 0.5.0-20230313100532-099b92b_mzmkwvwfdgdo6do3worf3gxh6y - '@blocksuite/editor': 0.5.0-20230313100532-099b92b_p3x5lbosopz6spgnnj7v5jib7y - '@blocksuite/global': 0.5.0-20230313100532-099b92b_lit@2.6.1 - '@blocksuite/icons': 2.0.17_pmekkgnqduwlme35zpnqhenc34 - '@blocksuite/react': 0.5.0-20230313100532-099b92b_htlf2ip4cscjsuf3ta3pqbrgdq - '@blocksuite/store': 0.5.0-20230313100532-099b92b_lit@2.6.1+yjs@13.5.48 + '@blocksuite/blocks': 0.5.0-20230317014705-a881b9c_4ibzbfxya34az3mmn3hwy4tlvi + '@blocksuite/editor': 0.5.0-20230317014705-a881b9c_i6g3jpotga6fasl6t4dgk2meca + '@blocksuite/global': 0.5.0-20230317014705-a881b9c_lit@2.6.1 + '@blocksuite/icons': 2.0.23_pmekkgnqduwlme35zpnqhenc34 + '@blocksuite/react': 0.5.0-20230317014705-a881b9c_7vwa4erxsa4oloiomtggxo4ys4 + '@blocksuite/store': 0.5.0-20230317014705-a881b9c_lit@2.6.1+yjs@13.5.50 '@emotion/cache': 11.10.5 '@emotion/react': 11.10.6_pmekkgnqduwlme35zpnqhenc34 '@emotion/server': 11.10.0 '@emotion/styled': 11.10.6_oouaibmszuch5k64ms7uxp2aia - '@mui/base': 5.0.0-alpha.119_zula6vjvt3wdocc4mwcxqa6nzi - '@mui/icons-material': 5.11.11_h5fh5ntwxtyr677wxvzgewjsma - '@mui/material': 5.11.11_xqeqsl5kvjjtyxwyi3jhw3yuli + '@mui/base': 5.0.0-alpha.121_zula6vjvt3wdocc4mwcxqa6nzi + '@mui/icons-material': 5.11.11_4lyzeezzeeal3x6jtb4ni26w7u + '@mui/material': 5.11.13_xqeqsl5kvjjtyxwyi3jhw3yuli lit: 2.6.1 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 @@ -306,58 +306,58 @@ importers: '@storybook/addon-essentials': 7.0.0-rc.1_biqbaboplfbrettd7655fr4n2y '@storybook/addon-interactions': 7.0.0-rc.1_biqbaboplfbrettd7655fr4n2y '@storybook/addon-links': 7.0.0-rc.1_biqbaboplfbrettd7655fr4n2y - '@storybook/builder-vite': 7.0.0-rc.1_vwvfc4ezh6jlf6pa67auy3eulu + '@storybook/builder-vite': 7.0.0-rc.1_rn5le4pusnctvs35nlnpu7hrue '@storybook/jest': 0.0.11-next.0 - '@storybook/react': 7.0.0-rc.1_ygqkwb4gg3aean7xjfdauovyqq - '@storybook/react-vite': 7.0.0-rc.1_ndsstb2ob2rgr4m75wxvpqsrpi - '@storybook/test-runner': 0.10.0-next.10 + '@storybook/react': 7.0.0-rc.1_grokbpfbuuosdhrkscgthnz2vm + '@storybook/react-vite': 7.0.0-rc.1_glansljvcl2o3mlkoffq7vjcqa + '@storybook/test-runner': 0.10.0-next.11 '@storybook/testing-library': 0.0.14-next.1 '@types/react': 18.0.28 '@types/react-dom': 18.0.11 - '@vitejs/plugin-react': 3.1.0_vite@4.1.4 + '@vitejs/plugin-react': 3.1.0_vite@4.2.0 jest-mock: 29.5.0 storybook: 7.0.0-rc.1 storybook-dark-mode-v7: 3.0.0-alpha.0_biqbaboplfbrettd7655fr4n2y - typescript: 4.9.5 - vite: 4.1.4 - yjs: 13.5.48 + typescript: 5.0.2 + vite: 4.2.0 + yjs: 13.5.50 packages/data-center: specifiers: '@affine/debug': workspace:* - '@blocksuite/blocks': 0.5.0-20230313100532-099b92b - '@blocksuite/store': 0.5.0-20230313100532-099b92b + '@blocksuite/blocks': 0.5.0-20230317014705-a881b9c + '@blocksuite/store': 0.5.0-20230317014705-a881b9c '@tauri-apps/api': ^1.2.0 encoding: ^0.1.13 fake-indexeddb: 4.0.1 - firebase: ^9.17.1 + firebase: ^9.18.0 idb-keyval: ^6.2.0 js-base64: ^3.7.5 - ky: ^0.33.2 + ky: ^0.33.3 ky-universal: ^0.11.0 - lib0: ^0.2.63 + lib0: ^0.2.68 lit: ^2.6.1 - typescript: ^4.9.5 + typescript: ^5.0.2 y-protocols: ^1.0.5 - yjs: ^13.5.48 + yjs: ^13.5.50 dependencies: '@affine/debug': link:../debug - '@blocksuite/blocks': 0.5.0-20230313100532-099b92b_mzmkwvwfdgdo6do3worf3gxh6y - '@blocksuite/store': 0.5.0-20230313100532-099b92b_lit@2.6.1+yjs@13.5.48 + '@blocksuite/blocks': 0.5.0-20230317014705-a881b9c_4ibzbfxya34az3mmn3hwy4tlvi + '@blocksuite/store': 0.5.0-20230317014705-a881b9c_lit@2.6.1+yjs@13.5.50 '@tauri-apps/api': 1.2.0_nb4isgkwd3sres4g7j7rgtldsu encoding: 0.1.13 - firebase: 9.17.1_encoding@0.1.13 + firebase: 9.18.0_encoding@0.1.13 idb-keyval: 6.2.0 js-base64: 3.7.5 - ky: 0.33.2 - ky-universal: 0.11.0_ky@0.33.2 - lib0: 0.2.64 + ky: 0.33.3 + ky-universal: 0.11.0_ky@0.33.3 + lib0: 0.2.68 lit: 2.6.1 y-protocols: 1.0.5 - yjs: 13.5.48 + yjs: 13.5.50 devDependencies: fake-indexeddb: 4.0.1 - typescript: 4.9.5 + typescript: 5.0.2 packages/debug: specifiers: @@ -372,17 +372,17 @@ importers: packages/env: specifiers: - '@blocksuite/global': 0.5.0-20230313100532-099b92b + '@blocksuite/global': 0.5.0-20230317014705-a881b9c lit: ^2.6.1 - next: ^13.2.3 + next: '=13.2.2' react: ^18.2.0 react-dom: ^18.2.0 zod: ^3.21.3 dependencies: - '@blocksuite/global': 0.5.0-20230313100532-099b92b_lit@2.6.1 + '@blocksuite/global': 0.5.0-20230317014705-a881b9c_lit@2.6.1 lit: 2.6.1 devDependencies: - next: 13.2.3_biqbaboplfbrettd7655fr4n2y + next: 13.2.2_biqbaboplfbrettd7655fr4n2y react: 18.2.0 react-dom: 18.2.0_react@18.2.0 zod: 3.21.4 @@ -390,29 +390,29 @@ importers: packages/i18n: specifiers: '@affine/debug': workspace:* - '@types/node': ^18.14.4 + '@types/node': ^18.15.3 '@types/prettier': ^2.7.2 - i18next: ^22.4.10 - next: ^13.2.3 + i18next: ^22.4.11 + next: '=13.2.2' prettier: ^2.8.4 react: ^18.2.0 react-dom: ^18.2.0 react-i18next: ^12.2.0 ts-node: ^10.9.1 - typescript: ^4.9.5 + typescript: ^5.0.2 dependencies: '@affine/debug': link:../debug - i18next: 22.4.10 + i18next: 22.4.11 react: 18.2.0 - react-i18next: 12.2.0_3yopsigl4h4eb2nqrqfsy65uwi + react-i18next: 12.2.0_nuvg7z3l7c7q3mgp6kac62miay devDependencies: - '@types/node': 18.14.4 + '@types/node': 18.15.3 '@types/prettier': 2.7.2 - next: 13.2.3_biqbaboplfbrettd7655fr4n2y + next: 13.2.2_biqbaboplfbrettd7655fr4n2y prettier: 2.8.4 react-dom: 18.2.0_react@18.2.0 - ts-node: 10.9.1_oboltcrkaqheaa54woelu7cdsa - typescript: 4.9.5 + ts-node: 10.9.1_sxidjv3cojnrggmso45tj7hldi + typescript: 5.0.2 packages/templates: specifiers: {} @@ -482,6 +482,16 @@ packages: jsesc: 2.5.2 dev: true + /@babel/generator/7.21.3: + resolution: {integrity: sha512-QS3iR1GYC/YGUnW7IdggFeN5c1poPUurnGttOV/bZgPGV+izC/D8HnD6DLwod0fsatNyVn1G3EVWMYIF0nHbeA==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/types': 7.21.3 + '@jridgewell/gen-mapping': 0.3.2 + '@jridgewell/trace-mapping': 0.3.17 + jsesc: 2.5.2 + dev: true + /@babel/helper-annotate-as-pure/7.18.6: resolution: {integrity: sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==} engines: {node: '>=6.9.0'} @@ -694,7 +704,7 @@ packages: dependencies: '@babel/helper-function-name': 7.21.0 '@babel/template': 7.20.7 - '@babel/traverse': 7.21.2 + '@babel/traverse': 7.21.3 '@babel/types': 7.21.2 transitivePeerDependencies: - supports-color @@ -727,6 +737,14 @@ packages: '@babel/types': 7.21.2 dev: true + /@babel/parser/7.21.3: + resolution: {integrity: sha512-lobG0d7aOfQRXh8AyklEAgZGvA4FShxo6xQbUrrT/cNBPUdIDojlokwJsQyCC/eKia7ifqM0yP+2DRZ4WKw2RQ==} + engines: {node: '>=6.0.0'} + hasBin: true + dependencies: + '@babel/types': 7.21.3 + dev: true + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/7.18.6_@babel+core@7.21.0: resolution: {integrity: sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==} engines: {node: '>=6.9.0'} @@ -1762,6 +1780,24 @@ packages: - supports-color dev: true + /@babel/traverse/7.21.3: + resolution: {integrity: sha512-XLyopNeaTancVitYZe2MlUEvgKb6YVVPXzofHgqHijCImG33b/uTurMS488ht/Hbsb2XK3U2BnSTxKVNGV3nGQ==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/code-frame': 7.18.6 + '@babel/generator': 7.21.3 + '@babel/helper-environment-visitor': 7.18.9 + '@babel/helper-function-name': 7.21.0 + '@babel/helper-hoist-variables': 7.18.6 + '@babel/helper-split-export-declaration': 7.18.6 + '@babel/parser': 7.21.3 + '@babel/types': 7.21.3 + debug: 4.3.4 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + dev: true + /@babel/types/7.21.2: resolution: {integrity: sha512-3wRZSs7jiFaB8AjxiiD+VqN5DTG2iRvJGQ+qYFrs/654lg6kGTQWIOFjlBo5RaXuAZjBmP3+OQH4dmhqiiyYxw==} engines: {node: '>=6.9.0'} @@ -1770,6 +1806,15 @@ packages: '@babel/helper-validator-identifier': 7.19.1 to-fast-properties: 2.0.0 + /@babel/types/7.21.3: + resolution: {integrity: sha512-sBGdETxC+/M4o/zKC0sl6sjWv62WFR/uzxrJ6uYyMLZOUlPnwzw0tKgVHOXxaAd5l2g8pEDM5RZ495GPQI77kg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-string-parser': 7.19.4 + '@babel/helper-validator-identifier': 7.19.1 + to-fast-properties: 2.0.0 + dev: true + /@base2/pretty-print-object/1.0.1: resolution: {integrity: sha512-4iri8i1AqYHJE2DstZYkyEprg6Pq6sKx3xn5FpySk9sNhH7qN2LLlHJCfDTZRILNwQNPD7mATWM0TBui7uC1pA==} dev: true @@ -1788,41 +1833,43 @@ packages: resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} dev: true - /@blocksuite/blocks/0.5.0-20230313100532-099b92b_mzmkwvwfdgdo6do3worf3gxh6y: - resolution: {integrity: sha512-QdOaznHu5RAoeQsR44dv2kr5SnH7iaPyAt0RNym8XpSMiykv1Ib26tUaYueLEv7Ljcls/OVn9ajxPloD4bxBhg==} + /@blocksuite/blocks/0.5.0-20230317014705-a881b9c_4ibzbfxya34az3mmn3hwy4tlvi: + resolution: {integrity: sha512-Qk5QHtdJPv9iJ8ebI7yfhw4mdxieLbgDbyzIS6ncAjbwLsMVRuu0XmSr8jPUYzwCwiGmzFtgEaKZzTz298u7yA==} peerDependencies: - '@blocksuite/store': 0.5.0-20230313100532-099b92b + '@blocksuite/store': 0.5.0-20230317014705-a881b9c dependencies: - '@blocksuite/global': 0.5.0-20230313100532-099b92b_lit@2.6.1 - '@blocksuite/phasor': 0.5.0-20230313100532-099b92b_lit@2.6.1+yjs@13.5.48 - '@blocksuite/store': 0.5.0-20230313100532-099b92b_lit@2.6.1+yjs@13.5.48 - '@blocksuite/virgo': 0.5.0-20230313100532-099b92b_lit@2.6.1+yjs@13.5.48 + '@blocksuite/global': 0.5.0-20230317014705-a881b9c_lit@2.6.1 + '@blocksuite/phasor': 0.5.0-20230317014705-a881b9c_lit@2.6.1+yjs@13.5.50 + '@blocksuite/store': 0.5.0-20230317014705-a881b9c_lit@2.6.1+yjs@13.5.50 + '@blocksuite/virgo': 0.5.0-20230317014705-a881b9c_lit@2.6.1+yjs@13.5.50 '@popperjs/core': 2.11.6 highlight.js: 11.7.0 hotkeys-js: 3.10.1 lit: 2.6.1 + marked: 4.2.12 shiki: 0.14.1 + turndown: 7.1.1 zod: 3.21.4 transitivePeerDependencies: - yjs dev: false - /@blocksuite/editor/0.5.0-20230313100532-099b92b_p3x5lbosopz6spgnnj7v5jib7y: - resolution: {integrity: sha512-6eE9isk4Qp9CAKKzDscMH0fh12aqN4KMAshDYN5s7r30NWb0NGux6B4T2nQc6igcgGcTYYyBLqpey4QtT5zu1g==} + /@blocksuite/editor/0.5.0-20230317014705-a881b9c_i6g3jpotga6fasl6t4dgk2meca: + resolution: {integrity: sha512-mEKxNHtem92ugCAOtaWcKta8RXFDmUuxyhEcXU2/NgjHDd6L0YzPPiv1TieYHLZotJ19JgZ9UPNqj3mQEitryg==} peerDependencies: - '@blocksuite/blocks': 0.5.0-20230313100532-099b92b - '@blocksuite/store': 0.5.0-20230313100532-099b92b + '@blocksuite/blocks': 0.5.0-20230317014705-a881b9c + '@blocksuite/store': 0.5.0-20230317014705-a881b9c dependencies: - '@blocksuite/blocks': 0.5.0-20230313100532-099b92b_mzmkwvwfdgdo6do3worf3gxh6y - '@blocksuite/global': 0.5.0-20230313100532-099b92b_lit@2.6.1 - '@blocksuite/store': 0.5.0-20230313100532-099b92b_lit@2.6.1+yjs@13.5.48 + '@blocksuite/blocks': 0.5.0-20230317014705-a881b9c_4ibzbfxya34az3mmn3hwy4tlvi + '@blocksuite/global': 0.5.0-20230317014705-a881b9c_lit@2.6.1 + '@blocksuite/store': 0.5.0-20230317014705-a881b9c_lit@2.6.1+yjs@13.5.50 lit: 2.6.1 marked: 4.2.12 turndown: 7.1.1 dev: false - /@blocksuite/global/0.5.0-20230313100532-099b92b_lit@2.6.1: - resolution: {integrity: sha512-G+kDQ5DZC7XP+xLeC/w16Zu/s/hPg+Hd1DvTb3RgY5MNOxeIN8Lu8C+AHiqd61tS6PCn4I3ZoUwnNcjGo7jkCQ==} + /@blocksuite/global/0.5.0-20230317014705-a881b9c_lit@2.6.1: + resolution: {integrity: sha512-nTAK2ViuCRz8iBS0A1C3qvfXsfRyjEkfzj/bMO296XrO3gRr97EUGB/Pr/0Xl+B06Lr/k1fL5bd+MHpI/gbZGA==} peerDependencies: lit: ^2.6 peerDependenciesMeta: @@ -1854,33 +1901,33 @@ packages: react: 18.2.0 dev: false - /@blocksuite/phasor/0.5.0-20230313100532-099b92b_lit@2.6.1+yjs@13.5.48: - resolution: {integrity: sha512-WqMSzFXM3AsufsaJgTxylBFSFv9ZjUE3XP2mzExpLakYCkSxxHeg1KMTjDYvp4Cv+4hW45ncxxEXsEIvR8mf1A==} + /@blocksuite/phasor/0.5.0-20230317014705-a881b9c_lit@2.6.1+yjs@13.5.50: + resolution: {integrity: sha512-sclkJ4HEuM1cXou/kTEqeveNwgZu82g5tEty1KdX9UIyqs954Z/7xTsQAyQ7f99j+dBDUSOtPnPZT7rcZ739/g==} peerDependencies: yjs: ^13 dependencies: - '@blocksuite/global': 0.5.0-20230313100532-099b92b_lit@2.6.1 + '@blocksuite/global': 0.5.0-20230317014705-a881b9c_lit@2.6.1 fractional-indexing: 3.2.0 nanoid: 4.0.1 perfect-freehand: 1.2.0 - yjs: 13.5.48 + yjs: 13.5.50 transitivePeerDependencies: - lit dev: false - /@blocksuite/react/0.5.0-20230313100532-099b92b_htlf2ip4cscjsuf3ta3pqbrgdq: - resolution: {integrity: sha512-MonYkAuFgKvztX2PnDy+prtv1f7r9jI28EB7IONXZIyPX6xJBxo1wGG1sFWfWkW2rsSnQjnnhs5iFpM0Nncqyg==} + /@blocksuite/react/0.5.0-20230317014705-a881b9c_7vwa4erxsa4oloiomtggxo4ys4: + resolution: {integrity: sha512-gaC4DHai5oXeiBHPJl/5e4tXEkwaiN6aUvdj+CSnGW/IOpBsJri5PuSyv4ZW1/yQ9GvEthLpyfWOb4rx8f0g1w==} peerDependencies: - '@blocksuite/blocks': 0.5.0-20230313100532-099b92b - '@blocksuite/editor': 0.5.0-20230313100532-099b92b - '@blocksuite/store': 0.5.0-20230313100532-099b92b + '@blocksuite/blocks': 0.5.0-20230317014705-a881b9c + '@blocksuite/editor': 0.5.0-20230317014705-a881b9c + '@blocksuite/store': 0.5.0-20230317014705-a881b9c react: '>=18.0.0' react-dom: '>=18.0.0' dependencies: - '@blocksuite/blocks': 0.5.0-20230313100532-099b92b_mzmkwvwfdgdo6do3worf3gxh6y - '@blocksuite/editor': 0.5.0-20230313100532-099b92b_p3x5lbosopz6spgnnj7v5jib7y - '@blocksuite/global': 0.5.0-20230313100532-099b92b_lit@2.6.1 - '@blocksuite/store': 0.5.0-20230313100532-099b92b_lit@2.6.1+yjs@13.5.48 + '@blocksuite/blocks': 0.5.0-20230317014705-a881b9c_4ibzbfxya34az3mmn3hwy4tlvi + '@blocksuite/editor': 0.5.0-20230317014705-a881b9c_i6g3jpotga6fasl6t4dgk2meca + '@blocksuite/global': 0.5.0-20230317014705-a881b9c_lit@2.6.1 + '@blocksuite/store': 0.5.0-20230317014705-a881b9c_lit@2.6.1+yjs@13.5.50 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 zustand: 4.3.6_react@18.2.0 @@ -1889,24 +1936,24 @@ packages: - lit dev: false - /@blocksuite/store/0.5.0-20230313100532-099b92b_lit@2.6.1+yjs@13.5.48: - resolution: {integrity: sha512-DZe/qxiic5Hkx5leFgNoRpVHGZwgeoZ0LXOICGtK2ugm5TxWpPLB7I+FcMI+n/mzMB0Mu5v1h1Q66dcljfdcFA==} + /@blocksuite/store/0.5.0-20230317014705-a881b9c_lit@2.6.1+yjs@13.5.50: + resolution: {integrity: sha512-tzSp1198XpH16LQH9wMTptOnIwbAZFv7iFDFouQ7OZjWyjirwSfVMw7jIsIguvHTTlUZfpt2V8fvkZPrVGxBhg==} peerDependencies: yjs: ^13 dependencies: - '@blocksuite/global': 0.5.0-20230313100532-099b92b_lit@2.6.1 - '@blocksuite/virgo': 0.5.0-20230313100532-099b92b_lit@2.6.1+yjs@13.5.48 + '@blocksuite/global': 0.5.0-20230317014705-a881b9c_lit@2.6.1 + '@blocksuite/virgo': 0.5.0-20230317014705-a881b9c_lit@2.6.1+yjs@13.5.50 '@types/flexsearch': 0.7.3 buffer: 6.0.3 flexsearch: 0.7.21 idb-keyval: 6.2.0 - ky: 0.33.2 - lib0: 0.2.66 + ky: 0.33.3 + lib0: 0.2.68 merge: 2.1.1 nanoid: 4.0.1 y-protocols: 1.0.5 - y-webrtc: 10.2.4 - yjs: 13.5.48 + y-webrtc: 10.2.5 + yjs: 13.5.50 zod: 3.21.4 transitivePeerDependencies: - bufferutil @@ -1915,16 +1962,15 @@ packages: - utf-8-validate dev: false - /@blocksuite/virgo/0.5.0-20230313100532-099b92b_lit@2.6.1+yjs@13.5.48: - resolution: {integrity: sha512-xGezudrkVra13mWD+84oVPrhaheiJfWwXAUJrxFgv+CRvaXLurEbucFY6QtTQYHsL2pLakcBVeoK9oQ+9LRswA==} + /@blocksuite/virgo/0.5.0-20230317014705-a881b9c_lit@2.6.1+yjs@13.5.50: + resolution: {integrity: sha512-MGmNEoF5aLmZl1gnfaJQO2rPJhRodsYnlKaxLWHaxnrfYuxfbD1KlEi0uX4rc17nz79RqmKg23TcUnStiL33dg==} peerDependencies: lit: ^2 yjs: ^13 dependencies: - '@blocksuite/global': 0.5.0-20230313100532-099b92b_lit@2.6.1 + '@blocksuite/global': 0.5.0-20230317014705-a881b9c_lit@2.6.1 lit: 2.6.1 - scroll-into-view-if-needed: 3.0.6 - yjs: 13.5.48 + yjs: 13.5.50 zod: 3.21.4 dev: false @@ -2472,13 +2518,28 @@ packages: dev: true optional: true - /@eslint/eslintrc/2.0.0: - resolution: {integrity: sha512-fluIaaV+GyV24CCu/ggiHdV+j4RNh85yQnAYS/G2mZODZgGmmlrgCydjUcV3YvxCm9x8nMAfThsqTni4KiXT4A==} + /@eslint-community/eslint-utils/4.2.0_eslint@8.36.0: + resolution: {integrity: sha512-gB8T4H4DEfX2IV9zGDJPOBgP1e/DbfCPDTtEqUMckpvzS1OYtva8JdFYBqMwYk7xAQ429WGF/UPqn8uQ//h2vQ==} + 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.36.0 + eslint-visitor-keys: 3.3.0 + dev: true + + /@eslint-community/regexpp/4.4.0: + resolution: {integrity: sha512-A9983Q0LnDGdLPjxyXQ00sbV+K+O+ko2Dr+CZigbHWtX9pNfxlaBkMR8X1CztI73zuEyEBXTVjx7CE+/VSwDiQ==} + engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} + dev: true + + /@eslint/eslintrc/2.0.1: + resolution: {integrity: sha512-eFRmABvW2E5Ho6f5fHLqgena46rOj7r7OKHYfLElqcBfGFHHpjBhivyi5+jOEQuSpdc/1phIZJlbC2te+tZNIw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: ajv: 6.12.6 debug: 4.3.4 - espree: 9.4.0 + espree: 9.5.0 globals: 13.19.0 ignore: 5.2.0 import-fresh: 3.3.0 @@ -2489,8 +2550,8 @@ packages: - supports-color dev: true - /@eslint/js/8.35.0: - resolution: {integrity: sha512-JXdzbRiWclLVoD8sNUjR443VVlYqiYmDVT6rGUEIEHU5YJW0gaVZwV2xgM7D4arkvASqD0IlLUVjHiFuxaftRw==} + /@eslint/js/8.36.0: + resolution: {integrity: sha512-lxJ9R5ygVm8ZWgYdUweoq5ownDlJ4upvoWmO4eLxBYHdMo+vZ/Rx0EN6MbKWDJOSUGrqJy2Gt+Dyv/VKml0fjg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true @@ -2503,16 +2564,16 @@ packages: resolution: {integrity: sha512-cEee/Z+I12mZcFJshKcCqC8tuX5hG3s+d+9nZ3LabqKF1vKdF41B92pJVCBggjAGORAeOzyyDDKrZwIkLffeOQ==} dev: true - /@firebase/analytics-compat/0.2.3_5qoz5voa527ucsvtk67mpz25ru: - resolution: {integrity: sha512-HmvbB4GMgh8AUlIDIo/OuFENLCGRXxMvtOueK+m8+DcfqBvG+mkii0Mi9ovo0TnMM62cy3oBYG7PHdjIQNLSLA==} + /@firebase/analytics-compat/0.2.4_iyabqhttlorju4ibfbaqz2vm6i: + resolution: {integrity: sha512-ZN4K49QwOR8EWIUTV03VBdcVkz8sVsfJmve4g2+FEIj0kyTK0MdoVTWNOwWj9TVi2p/7FvKRKkpWxkydmi9x7g==} peerDependencies: '@firebase/app-compat': 0.x dependencies: - '@firebase/analytics': 0.9.3_@firebase+app@0.9.3 + '@firebase/analytics': 0.9.4_@firebase+app@0.9.5 '@firebase/analytics-types': 0.8.0 - '@firebase/app-compat': 0.2.3 - '@firebase/component': 0.6.3 - '@firebase/util': 1.9.2 + '@firebase/app-compat': 0.2.5 + '@firebase/component': 0.6.4 + '@firebase/util': 1.9.3 tslib: 2.5.0 transitivePeerDependencies: - '@firebase/app' @@ -2522,30 +2583,30 @@ packages: resolution: {integrity: sha512-iRP+QKI2+oz3UAh4nPEq14CsEjrjD6a5+fuypjScisAh9kXKFvdJOZJDwk7kikLvWVLGEs9+kIUS4LPQV7VZVw==} dev: false - /@firebase/analytics/0.9.3_@firebase+app@0.9.3: - resolution: {integrity: sha512-XdYHBi6RvHYVAHGyLxXX0uRPwZmGeqw1JuWS1rMEeRF/jvbxnrL81kcFAHZVRkEvG9bXAJgL2fX9wmDo3e622w==} + /@firebase/analytics/0.9.4_@firebase+app@0.9.5: + resolution: {integrity: sha512-Mb2UaD0cyJ9DrTk4Okz8wqpjZuVRVXHZOjhbQcmGb8VtibXY1+jm/k3eJ21r7NqUKnjWejYM2EX+hI9+dtXGkQ==} peerDependencies: '@firebase/app': 0.x dependencies: - '@firebase/app': 0.9.3 - '@firebase/component': 0.6.3 - '@firebase/installations': 0.6.3_@firebase+app@0.9.3 + '@firebase/app': 0.9.5 + '@firebase/component': 0.6.4 + '@firebase/installations': 0.6.4_@firebase+app@0.9.5 '@firebase/logger': 0.4.0 - '@firebase/util': 1.9.2 + '@firebase/util': 1.9.3 tslib: 2.5.0 dev: false - /@firebase/app-check-compat/0.3.3_5qoz5voa527ucsvtk67mpz25ru: - resolution: {integrity: sha512-25AQ4W7WUL8OWas40GsABuNU622Dm1ojbfeZ03uKtLj5Af7FerJ25u7zkgm+11pc6rpr5v8E5oxEG9vmNRndEA==} + /@firebase/app-check-compat/0.3.4_iyabqhttlorju4ibfbaqz2vm6i: + resolution: {integrity: sha512-s6ON0ixPKe99M1DNYMI2eR5aLwQZgy0z8fuW1tnEbzg5p/N/GKFmqiIHSV4gfp8+X7Fw5NLm7qMfh4xrcPgQCw==} peerDependencies: '@firebase/app-compat': 0.x dependencies: - '@firebase/app-check': 0.6.3_@firebase+app@0.9.3 + '@firebase/app-check': 0.6.4_@firebase+app@0.9.5 '@firebase/app-check-types': 0.5.0 - '@firebase/app-compat': 0.2.3 - '@firebase/component': 0.6.3 + '@firebase/app-compat': 0.2.5 + '@firebase/component': 0.6.4 '@firebase/logger': 0.4.0 - '@firebase/util': 1.9.2 + '@firebase/util': 1.9.3 tslib: 2.5.0 transitivePeerDependencies: - '@firebase/app' @@ -2559,25 +2620,25 @@ packages: resolution: {integrity: sha512-uwSUj32Mlubybw7tedRzR24RP8M8JUVR3NPiMk3/Z4bCmgEKTlQBwMXrehDAZ2wF+TsBq0SN1c6ema71U/JPyQ==} dev: false - /@firebase/app-check/0.6.3_@firebase+app@0.9.3: - resolution: {integrity: sha512-T9f9ceFLs7x4D2T6whu5a6j7B3qPuYHiZHZxW6DkMh/FoMmRA4/q/HVyu01i9+LyJJx2Xdo6eCcj6ofs9YZjqA==} + /@firebase/app-check/0.6.4_@firebase+app@0.9.5: + resolution: {integrity: sha512-M9qyVTWkEkHXmgwGtObvXQqKcOe9iKAOPqm0pCe74mzgKVTNq157ff39+fxHPb4nFbipToY+GuvtabLUzkHehQ==} peerDependencies: '@firebase/app': 0.x dependencies: - '@firebase/app': 0.9.3 - '@firebase/component': 0.6.3 + '@firebase/app': 0.9.5 + '@firebase/component': 0.6.4 '@firebase/logger': 0.4.0 - '@firebase/util': 1.9.2 + '@firebase/util': 1.9.3 tslib: 2.5.0 dev: false - /@firebase/app-compat/0.2.3: - resolution: {integrity: sha512-sX6rD1KFX6K2CuCnQvc9jZLOgAFZ+sv2jKKahIl4SbTM561D682B8n4Jtx/SgDrvcTVTdb05g4NhZOws9hxYxA==} + /@firebase/app-compat/0.2.5: + resolution: {integrity: sha512-PSEax7UAc1Qxcksq5GHKb8M9rCsXTJWxWUf6pqhGTWO9UbJnI1tv00ogoCicEHgkXBTkOWMLxCs3318HaGZh4g==} dependencies: - '@firebase/app': 0.9.3 - '@firebase/component': 0.6.3 + '@firebase/app': 0.9.5 + '@firebase/component': 0.6.4 '@firebase/logger': 0.4.0 - '@firebase/util': 1.9.2 + '@firebase/util': 1.9.3 tslib: 2.5.0 dev: false @@ -2585,26 +2646,26 @@ packages: resolution: {integrity: sha512-AeweANOIo0Mb8GiYm3xhTEBVCmPwTYAu9Hcd2qSkLuga/6+j9b1Jskl5bpiSQWy9eJ/j5pavxj6eYogmnuzm+Q==} dev: false - /@firebase/app/0.9.3: - resolution: {integrity: sha512-G79JUceVDaHRZ4WkA11GyVldVXhdyRJRwWVQFFvAAVfQJLvy2TA6lQjeUn28F6FmeUWxDGwPC30bxCRWq7Op8Q==} + /@firebase/app/0.9.5: + resolution: {integrity: sha512-mXO9hrygxCohD8Qy0z8p9ZtuQirmjkjSTuQghH05/kLG1UJqP0TQZBlhP5qwzMTKuu2YpIn3kX2PZoSWti8LDA==} dependencies: - '@firebase/component': 0.6.3 + '@firebase/component': 0.6.4 '@firebase/logger': 0.4.0 - '@firebase/util': 1.9.2 + '@firebase/util': 1.9.3 idb: 7.0.1 tslib: 2.5.0 dev: false - /@firebase/auth-compat/0.3.3_ilabgwonlgwas5yi6hpnop6rs4: - resolution: {integrity: sha512-9asUuGtkzUVELH3LYXdiom1nVVV9bqEPqzHohanoofHL/oVTNcHZ4AQ5CXjNATfb6c1WH32U+nEuPiYg26UUIw==} + /@firebase/auth-compat/0.3.5_qi3j262kwfzuzs4h23nf2u4zla: + resolution: {integrity: sha512-xEkR4Buuw8NfyJhMVC3HMvyaODfstpMuo55tK03APoP+X9fnZpQE+ASdacq60qBBvpKF78d+gmAhmh0ISTXZ0w==} peerDependencies: '@firebase/app-compat': 0.x dependencies: - '@firebase/app-compat': 0.2.3 - '@firebase/auth': 0.21.3_elhicscdlgavbvc4rtd5whdute - '@firebase/auth-types': 0.12.0_rls6ojzmqtv4do6kouxcb5gfn4 - '@firebase/component': 0.6.3 - '@firebase/util': 1.9.2 + '@firebase/app-compat': 0.2.5 + '@firebase/auth': 0.21.5_urnzyoierxnkmnju32ww72n77u + '@firebase/auth-types': 0.12.0_pe7cbgjgh7vzd7cjsjzacprt4m + '@firebase/component': 0.6.4 + '@firebase/util': 1.9.3 node-fetch: 2.6.7_encoding@0.1.13 tslib: 2.5.0 transitivePeerDependencies: @@ -2617,77 +2678,77 @@ packages: resolution: {integrity: sha512-VOaGzKp65MY6P5FI84TfYKBXEPi6LmOCSMMzys6o2BN2LOsqy7pCuZCup7NYnfbk5OkkQKzvIfHOzTm0UDpkyg==} dev: false - /@firebase/auth-types/0.12.0_rls6ojzmqtv4do6kouxcb5gfn4: + /@firebase/auth-types/0.12.0_pe7cbgjgh7vzd7cjsjzacprt4m: resolution: {integrity: sha512-pPwaZt+SPOshK8xNoiQlK5XIrS97kFYc3Rc7xmy373QsOJ9MmqXxLaYssP5Kcds4wd2qK//amx/c+A8O2fVeZA==} peerDependencies: '@firebase/app-types': 0.x '@firebase/util': 1.x dependencies: '@firebase/app-types': 0.9.0 - '@firebase/util': 1.9.2 + '@firebase/util': 1.9.3 dev: false - /@firebase/auth/0.21.3_elhicscdlgavbvc4rtd5whdute: - resolution: {integrity: sha512-HPbcwgArLBVTowFcn4qaQr6LCx7BidI9yrQ5MRbQNv4PsgK/3UGpzCYaNPPbvgr9fe+0jNdJO+uC0+dk4xIzCQ==} + /@firebase/auth/0.21.5_urnzyoierxnkmnju32ww72n77u: + resolution: {integrity: sha512-Pt/S24qbtJeFPxYxcQHDNgYAuEa9oyCK1XJBQ9Kc3FT1rDMb1OaK6wfnDDrCChQfENdHZVI1pGw4QG6/tO3NWw==} peerDependencies: '@firebase/app': 0.x dependencies: - '@firebase/app': 0.9.3 - '@firebase/component': 0.6.3 + '@firebase/app': 0.9.5 + '@firebase/component': 0.6.4 '@firebase/logger': 0.4.0 - '@firebase/util': 1.9.2 + '@firebase/util': 1.9.3 node-fetch: 2.6.7_encoding@0.1.13 tslib: 2.5.0 transitivePeerDependencies: - encoding dev: false - /@firebase/component/0.6.3: - resolution: {integrity: sha512-rnhq5SOsB5nuJphZF50iwqnBiuuyg9kdnlUn1rBrKfu7/cUVJZF5IG1cWrL0rXXyiZW1WBI/J2pmTvVO8dStGQ==} + /@firebase/component/0.6.4: + resolution: {integrity: sha512-rLMyrXuO9jcAUCaQXCMjCMUsWrba5fzHlNK24xz5j2W6A/SRmK8mZJ/hn7V0fViLbxC0lPMtrK1eYzk6Fg03jA==} dependencies: - '@firebase/util': 1.9.2 + '@firebase/util': 1.9.3 tslib: 2.5.0 dev: false - /@firebase/database-compat/0.3.3: - resolution: {integrity: sha512-r+L9jTbvsnb7sD+xz6UKU39DgBWqB2pyjzPNdBeriGC9Ssa2MAZe0bIqjCQg51RRXYc/aa/zK1Q2/4uesZeVgQ==} + /@firebase/database-compat/0.3.4: + resolution: {integrity: sha512-kuAW+l+sLMUKBThnvxvUZ+Q1ZrF/vFJ58iUY9kAcbX48U03nVzIF6Tmkf0p3WVQwMqiXguSgtOPIB6ZCeF+5Gg==} dependencies: - '@firebase/component': 0.6.3 - '@firebase/database': 0.14.3 - '@firebase/database-types': 0.10.3 + '@firebase/component': 0.6.4 + '@firebase/database': 0.14.4 + '@firebase/database-types': 0.10.4 '@firebase/logger': 0.4.0 - '@firebase/util': 1.9.2 + '@firebase/util': 1.9.3 tslib: 2.5.0 dev: false - /@firebase/database-types/0.10.3: - resolution: {integrity: sha512-Hu34CDhHYZsd2eielr0jeaWrTJk8Hz0nd7WsnYDnXtQX4i49ppgPesUzPdXVBdIBLJmT0ZZRvT7qWHknkOT+zg==} + /@firebase/database-types/0.10.4: + resolution: {integrity: sha512-dPySn0vJ/89ZeBac70T+2tWWPiJXWbmRygYv0smT5TfE3hDrQ09eKMF3Y+vMlTdrMWq7mUdYW5REWPSGH4kAZQ==} dependencies: '@firebase/app-types': 0.9.0 - '@firebase/util': 1.9.2 + '@firebase/util': 1.9.3 dev: false - /@firebase/database/0.14.3: - resolution: {integrity: sha512-J76W6N7JiVkLaAtPyjaGRkrsIu9pi6iZikuGGtGjqvV19vkn7oiL4Hbo5uTYCMd4waTUWoL9iI08eX184W+5GQ==} + /@firebase/database/0.14.4: + resolution: {integrity: sha512-+Ea/IKGwh42jwdjCyzTmeZeLM3oy1h0mFPsTy6OqCWzcu/KFqRAr5Tt1HRCOBlNOdbh84JPZC47WLU18n2VbxQ==} dependencies: '@firebase/auth-interop-types': 0.2.1 - '@firebase/component': 0.6.3 + '@firebase/component': 0.6.4 '@firebase/logger': 0.4.0 - '@firebase/util': 1.9.2 + '@firebase/util': 1.9.3 faye-websocket: 0.11.4 tslib: 2.5.0 dev: false - /@firebase/firestore-compat/0.3.3_ilabgwonlgwas5yi6hpnop6rs4: - resolution: {integrity: sha512-fMTsSC0s2cF5w2+JoB0dWD/o4kXtLrUCPGnZPuz4S0bqTN2t0vHr3gdAsQLtnadgwB78ACtinYmf4Udwx7TzDg==} + /@firebase/firestore-compat/0.3.5_qi3j262kwfzuzs4h23nf2u4zla: + resolution: {integrity: sha512-gwBFGOqNIgF2TOJ2mKIS1lTQy6I9DytWsmIfvXGV76is53MaZUZXyUZd7oIC8h2Otq6gP3xtvPRQJTMcnQrbFg==} peerDependencies: '@firebase/app-compat': 0.x dependencies: - '@firebase/app-compat': 0.2.3 - '@firebase/component': 0.6.3 - '@firebase/firestore': 3.8.3_elhicscdlgavbvc4rtd5whdute - '@firebase/firestore-types': 2.5.1_rls6ojzmqtv4do6kouxcb5gfn4 - '@firebase/util': 1.9.2 + '@firebase/app-compat': 0.2.5 + '@firebase/component': 0.6.4 + '@firebase/firestore': 3.9.0_urnzyoierxnkmnju32ww72n77u + '@firebase/firestore-types': 2.5.1_pe7cbgjgh7vzd7cjsjzacprt4m + '@firebase/util': 1.9.3 tslib: 2.5.0 transitivePeerDependencies: - '@firebase/app' @@ -2695,26 +2756,26 @@ packages: - encoding dev: false - /@firebase/firestore-types/2.5.1_rls6ojzmqtv4do6kouxcb5gfn4: + /@firebase/firestore-types/2.5.1_pe7cbgjgh7vzd7cjsjzacprt4m: resolution: {integrity: sha512-xG0CA6EMfYo8YeUxC8FeDzf6W3FX1cLlcAGBYV6Cku12sZRI81oWcu61RSKM66K6kUENP+78Qm8mvroBcm1whw==} peerDependencies: '@firebase/app-types': 0.x '@firebase/util': 1.x dependencies: '@firebase/app-types': 0.9.0 - '@firebase/util': 1.9.2 + '@firebase/util': 1.9.3 dev: false - /@firebase/firestore/3.8.3_elhicscdlgavbvc4rtd5whdute: - resolution: {integrity: sha512-4xR3Mqj95bxHg3hZnz0O+LQrHkjq+siT2y+B9da6u68qJ8bzzT42JaFgd1vifhbBpVbBzpFaS2RuCq2E+kGv9g==} + /@firebase/firestore/3.9.0_urnzyoierxnkmnju32ww72n77u: + resolution: {integrity: sha512-At8HeTec3y7EfGjtYqvzON/8896igJgE34zjEndYxKPUKyhQ6xtcM+zhfa8C+lUW6W8qQB6lNzTNNXmF4NxdpQ==} engines: {node: '>=10.10.0'} peerDependencies: '@firebase/app': 0.x dependencies: - '@firebase/app': 0.9.3 - '@firebase/component': 0.6.3 + '@firebase/app': 0.9.5 + '@firebase/component': 0.6.4 '@firebase/logger': 0.4.0 - '@firebase/util': 1.9.2 + '@firebase/util': 1.9.3 '@firebase/webchannel-wrapper': 0.9.0 '@grpc/grpc-js': 1.7.3 '@grpc/proto-loader': 0.6.13 @@ -2724,16 +2785,16 @@ packages: - encoding dev: false - /@firebase/functions-compat/0.3.3_og3pmdegxblfifls6o6dz26cbi: - resolution: {integrity: sha512-UIAJ2gzNq0p/61cXqkpi9DnlQt0hdlGqgmL5an7KuJth2Iv5uGpKg/+OapAZxPuiUNZgTEyZDB7kNBHvnxWq5w==} + /@firebase/functions-compat/0.3.4_zihqpccbnytpkghsenawui4aqu: + resolution: {integrity: sha512-kxVxTGyLV1MBR3sp3mI+eQ6JBqz0G5bk310F8eX4HzDFk4xjk5xY0KdHktMH+edM2xs1BOg0vwvvsAHczIjB+w==} peerDependencies: '@firebase/app-compat': 0.x dependencies: - '@firebase/app-compat': 0.2.3 - '@firebase/component': 0.6.3 - '@firebase/functions': 0.9.3_elhicscdlgavbvc4rtd5whdute + '@firebase/app-compat': 0.2.5 + '@firebase/component': 0.6.4 + '@firebase/functions': 0.9.4_urnzyoierxnkmnju32ww72n77u '@firebase/functions-types': 0.6.0 - '@firebase/util': 1.9.2 + '@firebase/util': 1.9.3 tslib: 2.5.0 transitivePeerDependencies: - '@firebase/app' @@ -2744,33 +2805,33 @@ packages: resolution: {integrity: sha512-hfEw5VJtgWXIRf92ImLkgENqpL6IWpYaXVYiRkFY1jJ9+6tIhWM7IzzwbevwIIud/jaxKVdRzD7QBWfPmkwCYw==} dev: false - /@firebase/functions/0.9.3_elhicscdlgavbvc4rtd5whdute: - resolution: {integrity: sha512-tPJgYY2ROQSYuzvgxZRoHeDj+Ic07/bWHwaftgTriawtupmFOkt5iikuhJSJUhaOpFh9TB335OvCXJw1N+BIlQ==} + /@firebase/functions/0.9.4_urnzyoierxnkmnju32ww72n77u: + resolution: {integrity: sha512-3H2qh6U+q+nepO5Hds+Ddl6J0pS+zisuBLqqQMRBHv9XpWfu0PnDHklNmE8rZ+ccTEXvBj6zjkPfdxt6NisvlQ==} peerDependencies: '@firebase/app': 0.x dependencies: - '@firebase/app': 0.9.3 + '@firebase/app': 0.9.5 '@firebase/app-check-interop-types': 0.2.0 '@firebase/auth-interop-types': 0.2.1 - '@firebase/component': 0.6.3 + '@firebase/component': 0.6.4 '@firebase/messaging-interop-types': 0.2.0 - '@firebase/util': 1.9.2 + '@firebase/util': 1.9.3 node-fetch: 2.6.7_encoding@0.1.13 tslib: 2.5.0 transitivePeerDependencies: - encoding dev: false - /@firebase/installations-compat/0.2.3_2nquphbz2k7fjevr4yz5c7cjmi: - resolution: {integrity: sha512-K9rKM/ym06lkpaKz7bMLxzHK/HEk65XfLJBV+dJkIuWeO0EqqC9VFGrpWAo0QmgC4BqbU58T6VBbzoJjb0gaFw==} + /@firebase/installations-compat/0.2.4_vvye4fsi3sdhkso275hyw4xk7u: + resolution: {integrity: sha512-LI9dYjp0aT9Njkn9U4JRrDqQ6KXeAmFbRC0E7jI7+hxl5YmRWysq5qgQl22hcWpTk+cm3es66d/apoDU/A9n6Q==} peerDependencies: '@firebase/app-compat': 0.x dependencies: - '@firebase/app-compat': 0.2.3 - '@firebase/component': 0.6.3 - '@firebase/installations': 0.6.3_@firebase+app@0.9.3 + '@firebase/app-compat': 0.2.5 + '@firebase/component': 0.6.4 + '@firebase/installations': 0.6.4_@firebase+app@0.9.5 '@firebase/installations-types': 0.5.0_@firebase+app-types@0.9.0 - '@firebase/util': 1.9.2 + '@firebase/util': 1.9.3 tslib: 2.5.0 transitivePeerDependencies: - '@firebase/app' @@ -2785,14 +2846,14 @@ packages: '@firebase/app-types': 0.9.0 dev: false - /@firebase/installations/0.6.3_@firebase+app@0.9.3: - resolution: {integrity: sha512-20JFWm+tweNoRjRbz8/Y4I7O5pUJGZsFKCkLl1qNxfNYECSfrZUuozIDJDZC/MeVn5+kB9CwjThDlgQEPrfLdg==} + /@firebase/installations/0.6.4_@firebase+app@0.9.5: + resolution: {integrity: sha512-u5y88rtsp7NYkCHC3ElbFBrPtieUybZluXyzl7+4BsIz4sqb4vSAuwHEUgCgCeaQhvsnxDEU6icly8U9zsJigA==} peerDependencies: '@firebase/app': 0.x dependencies: - '@firebase/app': 0.9.3 - '@firebase/component': 0.6.3 - '@firebase/util': 1.9.2 + '@firebase/app': 0.9.5 + '@firebase/component': 0.6.4 + '@firebase/util': 1.9.3 idb: 7.0.1 tslib: 2.5.0 dev: false @@ -2803,15 +2864,15 @@ packages: tslib: 2.5.0 dev: false - /@firebase/messaging-compat/0.2.3_5qoz5voa527ucsvtk67mpz25ru: - resolution: {integrity: sha512-MmuuohXV2YRzIoJmDngI5qqO/cF2q7SdAaw7k4r61W3ReJy7x4/rtqrIvwNVhM6X/X8NFGBbsYKsCfRHWjFdkg==} + /@firebase/messaging-compat/0.2.4_iyabqhttlorju4ibfbaqz2vm6i: + resolution: {integrity: sha512-lyFjeUhIsPRYDPNIkYX1LcZMpoVbBWXX4rPl7c/rqc7G+EUea7IEtSt4MxTvh6fDfPuzLn7+FZADfscC+tNMfg==} peerDependencies: '@firebase/app-compat': 0.x dependencies: - '@firebase/app-compat': 0.2.3 - '@firebase/component': 0.6.3 - '@firebase/messaging': 0.12.3_@firebase+app@0.9.3 - '@firebase/util': 1.9.2 + '@firebase/app-compat': 0.2.5 + '@firebase/component': 0.6.4 + '@firebase/messaging': 0.12.4_@firebase+app@0.9.5 + '@firebase/util': 1.9.3 tslib: 2.5.0 transitivePeerDependencies: - '@firebase/app' @@ -2821,31 +2882,31 @@ packages: resolution: {integrity: sha512-ujA8dcRuVeBixGR9CtegfpU4YmZf3Lt7QYkcj693FFannwNuZgfAYaTmbJ40dtjB81SAu6tbFPL9YLNT15KmOQ==} dev: false - /@firebase/messaging/0.12.3_@firebase+app@0.9.3: - resolution: {integrity: sha512-a3ZKcGDiV2sKmQDB56PpgL1yjFxXCtff2+v1grnAZZ4GnfNQ74t2EHCbmgY7xRX7ThzMqug54oxhuk4ur0MIoA==} + /@firebase/messaging/0.12.4_@firebase+app@0.9.5: + resolution: {integrity: sha512-6JLZct6zUaex4g7HI3QbzeUrg9xcnmDAPTWpkoMpd/GoSVWH98zDoWXMGrcvHeCAIsLpFMe4MPoZkJbrPhaASw==} peerDependencies: '@firebase/app': 0.x dependencies: - '@firebase/app': 0.9.3 - '@firebase/component': 0.6.3 - '@firebase/installations': 0.6.3_@firebase+app@0.9.3 + '@firebase/app': 0.9.5 + '@firebase/component': 0.6.4 + '@firebase/installations': 0.6.4_@firebase+app@0.9.5 '@firebase/messaging-interop-types': 0.2.0 - '@firebase/util': 1.9.2 + '@firebase/util': 1.9.3 idb: 7.0.1 tslib: 2.5.0 dev: false - /@firebase/performance-compat/0.2.3_5qoz5voa527ucsvtk67mpz25ru: - resolution: {integrity: sha512-I3rqZsIhauXn4iApfj1ttKQdlti/r8OZBG4YK10vxKSdhAzTIDWDKEsdoCXvvKLwplcMv36sM3WPAPGQLqY5MQ==} + /@firebase/performance-compat/0.2.4_iyabqhttlorju4ibfbaqz2vm6i: + resolution: {integrity: sha512-nnHUb8uP9G8islzcld/k6Bg5RhX62VpbAb/Anj7IXs/hp32Eb2LqFPZK4sy3pKkBUO5wcrlRWQa6wKOxqlUqsg==} peerDependencies: '@firebase/app-compat': 0.x dependencies: - '@firebase/app-compat': 0.2.3 - '@firebase/component': 0.6.3 + '@firebase/app-compat': 0.2.5 + '@firebase/component': 0.6.4 '@firebase/logger': 0.4.0 - '@firebase/performance': 0.6.3_@firebase+app@0.9.3 + '@firebase/performance': 0.6.4_@firebase+app@0.9.5 '@firebase/performance-types': 0.2.0 - '@firebase/util': 1.9.2 + '@firebase/util': 1.9.3 tslib: 2.5.0 transitivePeerDependencies: - '@firebase/app' @@ -2855,30 +2916,30 @@ packages: resolution: {integrity: sha512-kYrbr8e/CYr1KLrLYZZt2noNnf+pRwDq2KK9Au9jHrBMnb0/C9X9yWSXmZkFt4UIdsQknBq8uBB7fsybZdOBTA==} dev: false - /@firebase/performance/0.6.3_@firebase+app@0.9.3: - resolution: {integrity: sha512-NQmQN6Ete7i9jz1mzULJZEGvsOmwwdUy6vpqnhUxSFMYPnlBKjX+yypCUUJDDN5zff5+kfwSD1qCyUAaS0xWUA==} + /@firebase/performance/0.6.4_@firebase+app@0.9.5: + resolution: {integrity: sha512-HfTn/bd8mfy/61vEqaBelNiNnvAbUtME2S25A67Nb34zVuCSCRIX4SseXY6zBnOFj3oLisaEqhVcJmVPAej67g==} peerDependencies: '@firebase/app': 0.x dependencies: - '@firebase/app': 0.9.3 - '@firebase/component': 0.6.3 - '@firebase/installations': 0.6.3_@firebase+app@0.9.3 + '@firebase/app': 0.9.5 + '@firebase/component': 0.6.4 + '@firebase/installations': 0.6.4_@firebase+app@0.9.5 '@firebase/logger': 0.4.0 - '@firebase/util': 1.9.2 + '@firebase/util': 1.9.3 tslib: 2.5.0 dev: false - /@firebase/remote-config-compat/0.2.3_5qoz5voa527ucsvtk67mpz25ru: - resolution: {integrity: sha512-w/ZL03YgYaXq03xIRyJ5oPhXZi6iDsY/v0J9Y7I7SqxCYytEnHVrL9nvBqd9R94y5LRAVNPCLokJeeizaUz4VQ==} + /@firebase/remote-config-compat/0.2.4_iyabqhttlorju4ibfbaqz2vm6i: + resolution: {integrity: sha512-FKiki53jZirrDFkBHglB3C07j5wBpitAaj8kLME6g8Mx+aq7u9P7qfmuSRytiOItADhWUj7O1JIv7n9q87SuwA==} peerDependencies: '@firebase/app-compat': 0.x dependencies: - '@firebase/app-compat': 0.2.3 - '@firebase/component': 0.6.3 + '@firebase/app-compat': 0.2.5 + '@firebase/component': 0.6.4 '@firebase/logger': 0.4.0 - '@firebase/remote-config': 0.4.3_@firebase+app@0.9.3 + '@firebase/remote-config': 0.4.4_@firebase+app@0.9.5 '@firebase/remote-config-types': 0.3.0 - '@firebase/util': 1.9.2 + '@firebase/util': 1.9.3 tslib: 2.5.0 transitivePeerDependencies: - '@firebase/app' @@ -2888,29 +2949,29 @@ packages: resolution: {integrity: sha512-RtEH4vdcbXZuZWRZbIRmQVBNsE7VDQpet2qFvq6vwKLBIQRQR5Kh58M4ok3A3US8Sr3rubYnaGqZSurCwI8uMA==} dev: false - /@firebase/remote-config/0.4.3_@firebase+app@0.9.3: - resolution: {integrity: sha512-Q6d4jBWZoNt6SYq87bjtDGUHFkKwAmGnNjWyRjl14AZqE1ilgd9NZHmutharlYJ3LvxMsid80HdK5SgGEpIPfg==} + /@firebase/remote-config/0.4.4_@firebase+app@0.9.5: + resolution: {integrity: sha512-x1ioTHGX8ZwDSTOVp8PBLv2/wfwKzb4pxi0gFezS5GCJwbLlloUH4YYZHHS83IPxnua8b6l0IXUaWd0RgbWwzQ==} peerDependencies: '@firebase/app': 0.x dependencies: - '@firebase/app': 0.9.3 - '@firebase/component': 0.6.3 - '@firebase/installations': 0.6.3_@firebase+app@0.9.3 + '@firebase/app': 0.9.5 + '@firebase/component': 0.6.4 + '@firebase/installations': 0.6.4_@firebase+app@0.9.5 '@firebase/logger': 0.4.0 - '@firebase/util': 1.9.2 + '@firebase/util': 1.9.3 tslib: 2.5.0 dev: false - /@firebase/storage-compat/0.3.1_ilabgwonlgwas5yi6hpnop6rs4: - resolution: {integrity: sha512-6HaTvWsT5Yy3j4UpCZpMcFUYEkJ2XYWukdyTl02u6VjSBRLvkhOXPzEfMvgVWqhnF/rYVfPdjrZ904wk5OxtmQ==} + /@firebase/storage-compat/0.3.2_qi3j262kwfzuzs4h23nf2u4zla: + resolution: {integrity: sha512-wvsXlLa9DVOMQJckbDNhXKKxRNNewyUhhbXev3t8kSgoCotd1v3MmqhKKz93ePhDnhHnDs7bYHy+Qa8dRY6BXw==} peerDependencies: '@firebase/app-compat': 0.x dependencies: - '@firebase/app-compat': 0.2.3 - '@firebase/component': 0.6.3 - '@firebase/storage': 0.11.1_elhicscdlgavbvc4rtd5whdute - '@firebase/storage-types': 0.8.0_rls6ojzmqtv4do6kouxcb5gfn4 - '@firebase/util': 1.9.2 + '@firebase/app-compat': 0.2.5 + '@firebase/component': 0.6.4 + '@firebase/storage': 0.11.2_urnzyoierxnkmnju32ww72n77u + '@firebase/storage-types': 0.8.0_pe7cbgjgh7vzd7cjsjzacprt4m + '@firebase/util': 1.9.3 tslib: 2.5.0 transitivePeerDependencies: - '@firebase/app' @@ -2918,32 +2979,32 @@ packages: - encoding dev: false - /@firebase/storage-types/0.8.0_rls6ojzmqtv4do6kouxcb5gfn4: + /@firebase/storage-types/0.8.0_pe7cbgjgh7vzd7cjsjzacprt4m: resolution: {integrity: sha512-isRHcGrTs9kITJC0AVehHfpraWFui39MPaU7Eo8QfWlqW7YPymBmRgjDrlOgFdURh6Cdeg07zmkLP5tzTKRSpg==} peerDependencies: '@firebase/app-types': 0.x '@firebase/util': 1.x dependencies: '@firebase/app-types': 0.9.0 - '@firebase/util': 1.9.2 + '@firebase/util': 1.9.3 dev: false - /@firebase/storage/0.11.1_elhicscdlgavbvc4rtd5whdute: - resolution: {integrity: sha512-Xv8EG2j52ugF2xayBz26U9J0VBXHXPMVxSN+ph3R3BSoHxvMLaPu+qUYKHavSt+zbcgPH2GyBhrCdJK6SaDFPA==} + /@firebase/storage/0.11.2_urnzyoierxnkmnju32ww72n77u: + resolution: {integrity: sha512-CtvoFaBI4hGXlXbaCHf8humajkbXhs39Nbh6MbNxtwJiCqxPy9iH3D3CCfXAvP0QvAAwmJUTK3+z9a++Kc4nkA==} peerDependencies: '@firebase/app': 0.x dependencies: - '@firebase/app': 0.9.3 - '@firebase/component': 0.6.3 - '@firebase/util': 1.9.2 + '@firebase/app': 0.9.5 + '@firebase/component': 0.6.4 + '@firebase/util': 1.9.3 node-fetch: 2.6.7_encoding@0.1.13 tslib: 2.5.0 transitivePeerDependencies: - encoding dev: false - /@firebase/util/1.9.2: - resolution: {integrity: sha512-9l0uMGPGw3GsoD5khjMmYCCcMq/OR/OOSViiWMN+s2Q0pxM+fYzrii1H+r8qC/uoMjSVXomjLZt0vZIyryCqtQ==} + /@firebase/util/1.9.3: + resolution: {integrity: sha512-DY02CRhOZwpzO36fHpuVysz6JZrscPiBXD0fXp6qSrL9oNOx5KWICKdR95C0lSITzxp0TZosVyHqzatE8JbcjA==} dependencies: tslib: 2.5.0 dev: false @@ -2956,8 +3017,8 @@ packages: resolution: {integrity: sha512-H9l79u4kJ2PVSxUNA08HMYAnUBLj9v6KjYQ7SQ71hOZcEXhShE/y5iQCesP8+6/Ik/7i2O0a10bPquIcYfufog==} engines: {node: ^8.13.0 || >=10.10.0} dependencies: - '@grpc/proto-loader': 0.7.4 - '@types/node': 18.14.4 + '@grpc/proto-loader': 0.7.5 + '@types/node': 18.15.3 dev: false /@grpc/proto-loader/0.6.13: @@ -2972,15 +3033,15 @@ packages: yargs: 16.2.0 dev: false - /@grpc/proto-loader/0.7.4: - resolution: {integrity: sha512-MnWjkGwqQ3W8fx94/c1CwqLsNmHHv2t0CFn+9++6+cDphC1lolpg9M2OU0iebIjK//pBNX9e94ho+gjx6vz39w==} + /@grpc/proto-loader/0.7.5: + resolution: {integrity: sha512-mfcTuMbFowq1wh/Rn5KQl6qb95M21Prej3bewD9dUQMurYGVckGO/Pbe2Ocwto6sD05b/mxZLspvqwx60xO2Rg==} engines: {node: '>=6'} hasBin: true dependencies: '@types/long': 4.0.2 lodash.camelcase: 4.3.0 long: 4.0.0 - protobufjs: 7.1.2 + protobufjs: 7.2.2 yargs: 16.2.0 dev: false @@ -3035,7 +3096,7 @@ packages: engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: '@jest/types': 28.1.3 - '@types/node': 18.14.4 + '@types/node': 18.15.3 chalk: 4.1.2 jest-message-util: 28.1.3 jest-util: 28.1.3 @@ -3047,7 +3108,7 @@ packages: engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@jest/types': 29.5.0 - '@types/node': 18.14.4 + '@types/node': 18.15.3 chalk: 4.1.2 jest-message-util: 29.5.0 jest-util: 29.5.0 @@ -3068,14 +3129,14 @@ packages: '@jest/test-result': 28.1.3 '@jest/transform': 28.1.3 '@jest/types': 28.1.3 - '@types/node': 18.14.4 + '@types/node': 18.15.3 ansi-escapes: 4.3.2 chalk: 4.1.2 ci-info: 3.8.0 exit: 0.1.2 graceful-fs: 4.2.10 jest-changed-files: 28.1.3 - jest-config: 28.1.3_@types+node@18.14.4 + jest-config: 28.1.3_@types+node@18.15.3 jest-haste-map: 28.1.3 jest-message-util: 28.1.3 jest-regex-util: 28.0.2 @@ -3103,7 +3164,7 @@ packages: dependencies: '@jest/fake-timers': 28.1.3 '@jest/types': 28.1.3 - '@types/node': 18.14.4 + '@types/node': 18.15.3 jest-mock: 29.5.0 dev: true @@ -3137,7 +3198,7 @@ packages: dependencies: '@jest/types': 28.1.3 '@sinonjs/fake-timers': 9.1.2 - '@types/node': 18.14.4 + '@types/node': 18.15.3 jest-message-util: 28.1.3 jest-mock: 29.5.0 jest-util: 28.1.3 @@ -3169,7 +3230,7 @@ packages: '@jest/transform': 28.1.3 '@jest/types': 28.1.3 '@jridgewell/trace-mapping': 0.3.17 - '@types/node': 18.14.4 + '@types/node': 18.15.3 chalk: 4.1.2 collect-v8-coverage: 1.0.1 exit: 0.1.2 @@ -3298,7 +3359,7 @@ packages: '@jest/schemas': 28.1.3 '@types/istanbul-lib-coverage': 2.0.4 '@types/istanbul-reports': 3.0.1 - '@types/node': 18.14.4 + '@types/node': 18.15.3 '@types/yargs': 17.0.22 chalk: 4.1.2 dev: true @@ -3310,12 +3371,12 @@ packages: '@jest/schemas': 29.4.3 '@types/istanbul-lib-coverage': 2.0.4 '@types/istanbul-reports': 3.0.1 - '@types/node': 18.14.4 + '@types/node': 18.15.3 '@types/yargs': 17.0.22 chalk: 4.1.2 dev: true - /@joshwooding/vite-plugin-react-docgen-typescript/0.2.1_vwvfc4ezh6jlf6pa67auy3eulu: + /@joshwooding/vite-plugin-react-docgen-typescript/0.2.1_rn5le4pusnctvs35nlnpu7hrue: resolution: {integrity: sha512-ou4ZJSXMMWHqGS4g8uNRbC5TiTWxAgQZiVucoUrOCWuPrTbkpJbmVyIi9jU72SBry7gQtuMEDp4YR8EEXAg7VQ==} peerDependencies: typescript: '>= 4.3.x' @@ -3327,9 +3388,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.5 - typescript: 4.9.5 - vite: 4.1.4 + react-docgen-typescript: 2.2.2_typescript@5.0.2 + typescript: 5.0.2 + vite: 4.2.0 dev: true /@jridgewell/gen-mapping/0.1.1: @@ -3422,8 +3483,8 @@ packages: react: 18.2.0 dev: true - /@mui/base/5.0.0-alpha.119_zula6vjvt3wdocc4mwcxqa6nzi: - resolution: {integrity: sha512-XA5zhlYfXi67u613eIF0xRmktkatx6ERy3h+PwrMN5IcWFbgiL1guz8VpdXON+GWb8+G7B8t5oqTFIaCqaSAeA==} + /@mui/base/5.0.0-alpha.121_zula6vjvt3wdocc4mwcxqa6nzi: + resolution: {integrity: sha512-8nJRY76UqlJV+q/Yzo0tgGfPWEOa+4N9rjO81fMmcJqP0I6m54hLDXsjvMg4tvelY5eKHXUK6Tb7en+GHfTqZA==} engines: {node: '>=12.0.0'} peerDependencies: '@types/react': ^17.0.0 || ^18.0.0 @@ -3436,7 +3497,7 @@ packages: '@babel/runtime': 7.21.0 '@emotion/is-prop-valid': 1.2.0 '@mui/types': 7.2.3_@types+react@18.0.28 - '@mui/utils': 5.11.11_react@18.2.0 + '@mui/utils': 5.11.13_react@18.2.0 '@popperjs/core': 2.11.6 '@types/react': 18.0.28 clsx: 1.2.1 @@ -3446,11 +3507,11 @@ packages: react-is: 18.2.0 dev: false - /@mui/core-downloads-tracker/5.11.11: - resolution: {integrity: sha512-0YK0K9GfW1ysw9z4ztWAjLW+bktf+nExMyn2+EQe1Ijb0kF2kz1kIOmb4+di0/PsXG70uCuw4DhEIdNd+JQkRA==} + /@mui/core-downloads-tracker/5.11.13: + resolution: {integrity: sha512-lx+GXBR9h/ApZsEP728tl0pyZyuajto+VnBgsoAzw1d5+CbmOo8ZWieKwVUGxZlPT1wMYNUYS5NtKzCli0xYjw==} dev: false - /@mui/icons-material/5.11.11_h5fh5ntwxtyr677wxvzgewjsma: + /@mui/icons-material/5.11.11_4lyzeezzeeal3x6jtb4ni26w7u: resolution: {integrity: sha512-Eell3ADmQVE8HOpt/LZ3zIma8JSvPh3XgnhwZLT0k5HRqZcd6F/QDHc7xsWtgz09t+UEFvOYJXjtrwKmLdwwpw==} engines: {node: '>=12.0.0'} peerDependencies: @@ -3462,13 +3523,13 @@ packages: optional: true dependencies: '@babel/runtime': 7.21.0 - '@mui/material': 5.11.11_xqeqsl5kvjjtyxwyi3jhw3yuli + '@mui/material': 5.11.13_xqeqsl5kvjjtyxwyi3jhw3yuli '@types/react': 18.0.28 react: 18.2.0 dev: false - /@mui/material/5.11.11_xqeqsl5kvjjtyxwyi3jhw3yuli: - resolution: {integrity: sha512-sSe0dmKjB1IGOYt32Pcha+cXV3IIrX5L5mFAF9LDRssp/x53bluhgLLbkc8eTiJvueVvo6HAyze6EkFEYLQRXQ==} + /@mui/material/5.11.13_xqeqsl5kvjjtyxwyi3jhw3yuli: + resolution: {integrity: sha512-2CnSj43F+159LbGmTLLQs5xbGYMiYlpTByQhP7c7cMX6opbScctBFE1PuyElpAmwW8Ag9ysfZH1d1MFAmJQkjg==} engines: {node: '>=12.0.0'} peerDependencies: '@emotion/react': ^11.5.0 @@ -3487,11 +3548,11 @@ packages: '@babel/runtime': 7.21.0 '@emotion/react': 11.10.6_pmekkgnqduwlme35zpnqhenc34 '@emotion/styled': 11.10.6_oouaibmszuch5k64ms7uxp2aia - '@mui/base': 5.0.0-alpha.119_zula6vjvt3wdocc4mwcxqa6nzi - '@mui/core-downloads-tracker': 5.11.11 - '@mui/system': 5.11.11_d2lgyfpecxdc2bsiwyag5wf7ti + '@mui/base': 5.0.0-alpha.121_zula6vjvt3wdocc4mwcxqa6nzi + '@mui/core-downloads-tracker': 5.11.13 + '@mui/system': 5.11.13_d2lgyfpecxdc2bsiwyag5wf7ti '@mui/types': 7.2.3_@types+react@18.0.28 - '@mui/utils': 5.11.11_react@18.2.0 + '@mui/utils': 5.11.13_react@18.2.0 '@types/react': 18.0.28 '@types/react-transition-group': 4.4.5 clsx: 1.2.1 @@ -3503,8 +3564,8 @@ packages: react-transition-group: 4.4.5_biqbaboplfbrettd7655fr4n2y dev: false - /@mui/private-theming/5.11.11_pmekkgnqduwlme35zpnqhenc34: - resolution: {integrity: sha512-yLgTkjNC1mpye2SOUkc+zQQczUpg8NvQAETvxwXTMzNgJK1pv4htL7IvBM5vmCKG7IHAB3hX26W2u6i7bxwF3A==} + /@mui/private-theming/5.11.13_pmekkgnqduwlme35zpnqhenc34: + resolution: {integrity: sha512-PJnYNKzW5LIx3R+Zsp6WZVPs6w5sEKJ7mgLNnUXuYB1zo5aX71FVLtV7geyPXRcaN2tsoRNK7h444ED0t7cIjA==} engines: {node: '>=12.0.0'} peerDependencies: '@types/react': ^17.0.0 || ^18.0.0 @@ -3514,7 +3575,7 @@ packages: optional: true dependencies: '@babel/runtime': 7.21.0 - '@mui/utils': 5.11.11_react@18.2.0 + '@mui/utils': 5.11.13_react@18.2.0 '@types/react': 18.0.28 prop-types: 15.8.1 react: 18.2.0 @@ -3542,8 +3603,8 @@ packages: react: 18.2.0 dev: false - /@mui/system/5.11.11_d2lgyfpecxdc2bsiwyag5wf7ti: - resolution: {integrity: sha512-a9gaOAJBjpzypDfhbGZQ8HzdcxdxsKkFvbp1aAWZhFHBPdehEkARNh7mj851VfEhD/GdffYt85PFKFKdUta5Eg==} + /@mui/system/5.11.13_d2lgyfpecxdc2bsiwyag5wf7ti: + resolution: {integrity: sha512-OWP0Alp6C8ufnGm9+CZcl3d+OoRXL2PnrRT5ohaMLxvGL9OfNcL2t4JOjMmA0k1UAGd6E/Ygbu5lEPrZSDlvCg==} engines: {node: '>=12.0.0'} peerDependencies: '@emotion/react': ^11.5.0 @@ -3561,10 +3622,10 @@ packages: '@babel/runtime': 7.21.0 '@emotion/react': 11.10.6_pmekkgnqduwlme35zpnqhenc34 '@emotion/styled': 11.10.6_oouaibmszuch5k64ms7uxp2aia - '@mui/private-theming': 5.11.11_pmekkgnqduwlme35zpnqhenc34 + '@mui/private-theming': 5.11.13_pmekkgnqduwlme35zpnqhenc34 '@mui/styled-engine': 5.11.11_xqp3pgpqjlfxxa3zxu4zoc4fba '@mui/types': 7.2.3_@types+react@18.0.28 - '@mui/utils': 5.11.11_react@18.2.0 + '@mui/utils': 5.11.13_react@18.2.0 '@types/react': 18.0.28 clsx: 1.2.1 csstype: 3.1.1 @@ -3583,8 +3644,8 @@ packages: '@types/react': 18.0.28 dev: false - /@mui/utils/5.11.11_react@18.2.0: - resolution: {integrity: sha512-neMM5rrEXYQrOrlxUfns/TGgX4viS8K2zb9pbQh11/oUUYFlGI32Tn+PHePQx7n6Fy/0zq6WxdBFC9VpnJ5JrQ==} + /@mui/utils/5.11.13_react@18.2.0: + resolution: {integrity: sha512-5ltA58MM9euOuUcnvwFJqpLdEugc9XFsRR8Gt4zZNb31XzMfSKJPR4eumulyhsOTK1rWf7K4D63NKFPfX0AxqA==} engines: {node: '>=12.0.0'} peerDependencies: react: ^17.0.0 || ^18.0.0 @@ -3609,8 +3670,8 @@ packages: resolution: {integrity: sha512-6iNixFzCndH+Bl4FetQzOMjxCJqg8fs0LAlZviig1K6mIjOWH2m2oPcHcOg1Ta5VCe7Bx5KG1Hs+NrWDUkBt9A==} dev: false - /@next/env/13.2.3: - resolution: {integrity: sha512-FN50r/E+b8wuqyRjmGaqvqNDuWBWYWQiigfZ50KnSFH0f+AMQQyaZl+Zm2+CIpKk0fL9QxhLxOpTVA3xFHgFow==} + /@next/env/13.2.2: + resolution: {integrity: sha512-sBcFEJS8j2cNQemYy07TKUd8lSWj3/mzFA4GCTr/4T4LfYiw5Ep+PZ06AuFdR3z+jIZt9YqaXwUYi1J4p4yABQ==} /@next/eslint-plugin-next/13.2.4: resolution: {integrity: sha512-ck1lI+7r1mMJpqLNa3LJ5pxCfOB1lfJncKmRJeJxcJqcngaFwylreLP7da6Rrjr6u2gVRTfmnkSkjc80IiQCwQ==} @@ -3627,8 +3688,8 @@ packages: dev: false optional: true - /@next/swc-android-arm-eabi/13.2.3: - resolution: {integrity: sha512-mykdVaAXX/gm+eFO2kPeVjnOCKwanJ9mV2U0lsUGLrEdMUifPUjiXKc6qFAIs08PvmTMOLMNnUxqhGsJlWGKSw==} + /@next/swc-android-arm-eabi/13.2.2: + resolution: {integrity: sha512-JHTnsNTl9gDQkWqggJFj6rQHK2+9lIMGolOPihfZBQAE48amVsGkYyFHbiuWnhwnYX99fCFWomARDwOtLAhzdQ==} engines: {node: '>= 10'} cpu: [arm] os: [android] @@ -3644,8 +3705,8 @@ packages: dev: false optional: true - /@next/swc-android-arm64/13.2.3: - resolution: {integrity: sha512-8XwHPpA12gdIFtope+n9xCtJZM3U4gH4vVTpUwJ2w1kfxFmCpwQ4xmeGSkR67uOg80yRMuF0h9V1ueo05sws5w==} + /@next/swc-android-arm64/13.2.2: + resolution: {integrity: sha512-j3zfjrojWuejU7bjucwBFviN9hQkQ1HqRVYMp8PDX82LXMc2pV4uZ3e9jQ8qk3OWsA1m+luaBK8o46NvS/Tetg==} engines: {node: '>= 10'} cpu: [arm64] os: [android] @@ -3661,8 +3722,8 @@ packages: dev: false optional: true - /@next/swc-darwin-arm64/13.2.3: - resolution: {integrity: sha512-TXOubiFdLpMfMtaRu1K5d1I9ipKbW5iS2BNbu8zJhoqrhk3Kp7aRKTxqFfWrbliAHhWVE/3fQZUYZOWSXVQi1w==} + /@next/swc-darwin-arm64/13.2.2: + resolution: {integrity: sha512-X66dKAq6IBmkirnsWyvncJ9i3kWkE2WrRbXGoFoEPNoyjgtV2qyLyk4ET9JIS0TJ2u01qODML6j4pKeqK8rNLA==} engines: {node: '>= 10'} cpu: [arm64] os: [darwin] @@ -3678,8 +3739,8 @@ packages: dev: false optional: true - /@next/swc-darwin-x64/13.2.3: - resolution: {integrity: sha512-GZctkN6bJbpjlFiS5pylgB2pifHvgkqLAPumJzxnxkf7kqNm6rOGuNjsROvOWVWXmKhrzQkREO/WPS2aWsr/yw==} + /@next/swc-darwin-x64/13.2.2: + resolution: {integrity: sha512-jsJKzVLlCNrG/Ot9Owv8QWUymAyS+Hcf/KQsXOYtL6PgvGqBMJ931SdaBpLOuyRD+sozTIRiAPCDwVgF/62PBQ==} engines: {node: '>= 10'} cpu: [x64] os: [darwin] @@ -3695,8 +3756,8 @@ packages: dev: false optional: true - /@next/swc-freebsd-x64/13.2.3: - resolution: {integrity: sha512-rK6GpmMt/mU6MPuav0/M7hJ/3t8HbKPCELw/Uqhi4732xoq2hJ2zbo2FkYs56y6w0KiXrIp4IOwNB9K8L/q62g==} + /@next/swc-freebsd-x64/13.2.2: + resolution: {integrity: sha512-oToMAjhdGWSgSOimKJ9GwPxOqoBIbbVUKoFGP5Imy5UGbbsnyV2jSLGhoi2/dH1Ko5X5d1R1la/X05xNB/p6ag==} engines: {node: '>= 10'} cpu: [x64] os: [freebsd] @@ -3712,8 +3773,8 @@ packages: dev: false optional: true - /@next/swc-linux-arm-gnueabihf/13.2.3: - resolution: {integrity: sha512-yeiCp/Odt1UJ4KUE89XkeaaboIDiVFqKP4esvoLKGJ0fcqJXMofj4ad3tuQxAMs3F+qqrz9MclqhAHkex1aPZA==} + /@next/swc-linux-arm-gnueabihf/13.2.2: + resolution: {integrity: sha512-DSgXP2kkLt+oM3fRWaa2xPAUmtTnoa+GBfV5Czbgv4htY1BKClobp7Bj909TZUswvxXJtXiW8GrJp2To5lQfmw==} engines: {node: '>= 10'} cpu: [arm] os: [linux] @@ -3729,12 +3790,11 @@ packages: dev: false optional: true - /@next/swc-linux-arm64-gnu/13.2.3: - resolution: {integrity: sha512-/miIopDOUsuNlvjBjTipvoyjjaxgkOuvlz+cIbbPcm1eFvzX2ltSfgMgty15GuOiR8Hub4FeTSiq3g2dmCkzGA==} + /@next/swc-linux-arm64-gnu/13.2.2: + resolution: {integrity: sha512-HR1Nf7kz5NmijCiArJTz4bjJlbWyPA3JQ3SbxnPXDMPUkECBG1p0z6y2N2+oqNouMyOriNR6TSEgh7F2tASdZg==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] - libc: [glibc] requiresBuild: true optional: true @@ -3747,12 +3807,11 @@ packages: dev: false optional: true - /@next/swc-linux-arm64-musl/13.2.3: - resolution: {integrity: sha512-sujxFDhMMDjqhruup8LLGV/y+nCPi6nm5DlFoThMJFvaaKr/imhkXuk8uCTq4YJDbtRxnjydFv2y8laBSJVC2g==} + /@next/swc-linux-arm64-musl/13.2.2: + resolution: {integrity: sha512-hDf08/yPZisKQ19lMHkVuQUmipmSq9QPzFmNDcV7e4QazTbIRwCC8J605EHedg+RGHS78CUwVhGQoQ2mbQ5y3w==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] - libc: [musl] requiresBuild: true optional: true @@ -3765,12 +3824,11 @@ packages: dev: false optional: true - /@next/swc-linux-x64-gnu/13.2.3: - resolution: {integrity: sha512-w5MyxPknVvC9LVnMenAYMXMx4KxPwXuJRMQFvY71uXg68n7cvcas85U5zkdrbmuZ+JvsO5SIG8k36/6X3nUhmQ==} + /@next/swc-linux-x64-gnu/13.2.2: + resolution: {integrity: sha512-9QeTU1YVhQXoVUOBXErJoExZR3XTovplMCTwB+RAtHu3oUGGs4KQFY8MoFUOmMA7CAJnKS+h1MD1T9/HDpS9PQ==} engines: {node: '>= 10'} cpu: [x64] os: [linux] - libc: [glibc] requiresBuild: true optional: true @@ -3783,12 +3841,11 @@ packages: dev: false optional: true - /@next/swc-linux-x64-musl/13.2.3: - resolution: {integrity: sha512-CTeelh8OzSOVqpzMFMFnVRJIFAFQoTsI9RmVJWW/92S4xfECGcOzgsX37CZ8K982WHRzKU7exeh7vYdG/Eh4CA==} + /@next/swc-linux-x64-musl/13.2.2: + resolution: {integrity: sha512-SvyejahQLY79YJFXU27AcoDbmRqdK08t7HAf5LmocLdR5fxIneg7Oim/pwcuS/w8pYqDSAiCiMO0AAxSfO5jZQ==} engines: {node: '>= 10'} cpu: [x64] os: [linux] - libc: [musl] requiresBuild: true optional: true @@ -3801,8 +3858,8 @@ packages: dev: false optional: true - /@next/swc-win32-arm64-msvc/13.2.3: - resolution: {integrity: sha512-7N1KBQP5mo4xf52cFCHgMjzbc9jizIlkTepe9tMa2WFvEIlKDfdt38QYcr9mbtny17yuaIw02FXOVEytGzqdOQ==} + /@next/swc-win32-arm64-msvc/13.2.2: + resolution: {integrity: sha512-Av46kUBp1qtJdk/HrIHZMIARE+jcMSJLHcrs/MkbHR1p4iEXf3JkZRrdQDUKZaz/VHDYc7Qw+vUv7zmgPZJbmw==} engines: {node: '>= 10'} cpu: [arm64] os: [win32] @@ -3818,8 +3875,8 @@ packages: dev: false optional: true - /@next/swc-win32-ia32-msvc/13.2.3: - resolution: {integrity: sha512-LzWD5pTSipUXTEMRjtxES/NBYktuZdo7xExJqGDMnZU8WOI+v9mQzsmQgZS/q02eIv78JOCSemqVVKZBGCgUvA==} + /@next/swc-win32-ia32-msvc/13.2.2: + resolution: {integrity: sha512-6HvAJY7yYfU+Ast3GPM8O+BsLGAdhZV0qUwHerJo5+Yzzx0VXW+OZTJ9O6RU01HBiMiqdz7SF3Or4Vca6WZKkQ==} engines: {node: '>= 10'} cpu: [ia32] os: [win32] @@ -3835,8 +3892,8 @@ packages: dev: false optional: true - /@next/swc-win32-x64-msvc/13.2.3: - resolution: {integrity: sha512-aLG2MaFs4y7IwaMTosz2r4mVbqRyCnMoFqOcmfTi7/mAS+G4IMH0vJp4oLdbshqiVoiVuKrAfqtXj55/m7Qu1Q==} + /@next/swc-win32-x64-msvc/13.2.2: + resolution: {integrity: sha512-7oNoiepUMf43+/4kUdpeGGkEBd3bOQwzo4O+bq/jslHb1IrQ7b8ZF1ODQyrDd661um6q5D+0sOtyRZJpo8e1jQ==} engines: {node: '>= 10'} cpu: [x64] os: [win32] @@ -3902,8 +3959,8 @@ packages: - supports-color dev: true - /@perfsee/sdk/1.3.0: - resolution: {integrity: sha512-Yh9JXedRxeC2pSKZXT/VKaVUcNCmaqKhs9B8ARnqAsJVcQfcK/yWkefF+5cD+PyzLQ3QGJbdtx/+lIORSjO7Uw==} + /@perfsee/sdk/1.5.1: + resolution: {integrity: sha512-r+JHsYfJOiCygufzvZ6365J8ZtLzwpH7718NL2aUuKjFBSJ0cUY4mu/RYD4KS5OtjMw8YukzS/rGGQ8neYfX/g==} hasBin: true dependencies: chalk: 4.1.2 @@ -3923,7 +3980,7 @@ packages: tslib: 2.5.0 dev: true - /@perfsee/webpack/1.5.0_webpack@5.76.1: + /@perfsee/webpack/1.5.0_webpack@5.76.2: resolution: {integrity: sha512-ck1TDS1J9elzk3UXTJHkkZgNq9UuebmJ+4CuyaBBiC+j7fONUUCZftV/KxMsApob2CeyhV95lVnbjxXJnmFoLQ==} peerDependencies: webpack: '>= 4' @@ -3932,7 +3989,7 @@ packages: '@perfsee/plugin-utils': 1.5.0 chalk: 4.1.2 tslib: 2.5.0 - webpack: 5.76.1 + webpack: 5.76.2 transitivePeerDependencies: - encoding - supports-color @@ -3950,13 +4007,13 @@ packages: tslib: 2.5.0 dev: true - /@playwright/test/1.31.1: - resolution: {integrity: sha512-IsytVZ+0QLDh1Hj83XatGp/GsI1CDJWbyDaBGbainsh0p2zC7F4toUocqowmjS6sQff2NGT3D9WbDj/3K2CJiA==} + /@playwright/test/1.31.2: + resolution: {integrity: sha512-BYVutxDI4JeZKV1+ups6dt5WiqKhjBtIYowyZIJ3kBDmJgsuPKsqqKNIMFbUePLSCmp2cZu+BDL427RcNKTRYw==} engines: {node: '>=14'} hasBin: true dependencies: - '@types/node': 18.14.4 - playwright-core: 1.31.1 + '@types/node': 18.15.3 + playwright-core: 1.31.2 optionalDependencies: fsevents: 2.3.2 dev: true @@ -4361,7 +4418,7 @@ packages: '@storybook/csf-plugin': 7.0.0-rc.1 '@storybook/csf-tools': 7.0.0-rc.1 '@storybook/global': 5.0.0 - '@storybook/mdx2-csf': 1.0.0-next.5 + '@storybook/mdx2-csf': 1.0.0-next.6 '@storybook/node-logger': 7.0.0-rc.1 '@storybook/postinstall': 7.0.0-rc.1 '@storybook/preview-api': 7.0.0-rc.1 @@ -4645,7 +4702,7 @@ packages: - supports-color dev: true - /@storybook/builder-vite/7.0.0-rc.1_vwvfc4ezh6jlf6pa67auy3eulu: + /@storybook/builder-vite/7.0.0-rc.1_rn5le4pusnctvs35nlnpu7hrue: resolution: {integrity: sha512-2VQXguqZaUeToo03lY6pm/okonslO+wJl/godN1TitmDk5UQ/kWOocV3yMPQ+h+F+fShpkxSwz3nMNIVDS8+BQ==} peerDependencies: '@preact/preset-vite': '*' @@ -4668,7 +4725,7 @@ packages: '@storybook/client-logger': 7.0.0-rc.1 '@storybook/core-common': 7.0.0-rc.1 '@storybook/csf-plugin': 7.0.0-rc.1 - '@storybook/mdx2-csf': 1.0.0-next.5 + '@storybook/mdx2-csf': 1.0.0-next.6 '@storybook/node-logger': 7.0.0-rc.1 '@storybook/preview': 7.0.0-rc.1 '@storybook/preview-api': 7.0.0-rc.1 @@ -4682,8 +4739,8 @@ packages: magic-string: 0.27.0 rollup: 3.14.0 slash: 3.0.0 - typescript: 4.9.5 - vite: 4.1.4 + typescript: 5.0.2 + vite: 4.2.0 transitivePeerDependencies: - supports-color dev: true @@ -4699,14 +4756,14 @@ packages: telejson: 7.0.4 dev: true - /@storybook/channel-postmessage/7.0.0-rc.3: - resolution: {integrity: sha512-1uptuCjA4vAvvoxNoIJPTIpSARzJnLU7eahRhTPwELBnCH0ObqvgInge0cvbYsaTRDNV90oBbEKlxLf1Zb1BhQ==} + /@storybook/channel-postmessage/7.0.0-rc.4: + resolution: {integrity: sha512-ZWuwZfYfwpvCx+WgoTEweFmQ6cb4B3HUT6eNcFMeXgMRw1q9roa8CDCCw+4TJ2jDkvUrdkYTHYmcgn0QpAxpAg==} dependencies: - '@storybook/channels': 7.0.0-rc.3 - '@storybook/client-logger': 7.0.0-rc.3 - '@storybook/core-events': 7.0.0-rc.1 + '@storybook/channels': 7.0.0-rc.4 + '@storybook/client-logger': 7.0.0-rc.4 + '@storybook/core-events': 7.0.0-rc.4 '@storybook/global': 5.0.0 - qs: 6.11.0 + qs: 6.11.1 telejson: 7.0.4 dev: true @@ -4723,8 +4780,8 @@ packages: resolution: {integrity: sha512-hBER6gliJxsrYEbWlXNljf0/1ybIlYCtaK0Vcgqdw/zmTLG6hEbBpVnxJh56T3mD0Beng8ro9D4EkcLZGQ1LlA==} dev: true - /@storybook/channels/7.0.0-rc.3: - resolution: {integrity: sha512-jaODIck+um16Fn2k1vwHK9RNk2J8hLVyzLSkoGM40TsMF5nichwI3rA6225pLk015itJbhCAi/RhaMFBI+ZtsA==} + /@storybook/channels/7.0.0-rc.4: + resolution: {integrity: sha512-N4jQPVsT+Qd3dYRFKL2jN1Ik1XXYxCO2e6hoxir55VvAd5WCCnwNWmglEWRoIMNwmJQAbyFRCxbYzAKctsqaVw==} dev: true /@storybook/cli/7.0.0-rc.1: @@ -4782,8 +4839,8 @@ packages: '@storybook/global': 5.0.0 dev: true - /@storybook/client-logger/7.0.0-rc.3: - resolution: {integrity: sha512-cC7lq+S4n5fFooDCyefgTAOfipadiZskNuzsQF7drE9nQLZ8GflLdmTKK//5NQUHKPzF7r+4Q5DAK4I3nqIkxA==} + /@storybook/client-logger/7.0.0-rc.4: + resolution: {integrity: sha512-z5w2odssAavqSPtkX0kjPwCpvSYNGDnC3pqKw0nHrZ4fb59SKdjdcoCbcUntDa0kAid9g29CT+eNTtPcci8/XA==} dependencies: '@storybook/global': 5.0.0 dev: true @@ -4838,7 +4895,7 @@ packages: dependencies: '@storybook/node-logger': 7.0.0-rc.1 '@storybook/types': 7.0.0-rc.1 - '@types/node': 16.18.14 + '@types/node': 16.18.16 '@types/pretty-hrtime': 1.0.1 chalk: 4.1.2 esbuild: 0.16.17 @@ -4860,12 +4917,12 @@ packages: - supports-color dev: true - /@storybook/core-common/7.0.0-rc.3: - resolution: {integrity: sha512-uUIs14+35ubRcpYwuX0OHW05tSDC5jeNEY8gv2EjcexBLeNozfGV4Tf5/ncG8glVbp8jGUlu2S3XJZoHKHDSqQ==} + /@storybook/core-common/7.0.0-rc.4: + resolution: {integrity: sha512-cvJgs23iHmD24u5sjb3a5n5oCRzwx0BzI7v0mt+Lfc6r2gyXgw2Hf4tM5DchNKba0GEjvPU/ERuOWnXUETGqSw==} dependencies: - '@storybook/node-logger': 7.0.0-rc.3 - '@storybook/types': 7.0.0-rc.3 - '@types/node': 16.18.14 + '@storybook/node-logger': 7.0.0-rc.4 + '@storybook/types': 7.0.0-rc.4 + '@types/node': 16.18.16 '@types/pretty-hrtime': 1.0.1 chalk: 4.1.2 esbuild: 0.16.17 @@ -4891,6 +4948,10 @@ packages: resolution: {integrity: sha512-kp5p7U8H4X+XnJwzm3S9UM1vOREZ/bziQ34882FevPq7HaAQ5JI7p9gQO50JdTbDoe8gtn8cgfzxSkqO6FlY1w==} dev: true + /@storybook/core-events/7.0.0-rc.4: + resolution: {integrity: sha512-OgEhQSaOMcSx0y5tjGg5Mscyyk9BayhqiJeuDK3kVZfKtFO3LErwhV4TrNjuDnYFfwUgiPa2ikTAB6K6JAn6yg==} + dev: true + /@storybook/core-server/7.0.0-rc.1: resolution: {integrity: sha512-2V+U8xouwTjTyrlvw8BRz0oY1pAlSTPBmesC7tGLPeSStG21dDPYy95a4jyTnOmfW2KqmIER4sFKNPID8/BwFA==} dependencies: @@ -4909,7 +4970,7 @@ packages: '@storybook/telemetry': 7.0.0-rc.1 '@storybook/types': 7.0.0-rc.1 '@types/detect-port': 1.3.2 - '@types/node': 16.18.14 + '@types/node': 16.18.16 '@types/node-fetch': 2.6.2 '@types/pretty-hrtime': 1.0.1 '@types/semver': 7.3.13 @@ -4969,15 +5030,15 @@ packages: - supports-color dev: true - /@storybook/csf-tools/7.0.0-rc.3: - resolution: {integrity: sha512-I3QG2buAswIYVbYlstmZAamwLopW6daHj2+wrod+whTmeKShp0rbOrVkU0M3Hpj9CVzFM1/4YqCNOBkS2XTnsw==} + /@storybook/csf-tools/7.0.0-rc.4: + resolution: {integrity: sha512-swMulWdpSObtcfDo3flmry50oLAPbGLn0YBU+tJhhxerng5RVDy5MPG0A5ZKd6hD1jvyTA1pkhbwzCrklbNhSw==} dependencies: '@babel/generator': 7.21.1 - '@babel/parser': 7.21.2 - '@babel/traverse': 7.21.2 - '@babel/types': 7.21.2 + '@babel/parser': 7.21.3 + '@babel/traverse': 7.21.3 + '@babel/types': 7.21.3 '@storybook/csf': 0.0.2-next.10 - '@storybook/types': 7.0.0-rc.3 + '@storybook/types': 7.0.0-rc.4 fs-extra: 11.1.0 recast: 0.23.1 ts-dedent: 2.2.0 @@ -5012,7 +5073,7 @@ packages: /@storybook/expect/27.5.2-0: resolution: {integrity: sha512-cP99mhWN/JeCp7VSIiymvj5tmuMY050iFohvp8Zq+kewKsBSZ6/qpTJAGCCZk6pneTcp4S0Fm5BSqyxzbyJ3gw==} dependencies: - '@types/jest': 29.4.0 + '@types/jest': 29.5.0 dev: true /@storybook/global/5.0.0: @@ -5029,21 +5090,21 @@ packages: '@storybook/preview-api': 7.0.0-rc.1 dev: true - /@storybook/instrumenter/7.0.0-rc.3: - resolution: {integrity: sha512-LgFLh7v4wHgalThho8BjHd0xq2Tz8EACIbKOJO/qkSvpupfE6FDROrCYGJpQHsTKWAVdZZwVIMd6A+OnPHOLyg==} + /@storybook/instrumenter/7.0.0-rc.4: + resolution: {integrity: sha512-6/k+cUFsDCJnnXsPGZ03qB11F8ND1G4UQtIs2pn8yWR8mo7EaDnugFLFAhjtYRaLAhg4hKhVspJcXGf/R+gxnQ==} dependencies: - '@storybook/channels': 7.0.0-rc.3 - '@storybook/client-logger': 7.0.0-rc.3 - '@storybook/core-events': 7.0.0-rc.1 + '@storybook/channels': 7.0.0-rc.4 + '@storybook/client-logger': 7.0.0-rc.4 + '@storybook/core-events': 7.0.0-rc.4 '@storybook/global': 5.0.0 - '@storybook/preview-api': 7.0.0-rc.3 + '@storybook/preview-api': 7.0.0-rc.4 dev: true /@storybook/jest/0.0.11-next.0: resolution: {integrity: sha512-jtCu2rmDNhG+VxB/sR+AADhb6c/UNdqAmHYV3B50tc+HlnrlELE3UEsRFCztlq4zFaz1y3JK91lwQn9ja6yPsQ==} dependencies: '@storybook/expect': 27.5.2-0 - '@storybook/instrumenter': 7.0.0-rc.3 + '@storybook/instrumenter': 7.0.0-rc.4 '@testing-library/jest-dom': 5.16.5 jest-mock: 29.5.0 dev: true @@ -5077,8 +5138,8 @@ packages: resolution: {integrity: sha512-8mchcpaDBZJKMoCfb2+IF6/waOQLR/7Xeish3ff8TAGTE9tD2s+S3s/z3lCiEXnBiYeW1ZEUlK3F2NTNdHfH2Q==} dev: true - /@storybook/mdx2-csf/1.0.0-next.5: - resolution: {integrity: sha512-02w0sgGZaK1agT050yCVhJ+o4rLHANWvLKWjQjeAsYbjneLC5ITt+3GDB4jRiWwJboZ8dHW1fGSK1Vg5fA34aQ==} + /@storybook/mdx2-csf/1.0.0-next.6: + resolution: {integrity: sha512-m6plojocU/rmrqWd26yvm8D+oHZPZ6PtSSFmZIgpNDEPVmc8s4fBD6LXOAB5MiPI5f8KLUr2HVhOMZ97o5pDTw==} dev: true /@storybook/node-logger/7.0.0-rc.1: @@ -5090,8 +5151,8 @@ packages: pretty-hrtime: 1.0.3 dev: true - /@storybook/node-logger/7.0.0-rc.3: - resolution: {integrity: sha512-ViWIJUdFUTrFtcoO88T3h55ryjl73aMNyn8vPvIgejJoJfYMTB5ErI4zLquN23HNc+H9AKKm/qMFFSf9xjGORQ==} + /@storybook/node-logger/7.0.0-rc.4: + resolution: {integrity: sha512-ogzs+X9ZsCk8+R5NPZhO3DCZQEUKLhfDcOLlJnYVMKbNR9L6EwXsTaE2RQZYaANIhEt2FK3vH0iihVysaEfOuQ==} dependencies: '@types/npmlog': 4.1.4 chalk: 4.1.2 @@ -5124,21 +5185,21 @@ packages: util-deprecate: 1.0.2 dev: true - /@storybook/preview-api/7.0.0-rc.3: - resolution: {integrity: sha512-iIifbFRmrFIlLzApTZyCWmI3JNt2IxfM8Dm4rNlMJBifjtgHfpxA+DsQI8mW8UGM64a8N1wF7azkN6cnRz6v2w==} + /@storybook/preview-api/7.0.0-rc.4: + resolution: {integrity: sha512-J4PMV+UlWDqzV2Cj6PfxkUZ8315m3Mcbx1JPjKFcIGJ3HaK0mXye1brBMPG7gefjx9239QVw6w0zmw9ahLWmVw==} dependencies: - '@storybook/channel-postmessage': 7.0.0-rc.3 - '@storybook/channels': 7.0.0-rc.3 - '@storybook/client-logger': 7.0.0-rc.3 - '@storybook/core-events': 7.0.0-rc.1 + '@storybook/channel-postmessage': 7.0.0-rc.4 + '@storybook/channels': 7.0.0-rc.4 + '@storybook/client-logger': 7.0.0-rc.4 + '@storybook/core-events': 7.0.0-rc.4 '@storybook/csf': 0.0.2-next.10 '@storybook/global': 5.0.0 - '@storybook/types': 7.0.0-rc.3 + '@storybook/types': 7.0.0-rc.4 '@types/qs': 6.9.7 dequal: 2.0.3 lodash: 4.17.21 memoizerific: 1.11.3 - qs: 6.11.0 + qs: 6.11.1 slash: 3.0.0 synchronous-promise: 2.0.17 ts-dedent: 2.2.0 @@ -5159,7 +5220,7 @@ packages: react-dom: 18.2.0_react@18.2.0 dev: true - /@storybook/react-vite/7.0.0-rc.1_ndsstb2ob2rgr4m75wxvpqsrpi: + /@storybook/react-vite/7.0.0-rc.1_glansljvcl2o3mlkoffq7vjcqa: resolution: {integrity: sha512-2BpQvp86hyIF36f/Xm7TcpNheFCK4VDR+cnuGYaJ/AN52u7jja4otP8UTL3furwhROM8kUIwUw/EjyZnshNZ8Q==} engines: {node: '>=16'} peerDependencies: @@ -5167,17 +5228,17 @@ packages: react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 vite: ^3.0.0 || ^4.0.0 dependencies: - '@joshwooding/vite-plugin-react-docgen-typescript': 0.2.1_vwvfc4ezh6jlf6pa67auy3eulu + '@joshwooding/vite-plugin-react-docgen-typescript': 0.2.1_rn5le4pusnctvs35nlnpu7hrue '@rollup/pluginutils': 4.2.1 - '@storybook/builder-vite': 7.0.0-rc.1_vwvfc4ezh6jlf6pa67auy3eulu - '@storybook/react': 7.0.0-rc.1_ygqkwb4gg3aean7xjfdauovyqq - '@vitejs/plugin-react': 3.1.0_vite@4.1.4 + '@storybook/builder-vite': 7.0.0-rc.1_rn5le4pusnctvs35nlnpu7hrue + '@storybook/react': 7.0.0-rc.1_grokbpfbuuosdhrkscgthnz2vm + '@vitejs/plugin-react': 3.1.0_vite@4.2.0 ast-types: 0.14.2 magic-string: 0.27.0 react: 18.2.0 react-docgen: 6.0.0-alpha.3 react-dom: 18.2.0_react@18.2.0 - vite: 4.1.4 + vite: 4.2.0 transitivePeerDependencies: - '@preact/preset-vite' - '@storybook/mdx1-csf' @@ -5186,7 +5247,7 @@ packages: - vite-plugin-glimmerx dev: true - /@storybook/react/7.0.0-rc.1_ygqkwb4gg3aean7xjfdauovyqq: + /@storybook/react/7.0.0-rc.1_grokbpfbuuosdhrkscgthnz2vm: resolution: {integrity: sha512-4gP74wOpftw229Yu0TYcG4ED8gpQNYYlt3dsGh5pbHfgQVGjCaSt9PKEK86rH2j1AZEwKLrlIdfzLE4SZvBqOw==} engines: {node: '>=16.0.0'} peerDependencies: @@ -5206,7 +5267,7 @@ packages: '@storybook/types': 7.0.0-rc.1 '@types/escodegen': 0.0.6 '@types/estree': 0.0.51 - '@types/node': 16.18.14 + '@types/node': 16.18.16 acorn: 7.4.1 acorn-jsx: 5.3.2_acorn@7.4.1 acorn-walk: 7.2.0 @@ -5219,7 +5280,7 @@ packages: react-element-to-jsx-string: 15.0.0_biqbaboplfbrettd7655fr4n2y ts-dedent: 2.2.0 type-fest: 2.19.0 - typescript: 4.9.5 + typescript: 5.0.2 util-deprecate: 1.0.2 transitivePeerDependencies: - supports-color @@ -5255,8 +5316,8 @@ packages: - supports-color dev: true - /@storybook/test-runner/0.10.0-next.10: - resolution: {integrity: sha512-1MolXiB50eI74/XOwGul59S4V18KaUYMcrMB/oMobK4te93xVUqiDsoZiYE0MqULtbXsUPhsDvpmge6RoiYOug==} + /@storybook/test-runner/0.10.0-next.11: + resolution: {integrity: sha512-5HiN5z/p9QFWGfs9B7Sq+9sDvhRJMeK1rdFj2OhvPrGMDrYqXKJiMvAYpbfDe3MrQv811DZWicpx0TLdwrA4Mw==} hasBin: true dependencies: '@babel/core': 7.21.0 @@ -5266,10 +5327,10 @@ packages: '@babel/preset-typescript': 7.21.0_@babel+core@7.21.0 '@babel/template': 7.20.7 '@babel/types': 7.21.2 - '@storybook/core-common': 7.0.0-rc.3 + '@storybook/core-common': 7.0.0-rc.4 '@storybook/csf': 0.0.2-next.10 - '@storybook/csf-tools': 7.0.0-rc.3 - '@storybook/preview-api': 7.0.0-rc.3 + '@storybook/csf-tools': 7.0.0-rc.4 + '@storybook/preview-api': 7.0.0-rc.4 can-bind-to-host: 1.1.2 commander: 9.4.1 expect-playwright: 0.8.0 @@ -5301,8 +5362,8 @@ packages: /@storybook/testing-library/0.0.14-next.1: resolution: {integrity: sha512-1CAl40IKIhcPaCC4pYCG0b9IiYNymktfV/jTrX7ctquRY3akaN7f4A1SippVHosksft0M+rQTFE0ccfWW581fw==} dependencies: - '@storybook/client-logger': 7.0.0-rc.3 - '@storybook/instrumenter': 7.0.0-rc.3 + '@storybook/client-logger': 7.0.0-rc.4 + '@storybook/instrumenter': 7.0.0-rc.4 '@testing-library/dom': 8.20.0 '@testing-library/user-event': 13.5.0_yxlyej73nftwmh2fiao7paxmlm ts-dedent: 2.2.0 @@ -5331,10 +5392,10 @@ packages: file-system-cache: 2.0.2 dev: true - /@storybook/types/7.0.0-rc.3: - resolution: {integrity: sha512-2xxgs4zL1QZUdut+Zt5sQdgNCUP0n/y5CRbvEpDwkcuE4KWbfJYixJNumioZ6UwK17ZE9gf4ZxVgttvexmW8eg==} + /@storybook/types/7.0.0-rc.4: + resolution: {integrity: sha512-Zu9weYGeKrnaWgVk2vtPU/MpUp6EtM27ehqJVK3x0I/sa8/MXCc411ErblALLVrMX6KhFjUFU98gHlvo8ietIA==} dependencies: - '@storybook/channels': 7.0.0-rc.3 + '@storybook/channels': 7.0.0-rc.4 '@types/babel__core': 7.20.0 '@types/express': 4.17.17 file-system-cache: 2.0.2 @@ -5583,7 +5644,7 @@ packages: resolution: {integrity: sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==} dependencies: '@types/connect': 3.4.35 - '@types/node': 18.14.4 + '@types/node': 18.15.3 dev: true /@types/chai-subset/1.3.3: @@ -5599,7 +5660,7 @@ packages: /@types/connect/3.4.35: resolution: {integrity: sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==} dependencies: - '@types/node': 18.14.4 + '@types/node': 18.15.3 dev: true /@types/debug/4.1.7: @@ -5627,12 +5688,12 @@ packages: /@types/eslint-scope/3.7.4: resolution: {integrity: sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==} dependencies: - '@types/eslint': 8.21.1 + '@types/eslint': 8.21.2 '@types/estree': 0.0.51 dev: true - /@types/eslint/8.21.1: - resolution: {integrity: sha512-rc9K8ZpVjNcLs8Fp0dkozd5Pt2Apk1glO4Vgz8ix1u6yFByxfqo5Yavpy65o+93TAe24jr7v+eSBtFLvOQtCRQ==} + /@types/eslint/8.21.2: + resolution: {integrity: sha512-EMpxUyystd3uZVByZap1DACsMXvb82ypQnGn89e1Y0a+LYu3JJscUd/gqhRsVFDkaD2MIiWo0MT8EfXr3DGRKw==} dependencies: '@types/estree': 0.0.51 '@types/json-schema': 7.0.11 @@ -5645,7 +5706,7 @@ packages: /@types/express-serve-static-core/4.17.33: resolution: {integrity: sha512-TPBqmR/HRYI3eC2E5hmiivIzv+bidAfXofM+sbonAGvyDhySGw9/PQZFt2BLOrjUUR++4eJVpx6KnLQK1Fk9tA==} dependencies: - '@types/node': 18.14.4 + '@types/node': 18.15.3 '@types/qs': 6.9.7 '@types/range-parser': 1.2.4 dev: true @@ -5671,7 +5732,7 @@ packages: resolution: {integrity: sha512-MxObHvNl4A69ofaTRU8DFqvgzzv8s9yRtaPPm5gud9HDNvpB3GPQFvNuTWAI59B9huVGV5jXYJwbCsmBsOGYWA==} dependencies: '@types/jsonfile': 6.1.1 - '@types/node': 18.14.4 + '@types/node': 18.15.3 dev: true /@types/glob/7.2.0: @@ -5679,19 +5740,19 @@ packages: requiresBuild: true dependencies: '@types/minimatch': 5.1.2 - '@types/node': 18.14.4 + '@types/node': 18.15.3 /@types/glob/8.0.1: resolution: {integrity: sha512-8bVUjXZvJacUFkJXHdyZ9iH1Eaj5V7I8c4NdH5sQJsdXkqT4CA5Dhb4yb4VE/3asyx4L9ayZr1NIhTsWHczmMw==} dependencies: '@types/minimatch': 5.1.2 - '@types/node': 18.14.4 + '@types/node': 18.15.3 dev: true /@types/graceful-fs/4.1.6: resolution: {integrity: sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==} dependencies: - '@types/node': 18.14.4 + '@types/node': 18.15.3 dev: true /@types/http-cache-semantics/4.0.1: @@ -5714,8 +5775,8 @@ packages: '@types/istanbul-lib-report': 3.0.0 dev: true - /@types/jest/29.4.0: - resolution: {integrity: sha512-VaywcGQ9tPorCX/Jkkni7RWGFfI11whqzs8dvxF41P17Z+z872thvEvlIbznjPJ02kl1HMX3LmLOonsj2n7HeQ==} + /@types/jest/29.5.0: + resolution: {integrity: sha512-3Emr5VOl/aoBwnWcH/EFQvlSAmjV+XtV9GGu5mwdYew5vhQh0IUZx/60x0TzHDu09Bi7HMx10t/namdJw5QIcg==} dependencies: expect: 29.5.0 pretty-format: 29.5.0 @@ -5731,7 +5792,7 @@ packages: /@types/jsonfile/6.1.1: resolution: {integrity: sha512-GSgiRCVeapDN+3pqA35IkQwasaCh/0YFH5dEF6S88iDvEn901DjOeH3/QPY+XYP1DFzDZPvIvfeEgk+7br5png==} dependencies: - '@types/node': 18.14.4 + '@types/node': 18.15.3 dev: true /@types/lodash/4.14.191: @@ -5767,16 +5828,16 @@ packages: /@types/node-fetch/2.6.2: resolution: {integrity: sha512-DHqhlq5jeESLy19TYhLakJ07kNumXWjcDdxXsLUMJZ6ue8VZJj4kLPQVE/2mdHh3xZziNF1xppu5lwmS53HR+A==} dependencies: - '@types/node': 18.14.4 + '@types/node': 16.18.16 form-data: 3.0.1 dev: true - /@types/node/16.18.14: - resolution: {integrity: sha512-wvzClDGQXOCVNU4APPopC2KtMYukaF1MN/W3xAmslx22Z4/IF1/izDMekuyoUlwfnDHYCIZGaj7jMwnJKBTxKw==} + /@types/node/16.18.16: + resolution: {integrity: sha512-ZOzvDRWp8dCVBmgnkIqYCArgdFOO9YzocZp8Ra25N/RStKiWvMOXHMz+GjSeVNe5TstaTmTWPucGJkDw0XXJWA==} dev: true - /@types/node/18.14.4: - resolution: {integrity: sha512-VhCw7I7qO2X49+jaKcAUwi3rR+hbxT5VcYF493+Z5kMLI0DL568b7JI4IDJaxWFH0D/xwmGJNoXisyX+w7GH/g==} + /@types/node/18.15.3: + resolution: {integrity: sha512-p6ua9zBxz5otCmbpb5D3U4B5Nanw6Pk3PPyX05xnxbB/fRv71N7CPmORg7uAD5P70T0xmx1pzAx/FUfa5X+3cw==} /@types/normalize-package-data/2.4.1: resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==} @@ -5848,7 +5909,7 @@ packages: resolution: {integrity: sha512-NUo5XNiAdULrJENtJXZZ3fHtfMolzZwczzBbnAeBbqBwG+LaG6YaJtuwzwGSQZ2wsCrxjEhNNjAkKigy3n8teQ==} dependencies: '@types/mime': 3.0.1 - '@types/node': 18.14.4 + '@types/node': 18.15.3 dev: true /@types/stack-utils/2.0.1: @@ -5858,7 +5919,7 @@ packages: /@types/testing-library__jest-dom/5.14.5: resolution: {integrity: sha512-SBwbxYoyPIvxHbeHxTZX2Pe/74F/tX2/D3mMvzabdeJ25bBojfW0TyB8BHrbq/9zaaKICJZjLP+8r6AeZMFCuQ==} dependencies: - '@types/jest': 29.4.0 + '@types/jest': 29.5.0 dev: true /@types/trusted-types/2.0.2: @@ -5871,7 +5932,7 @@ packages: /@types/wait-on/5.3.1: resolution: {integrity: sha512-2FFOKCF/YydrMUaqg+fkk49qf0e5rDgwt6aQsMzFQzbS419h2gNOXyiwp/o2yYy27bi/C1z+HgfncryjGzlvgQ==} dependencies: - '@types/node': 18.14.4 + '@types/node': 18.15.3 dev: true /@types/webpack-env/1.18.0: @@ -5892,8 +5953,8 @@ packages: '@types/yargs-parser': 21.0.0 dev: true - /@typescript-eslint/eslint-plugin/5.54.0_6mj2wypvdnknez7kws2nfdgupi: - resolution: {integrity: sha512-+hSN9BdSr629RF02d7mMtXhAJvDTyCbprNYJKrXETlul/Aml6YZwd90XioVbjejQeHbb3R8Dg0CkRgoJDxo8aw==} + /@typescript-eslint/eslint-plugin/5.55.0_qsnvknysi52qtaxqdyqyohkcku: + resolution: {integrity: sha512-IZGc50rtbjk+xp5YQoJvmMPmJEYoC53SiKPXyqWfv15XoD2Y5Kju6zN0DwlmaGJp1Iw33JsWJcQ7nw0lGCGjVg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: '@typescript-eslint/parser': ^5.0.0 @@ -5903,25 +5964,25 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/parser': 5.54.0_ycpbpc6yetojsgtrx3mwntkhsu - '@typescript-eslint/scope-manager': 5.54.0 - '@typescript-eslint/type-utils': 5.54.0_ycpbpc6yetojsgtrx3mwntkhsu - '@typescript-eslint/utils': 5.54.0_ycpbpc6yetojsgtrx3mwntkhsu + '@eslint-community/regexpp': 4.4.0 + '@typescript-eslint/parser': 5.55.0_j4766f7ecgqbon3u7zlxn5zszu + '@typescript-eslint/scope-manager': 5.55.0 + '@typescript-eslint/type-utils': 5.55.0_j4766f7ecgqbon3u7zlxn5zszu + '@typescript-eslint/utils': 5.55.0_j4766f7ecgqbon3u7zlxn5zszu debug: 4.3.4 - eslint: 8.35.0 + eslint: 8.36.0 grapheme-splitter: 1.0.4 ignore: 5.2.0 natural-compare-lite: 1.4.0 - regexpp: 3.2.0 semver: 7.3.8 - tsutils: 3.21.0_typescript@4.9.5 - typescript: 4.9.5 + tsutils: 3.21.0_typescript@5.0.2 + typescript: 5.0.2 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/parser/5.54.0_ycpbpc6yetojsgtrx3mwntkhsu: - resolution: {integrity: sha512-aAVL3Mu2qTi+h/r04WI/5PfNWvO6pdhpeMRWk9R7rEV4mwJNzoWf5CCU5vDKBsPIFQFjEq1xg7XBI2rjiMXQbQ==} + /@typescript-eslint/parser/5.55.0_j4766f7ecgqbon3u7zlxn5zszu: + resolution: {integrity: sha512-ppvmeF7hvdhUUZWSd2EEWfzcFkjJzgNQzVST22nzg958CR+sphy8A6K7LXQZd6V75m1VKjp+J4g/PCEfSCmzhw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 @@ -5930,26 +5991,26 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/scope-manager': 5.54.0 - '@typescript-eslint/types': 5.54.0 - '@typescript-eslint/typescript-estree': 5.54.0_typescript@4.9.5 + '@typescript-eslint/scope-manager': 5.55.0 + '@typescript-eslint/types': 5.55.0 + '@typescript-eslint/typescript-estree': 5.55.0_typescript@5.0.2 debug: 4.3.4 - eslint: 8.35.0 - typescript: 4.9.5 + eslint: 8.36.0 + typescript: 5.0.2 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/scope-manager/5.54.0: - resolution: {integrity: sha512-VTPYNZ7vaWtYna9M4oD42zENOBrb+ZYyCNdFs949GcN8Miwn37b8b7eMj+EZaq7VK9fx0Jd+JhmkhjFhvnovhg==} + /@typescript-eslint/scope-manager/5.55.0: + resolution: {integrity: sha512-OK+cIO1ZGhJYNCL//a3ROpsd83psf4dUJ4j7pdNVzd5DmIk+ffkuUIX2vcZQbEW/IR41DYsfJTB19tpCboxQuw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - '@typescript-eslint/types': 5.54.0 - '@typescript-eslint/visitor-keys': 5.54.0 + '@typescript-eslint/types': 5.55.0 + '@typescript-eslint/visitor-keys': 5.55.0 dev: true - /@typescript-eslint/type-utils/5.54.0_ycpbpc6yetojsgtrx3mwntkhsu: - resolution: {integrity: sha512-WI+WMJ8+oS+LyflqsD4nlXMsVdzTMYTxl16myXPaCXnSgc7LWwMsjxQFZCK/rVmTZ3FN71Ct78ehO9bRC7erYQ==} + /@typescript-eslint/type-utils/5.55.0_j4766f7ecgqbon3u7zlxn5zszu: + resolution: {integrity: sha512-ObqxBgHIXj8rBNm0yh8oORFrICcJuZPZTqtAFh0oZQyr5DnAHZWfyw54RwpEEH+fD8suZaI0YxvWu5tYE/WswA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: '*' @@ -5958,23 +6019,23 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/typescript-estree': 5.54.0_typescript@4.9.5 - '@typescript-eslint/utils': 5.54.0_ycpbpc6yetojsgtrx3mwntkhsu + '@typescript-eslint/typescript-estree': 5.55.0_typescript@5.0.2 + '@typescript-eslint/utils': 5.55.0_j4766f7ecgqbon3u7zlxn5zszu debug: 4.3.4 - eslint: 8.35.0 - tsutils: 3.21.0_typescript@4.9.5 - typescript: 4.9.5 + eslint: 8.36.0 + tsutils: 3.21.0_typescript@5.0.2 + typescript: 5.0.2 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/types/5.54.0: - resolution: {integrity: sha512-nExy+fDCBEgqblasfeE3aQ3NuafBUxZxgxXcYfzYRZFHdVvk5q60KhCSkG0noHgHRo/xQ/BOzURLZAafFpTkmQ==} + /@typescript-eslint/types/5.55.0: + resolution: {integrity: sha512-M4iRh4AG1ChrOL6Y+mETEKGeDnT7Sparn6fhZ5LtVJF1909D5O4uqK+C5NPbLmpfZ0XIIxCdwzKiijpZUOvOug==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /@typescript-eslint/typescript-estree/5.54.0_typescript@4.9.5: - resolution: {integrity: sha512-X2rJG97Wj/VRo5YxJ8Qx26Zqf0RRKsVHd4sav8NElhbZzhpBI8jU54i6hfo9eheumj4oO4dcRN1B/zIVEqR/MQ==} + /@typescript-eslint/typescript-estree/5.55.0_typescript@5.0.2: + resolution: {integrity: sha512-I7X4A9ovA8gdpWMpr7b1BN9eEbvlEtWhQvpxp/yogt48fy9Lj3iE3ild/1H3jKBBIYj5YYJmS2+9ystVhC7eaQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: typescript: '*' @@ -5982,47 +6043,47 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/types': 5.54.0 - '@typescript-eslint/visitor-keys': 5.54.0 + '@typescript-eslint/types': 5.55.0 + '@typescript-eslint/visitor-keys': 5.55.0 debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 semver: 7.3.8 - tsutils: 3.21.0_typescript@4.9.5 - typescript: 4.9.5 + tsutils: 3.21.0_typescript@5.0.2 + typescript: 5.0.2 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/utils/5.54.0_ycpbpc6yetojsgtrx3mwntkhsu: - resolution: {integrity: sha512-cuwm8D/Z/7AuyAeJ+T0r4WZmlnlxQ8wt7C7fLpFlKMR+dY6QO79Cq1WpJhvZbMA4ZeZGHiRWnht7ZJ8qkdAunw==} + /@typescript-eslint/utils/5.55.0_j4766f7ecgqbon3u7zlxn5zszu: + resolution: {integrity: sha512-FkW+i2pQKcpDC3AY6DU54yl8Lfl14FVGYDgBTyGKB75cCwV3KpkpTMFi9d9j2WAJ4271LR2HeC5SEWF/CZmmfw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: + '@eslint-community/eslint-utils': 4.2.0_eslint@8.36.0 '@types/json-schema': 7.0.11 '@types/semver': 7.3.13 - '@typescript-eslint/scope-manager': 5.54.0 - '@typescript-eslint/types': 5.54.0 - '@typescript-eslint/typescript-estree': 5.54.0_typescript@4.9.5 - eslint: 8.35.0 + '@typescript-eslint/scope-manager': 5.55.0 + '@typescript-eslint/types': 5.55.0 + '@typescript-eslint/typescript-estree': 5.55.0_typescript@5.0.2 + eslint: 8.36.0 eslint-scope: 5.1.1 - eslint-utils: 3.0.0_eslint@8.35.0 semver: 7.3.8 transitivePeerDependencies: - supports-color - typescript dev: true - /@typescript-eslint/visitor-keys/5.54.0: - resolution: {integrity: sha512-xu4wT7aRCakGINTLGeyGqDn+78BwFlggwBjnHa1ar/KaGagnmwLYmlrXIrgAaQ3AE1Vd6nLfKASm7LrFHNbKGA==} + /@typescript-eslint/visitor-keys/5.55.0: + resolution: {integrity: sha512-q2dlHHwWgirKh1D3acnuApXG+VNXpEY5/AwRxDVuEQpxWaB0jCDe0jFMVMALJ3ebSfuOVE8/rMS+9ZOYGg1GWw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - '@typescript-eslint/types': 5.54.0 + '@typescript-eslint/types': 5.55.0 eslint-visitor-keys: 3.3.0 dev: true - /@vitejs/plugin-react/3.1.0_vite@4.1.4: + /@vitejs/plugin-react/3.1.0_vite@4.2.0: resolution: {integrity: sha512-AfgcRL8ZBhAlc3BFdigClmTUMISmmzHn7sB2h9U1odvc5U/MjWXsAaz18b/WoppUTDBzxOJwo2VdClfUcItu9g==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: @@ -6033,12 +6094,12 @@ packages: '@babel/plugin-transform-react-jsx-source': 7.19.6_@babel+core@7.21.0 magic-string: 0.27.0 react-refresh: 0.14.0 - vite: 4.1.4_@types+node@18.14.4 + vite: 4.2.0 transitivePeerDependencies: - supports-color dev: true - /@vitest/coverage-istanbul/0.28.5_oscpa7jhv6f2pwrg7t4qxe6ngi: + /@vitest/coverage-istanbul/0.28.5_mxq3od2slsrg7ecyoqpfviqdky: resolution: {integrity: sha512-na1pkr3AVrdFflzuBXsBh1MvBfhSMrv4nfd4N8rm0HEJlvlbQc+GiqNwtwzfO8TPsXxcjNphSIMp5wvCy+0xrQ==} dependencies: istanbul-lib-coverage: 3.2.0 @@ -6047,7 +6108,7 @@ packages: istanbul-lib-source-maps: 4.0.1 istanbul-reports: 3.1.5 test-exclude: 6.0.0 - vitest: 0.28.5_oscpa7jhv6f2pwrg7t4qxe6ngi + vitest: 0.28.5_mxq3od2slsrg7ecyoqpfviqdky transitivePeerDependencies: - '@edge-runtime/vm' - '@vitest/browser' @@ -6084,8 +6145,8 @@ packages: tinyspy: 1.1.1 dev: true - /@vitest/ui/0.29.2: - resolution: {integrity: sha512-GpCExCMptrS1z3Xf6kz35Xdvjc2eTBy9OIIwW3HjePVxw9Q++ZoEaIBVimRTTGzSe40XiAI/ZyR0H0Ya9brqLA==} + /@vitest/ui/0.29.3: + resolution: {integrity: sha512-6xJyLhfSBRCzMbI9ip4BI7KIMnIM5cqOFl1sj4GSuHfRai17Q3FYZRcNvgo4TlE0f38/MSXDfjOc35/ZepYIWw==} dependencies: fast-glob: 3.2.12 flatted: 3.2.7 @@ -6658,7 +6719,7 @@ packages: engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: '@babel/template': 7.20.7 - '@babel/types': 7.21.2 + '@babel/types': 7.21.3 '@types/babel__core': 7.20.0 '@types/babel__traverse': 7.18.3 dev: true @@ -6931,13 +6992,13 @@ packages: engines: {node: '>=14.16'} dev: true - /cacheable-request/10.2.3: - resolution: {integrity: sha512-6BehRBOs7iurNjAYN9iPazTwFDaMQavJO8W1MEm3s2pH8q/tkPTtLDRUZaweWK87WFGf2Y5wLAlaCJlR5kOz3w==} + /cacheable-request/10.2.8: + resolution: {integrity: sha512-IDVO5MJ4LItE6HKFQTqT2ocAQsisOoCTUDu1ddCmnhyiwFQjXNPp4081Xj23N4tO+AFEFNzGuNEf/c8Gwwt15A==} engines: {node: '>=14.16'} dependencies: '@types/http-cache-semantics': 4.0.1 get-stream: 6.0.1 - http-cache-semantics: 4.1.0 + http-cache-semantics: 4.1.1 keyv: 4.5.2 mimic-response: 4.0.0 normalize-url: 8.0.0 @@ -7258,6 +7319,11 @@ packages: resolution: {integrity: sha512-VtDvQpIJBvBatnONUsPzXYFVKQQAhuf3XTNOAsdBxCNO/QCtUUd8LSgjn0GVarBkCad6aJCZfXgrjYbl/KRr7w==} dev: false + /commander/10.0.0: + resolution: {integrity: sha512-zS5PnTI22FIRM6ylNW8G4Ap0IEOyk62fhLSD0+uHRT9McRCLGpkVNvao4bjimpK/GShynyQkFFxHhwMcETmduA==} + engines: {node: '>=14'} + dev: true + /commander/2.20.3: resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} dev: true @@ -7307,10 +7373,6 @@ packages: - supports-color dev: true - /compute-scroll-into-view/3.0.0: - resolution: {integrity: sha512-Yk1An4qzo5++Cu6peT9PsmRKIU8tALpmdoE09n//AfGQFcPfx21/tMGMsmKYmLJWaBJrGOJ5Jz5hoU+7cZZUWQ==} - dev: false - /concat-map/0.0.1: resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} @@ -8141,7 +8203,7 @@ packages: source-map: 0.6.1 dev: true - /eslint-config-next/13.2.4_ycpbpc6yetojsgtrx3mwntkhsu: + /eslint-config-next/13.2.4_j4766f7ecgqbon3u7zlxn5zszu: resolution: {integrity: sha512-lunIBhsoeqw6/Lfkd6zPt25w1bn0znLA/JCL+au1HoEpSb4/PpsOYsYtgV/q+YPsoKIOzFyU5xnb04iZnXjUvg==} peerDependencies: eslint: ^7.23.0 || ^8.0.0 @@ -8152,27 +8214,27 @@ packages: dependencies: '@next/eslint-plugin-next': 13.2.4 '@rushstack/eslint-patch': 1.2.0 - '@typescript-eslint/parser': 5.54.0_ycpbpc6yetojsgtrx3mwntkhsu - eslint: 8.35.0 + '@typescript-eslint/parser': 5.55.0_j4766f7ecgqbon3u7zlxn5zszu + eslint: 8.36.0 eslint-import-resolver-node: 0.3.7 - eslint-import-resolver-typescript: 3.5.3_yckic57kx266ph64dhq6ozvb54 - eslint-plugin-import: 2.27.5_tqrcrxlenpngfto46ddarus52y - eslint-plugin-jsx-a11y: 6.7.1_eslint@8.35.0 - eslint-plugin-react: 7.32.2_eslint@8.35.0 - eslint-plugin-react-hooks: 4.6.0_eslint@8.35.0 - typescript: 4.9.5 + eslint-import-resolver-typescript: 3.5.3_eakrjjutlgqjxe5ydhtnd4qdmy + eslint-plugin-import: 2.27.5_v7jo3sddp7aqau7pajjy572cju + eslint-plugin-jsx-a11y: 6.7.1_eslint@8.36.0 + eslint-plugin-react: 7.32.2_eslint@8.36.0 + eslint-plugin-react-hooks: 4.6.0_eslint@8.36.0 + typescript: 5.0.2 transitivePeerDependencies: - eslint-import-resolver-webpack - supports-color dev: true - /eslint-config-prettier/8.6.0_eslint@8.35.0: - resolution: {integrity: sha512-bAF0eLpLVqP5oEVUFKpMA+NnRFICwn9X8B5jrR9FcqnYBuPbqWEjTEspPWMj5ye6czoSLDweCzSo3Ko7gGrZaA==} + /eslint-config-prettier/8.7.0_eslint@8.36.0: + resolution: {integrity: sha512-HHVXLSlVUhMSmyW4ZzEuvjpwqamgmlfkutD53cYXLikh4pt/modINRcCIApJ84czDxM4GZInwUrromsDdTImTA==} hasBin: true peerDependencies: eslint: '>=7.0.0' dependencies: - eslint: 8.35.0 + eslint: 8.36.0 dev: true /eslint-import-resolver-node/0.3.7: @@ -8185,7 +8247,7 @@ packages: - supports-color dev: true - /eslint-import-resolver-typescript/3.5.3_yckic57kx266ph64dhq6ozvb54: + /eslint-import-resolver-typescript/3.5.3_eakrjjutlgqjxe5ydhtnd4qdmy: resolution: {integrity: sha512-njRcKYBc3isE42LaTcJNVANR3R99H9bAxBDMNDr2W7yq5gYPxbU3MkdhsQukxZ/Xg9C2vcyLlDsbKfRDg0QvCQ==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: @@ -8194,8 +8256,8 @@ packages: dependencies: debug: 4.3.4 enhanced-resolve: 5.12.0 - eslint: 8.35.0 - eslint-plugin-import: 2.27.5_tqrcrxlenpngfto46ddarus52y + eslint: 8.36.0 + eslint-plugin-import: 2.27.5_v7jo3sddp7aqau7pajjy572cju get-tsconfig: 4.4.0 globby: 13.1.3 is-core-module: 2.11.0 @@ -8205,7 +8267,7 @@ packages: - supports-color dev: true - /eslint-module-utils/2.7.4_igrub7c6rucg6hjc3uqgumd66y: + /eslint-module-utils/2.7.4_tzfhnsp6rhftjfsbnqrkrbah74: resolution: {integrity: sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==} engines: {node: '>=4'} peerDependencies: @@ -8226,16 +8288,15 @@ packages: eslint-import-resolver-webpack: optional: true dependencies: - '@typescript-eslint/parser': 5.54.0_ycpbpc6yetojsgtrx3mwntkhsu + '@typescript-eslint/parser': 5.55.0_j4766f7ecgqbon3u7zlxn5zszu debug: 3.2.7 - eslint: 8.35.0 + eslint: 8.36.0 eslint-import-resolver-node: 0.3.7 - eslint-import-resolver-typescript: 3.5.3_yckic57kx266ph64dhq6ozvb54 transitivePeerDependencies: - supports-color dev: true - /eslint-module-utils/2.7.4_qynxowrxvm2kj5rbowcxf5maga: + /eslint-module-utils/2.7.4_wgltsi2kbncdpzwytonvdf2oba: resolution: {integrity: sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==} engines: {node: '>=4'} peerDependencies: @@ -8256,15 +8317,16 @@ packages: eslint-import-resolver-webpack: optional: true dependencies: - '@typescript-eslint/parser': 5.54.0_ycpbpc6yetojsgtrx3mwntkhsu + '@typescript-eslint/parser': 5.55.0_j4766f7ecgqbon3u7zlxn5zszu debug: 3.2.7 - eslint: 8.35.0 + eslint: 8.36.0 eslint-import-resolver-node: 0.3.7 + eslint-import-resolver-typescript: 3.5.3_eakrjjutlgqjxe5ydhtnd4qdmy transitivePeerDependencies: - supports-color dev: true - /eslint-plugin-import/2.27.5_ajyizmi44oc3hrc35l6ndh7p4e: + /eslint-plugin-import/2.27.5_a7er6olmtneep4uytpot6gt7wu: resolution: {integrity: sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==} engines: {node: '>=4'} peerDependencies: @@ -8274,15 +8336,15 @@ packages: '@typescript-eslint/parser': optional: true dependencies: - '@typescript-eslint/parser': 5.54.0_ycpbpc6yetojsgtrx3mwntkhsu + '@typescript-eslint/parser': 5.55.0_j4766f7ecgqbon3u7zlxn5zszu array-includes: 3.1.6 array.prototype.flat: 1.3.1 array.prototype.flatmap: 1.3.1 debug: 3.2.7 doctrine: 2.1.0 - eslint: 8.35.0 + eslint: 8.36.0 eslint-import-resolver-node: 0.3.7 - eslint-module-utils: 2.7.4_qynxowrxvm2kj5rbowcxf5maga + eslint-module-utils: 2.7.4_tzfhnsp6rhftjfsbnqrkrbah74 has: 1.0.3 is-core-module: 2.11.0 is-glob: 4.0.3 @@ -8297,7 +8359,7 @@ packages: - supports-color dev: true - /eslint-plugin-import/2.27.5_tqrcrxlenpngfto46ddarus52y: + /eslint-plugin-import/2.27.5_v7jo3sddp7aqau7pajjy572cju: resolution: {integrity: sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==} engines: {node: '>=4'} peerDependencies: @@ -8307,15 +8369,15 @@ packages: '@typescript-eslint/parser': optional: true dependencies: - '@typescript-eslint/parser': 5.54.0_ycpbpc6yetojsgtrx3mwntkhsu + '@typescript-eslint/parser': 5.55.0_j4766f7ecgqbon3u7zlxn5zszu array-includes: 3.1.6 array.prototype.flat: 1.3.1 array.prototype.flatmap: 1.3.1 debug: 3.2.7 doctrine: 2.1.0 - eslint: 8.35.0 + eslint: 8.36.0 eslint-import-resolver-node: 0.3.7 - eslint-module-utils: 2.7.4_igrub7c6rucg6hjc3uqgumd66y + eslint-module-utils: 2.7.4_wgltsi2kbncdpzwytonvdf2oba has: 1.0.3 is-core-module: 2.11.0 is-glob: 4.0.3 @@ -8330,7 +8392,7 @@ packages: - supports-color dev: true - /eslint-plugin-jsx-a11y/6.7.1_eslint@8.35.0: + /eslint-plugin-jsx-a11y/6.7.1_eslint@8.36.0: resolution: {integrity: sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==} engines: {node: '>=4.0'} peerDependencies: @@ -8345,7 +8407,7 @@ packages: axobject-query: 3.1.1 damerau-levenshtein: 1.0.8 emoji-regex: 9.2.2 - eslint: 8.35.0 + eslint: 8.36.0 has: 1.0.3 jsx-ast-utils: 3.3.3 language-tags: 1.0.5 @@ -8355,7 +8417,7 @@ packages: semver: 6.3.0 dev: true - /eslint-plugin-prettier/4.2.1_u2zha4kiojzs42thzpgwygphmy: + /eslint-plugin-prettier/4.2.1_eqzx3hpkgx5nnvxls3azrcc7dm: resolution: {integrity: sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==} engines: {node: '>=12.0.0'} peerDependencies: @@ -8366,22 +8428,22 @@ packages: eslint-config-prettier: optional: true dependencies: - eslint: 8.35.0 - eslint-config-prettier: 8.6.0_eslint@8.35.0 + eslint: 8.36.0 + eslint-config-prettier: 8.7.0_eslint@8.36.0 prettier: 2.8.4 prettier-linter-helpers: 1.0.0 dev: true - /eslint-plugin-react-hooks/4.6.0_eslint@8.35.0: + /eslint-plugin-react-hooks/4.6.0_eslint@8.36.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.35.0 + eslint: 8.36.0 dev: true - /eslint-plugin-react/7.32.2_eslint@8.35.0: + /eslint-plugin-react/7.32.2_eslint@8.36.0: resolution: {integrity: sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==} engines: {node: '>=4'} peerDependencies: @@ -8391,7 +8453,7 @@ packages: array.prototype.flatmap: 1.3.1 array.prototype.tosorted: 1.1.1 doctrine: 2.1.0 - eslint: 8.35.0 + eslint: 8.36.0 estraverse: 5.3.0 jsx-ast-utils: 3.3.3 minimatch: 3.1.2 @@ -8405,15 +8467,15 @@ packages: string.prototype.matchall: 4.0.8 dev: true - /eslint-plugin-simple-import-sort/10.0.0_eslint@8.35.0: + /eslint-plugin-simple-import-sort/10.0.0_eslint@8.36.0: resolution: {integrity: sha512-AeTvO9UCMSNzIHRkg8S6c3RPy5YEwKWSQPx3DYghLedo2ZQxowPFLGDN1AZ2evfg6r6mjBSZSLxLFsWSu3acsw==} peerDependencies: eslint: '>=5.0.0' dependencies: - eslint: 8.35.0 + eslint: 8.36.0 dev: true - /eslint-plugin-unused-imports/2.0.0_hlu2tevvfejtijvruutuci6rky: + /eslint-plugin-unused-imports/2.0.0_dchlkxfdm6cbfc25bfo3oeha6e: resolution: {integrity: sha512-3APeS/tQlTrFa167ThtP0Zm0vctjr4M44HMpeg1P4bK6wItarumq0Ma82xorMKdFsWpphQBlRPzw/pxiVELX1A==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -8423,8 +8485,8 @@ packages: '@typescript-eslint/eslint-plugin': optional: true dependencies: - '@typescript-eslint/eslint-plugin': 5.54.0_6mj2wypvdnknez7kws2nfdgupi - eslint: 8.35.0 + '@typescript-eslint/eslint-plugin': 5.55.0_qsnvknysi52qtaxqdyqyohkcku + eslint: 8.36.0 eslint-rule-composer: 0.3.0 dev: true @@ -8449,33 +8511,20 @@ packages: estraverse: 5.3.0 dev: true - /eslint-utils/3.0.0_eslint@8.35.0: - resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} - engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} - peerDependencies: - eslint: '>=5' - dependencies: - eslint: 8.35.0 - eslint-visitor-keys: 2.1.0 - dev: true - - /eslint-visitor-keys/2.1.0: - resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==} - engines: {node: '>=10'} - dev: true - /eslint-visitor-keys/3.3.0: resolution: {integrity: sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /eslint/8.35.0: - resolution: {integrity: sha512-BxAf1fVL7w+JLRQhWl2pzGeSiGqbWumV4WNvc9Rhp6tiCtm4oHnyPBSEtMGZwrQgudFQ+otqzWoPB7x+hxoWsw==} + /eslint/8.36.0: + resolution: {integrity: sha512-Y956lmS7vDqomxlaaQAHVmeb4tNMp2FWIvU/RnU5BD3IKMD/MJPr76xdyr68P8tV1iNMvN2mRK0yy3c+UjL+bw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} hasBin: true dependencies: - '@eslint/eslintrc': 2.0.0 - '@eslint/js': 8.35.0 + '@eslint-community/eslint-utils': 4.2.0_eslint@8.36.0 + '@eslint-community/regexpp': 4.4.0 + '@eslint/eslintrc': 2.0.1 + '@eslint/js': 8.36.0 '@humanwhocodes/config-array': 0.11.8 '@humanwhocodes/module-importer': 1.0.1 '@nodelib/fs.walk': 1.2.8 @@ -8486,9 +8535,8 @@ packages: doctrine: 3.0.0 escape-string-regexp: 4.0.0 eslint-scope: 7.1.1 - eslint-utils: 3.0.0_eslint@8.35.0 eslint-visitor-keys: 3.3.0 - espree: 9.4.0 + espree: 9.5.0 esquery: 1.5.0 esutils: 2.0.3 fast-deep-equal: 3.1.3 @@ -8510,7 +8558,6 @@ packages: minimatch: 3.1.2 natural-compare: 1.4.0 optionator: 0.9.1 - regexpp: 3.2.0 strip-ansi: 6.0.1 strip-json-comments: 3.1.1 text-table: 0.2.0 @@ -8518,8 +8565,8 @@ packages: - supports-color dev: true - /espree/9.4.0: - resolution: {integrity: sha512-DQmnRpLj7f6TgN/NYb0MTzJXL+vJF9h3pHy4JhCIs3zwcgez8xmGg3sXHcEO97BrmO2OSvCwMdfdlyl+E9KjOw==} + /espree/9.5.0: + resolution: {integrity: sha512-JPbJGhKc47++oo4JkEoTe2wjy4fmMwvFpgJT9cQzmfXKp22Dr6Hf1tdCteLz1h0P3t+mGvWZ+4Uankvh8+c6zw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: acorn: 8.8.2 @@ -8626,13 +8673,13 @@ packages: strip-final-newline: 2.0.0 dev: true - /execa/6.1.0: - resolution: {integrity: sha512-QVWlX2e50heYJcCPG0iWtf8r0xjEYfz/OYLGDYH+IyjWezzPNxz63qNFOu0l4YftGWuizFVZHHs8PrLU5p2IDA==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + /execa/7.1.1: + resolution: {integrity: sha512-wH0eMf/UXckdUYnO21+HDztteVv05rq2GXksxT4fCGeHkBhw1DROXh40wcjMcRqDOWE7iPJ4n3M7e2+YFP+76Q==} + engines: {node: ^14.18.0 || ^16.14.0 || >=18.0.0} dependencies: cross-spawn: 7.0.3 get-stream: 6.0.1 - human-signals: 3.0.1 + human-signals: 4.3.0 is-stream: 3.0.0 merge-stream: 2.0.0 npm-run-path: 5.1.0 @@ -8927,35 +8974,35 @@ packages: path-exists: 4.0.0 dev: true - /firebase/9.17.1_encoding@0.1.13: - resolution: {integrity: sha512-MSZaTRaaRLgDFLqoEnoPYK8zkLwQNvYeLZ3YSKdcQxG8hDifNO22ywS1cSA1ZCGHlQeOsDtfDwBejKcANf/RQw==} + /firebase/9.18.0_encoding@0.1.13: + resolution: {integrity: sha512-CTV5S3mTtn9zodeWkdeTqiQFyS7t+iskA50V9hVKPCQ4TPw4tnoyNgtNzWUmemFnYadzzsTnAaxsR7UaBJgiqw==} dependencies: - '@firebase/analytics': 0.9.3_@firebase+app@0.9.3 - '@firebase/analytics-compat': 0.2.3_5qoz5voa527ucsvtk67mpz25ru - '@firebase/app': 0.9.3 - '@firebase/app-check': 0.6.3_@firebase+app@0.9.3 - '@firebase/app-check-compat': 0.3.3_5qoz5voa527ucsvtk67mpz25ru - '@firebase/app-compat': 0.2.3 + '@firebase/analytics': 0.9.4_@firebase+app@0.9.5 + '@firebase/analytics-compat': 0.2.4_iyabqhttlorju4ibfbaqz2vm6i + '@firebase/app': 0.9.5 + '@firebase/app-check': 0.6.4_@firebase+app@0.9.5 + '@firebase/app-check-compat': 0.3.4_iyabqhttlorju4ibfbaqz2vm6i + '@firebase/app-compat': 0.2.5 '@firebase/app-types': 0.9.0 - '@firebase/auth': 0.21.3_elhicscdlgavbvc4rtd5whdute - '@firebase/auth-compat': 0.3.3_ilabgwonlgwas5yi6hpnop6rs4 - '@firebase/database': 0.14.3 - '@firebase/database-compat': 0.3.3 - '@firebase/firestore': 3.8.3_elhicscdlgavbvc4rtd5whdute - '@firebase/firestore-compat': 0.3.3_ilabgwonlgwas5yi6hpnop6rs4 - '@firebase/functions': 0.9.3_elhicscdlgavbvc4rtd5whdute - '@firebase/functions-compat': 0.3.3_og3pmdegxblfifls6o6dz26cbi - '@firebase/installations': 0.6.3_@firebase+app@0.9.3 - '@firebase/installations-compat': 0.2.3_2nquphbz2k7fjevr4yz5c7cjmi - '@firebase/messaging': 0.12.3_@firebase+app@0.9.3 - '@firebase/messaging-compat': 0.2.3_5qoz5voa527ucsvtk67mpz25ru - '@firebase/performance': 0.6.3_@firebase+app@0.9.3 - '@firebase/performance-compat': 0.2.3_5qoz5voa527ucsvtk67mpz25ru - '@firebase/remote-config': 0.4.3_@firebase+app@0.9.3 - '@firebase/remote-config-compat': 0.2.3_5qoz5voa527ucsvtk67mpz25ru - '@firebase/storage': 0.11.1_elhicscdlgavbvc4rtd5whdute - '@firebase/storage-compat': 0.3.1_ilabgwonlgwas5yi6hpnop6rs4 - '@firebase/util': 1.9.2 + '@firebase/auth': 0.21.5_urnzyoierxnkmnju32ww72n77u + '@firebase/auth-compat': 0.3.5_qi3j262kwfzuzs4h23nf2u4zla + '@firebase/database': 0.14.4 + '@firebase/database-compat': 0.3.4 + '@firebase/firestore': 3.9.0_urnzyoierxnkmnju32ww72n77u + '@firebase/firestore-compat': 0.3.5_qi3j262kwfzuzs4h23nf2u4zla + '@firebase/functions': 0.9.4_urnzyoierxnkmnju32ww72n77u + '@firebase/functions-compat': 0.3.4_zihqpccbnytpkghsenawui4aqu + '@firebase/installations': 0.6.4_@firebase+app@0.9.5 + '@firebase/installations-compat': 0.2.4_vvye4fsi3sdhkso275hyw4xk7u + '@firebase/messaging': 0.12.4_@firebase+app@0.9.5 + '@firebase/messaging-compat': 0.2.4_iyabqhttlorju4ibfbaqz2vm6i + '@firebase/performance': 0.6.4_@firebase+app@0.9.5 + '@firebase/performance-compat': 0.2.4_iyabqhttlorju4ibfbaqz2vm6i + '@firebase/remote-config': 0.4.4_@firebase+app@0.9.5 + '@firebase/remote-config-compat': 0.2.4_iyabqhttlorju4ibfbaqz2vm6i + '@firebase/storage': 0.11.2_urnzyoierxnkmnju32ww72n77u + '@firebase/storage-compat': 0.3.2_qi3j262kwfzuzs4h23nf2u4zla + '@firebase/util': 1.9.3 transitivePeerDependencies: - encoding dev: false @@ -9364,14 +9411,14 @@ packages: get-intrinsic: 1.2.0 dev: true - /got/12.5.3: - resolution: {integrity: sha512-8wKnb9MGU8IPGRIo+/ukTy9XLJBwDiCpIf5TVzQ9Cpol50eMTpBq2GAuDsuDIz7hTYmZgMgC1e9ydr6kSDWs3w==} + /got/12.6.0: + resolution: {integrity: sha512-WTcaQ963xV97MN3x0/CbAriXFZcXCfgxVp91I+Ze6pawQOa7SgzwSx2zIJJsX+kTajMnVs0xcFD1TxZKFqhdnQ==} engines: {node: '>=14.16'} dependencies: '@sindresorhus/is': 5.3.0 '@szmarczak/http-timer': 5.0.1 cacheable-lookup: 7.0.0 - cacheable-request: 10.2.3 + cacheable-request: 10.2.8 decompress-response: 6.0.0 form-data-encoder: 2.1.4 get-stream: 6.0.1 @@ -9564,8 +9611,8 @@ packages: entities: 4.4.0 dev: true - /http-cache-semantics/4.1.0: - resolution: {integrity: sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==} + /http-cache-semantics/4.1.1: + resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==} dev: true /http-errors/2.0.0: @@ -9616,9 +9663,9 @@ packages: engines: {node: '>=10.17.0'} dev: true - /human-signals/3.0.1: - resolution: {integrity: sha512-rQLskxnM/5OCldHo+wNXbpVgDn5A17CUoKX+7Sokwaknlq7CdSnphy0W39GU8dw59XiCXmFXDg4fRuckQRKewQ==} - engines: {node: '>=12.20.0'} + /human-signals/4.3.0: + resolution: {integrity: sha512-zyzVyMjpGBX2+6cDVZeFPCdtOtdsxOeseRhB9tkQ6xXmGUNrcnBzdEKPy3VPNYz+4gy1oukVOXcrJCunSyc6QQ==} + engines: {node: '>=14.18.0'} dev: true /husky/8.0.3: @@ -9627,8 +9674,8 @@ packages: hasBin: true dev: true - /i18next/22.4.10: - resolution: {integrity: sha512-3EqgGK6fAJRjnGgfkNSStl4mYLCjUoJID338yVyLMj5APT67HUtWoqSayZewiiC5elzMUB1VEUwcmSCoeQcNEA==} + /i18next/22.4.11: + resolution: {integrity: sha512-ShfTzXVMjXdF2iPiT/wbizOrssLh9Ab6VpuVROihLCAu+u25KbZiEYVgsA0W6g0SgjPa/JmGWcUEV/g6cKzEjQ==} dependencies: '@babel/runtime': 7.21.0 dev: false @@ -10140,7 +10187,7 @@ packages: '@jest/expect': 28.1.3 '@jest/test-result': 28.1.3 '@jest/types': 28.1.3 - '@types/node': 18.14.4 + '@types/node': 18.15.3 chalk: 4.1.2 co: 4.6.0 dedent: 0.7.0 @@ -10225,7 +10272,7 @@ packages: - supports-color dev: true - /jest-config/28.1.3_@types+node@18.14.4: + /jest-config/28.1.3_@types+node@18.15.3: resolution: {integrity: sha512-MG3INjByJ0J4AsNBm7T3hsuxKQqFIiRo/AUqb1q9LRKI5UU6Aar9JHbr9Ivn1TVwfUD9KirRoM/T6u8XlcQPHQ==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} peerDependencies: @@ -10240,7 +10287,7 @@ packages: '@babel/core': 7.21.0 '@jest/test-sequencer': 28.1.3 '@jest/types': 28.1.3 - '@types/node': 18.14.4 + '@types/node': 18.15.3 babel-jest: 28.1.3_@babel+core@7.21.0 chalk: 4.1.2 ci-info: 3.8.0 @@ -10309,7 +10356,7 @@ packages: '@jest/environment': 28.1.3 '@jest/fake-timers': 28.1.3 '@jest/types': 28.1.3 - '@types/node': 18.14.4 + '@types/node': 18.15.3 jest-mock: 29.5.0 jest-util: 28.1.3 dev: true @@ -10330,7 +10377,7 @@ packages: dependencies: '@jest/types': 28.1.3 '@types/graceful-fs': 4.1.6 - '@types/node': 18.14.4 + '@types/node': 18.15.3 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.10 @@ -10349,7 +10396,7 @@ packages: dependencies: '@jest/types': 29.5.0 '@types/graceful-fs': 4.1.6 - '@types/node': 18.14.4 + '@types/node': 18.15.3 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.10 @@ -10435,7 +10482,7 @@ packages: engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@jest/types': 29.5.0 - '@types/node': 18.14.4 + '@types/node': 18.15.3 jest-util: 29.5.0 dev: true @@ -10536,7 +10583,7 @@ packages: '@jest/test-result': 28.1.3 '@jest/transform': 28.1.3 '@jest/types': 28.1.3 - '@types/node': 18.14.4 + '@types/node': 18.15.3 chalk: 4.1.2 emittery: 0.10.2 graceful-fs: 4.2.10 @@ -10599,7 +10646,7 @@ packages: '@babel/core': 7.21.0 '@babel/generator': 7.21.1 '@babel/plugin-syntax-typescript': 7.20.0_@babel+core@7.21.0 - '@babel/traverse': 7.21.2 + '@babel/traverse': 7.21.3 '@babel/types': 7.21.2 '@jest/expect-utils': 28.1.3 '@jest/transform': 28.1.3 @@ -10628,7 +10675,7 @@ packages: engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: '@jest/types': 28.1.3 - '@types/node': 18.14.4 + '@types/node': 18.15.3 chalk: 4.1.2 ci-info: 3.8.0 graceful-fs: 4.2.10 @@ -10640,7 +10687,7 @@ packages: engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@jest/types': 29.5.0 - '@types/node': 18.14.4 + '@types/node': 18.15.3 chalk: 4.1.2 ci-info: 3.8.0 graceful-fs: 4.2.10 @@ -10681,7 +10728,7 @@ packages: dependencies: '@jest/test-result': 28.1.3 '@jest/types': 28.1.3 - '@types/node': 18.14.4 + '@types/node': 18.15.3 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.10.2 @@ -10695,7 +10742,7 @@ packages: dependencies: '@jest/test-result': 29.5.0 '@jest/types': 29.5.0 - '@types/node': 18.14.4 + '@types/node': 18.15.3 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.13.1 @@ -10707,7 +10754,7 @@ packages: resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} engines: {node: '>= 10.13.0'} dependencies: - '@types/node': 18.14.4 + '@types/node': 18.15.3 merge-stream: 2.0.0 supports-color: 8.1.1 dev: true @@ -10716,7 +10763,7 @@ packages: resolution: {integrity: sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==} engines: {node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0} dependencies: - '@types/node': 18.14.4 + '@types/node': 18.15.3 merge-stream: 2.0.0 supports-color: 8.1.1 dev: true @@ -10725,7 +10772,7 @@ packages: resolution: {integrity: sha512-GLHN/GTAAMEy5BFdvpUfzr9Dr80zQqBrh0fz1mtRMe05hqP45+HfQltu7oTBfduD0UeZs09d+maFtFYAXFWvAA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@types/node': 18.14.4 + '@types/node': 18.15.3 jest-util: 29.5.0 merge-stream: 2.0.0 supports-color: 8.1.1 @@ -10941,7 +10988,7 @@ packages: engines: {node: '>=6'} dev: true - /ky-universal/0.11.0_ky@0.33.2: + /ky-universal/0.11.0_ky@0.33.3: resolution: {integrity: sha512-65KyweaWvk+uKKkCrfAf+xqN2/epw1IJDtlyCPxYffFCMR8u1sp2U65NtWpnozYfZxQ6IUzIlvUcw+hQ82U2Xw==} engines: {node: '>=14.16'} peerDependencies: @@ -10952,12 +10999,12 @@ packages: optional: true dependencies: abort-controller: 3.0.0 - ky: 0.33.2 + ky: 0.33.3 node-fetch: 3.3.0 dev: false - /ky/0.33.2: - resolution: {integrity: sha512-f6oS2rKUcPu5FzdqCDbFpmzis/JlqFZw8uIHm/jf8Kc3vtnW+VDhuashOAKyBZv8bFiZFZUMNxTC0JtahEvujA==} + /ky/0.33.3: + resolution: {integrity: sha512-CasD9OCEQSFIam2U8efFK81Yeg8vNMTBUqtMOHlrcWQHqUX3HeCl9Dr31u4toV7emlH8Mymk5+9p0lL6mKb/Xw==} engines: {node: '>=14.16'} dev: false @@ -11001,44 +11048,36 @@ packages: type-check: 0.4.0 dev: true - /lib0/0.2.64: - resolution: {integrity: sha512-uj2xp9i4QC0JEe5hf04whZ3MoDvB9QeJr17SJtjd5zUI5wCcIcnDpuhEMkunr+kSs/oJsz0e1rQvrW/TiX49gw==} - engines: {node: '>=14'} - hasBin: true - dependencies: - isomorphic.js: 0.2.5 - dev: false - - /lib0/0.2.66: - resolution: {integrity: sha512-h63Jt0nmFGmE4aXMPHUuRBpDgkdr1gfeVn+epJJ8m6+gPK0AozP6akJ8rp9IqBP8RC/peLi+pwaOx/qpgAvqgA==} + /lib0/0.2.68: + resolution: {integrity: sha512-VZPU3TFmS9mdNku3YmmPoiUQnhHK178p4nUh+BrtCDPT3r5GxE9XSx1yObTL7sH2xgAlAxFO/c/grh2zZMTJkw==} engines: {node: '>=14'} hasBin: true dependencies: isomorphic.js: 0.2.5 - /lilconfig/2.0.6: - resolution: {integrity: sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg==} + /lilconfig/2.1.0: + resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} engines: {node: '>=10'} dev: true /lines-and-columns/1.2.4: resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} - /lint-staged/13.1.2: - resolution: {integrity: sha512-K9b4FPbWkpnupvK3WXZLbgu9pchUJ6N7TtVZjbaPsoizkqFUDkUReUL25xdrCljJs7uLUF3tZ7nVPeo/6lp+6w==} + /lint-staged/13.2.0: + resolution: {integrity: sha512-GbyK5iWinax5Dfw5obm2g2ccUiZXNGtAS4mCbJ0Lv4rq6iEtfBSjOYdcbOtAIFtM114t0vdpViDDetjVTSd8Vw==} engines: {node: ^14.13.1 || >=16.0.0} hasBin: true dependencies: + chalk: 5.2.0 cli-truncate: 3.1.0 - colorette: 2.0.19 - commander: 9.4.1 + commander: 10.0.0 debug: 4.3.4 - execa: 6.1.0 - lilconfig: 2.0.6 - listr2: 5.0.6 + execa: 7.1.1 + lilconfig: 2.1.0 + listr2: 5.0.8 micromatch: 4.0.5 normalize-path: 3.0.0 - object-inspect: 1.12.2 + object-inspect: 1.12.3 pidtree: 0.6.0 string-argv: 0.3.1 yaml: 2.2.1 @@ -11047,8 +11086,8 @@ packages: - supports-color dev: true - /listr2/5.0.6: - resolution: {integrity: sha512-u60KxKBy1BR2uLJNTWNptzWQ1ob/gjMzIJPZffAENzpZqbMZ/5PrXXOomDcevIS/+IB7s1mmCEtSlT2qHWMqag==} + /listr2/5.0.8: + resolution: {integrity: sha512-mC73LitKHj9w6v30nLNGPetZIlfpUniNSsxxrbaPcWOjDb92SHPzJPi/t+v1YC/lxKz/AJ9egOjww0qUuFxBpA==} engines: {node: ^14.13.1 || >=16.0.0} peerDependencies: enquirer: '>= 2.3.0 < 3' @@ -11537,24 +11576,24 @@ packages: resolution: {integrity: sha512-KnJPlmPJ1ObNxz3suK89H14RqdiSqfZhyca+PnDA+bqSUjjUDvQJmIOQi6CV6dtJpx9isdJu8Pi4reoxm3wyGQ==} dev: true - /next-router-mock/0.9.2_next@13.2.3+react@18.2.0: + /next-router-mock/0.9.2_next@13.2.2+react@18.2.0: resolution: {integrity: sha512-rh6Mq1xhZ4Y0y9Z3seHZ04k4dAKnAyRcis7q3ZUF+Xp0uBeNqPC8Ydw5DldYncN3o1sYBqRyz25F/v/kfcg0/Q==} peerDependencies: next: '>=10.0.0' react: '>=17.0.0' dependencies: - next: 13.2.3_biqbaboplfbrettd7655fr4n2y + next: 13.2.2_biqbaboplfbrettd7655fr4n2y react: 18.2.0 dev: true - /next-themes/0.2.1_nvzgbose6yf6w7ijjprgspqefi: + /next-themes/0.2.1_yinf3kx724a5qkfsgvpslo2rma: resolution: {integrity: sha512-B+AKNfYNIzh0vqQQKqQItTS8evEouKD7H5Hj3kmuPERwddR2TxvDSFZuTj6T7Jfn1oyeUyJMydPl1Bkxkh0W7A==} peerDependencies: next: '*' react: '*' react-dom: '*' dependencies: - next: 13.2.3_biqbaboplfbrettd7655fr4n2y + next: 13.2.2_biqbaboplfbrettd7655fr4n2y react: 18.2.0 react-dom: 18.2.0_react@18.2.0 dev: false @@ -11607,8 +11646,8 @@ packages: - babel-plugin-macros dev: false - /next/13.2.3_biqbaboplfbrettd7655fr4n2y: - resolution: {integrity: sha512-nKFJC6upCPN7DWRx4+0S/1PIOT7vNlCT157w9AzbXEgKy6zkiPKEt5YyRUsRZkmpEqBVrGgOqNfwecTociyg+w==} + /next/13.2.2_biqbaboplfbrettd7655fr4n2y: + resolution: {integrity: sha512-dDKfGBqSxqmqx5WN9tDFg0uGUkD/LGUxR29tpe8AEmo2SwfbPWf04qyvDcKmpjt2fCzP4132BvFRZFlg+11kGw==} engines: {node: '>=14.6.0'} hasBin: true peerDependencies: @@ -11628,7 +11667,7 @@ packages: sass: optional: true dependencies: - '@next/env': 13.2.3 + '@next/env': 13.2.2 '@swc/helpers': 0.4.14 caniuse-lite: 1.0.30001458 postcss: 8.4.14 @@ -11636,19 +11675,19 @@ packages: react-dom: 18.2.0_react@18.2.0 styled-jsx: 5.1.1_react@18.2.0 optionalDependencies: - '@next/swc-android-arm-eabi': 13.2.3 - '@next/swc-android-arm64': 13.2.3 - '@next/swc-darwin-arm64': 13.2.3 - '@next/swc-darwin-x64': 13.2.3 - '@next/swc-freebsd-x64': 13.2.3 - '@next/swc-linux-arm-gnueabihf': 13.2.3 - '@next/swc-linux-arm64-gnu': 13.2.3 - '@next/swc-linux-arm64-musl': 13.2.3 - '@next/swc-linux-x64-gnu': 13.2.3 - '@next/swc-linux-x64-musl': 13.2.3 - '@next/swc-win32-arm64-msvc': 13.2.3 - '@next/swc-win32-ia32-msvc': 13.2.3 - '@next/swc-win32-x64-msvc': 13.2.3 + '@next/swc-android-arm-eabi': 13.2.2 + '@next/swc-android-arm64': 13.2.2 + '@next/swc-darwin-arm64': 13.2.2 + '@next/swc-darwin-x64': 13.2.2 + '@next/swc-freebsd-x64': 13.2.2 + '@next/swc-linux-arm-gnueabihf': 13.2.2 + '@next/swc-linux-arm64-gnu': 13.2.2 + '@next/swc-linux-arm64-musl': 13.2.2 + '@next/swc-linux-x64-gnu': 13.2.2 + '@next/swc-linux-x64-musl': 13.2.2 + '@next/swc-win32-arm64-msvc': 13.2.2 + '@next/swc-win32-ia32-msvc': 13.2.2 + '@next/swc-win32-x64-msvc': 13.2.2 transitivePeerDependencies: - '@babel/core' - babel-plugin-macros @@ -11831,6 +11870,10 @@ packages: resolution: {integrity: sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==} dev: true + /object-inspect/1.12.3: + resolution: {integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==} + dev: true + /object-is/1.1.5: resolution: {integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==} engines: {node: '>= 0.4'} @@ -12222,12 +12265,6 @@ packages: pathe: 1.1.0 dev: true - /playwright-core/1.31.1: - resolution: {integrity: sha512-JTyX4kV3/LXsvpHkLzL2I36aCdml4zeE35x+G5aPc4bkLsiRiQshU5lWeVpHFAuC8xAcbI6FDcw/8z3q2xtJSQ==} - engines: {node: '>=14'} - hasBin: true - dev: true - /playwright-core/1.31.2: resolution: {integrity: sha512-a1dFgCNQw4vCsG7bnojZjDnPewZcw7tZUNFN0ZkcLYKj+mPmXvg4MpaaKZ5SgqPsOmqIf2YsVRkgqiRDxD+fDQ==} engines: {node: '>=14'} @@ -12373,12 +12410,12 @@ packages: '@protobufjs/pool': 1.1.0 '@protobufjs/utf8': 1.1.0 '@types/long': 4.0.2 - '@types/node': 18.14.4 + '@types/node': 18.15.3 long: 4.0.0 dev: false - /protobufjs/7.1.2: - resolution: {integrity: sha512-4ZPTPkXCdel3+L81yw3dG6+Kq3umdWKh7Dc7GW/CpNk4SX3hK58iPCWeCyhVTDrbkNeKrYNZ7EojM5WDaEWTLQ==} + /protobufjs/7.2.2: + resolution: {integrity: sha512-++PrQIjrom+bFDPpfmqXfAGSQs40116JRrqqyf53dymUMvvb5d/LMRyicRoF1AUKoXVS1/IgJXlEgcpr4gTF3Q==} engines: {node: '>=12.0.0'} requiresBuild: true dependencies: @@ -12392,7 +12429,7 @@ packages: '@protobufjs/path': 1.1.2 '@protobufjs/pool': 1.1.0 '@protobufjs/utf8': 1.1.0 - '@types/node': 18.14.4 + '@types/node': 18.15.3 long: 5.2.1 dev: false @@ -12470,6 +12507,13 @@ packages: side-channel: 1.0.4 dev: true + /qs/6.11.1: + resolution: {integrity: sha512-0wsrzgTz/kAVIeuxSjnpGC56rzYtr6JT/2BwEvMaPhFIoYa1aGO8LbzuU1R0uUYQkLpWBTOj0l/CLAJB64J6nQ==} + engines: {node: '>=0.6'} + dependencies: + side-channel: 1.0.4 + dev: true + /query-string/7.1.3: resolution: {integrity: sha512-hh2WYhq4fi8+b+/2Kg9CEge4fDPvHS534aOOvOZeQ3+Vf2mCFsaFBYj0i+iXcAq6I9Vzp5fjMFBlONvayDC1qg==} engines: {node: '>=6'} @@ -12512,7 +12556,7 @@ packages: unpipe: 1.0.0 dev: true - /raw-loader/4.0.2_webpack@5.76.1: + /raw-loader/4.0.2_webpack@5.76.2: resolution: {integrity: sha512-ZnScIV3ag9A4wPX/ZayxL/jZH+euYb6FcUinPcgiQW0+UBtEv0O6Q3lGd3cqJ+GHH+rksEv3Pj99oxJ3u3VIKA==} engines: {node: '>= 10.13.0'} peerDependencies: @@ -12520,7 +12564,7 @@ packages: dependencies: loader-utils: 2.0.4 schema-utils: 3.1.1 - webpack: 5.76.1 + webpack: 5.76.2 dev: true /react-colorful/5.6.1_biqbaboplfbrettd7655fr4n2y: @@ -12533,12 +12577,12 @@ packages: react-dom: 18.2.0_react@18.2.0 dev: true - /react-docgen-typescript/2.2.2_typescript@4.9.5: + /react-docgen-typescript/2.2.2_typescript@5.0.2: resolution: {integrity: sha512-tvg2ZtOpOi6QDwsb3GZhOjDkkX0h8Z2gipvTg6OVMUyoYoURhEiRNePT8NZItTVCDh39JJHnLdfCOkzoLbFnTg==} peerDependencies: typescript: '>= 4.3.x' dependencies: - typescript: 4.9.5 + typescript: 5.0.2 dev: true /react-docgen/6.0.0-alpha.3: @@ -12582,7 +12626,7 @@ packages: react-is: 18.2.0 dev: true - /react-i18next/12.2.0_3yopsigl4h4eb2nqrqfsy65uwi: + /react-i18next/12.2.0_nuvg7z3l7c7q3mgp6kac62miay: resolution: {integrity: sha512-5XeVgSygaGfyFmDd2WcXvINRw2WEC1XviW1LXY/xLOEMzsCFRwKqfnHN+hUjla8ZipbVJR27GCMSuTr0BhBBBQ==} peerDependencies: i18next: '>= 19.0.0' @@ -12597,7 +12641,7 @@ packages: dependencies: '@babel/runtime': 7.21.0 html-parse-stringify: 3.0.1 - i18next: 22.4.10 + i18next: 22.4.11 react: 18.2.0 react-dom: 18.2.0_react@18.2.0 dev: false @@ -12822,11 +12866,6 @@ packages: functions-have-names: 1.2.3 dev: true - /regexpp/3.2.0: - resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==} - engines: {node: '>=8'} - dev: true - /regexpu-core/5.3.1: resolution: {integrity: sha512-nCOzW2V/X15XpLsK2rlgdwrysrBq+AauCn+omItIz4R1pIcmeot5zvjdmOBRLzEH/CkC6IxMJVmxDe3QcMuNVQ==} engines: {node: '>=4'} @@ -12995,6 +13034,14 @@ packages: fsevents: 2.3.2 dev: true + /rollup/3.19.1: + resolution: {integrity: sha512-lAbrdN7neYCg/8WaoWn/ckzCtz+jr70GFfYdlf50OF7387HTg+wiuiqJRFYawwSPpqfqDNYqK7smY/ks2iAudg==} + engines: {node: '>=14.18.0', npm: '>=8.0.0'} + hasBin: true + optionalDependencies: + fsevents: 2.3.2 + dev: true + /run-parallel/1.2.0: resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} dependencies: @@ -13053,12 +13100,6 @@ packages: ajv-keywords: 3.5.2_ajv@6.12.6 dev: true - /scroll-into-view-if-needed/3.0.6: - resolution: {integrity: sha512-x+CW0kOzlFNOnseF0DBr0AJ5m+TgGmSOdEZwyiZW0gV87XBvxQKw5A8DvFFgabznA68XqLgVX+PwPX8OzsFvRA==} - dependencies: - compute-scroll-into-view: 3.0.0 - dev: false - /semver/5.7.1: resolution: {integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==} hasBin: true @@ -13747,7 +13788,7 @@ packages: supports-hyperlinks: 2.3.0 dev: true - /terser-webpack-plugin/5.3.7_webpack@5.76.1: + /terser-webpack-plugin/5.3.7_webpack@5.76.2: resolution: {integrity: sha512-AfKwIktyP7Cu50xNjXF/6Qb5lBNzYaWpU6YfoX3uZicTx0zTy0stDDCsvjDapKsSDvOeWo5MEq4TmdBy2cNoHw==} engines: {node: '>= 10.13.0'} peerDependencies: @@ -13768,7 +13809,7 @@ packages: schema-utils: 3.1.1 serialize-javascript: 6.0.1 terser: 5.16.6 - webpack: 5.76.1 + webpack: 5.76.2 dev: true /terser/5.16.6: @@ -13898,7 +13939,7 @@ packages: engines: {node: '>=6.10'} dev: true - /ts-node/10.9.1_oboltcrkaqheaa54woelu7cdsa: + /ts-node/10.9.1_sxidjv3cojnrggmso45tj7hldi: resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} hasBin: true peerDependencies: @@ -13917,14 +13958,14 @@ packages: '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.3 - '@types/node': 18.14.4 + '@types/node': 18.15.3 acorn: 8.8.2 acorn-walk: 8.2.0 arg: 4.1.3 create-require: 1.1.1 diff: 4.0.2 make-error: 1.3.6 - typescript: 4.9.5 + typescript: 5.0.2 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 dev: true @@ -13945,14 +13986,14 @@ packages: /tslib/2.5.0: resolution: {integrity: sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==} - /tsutils/3.21.0_typescript@4.9.5: + /tsutils/3.21.0_typescript@5.0.2: resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} engines: {node: '>= 6'} peerDependencies: typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' dependencies: tslib: 1.14.1 - typescript: 4.9.5 + typescript: 5.0.2 dev: true /turndown/7.1.1: @@ -14053,9 +14094,9 @@ packages: resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==} dev: true - /typescript/4.9.5: - resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==} - engines: {node: '>=4.2.0'} + /typescript/5.0.2: + resolution: {integrity: sha512-wVORMBGO/FAs/++blGNeAVdbNKtIh1rbBL2EyQ1+J9lClJ93KiiKe8PmFIVdXhHcyv44SL9oglmfeSsndo0jRw==} + engines: {node: '>=12.20'} hasBin: true dev: true @@ -14312,7 +14353,7 @@ packages: engines: {node: '>= 0.8'} dev: true - /vite-node/0.28.5_@types+node@18.14.4: + /vite-node/0.28.5_@types+node@18.15.3: resolution: {integrity: sha512-LmXb9saMGlrMZbXTvOveJKwMTBTNUH66c8rJnQ0ZPNX+myPEol64+szRzXtV5ORb0Hb/91yq+/D3oERoyAt6LA==} engines: {node: '>=v14.16.0'} hasBin: true @@ -14324,7 +14365,7 @@ packages: picocolors: 1.0.0 source-map: 0.6.1 source-map-support: 0.5.21 - vite: 4.1.4_@types+node@18.14.4 + vite: 4.2.0_@types+node@18.15.3 transitivePeerDependencies: - '@types/node' - less @@ -14335,8 +14376,8 @@ packages: - terser dev: true - /vite/4.1.4: - resolution: {integrity: sha512-3knk/HsbSTKEin43zHu7jTwYWv81f8kgAL99G5NWBcA1LKvtvcVAC4JjBH1arBunO9kQka+1oGbrMKOjk4ZrBg==} + /vite/4.2.0: + resolution: {integrity: sha512-AbDTyzzwuKoRtMIRLGNxhLRuv1FpRgdIw+1y6AQG73Q5+vtecmvzKo/yk8X/vrHDpETRTx01ABijqUHIzBXi0g==} engines: {node: ^14.18.0 || >=16.0.0} hasBin: true peerDependencies: @@ -14360,16 +14401,16 @@ packages: terser: optional: true dependencies: - esbuild: 0.16.17 + esbuild: 0.17.11 postcss: 8.4.21 resolve: 1.22.1 - rollup: 3.14.0 + rollup: 3.19.1 optionalDependencies: fsevents: 2.3.2 dev: true - /vite/4.1.4_@types+node@18.14.4: - resolution: {integrity: sha512-3knk/HsbSTKEin43zHu7jTwYWv81f8kgAL99G5NWBcA1LKvtvcVAC4JjBH1arBunO9kQka+1oGbrMKOjk4ZrBg==} + /vite/4.2.0_@types+node@18.15.3: + resolution: {integrity: sha512-AbDTyzzwuKoRtMIRLGNxhLRuv1FpRgdIw+1y6AQG73Q5+vtecmvzKo/yk8X/vrHDpETRTx01ABijqUHIzBXi0g==} engines: {node: ^14.18.0 || >=16.0.0} hasBin: true peerDependencies: @@ -14393,11 +14434,11 @@ packages: terser: optional: true dependencies: - '@types/node': 18.14.4 - esbuild: 0.16.17 + '@types/node': 18.15.3 + esbuild: 0.17.11 postcss: 8.4.21 resolve: 1.22.1 - rollup: 3.14.0 + rollup: 3.19.1 optionalDependencies: fsevents: 2.3.2 dev: true @@ -14409,12 +14450,12 @@ packages: vitest: '>=0.16.0' dependencies: cross-fetch: 3.1.5 - vitest: 0.28.5_oscpa7jhv6f2pwrg7t4qxe6ngi + vitest: 0.28.5_mxq3od2slsrg7ecyoqpfviqdky transitivePeerDependencies: - encoding dev: true - /vitest/0.28.5_oscpa7jhv6f2pwrg7t4qxe6ngi: + /vitest/0.28.5_mxq3od2slsrg7ecyoqpfviqdky: resolution: {integrity: sha512-pyCQ+wcAOX7mKMcBNkzDwEHRGqQvHUl0XnoHR+3Pb1hytAHISgSxv9h0gUiSiYtISXUU3rMrKiKzFYDrI6ZIHA==} engines: {node: '>=v14.16.0'} hasBin: true @@ -14438,11 +14479,11 @@ packages: dependencies: '@types/chai': 4.3.4 '@types/chai-subset': 1.3.3 - '@types/node': 18.14.4 + '@types/node': 18.15.3 '@vitest/expect': 0.28.5 '@vitest/runner': 0.28.5 '@vitest/spy': 0.28.5 - '@vitest/ui': 0.29.2 + '@vitest/ui': 0.29.3 '@vitest/utils': 0.28.5 acorn: 8.8.2 acorn-walk: 8.2.0 @@ -14459,8 +14500,8 @@ packages: tinybench: 2.3.1 tinypool: 0.3.1 tinyspy: 1.1.1 - vite: 4.1.4_@types+node@18.14.4 - vite-node: 0.28.5_@types+node@18.14.4 + vite: 4.2.0_@types+node@18.15.3 + vite-node: 0.28.5_@types+node@18.15.3 why-is-node-running: 2.2.2 transitivePeerDependencies: - less @@ -14560,8 +14601,8 @@ packages: resolution: {integrity: sha512-5tyDlKLqPfMqjT3Q9TAqf2YqjwmnUleZwzJi1A5qXnlBCdj2AtOJ6wAWdglTIDOPgOiOrXeBeFcsQ8+aGQ6QbA==} dev: true - /webpack/5.76.1: - resolution: {integrity: sha512-4+YIK4Abzv8172/SGqObnUjaIHjLEuUasz9EwQj/9xmPPkYJy2Mh03Q/lJfSD3YLzbxy5FeTq5Uw0323Oh6SJQ==} + /webpack/5.76.2: + resolution: {integrity: sha512-Th05ggRm23rVzEOlX8y67NkYCHa9nTNcwHPBhdg+lKG+mtiW7XgggjAeeLnADAe7mLjJ6LUNfgHAuRRh+Z6J7w==} engines: {node: '>=10.13.0'} hasBin: true peerDependencies: @@ -14591,7 +14632,7 @@ packages: neo-async: 2.6.2 schema-utils: 3.1.1 tapable: 2.2.1 - terser-webpack-plugin: 5.3.7_webpack@5.76.1 + terser-webpack-plugin: 5.3.7_webpack@5.76.2 watchpack: 2.4.0 webpack-sources: 3.2.3 transitivePeerDependencies: @@ -14838,27 +14879,27 @@ packages: engines: {node: '>=0.4'} dev: true - /y-indexeddb/9.0.9_yjs@13.5.48: + /y-indexeddb/9.0.9_yjs@13.5.50: resolution: {integrity: sha512-GcJbiJa2eD5hankj46Hea9z4hbDnDjvh1fT62E5SpZRsv8GcEemw34l1hwI2eknGcv5Ih9JfusT37JLx9q3LFg==} peerDependencies: yjs: ^13.0.0 dependencies: - lib0: 0.2.66 - yjs: 13.5.48 + lib0: 0.2.68 + yjs: 13.5.50 dev: false /y-protocols/1.0.5: resolution: {integrity: sha512-Wil92b7cGk712lRHDqS4T90IczF6RkcvCwAD0A2OPg+adKmOe+nOiT/N2hvpQIWS3zfjmtL4CPaH5sIW1Hkm/A==} dependencies: - lib0: 0.2.66 + lib0: 0.2.68 dev: false - /y-webrtc/10.2.4: - resolution: {integrity: sha512-yoTl2tXdJsLLYIp2X2GRqNywgGwk4CEs3NcXJmgLLq2Ga8VX86q3Y3QBLy5mi30InRjjKL/ymCasAsydXTta+w==} + /y-webrtc/10.2.5: + resolution: {integrity: sha512-ZyBNvTI5L28sQ2PQI0T/JvyWgvuTq05L21vGkIlcvNLNSJqAaLCBJRe3FHEqXoaogqWmRcEAKGfII4ErNXMnNw==} engines: {node: '>=12'} hasBin: true dependencies: - lib0: 0.2.66 + lib0: 0.2.68 simple-peer: 9.11.1 y-protocols: 1.0.5 optionalDependencies: @@ -14961,10 +15002,10 @@ packages: fd-slicer: 1.1.0 dev: true - /yjs/13.5.48: - resolution: {integrity: sha512-RFUqe1UQa1iKfQ9wZkZQP33iEBBSTz6sW3S5CWzHEe0JVksOi8AzspSTvQk5VskoJj4HzMUYgaNcPrE0MqJ8xQ==} + /yjs/13.5.50: + resolution: {integrity: sha512-Q2KVNfovwjtJV4Yxz+HaFYT6vTYBaFagOSpTL3jbPc7Sbv/My68fLTfPlYy9FmNO87pV8dMBd5XuVar+9WsAWg==} dependencies: - lib0: 0.2.66 + lib0: 0.2.68 /yn/3.1.1: resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==} @@ -15007,7 +15048,7 @@ packages: dependencies: '@types/fs-extra': 11.0.1 '@types/minimist': 1.2.2 - '@types/node': 18.14.4 + '@types/node': 18.15.3 '@types/ps-tree': 1.1.2 '@types/which': 2.0.2 chalk: 5.2.0