From 4b2e4c9e6b2792227780993b3b3e84d6fdebe7a2 Mon Sep 17 00:00:00 2001 From: Aaron Date: Mon, 30 Oct 2023 09:50:01 +0800 Subject: [PATCH] chore: publish in 1026 (#543) * chore: publish in 1026 --- package.json | 8 +- packages/gi-assets-advance/CHANGELOG.md | 27 + packages/gi-assets-advance/package.json | 7 +- packages/gi-assets-algorithm/CHANGELOG.md | 27 + packages/gi-assets-algorithm/package.json | 7 +- packages/gi-assets-basic/CHANGELOG.md | 27 + packages/gi-assets-basic/package.json | 7 +- packages/gi-assets-galaxybase/CHANGELOG.md | 24 + packages/gi-assets-galaxybase/package.json | 7 +- packages/gi-assets-graphscope/CHANGELOG.md | 24 + packages/gi-assets-graphscope/package.json | 7 +- packages/gi-assets-hugegraph/CHANGELOG.md | 24 + packages/gi-assets-hugegraph/package.json | 7 +- packages/gi-assets-janusgraph/CHANGELOG.md | 24 + packages/gi-assets-janusgraph/package.json | 5 +- packages/gi-assets-neo4j/CHANGELOG.md | 24 + packages/gi-assets-neo4j/package.json | 7 +- packages/gi-assets-scene/CHANGELOG.md | 24 + packages/gi-assets-scene/package.json | 7 +- packages/gi-assets-testing/package.json | 5 +- .../gi-assets-tugraph-analytics/CHANGELOG.md | 27 + .../gi-assets-tugraph-analytics/package.json | 7 +- packages/gi-assets-tugraph/CHANGELOG.md | 24 + packages/gi-assets-tugraph/package.json | 7 +- packages/gi-cli/CHANGELOG.md | 18 + packages/gi-cli/package.json | 5 +- packages/gi-cli/templates/package.json | 2 +- packages/gi-cli/templates/package.json.tpl | 2 +- packages/gi-common-components/CHANGELOG.md | 18 + packages/gi-common-components/package.json | 8 +- packages/gi-httpservice/CHANGELOG.md | 6 + packages/gi-httpservice/package.json | 6 +- packages/gi-sdk-app/CHANGELOG.md | 18 + packages/gi-sdk-app/package.json | 5 +- packages/gi-sdk/CHANGELOG.md | 24 + packages/gi-sdk/package.json | 7 +- packages/gi-site/package.json | 2 +- packages/gi-site/scripts/pre-build.mjs | 2 +- packages/gi-theme-antd/CHANGELOG.md | 18 + packages/gi-theme-antd/package.json | 6 +- pnpm-lock.yaml | 10322 ++++++++-------- turbo.json | 3 + 42 files changed, 5675 insertions(+), 5161 deletions(-) diff --git a/package.json b/package.json index 0ee650dd8..302d48df7 100644 --- a/package.json +++ b/package.json @@ -6,11 +6,15 @@ "scripts": { "preinstall": "npx only-allow pnpm", "postinstall": "npm run build:all:es", + "build": "npm run build:all:es && npm run build:all:umd", "build:all:es": "turbo run build:es", "build:all:umd": "turbo run build:umd --no-cache", "start": "cd packages/gi-site && npm run start", "clean": "pnpm run -r clean", - "publish": "pnpm publish -r --registry=https://registry.npmjs.org", + "sync": "turbo run sync", + "beforepublish": "npm run build", + "publish": "npm run beforepublish && pnpm publish -r --registry=https://registry.npmjs.org && npm run afterpublish", + "afterpublish": "turbo run sync", "cdn": "node ./scripts/publish_yuyan.mjs", "tar:gi-httpservice": "node scripts/tar_httpservice.mjs && cd packages/gi-httpservice-xxx && npm install && npm run build:docker && npm run tar && cd ../../ && node scripts/rm_httpservice.mjs", "scriptname": "cmd" @@ -40,7 +44,7 @@ "@ant-design/icons": "^4.7.0", "@antv/algorithm": "^0.1.26-beta.0", "@antv/g6": "^4.8.19", - "@antv/graphin": "^2.7.25", + "@antv/graphin": "^2.7.27", "@antv/layout": "^0.3.22", "@antv/s2": "^1.48.0", "@antv/s2-react": "^1.41.0", diff --git a/packages/gi-assets-advance/CHANGELOG.md b/packages/gi-assets-advance/CHANGELOG.md index e0d9e68b9..98110ca28 100644 --- a/packages/gi-assets-advance/CHANGELOG.md +++ b/packages/gi-assets-advance/CHANGELOG.md @@ -1,5 +1,32 @@ # @antv/gi-assets-advance +## 2.5.20 + +### Patch Changes + +- update graphin version +- Updated dependencies + - @antv/gi-common-components@1.3.13 + - @antv/gi-sdk@2.4.19 + +## 2.5.19 + +### Patch Changes + +- publish in 1026 +- Updated dependencies + - @antv/gi-common-components@1.3.12 + - @antv/gi-sdk@2.4.18 + +## 2.5.18 + +### Patch Changes + +- publish in 1026 +- Updated dependencies + - @antv/gi-common-components@1.3.11 + - @antv/gi-sdk@2.4.17 + ## 2.5.17 ### Patch Changes diff --git a/packages/gi-assets-advance/package.json b/packages/gi-assets-advance/package.json index 4c8810b87..da638efd8 100644 --- a/packages/gi-assets-advance/package.json +++ b/packages/gi-assets-advance/package.json @@ -1,6 +1,6 @@ { "name": "@antv/gi-assets-advance", - "version": "2.5.17", + "version": "2.5.20", "description": "G6VP 高级资产包", "main": "lib/index.js", "module": "es/index.js", @@ -23,8 +23,7 @@ "prettier": "prettier --write ./src/**/**/**/*.js", "start": "npm run clean && father build --watch", "test": "jest", - "prepublishOnly": "npm run build", - "postpublish": "tnpm sync @antv/gi-assets-advance" + "sync": "tnpm sync @antv/gi-assets-advance" }, "dependencies": { "@aligov/global-locale": "^1.0.5", @@ -59,7 +58,7 @@ "use-immer": "^0.9.0" }, "peerDependencies": { - "@antv/graphin": "^2.7.25", + "@antv/graphin": "^2.7.27", "antd": "4.x", "react": "17.x", "react-dom": "17.x" diff --git a/packages/gi-assets-algorithm/CHANGELOG.md b/packages/gi-assets-algorithm/CHANGELOG.md index c5cbb5564..db6b7f28a 100644 --- a/packages/gi-assets-algorithm/CHANGELOG.md +++ b/packages/gi-assets-algorithm/CHANGELOG.md @@ -1,5 +1,32 @@ # @antv/gi-assets-algorithm +## 2.3.16 + +### Patch Changes + +- update graphin version +- Updated dependencies + - @antv/gi-common-components@1.3.13 + - @antv/gi-sdk@2.4.19 + +## 2.3.15 + +### Patch Changes + +- publish in 1026 +- Updated dependencies + - @antv/gi-common-components@1.3.12 + - @antv/gi-sdk@2.4.18 + +## 2.3.14 + +### Patch Changes + +- publish in 1026 +- Updated dependencies + - @antv/gi-common-components@1.3.11 + - @antv/gi-sdk@2.4.17 + ## 2.3.13 ### Patch Changes diff --git a/packages/gi-assets-algorithm/package.json b/packages/gi-assets-algorithm/package.json index 6bea6d27e..dbbe94c9a 100644 --- a/packages/gi-assets-algorithm/package.json +++ b/packages/gi-assets-algorithm/package.json @@ -1,6 +1,6 @@ { "name": "@antv/gi-assets-algorithm", - "version": "2.3.13", + "version": "2.3.16", "description": "G6VP 图分析算法资产库", "repository": { "type": "git", @@ -29,8 +29,7 @@ "prettier": "prettier --write ./src/**/**/**/*.js", "start": "npm run clean && father build --watch", "test": "jest", - "prepublishOnly": "npm run build", - "postpublish": "tnpm sync @antv/gi-assets-algorithm" + "sync": "tnpm sync @antv/gi-assets-algorithm" }, "dependencies": { "@aligov/global-locale": "^1.0.5", @@ -51,7 +50,7 @@ "peerDependencies": { "@ant-design/icons": "^4.7.0", "@antv/g2plot": "^2.4.31", - "@antv/graphin": "^2.7.25", + "@antv/graphin": "^2.7.27", "react": "17.x", "react-dom": "17.x" }, diff --git a/packages/gi-assets-basic/CHANGELOG.md b/packages/gi-assets-basic/CHANGELOG.md index d3258d77b..905543115 100644 --- a/packages/gi-assets-basic/CHANGELOG.md +++ b/packages/gi-assets-basic/CHANGELOG.md @@ -1,5 +1,32 @@ # @antv/gi-assets-basic +## 2.4.36 + +### Patch Changes + +- update graphin version +- Updated dependencies + - @antv/gi-common-components@1.3.13 + - @antv/gi-sdk@2.4.19 + +## 2.4.35 + +### Patch Changes + +- publish in 1026 +- Updated dependencies + - @antv/gi-common-components@1.3.12 + - @antv/gi-sdk@2.4.18 + +## 2.4.34 + +### Patch Changes + +- publish in 1026 +- Updated dependencies + - @antv/gi-common-components@1.3.11 + - @antv/gi-sdk@2.4.17 + ## 2.4.33 ### Patch Changes diff --git a/packages/gi-assets-basic/package.json b/packages/gi-assets-basic/package.json index b79d0a920..ff25cd601 100644 --- a/packages/gi-assets-basic/package.json +++ b/packages/gi-assets-basic/package.json @@ -1,6 +1,6 @@ { "name": "@antv/gi-assets-basic", - "version": "2.4.33", + "version": "2.4.36", "description": "G6VP 基础资产包", "main": "lib/index.js", "module": "es/index.js", @@ -29,8 +29,7 @@ "start": "npm run clean && father build --watch", "test": "jest", "build:umd:analysis": "webpack --mode production -c ../../webpack.config.js --env path=/packages/gi-assets-basic analysis=true", - "prepublishOnly": "npm run build", - "postpublish": "tnpm sync @antv/gi-assets-basic" + "sync": "tnpm sync @antv/gi-assets-basic" }, "dependencies": { "@aligov/global-locale": "^1.0.5", @@ -53,7 +52,7 @@ "use-immer": "^0.9.0" }, "peerDependencies": { - "@antv/graphin": "^2.7.25", + "@antv/graphin": "^2.7.27", "antd": "4.x", "react": "17.x", "react-dom": "17.x" diff --git a/packages/gi-assets-galaxybase/CHANGELOG.md b/packages/gi-assets-galaxybase/CHANGELOG.md index e82eae8a0..b8f30d659 100644 --- a/packages/gi-assets-galaxybase/CHANGELOG.md +++ b/packages/gi-assets-galaxybase/CHANGELOG.md @@ -1,5 +1,29 @@ # @antv/gi-assets-galaxybase +## 1.2.13 + +### Patch Changes + +- update graphin version +- Updated dependencies + - @antv/gi-sdk@2.4.19 + +## 1.2.12 + +### Patch Changes + +- publish in 1026 +- Updated dependencies + - @antv/gi-sdk@2.4.18 + +## 1.2.11 + +### Patch Changes + +- publish in 1026 +- Updated dependencies + - @antv/gi-sdk@2.4.17 + ## 1.2.10 ### Patch Changes diff --git a/packages/gi-assets-galaxybase/package.json b/packages/gi-assets-galaxybase/package.json index a06da437a..ef5027823 100644 --- a/packages/gi-assets-galaxybase/package.json +++ b/packages/gi-assets-galaxybase/package.json @@ -1,6 +1,6 @@ { "name": "@antv/gi-assets-galaxybase", - "version": "1.2.10", + "version": "1.2.13", "description": "Galaxybase 团队的图分析资产包", "main": "lib/index.js", "module": "es/index.js", @@ -22,8 +22,7 @@ "remove:antd": "rm -rf ./node_modules/antd", "start": "npm run clean && father build --watch", "test": "jest", - "prepublishOnly": "npm run build", - "postpublish": "tnpm sync @antv/gi-assets-galaxybase" + "sync": "tnpm sync @antv/gi-assets-galaxybase" }, "resolutions": { "antd": "4.x" @@ -33,7 +32,7 @@ "@aligov/global-string-format": "^1.0.7", "@ant-design/icons": "^4.7.0", "@antv/gi-sdk": "workspace:*", - "@antv/graphin": "^2.7.25", + "@antv/graphin": "^2.7.27", "@antv/graphin-icons": "^1.0.0", "antd": "4.x", "codemirror": "^5.25.0", diff --git a/packages/gi-assets-graphscope/CHANGELOG.md b/packages/gi-assets-graphscope/CHANGELOG.md index 2289f7039..96bcf9851 100644 --- a/packages/gi-assets-graphscope/CHANGELOG.md +++ b/packages/gi-assets-graphscope/CHANGELOG.md @@ -1,5 +1,29 @@ # @antv/gi-assets-graphscope +## 2.1.13 + +### Patch Changes + +- update graphin version +- Updated dependencies + - @antv/gi-sdk@2.4.19 + +## 2.1.12 + +### Patch Changes + +- publish in 1026 +- Updated dependencies + - @antv/gi-sdk@2.4.18 + +## 2.1.11 + +### Patch Changes + +- publish in 1026 +- Updated dependencies + - @antv/gi-sdk@2.4.17 + ## 2.1.10 ### Patch Changes diff --git a/packages/gi-assets-graphscope/package.json b/packages/gi-assets-graphscope/package.json index 081173a10..772ff623e 100644 --- a/packages/gi-assets-graphscope/package.json +++ b/packages/gi-assets-graphscope/package.json @@ -1,6 +1,6 @@ { "name": "@antv/gi-assets-graphscope", - "version": "2.1.10", + "version": "2.1.13", "description": "GraphScope 单机版资产包", "main": "lib/index.js", "module": "es/index.js", @@ -25,15 +25,14 @@ "remove:antd": "rm -rf ./node_modules/antd", "start": "father build --watch", "test": "jest", - "prepublishOnly": "npm run build", - "postpublish": "tnpm sync @antv/gi-assets-graphscope" + "sync": "tnpm sync @antv/gi-assets-graphscope" }, "dependencies": { "@aligov/global-locale": "^1.0.5", "@aligov/global-string-format": "^1.0.7", "@ant-design/icons": "^4.7.0", "@antv/gi-sdk": "workspace:*", - "@antv/graphin": "^2.7.25", + "@antv/graphin": "^2.7.27", "gremlin_patch": "^3.5.1", "json2csv": "^5.0.7", "umi-request": "^1.4.0", diff --git a/packages/gi-assets-hugegraph/CHANGELOG.md b/packages/gi-assets-hugegraph/CHANGELOG.md index e6c971f83..ef24886f0 100644 --- a/packages/gi-assets-hugegraph/CHANGELOG.md +++ b/packages/gi-assets-hugegraph/CHANGELOG.md @@ -1,5 +1,29 @@ # @antv/gi-assets-hugegraph +## 1.1.13 + +### Patch Changes + +- update graphin version +- Updated dependencies + - @antv/gi-sdk@2.4.19 + +## 1.1.12 + +### Patch Changes + +- publish in 1026 +- Updated dependencies + - @antv/gi-sdk@2.4.18 + +## 1.1.11 + +### Patch Changes + +- publish in 1026 +- Updated dependencies + - @antv/gi-sdk@2.4.17 + ## 1.1.10 ### Patch Changes diff --git a/packages/gi-assets-hugegraph/package.json b/packages/gi-assets-hugegraph/package.json index b56ba548b..d35dae0fa 100644 --- a/packages/gi-assets-hugegraph/package.json +++ b/packages/gi-assets-hugegraph/package.json @@ -1,6 +1,6 @@ { "name": "@antv/gi-assets-hugegraph", - "version": "1.1.10", + "version": "1.1.13", "description": "HugeGraph 资产包", "main": "lib/index.js", "module": "es/index.js", @@ -25,8 +25,7 @@ "remove:antd": "rm -rf ./node_modules/antd", "start": "father build --watch", "test": "jest", - "prepublishOnly": "npm run build", - "postpublish": "tnpm sync @antv/gi-assets-hugegraph" + "sync": "tnpm sync @antv/gi-assets-hugegraph" }, "dependencies": { "@aligov/global-locale": "^1.0.5", @@ -38,7 +37,7 @@ "use-immer": "^0.9.0" }, "peerDependencies": { - "@antv/graphin": "^2.7.25", + "@antv/graphin": "^2.7.27", "antd": "4.x", "react": "17.x" }, diff --git a/packages/gi-assets-janusgraph/CHANGELOG.md b/packages/gi-assets-janusgraph/CHANGELOG.md index 8330f0fae..bffa9e206 100644 --- a/packages/gi-assets-janusgraph/CHANGELOG.md +++ b/packages/gi-assets-janusgraph/CHANGELOG.md @@ -1,5 +1,29 @@ # @antv/gi-assets-janusgraph +## 1.1.13 + +### Patch Changes + +- update graphin version +- Updated dependencies + - @antv/gi-sdk@2.4.19 + +## 1.1.12 + +### Patch Changes + +- publish in 1026 +- Updated dependencies + - @antv/gi-sdk@2.4.18 + +## 1.1.11 + +### Patch Changes + +- publish in 1026 +- Updated dependencies + - @antv/gi-sdk@2.4.17 + ## 1.1.10 ### Patch Changes diff --git a/packages/gi-assets-janusgraph/package.json b/packages/gi-assets-janusgraph/package.json index c161d68d6..06353a3d9 100644 --- a/packages/gi-assets-janusgraph/package.json +++ b/packages/gi-assets-janusgraph/package.json @@ -1,6 +1,6 @@ { "name": "@antv/gi-assets-janusgraph", - "version": "1.1.10", + "version": "1.1.13", "description": "JanusGraph 资产包", "main": "lib/index.js", "module": "es/index.js", @@ -26,8 +26,7 @@ "remove:antd": "rm -rf ./node_modules/antd", "start": "father build --watch", "test": "jest", - "prepublishOnly": "npm run build", - "postpublish": "tnpm sync @antv/gi-assets-janusgraph" + "sync": "tnpm sync @antv/gi-assets-janusgraph" }, "dependencies": { "@aligov/global-locale": "^1.0.5", diff --git a/packages/gi-assets-neo4j/CHANGELOG.md b/packages/gi-assets-neo4j/CHANGELOG.md index 4852703aa..f193e3024 100644 --- a/packages/gi-assets-neo4j/CHANGELOG.md +++ b/packages/gi-assets-neo4j/CHANGELOG.md @@ -1,5 +1,29 @@ # @antv/gi-assets-neo4j +## 2.1.13 + +### Patch Changes + +- update graphin version +- Updated dependencies + - @antv/gi-sdk@2.4.19 + +## 2.1.12 + +### Patch Changes + +- publish in 1026 +- Updated dependencies + - @antv/gi-sdk@2.4.18 + +## 2.1.11 + +### Patch Changes + +- publish in 1026 +- Updated dependencies + - @antv/gi-sdk@2.4.17 + ## 2.1.10 ### Patch Changes diff --git a/packages/gi-assets-neo4j/package.json b/packages/gi-assets-neo4j/package.json index 8bb9d2234..4a2b944d6 100644 --- a/packages/gi-assets-neo4j/package.json +++ b/packages/gi-assets-neo4j/package.json @@ -1,6 +1,6 @@ { "name": "@antv/gi-assets-neo4j", - "version": "2.1.10", + "version": "2.1.13", "description": "Neo4j 资产包", "main": "lib/index.js", "module": "es/index.js", @@ -26,8 +26,7 @@ "remove:antd": "rm -rf ./node_modules/antd", "start": "father build --watch", "test": "jest", - "prepublishOnly": "npm run build", - "postpublish": "tnpm sync @antv/gi-assets-neo4j" + "sync": "tnpm sync @antv/gi-assets-neo4j" }, "dependencies": { "@aligov/global-locale": "^1.0.5", @@ -40,7 +39,7 @@ "use-immer": "^0.9.0" }, "peerDependencies": { - "@antv/graphin": "^2.7.25", + "@antv/graphin": "^2.7.27", "antd": "4.x", "react": "17.x" }, diff --git a/packages/gi-assets-scene/CHANGELOG.md b/packages/gi-assets-scene/CHANGELOG.md index 89598de3c..ae5852dba 100644 --- a/packages/gi-assets-scene/CHANGELOG.md +++ b/packages/gi-assets-scene/CHANGELOG.md @@ -1,5 +1,29 @@ # @antv/gi-assets-scene +## 2.2.19 + +### Patch Changes + +- update graphin version +- Updated dependencies + - @antv/gi-sdk@2.4.19 + +## 2.2.18 + +### Patch Changes + +- publish in 1026 +- Updated dependencies + - @antv/gi-sdk@2.4.18 + +## 2.2.17 + +### Patch Changes + +- publish in 1026 +- Updated dependencies + - @antv/gi-sdk@2.4.17 + ## 2.2.16 ### Patch Changes diff --git a/packages/gi-assets-scene/package.json b/packages/gi-assets-scene/package.json index 487d009b2..8ca8b3b36 100644 --- a/packages/gi-assets-scene/package.json +++ b/packages/gi-assets-scene/package.json @@ -1,6 +1,6 @@ { "name": "@antv/gi-assets-scene", - "version": "2.2.16", + "version": "2.2.19", "description": "G6VP 基础模版包", "main": "lib/index.js", "module": "es/index.js", @@ -28,8 +28,7 @@ "start": "npm run clean && father build --watch", "test": "jest", "build:umd:analysis": "webpack --mode production -c ../../webpack.config.js --env path=/packages/gi-assets-scene analysis=true", - "prepublishOnly": "npm run build", - "postpublish": "tnpm sync @antv/gi-assets-scene" + "sync": "tnpm sync @antv/gi-assets-scene" }, "dependencies": { "3d-force-graph": "1.70.10", @@ -55,7 +54,7 @@ "webpack-cli": "^5.0.0" }, "peerDependencies": { - "@antv/graphin": "^2.7.25", + "@antv/graphin": "^2.7.27", "antd": "4.x", "react": "17.x", "react-dom": "17.x" diff --git a/packages/gi-assets-testing/package.json b/packages/gi-assets-testing/package.json index 565ebc3c1..7a65273f7 100644 --- a/packages/gi-assets-testing/package.json +++ b/packages/gi-assets-testing/package.json @@ -20,8 +20,7 @@ "build": "NODE_OPTIONS=--max_old_space_size=2048 npm run clean && father build", "test": "jest", "prettier": "prettier --write ./src/**/**/**/*.js", - "clean": "rimraf es esm lib dist", - "prepublishOnly": "npm run build" + "clean": "rimraf es esm lib dist" }, "dependencies": { "@antv/gi-sdk": "workspace:*", @@ -31,7 +30,7 @@ "react": "17.x", "react-dom": "17.x", "antd": "4.x", - "@antv/graphin": "^2.7.21" + "@antv/graphin": "^2.7.27" }, "devDependencies": { "@types/react": "^17.x", diff --git a/packages/gi-assets-tugraph-analytics/CHANGELOG.md b/packages/gi-assets-tugraph-analytics/CHANGELOG.md index 27bd85450..17ae2c0af 100644 --- a/packages/gi-assets-tugraph-analytics/CHANGELOG.md +++ b/packages/gi-assets-tugraph-analytics/CHANGELOG.md @@ -1,5 +1,32 @@ # @antv/gi-assets-tugraph-analytics +## 0.2.13 + +### Patch Changes + +- update graphin version +- Updated dependencies + - @antv/gi-common-components@1.3.13 + - @antv/gi-sdk@2.4.19 + +## 0.2.12 + +### Patch Changes + +- publish in 1026 +- Updated dependencies + - @antv/gi-common-components@1.3.12 + - @antv/gi-sdk@2.4.18 + +## 0.2.11 + +### Patch Changes + +- publish in 1026 +- Updated dependencies + - @antv/gi-common-components@1.3.11 + - @antv/gi-sdk@2.4.17 + ## 0.2.10 ### Patch Changes diff --git a/packages/gi-assets-tugraph-analytics/package.json b/packages/gi-assets-tugraph-analytics/package.json index 4c9104948..06d231044 100644 --- a/packages/gi-assets-tugraph-analytics/package.json +++ b/packages/gi-assets-tugraph-analytics/package.json @@ -1,6 +1,6 @@ { "name": "@antv/gi-assets-tugraph-analytics", - "version": "0.2.10", + "version": "0.2.13", "description": "Tugraph Analytics Assets", "main": "lib/index.js", "module": "es/index.js", @@ -23,8 +23,7 @@ "prettier": "prettier --write ./src/**/**/**/*.js", "start": "npm run clean && father build --watch", "test": "jest", - "prepublishOnly": "npm run build", - "postpublish": "tnpm sync @antv/gi-assets-tugraph-analytics" + "sync": "tnpm sync @antv/gi-assets-tugraph-analytics" }, "dependencies": { "@aligov/global-locale": "^1.0.5", @@ -34,7 +33,7 @@ "ahooks": "^3.7.7" }, "peerDependencies": { - "@antv/graphin": "^2.7.25", + "@antv/graphin": "^2.7.27", "antd": "4.x", "react": "17.x", "react-dom": "17.x" diff --git a/packages/gi-assets-tugraph/CHANGELOG.md b/packages/gi-assets-tugraph/CHANGELOG.md index decb02977..6486d8c15 100644 --- a/packages/gi-assets-tugraph/CHANGELOG.md +++ b/packages/gi-assets-tugraph/CHANGELOG.md @@ -1,5 +1,29 @@ # @antv/gi-assets-tugraph +## 2.1.13 + +### Patch Changes + +- update graphin version +- Updated dependencies + - @antv/gi-sdk@2.4.19 + +## 2.1.12 + +### Patch Changes + +- publish in 1026 +- Updated dependencies + - @antv/gi-sdk@2.4.18 + +## 2.1.11 + +### Patch Changes + +- publish in 1026 +- Updated dependencies + - @antv/gi-sdk@2.4.17 + ## 2.1.10 ### Patch Changes diff --git a/packages/gi-assets-tugraph/package.json b/packages/gi-assets-tugraph/package.json index 0d097e10a..aeaab81d6 100644 --- a/packages/gi-assets-tugraph/package.json +++ b/packages/gi-assets-tugraph/package.json @@ -1,6 +1,6 @@ { "name": "@antv/gi-assets-tugraph", - "version": "2.1.10", + "version": "2.1.13", "description": "TuGraph 团队的图分析资产包", "main": "lib/index.js", "module": "es/index.js", @@ -22,8 +22,7 @@ "remove:antd": "rm -rf ./node_modules/antd", "start": "npm run clean && father build --watch", "test": "jest", - "prepublishOnly": "npm run build", - "postpublish": "tnpm sync @antv/gi-assets-tugraph" + "sync": "tnpm sync @antv/gi-assets-tugraph" }, "resolutions": { "antd": "4.x" @@ -33,7 +32,7 @@ "@aligov/global-string-format": "^1.0.7", "@ant-design/icons": "^4.7.0", "@antv/gi-sdk": "workspace:*", - "@antv/graphin": "^2.7.25", + "@antv/graphin": "^2.7.27", "@antv/graphin-icons": "^1.0.0", "antd": "4.x", "codemirror": "^5.25.0", diff --git a/packages/gi-cli/CHANGELOG.md b/packages/gi-cli/CHANGELOG.md index 3f226f971..2f3b5ac59 100644 --- a/packages/gi-cli/CHANGELOG.md +++ b/packages/gi-cli/CHANGELOG.md @@ -1,5 +1,23 @@ # @antv/gi-cli +## 1.2.10 + +### Patch Changes + +- update graphin version + +## 1.2.9 + +### Patch Changes + +- publish in 1026 + +## 1.2.8 + +### Patch Changes + +- publish in 1026 + ## 1.2.7 ### Patch Changes diff --git a/packages/gi-cli/package.json b/packages/gi-cli/package.json index 8d9b23a21..01186d5ae 100644 --- a/packages/gi-cli/package.json +++ b/packages/gi-cli/package.json @@ -1,6 +1,6 @@ { "name": "@antv/gi-cli", - "version": "1.2.7", + "version": "1.2.10", "description": "the create CLI tool for G6VP assets", "main": "dist/index.js", "types": "dist/index.d.ts", @@ -11,8 +11,7 @@ "dev": "father dev", "build": "father build", "build:deps": "father prebundle", - "prepublishOnly": "npm run build", - "postpublish": "tnpm sync @antv/gi-cli" + "sync": "tnpm sync @antv/gi-cli" }, "keywords": [], "authors": [ diff --git a/packages/gi-cli/templates/package.json b/packages/gi-cli/templates/package.json index a1ff505d3..a60a9b68b 100644 --- a/packages/gi-cli/templates/package.json +++ b/packages/gi-cli/templates/package.json @@ -30,7 +30,7 @@ "@antv/gi-assets-basic": "latest", "@antv/gi-sdk": "latest", "@antv/gi-theme-antd": "latest", - "@antv/graphin": "^2.7.25", + "@antv/graphin": "^2.7.27", "antd": "4.x", "lodash": "^4.17.21", "react": "17.x", diff --git a/packages/gi-cli/templates/package.json.tpl b/packages/gi-cli/templates/package.json.tpl index 507641bee..a658250ed 100644 --- a/packages/gi-cli/templates/package.json.tpl +++ b/packages/gi-cli/templates/package.json.tpl @@ -33,7 +33,7 @@ "@antv/gi-assets-basic": "latest", "@antv/gi-sdk": "latest", "@antv/gi-theme-antd": "latest", - "@antv/graphin": "^2.7.25", + "@antv/graphin": "^2.7.27", "antd": "4.x", "lodash": "^4.17.21", "react-dom": "17.x", diff --git a/packages/gi-common-components/CHANGELOG.md b/packages/gi-common-components/CHANGELOG.md index 5a906f3e1..9816ffefe 100644 --- a/packages/gi-common-components/CHANGELOG.md +++ b/packages/gi-common-components/CHANGELOG.md @@ -1,5 +1,23 @@ # @antv/gi-common-components +## 1.3.13 + +### Patch Changes + +- update graphin version + +## 1.3.12 + +### Patch Changes + +- publish in 1026 + +## 1.3.11 + +### Patch Changes + +- publish in 1026 + ## 1.3.10 ### Patch Changes diff --git a/packages/gi-common-components/package.json b/packages/gi-common-components/package.json index b9ee12067..25805a60c 100644 --- a/packages/gi-common-components/package.json +++ b/packages/gi-common-components/package.json @@ -1,6 +1,6 @@ { "name": "@antv/gi-common-components", - "version": "1.3.10", + "version": "1.3.13", "description": "G6VP 通用UI组件", "main": "lib/index.js", "module": "es/index.js", @@ -18,6 +18,7 @@ "es" ], "scripts": { + "build": "npm run clean && npm run build:es & npm run build:umd", "build:umd": "npm run build:es", "build:es": "npm run clean && father build", "clean": "rimraf es esm lib dist", @@ -25,8 +26,7 @@ "prettier": "prettier --write ./src/**/**/**/*.js", "start": "npm run clean && father build --watch", "test": "jest", - "prepublishOnly": "npm run build:es", - "postpublish": "tnpm sync @antv/gi-common-components" + "sync": "tnpm sync @antv/gi-common-components" }, "dependencies": { "@aligov/global-locale": "^1.0.5", @@ -48,7 +48,7 @@ "rimraf": "^3.0.2" }, "peerDependencies": { - "@antv/graphin": "^2.7.25", + "@antv/graphin": "^2.7.27", "antd": "4.x", "react": "17.x", "react-dom": "17.x" diff --git a/packages/gi-httpservice/CHANGELOG.md b/packages/gi-httpservice/CHANGELOG.md index 8dc2c7fae..0ddec4316 100644 --- a/packages/gi-httpservice/CHANGELOG.md +++ b/packages/gi-httpservice/CHANGELOG.md @@ -1,5 +1,11 @@ # @antv/gi-httpservice +## 1.2.9 + +### Patch Changes + +- update graphin version + ## 1.2.8 ### Patch Changes diff --git a/packages/gi-httpservice/package.json b/packages/gi-httpservice/package.json index 64cba4346..788c9cfe8 100644 --- a/packages/gi-httpservice/package.json +++ b/packages/gi-httpservice/package.json @@ -1,6 +1,6 @@ { "name": "@antv/gi-httpservice", - "version": "1.2.8", + "version": "1.2.9", "description": "G6VP 对接社区引擎的 HTTPServer,基于 Egg 框架", "private": true, "egg": { @@ -37,8 +37,8 @@ "react-dom": "^17.0.2" }, "devDependencies": { - "@antv/gi-sdk": "^2.4.16", - "@antv/graphin": "^2.7.25", + "@antv/gi-sdk": "^2.4.19", + "@antv/graphin": "^2.7.27", "@eggjs/tsconfig": "^1.0.0", "@types/gremlin": "^3.6.1", "@types/mocha": "^2.2.40", diff --git a/packages/gi-sdk-app/CHANGELOG.md b/packages/gi-sdk-app/CHANGELOG.md index 9f834ac52..dbf9bf868 100644 --- a/packages/gi-sdk-app/CHANGELOG.md +++ b/packages/gi-sdk-app/CHANGELOG.md @@ -1,5 +1,23 @@ # @antv/gi-sdk-app +## 1.2.6 + +### Patch Changes + +- update graphin version + +## 1.2.5 + +### Patch Changes + +- publish in 1026 + +## 1.2.4 + +### Patch Changes + +- publish in 1026 + ## 1.2.3 ### Patch Changes diff --git a/packages/gi-sdk-app/package.json b/packages/gi-sdk-app/package.json index e386b201a..32399bce5 100644 --- a/packages/gi-sdk-app/package.json +++ b/packages/gi-sdk-app/package.json @@ -1,6 +1,6 @@ { "name": "@antv/gi-sdk-app", - "version": "1.2.3", + "version": "1.2.6", "description": "", "main": "index.js", "scripts": { @@ -8,8 +8,7 @@ "build:umd": "webpack --mode production -c ../../webpack.config.js --env path=/packages/gi-sdk-app", "build:umd:watch": "webpack --mode production -c ../../webpack.config.js --env path=/packages/gi-sdk-app watch=true", "test": "echo \"Error: no test specified\" && exit 1", - "prepublishOnly": "npm run build", - "postpublish": "tnpm sync @antv/gi-sdk-app" + "sync": "tnpm sync @antv/gi-sdk-app" }, "author": "", "publishConfig": { diff --git a/packages/gi-sdk/CHANGELOG.md b/packages/gi-sdk/CHANGELOG.md index 7ab9eb37d..413b4ca1f 100644 --- a/packages/gi-sdk/CHANGELOG.md +++ b/packages/gi-sdk/CHANGELOG.md @@ -1,5 +1,29 @@ # @antv/gi-sdk +## 2.4.19 + +### Patch Changes + +- update graphin version +- Updated dependencies + - @antv/gi-common-components@1.3.13 + +## 2.4.18 + +### Patch Changes + +- publish in 1026 +- Updated dependencies + - @antv/gi-common-components@1.3.12 + +## 2.4.17 + +### Patch Changes + +- publish in 1026 +- Updated dependencies + - @antv/gi-common-components@1.3.11 + ## 2.4.16 ### Patch Changes diff --git a/packages/gi-sdk/package.json b/packages/gi-sdk/package.json index cd9ad461a..df6dc01ac 100644 --- a/packages/gi-sdk/package.json +++ b/packages/gi-sdk/package.json @@ -1,6 +1,6 @@ { "name": "@antv/gi-sdk", - "version": "2.4.16", + "version": "2.4.19", "description": "G6VP 核心画布渲染", "main": "lib/index.js", "module": "es/index.js", @@ -27,8 +27,7 @@ "prettier": "prettier --write ./src/**/**/**/*.js", "start": "npm run clean && father build --watch", "test": "jest", - "prepublishOnly": "npm run build", - "postpublish": "tnpm sync @antv/gi-sdk" + "sync": "tnpm sync @antv/gi-sdk" }, "dependencies": { "@aligov/global-locale": "^1.0.5", @@ -43,7 +42,7 @@ "use-immer": "^0.9.0" }, "peerDependencies": { - "@antv/graphin": "^2.7.25", + "@antv/graphin": "^2.7.27", "antd": "4.x", "react": "17.x", "react-dom": "17.x" diff --git a/packages/gi-site/package.json b/packages/gi-site/package.json index f899ab374..9fc518b0e 100644 --- a/packages/gi-site/package.json +++ b/packages/gi-site/package.json @@ -79,7 +79,7 @@ "perf_hooks": "^0.0.1" }, "peerDependencies": { - "@antv/graphin": "^2.7.21", + "@antv/graphin": "^2.7.27", "antd": "4.x", "react": "17.x", "react-dom": "17.x" diff --git a/packages/gi-site/scripts/pre-build.mjs b/packages/gi-site/scripts/pre-build.mjs index 3d323984d..2a29e87f2 100644 --- a/packages/gi-site/scripts/pre-build.mjs +++ b/packages/gi-site/scripts/pre-build.mjs @@ -18,7 +18,7 @@ import INJECT from './pre-build-inject.json' assert { type: 'json' }; import path from 'path'; export const G6_VERSION = '4.8.14'; -export const GRAPHIN_VERSION = '2.7.25'; +export const GRAPHIN_VERSION = '2.7.27'; export const G2PLOT_VERSION = '2.4.16'; export const ANTD_VERSION = '4.24.8'; export const GI_VERSION = GI_SDK.version; diff --git a/packages/gi-theme-antd/CHANGELOG.md b/packages/gi-theme-antd/CHANGELOG.md index 33338bf08..49432aa99 100644 --- a/packages/gi-theme-antd/CHANGELOG.md +++ b/packages/gi-theme-antd/CHANGELOG.md @@ -1,5 +1,23 @@ # @antv/gi-theme-antd +## 0.6.11 + +### Patch Changes + +- update graphin version + +## 0.6.10 + +### Patch Changes + +- publish in 1026 + +## 0.6.9 + +### Patch Changes + +- publish in 1026 + ## 0.6.8 ### Patch Changes diff --git a/packages/gi-theme-antd/package.json b/packages/gi-theme-antd/package.json index 266f5f5b1..a3951a362 100644 --- a/packages/gi-theme-antd/package.json +++ b/packages/gi-theme-antd/package.json @@ -1,6 +1,6 @@ { "name": "@antv/gi-theme-antd", - "version": "0.6.8", + "version": "0.6.11", "description": "设置 Antd 主题样式的脚本,同时提供主题切换组件", "main": "lib/index.js", "module": "es/index.js", @@ -19,6 +19,7 @@ "*.less" ], "scripts": { + "build": "npm run clean && npm run build:es && npm run build:umd", "start": "npm run clean && father build --watch", "build:es": "npm run clean && father build && npm run build:css", "demo": "dumi dev", @@ -27,8 +28,7 @@ "clean:css": "rimraf dist", "clean": "rimraf es esm lib", "test": "echo \"Error: no test specified\" && exit 1", - "prepublishOnly": "npm run build:es && npm run build:umd", - "postpublish": "tnpm sync @antv/gi-theme-antd" + "sync": "tnpm sync @antv/gi-theme-antd" }, "publishConfig": { "access": "public" diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 464c2c01a..74141c76e 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -21,8 +21,8 @@ importers: specifier: ^4.8.19 version: 4.8.19 '@antv/graphin': - specifier: ^2.7.25 - version: 2.7.25(lodash-es@4.17.21)(react-dom@17.0.2)(react@17.0.2) + specifier: ^2.7.27 + version: 2.7.27(lodash-es@4.17.21)(react-dom@17.0.2)(react@17.0.2) '@antv/layout': specifier: ^0.3.22 version: 0.3.22(dagre@0.8.5) @@ -58,11 +58,11 @@ importers: version: 3.0.0 umi: specifier: 3.x - version: 3.5.41(react-router@6.14.1) + version: 3.5.41(react-router@6.17.0) devDependencies: '@babel/plugin-proposal-private-property-in-object': specifier: ^7.21.11 - version: 7.21.11(@babel/core@7.22.9) + version: 7.21.11(@babel/core@7.23.2) '@changesets/cli': specifier: ^2.26.1 version: 2.26.1 @@ -74,13 +74,13 @@ importers: version: 17.0.0 babel-loader: specifier: ^8.2.5 - version: 8.2.5(@babel/core@7.22.9)(webpack@5.88.0) + version: 8.2.5(@babel/core@7.23.2)(webpack@5.88.0) css-loader: specifier: ^6.8.1 version: 6.8.1(webpack@5.88.0) father: specifier: ^2.30.23 - version: 2.30.23(@babel/core@7.22.9)(@storybook/source-loader@7.0.27)(@types/react@17.0.0)(eslint@7.32.0)(jest@29.6.1)(react-dom@17.0.2)(react@17.0.2)(regenerator-runtime@0.13.11)(typescript@5.1.6)(webpack-cli@5.0.0)(webpack@5.88.0) + version: 2.30.23(@babel/core@7.23.2)(@storybook/source-loader@7.5.1)(@types/react@17.0.0)(eslint@7.32.0)(jest@29.7.0)(react-dom@17.0.2)(react@17.0.2)(regenerator-runtime@0.14.0)(typescript@5.1.6)(webpack-cli@5.0.0)(webpack@5.88.0) fs-extra: specifier: ^10.1.0 version: 10.1.0 @@ -142,8 +142,8 @@ importers: specifier: workspace:* version: link:../gi-sdk '@antv/graphin': - specifier: ^2.7.25 - version: 2.7.25(lodash-es@4.17.21)(react-dom@17.0.2)(react@17.0.2) + specifier: ^2.7.27 + version: 2.7.27(lodash-es@4.17.21)(react-dom@17.0.2)(react@17.0.2) '@antv/graphin-icons': specifier: ^1.0.0 version: 1.0.0 @@ -212,7 +212,7 @@ importers: version: 1.21.3(@types/react@17.0.0)(react-dom@17.0.2)(react@17.0.2) react-spring: specifier: 9.6.0 - version: 9.6.0(@react-three/fiber@8.13.5)(konva@9.2.0)(react-dom@17.0.2)(react-konva@16.8.6)(react-native@0.72.3)(react-zdog@1.1.1)(react@17.0.2)(three@0.139.2)(zdog@1.1.3) + version: 9.6.0(@react-three/fiber@8.15.8)(konva@9.2.2)(react-dom@17.0.2)(react-konva@16.8.6)(react-native@0.72.6)(react-zdog@1.2.2)(react@17.0.2)(three@0.139.2)(zdog@1.1.3) react-transition-group: specifier: ^4.4.5 version: 4.4.5(react-dom@17.0.2)(react@17.0.2) @@ -247,8 +247,8 @@ importers: specifier: workspace:* version: link:../gi-sdk '@antv/graphin': - specifier: ^2.7.25 - version: 2.7.25(lodash-es@4.17.21)(react-dom@17.0.2)(react@17.0.2) + specifier: ^2.7.27 + version: 2.7.27(lodash-es@4.17.21)(react-dom@17.0.2)(react@17.0.2) '@antv/matrix-util': specifier: ^3.0.4 version: 3.0.4 @@ -301,8 +301,8 @@ importers: specifier: workspace:* version: link:../gi-sdk '@antv/graphin': - specifier: ^2.7.25 - version: 2.7.25(lodash-es@4.17.21)(react-dom@17.0.2)(react@17.0.2) + specifier: ^2.7.27 + version: 2.7.27(lodash-es@4.17.21)(react-dom@17.0.2)(react@17.0.2) '@antv/graphin-icons': specifier: ^1.0.0 version: 1.0.0 @@ -361,8 +361,8 @@ importers: specifier: workspace:* version: link:../gi-sdk '@antv/graphin': - specifier: ^2.7.25 - version: 2.7.25(lodash-es@4.17.21)(react-dom@16.14.0)(react@17.0.2) + specifier: ^2.7.27 + version: 2.7.27(lodash-es@4.17.21)(react-dom@16.14.0)(react@17.0.2) '@antv/graphin-icons': specifier: ^1.0.0 version: 1.0.0 @@ -399,7 +399,7 @@ importers: version: 1.1.50(react-dom@16.14.0)(react-router@5.2.0)(react@17.0.2)(typescript@5.1.6) father: specifier: ^2.30.23 - version: 2.30.23(@babel/core@7.22.9)(@storybook/source-loader@7.0.27)(@types/react@17.0.0)(eslint@7.32.0)(jest@29.6.1)(react-dom@16.14.0)(react@17.0.2)(regenerator-runtime@0.13.11)(typescript@5.1.6)(webpack-cli@5.0.0)(webpack@5.88.0) + version: 2.30.23(@babel/core@7.23.2)(@storybook/source-loader@7.5.1)(@types/react@17.0.0)(eslint@7.32.0)(jest@29.7.0)(react-dom@16.14.0)(react@17.0.2)(regenerator-runtime@0.14.0)(typescript@5.1.6)(webpack-cli@5.0.0)(webpack@5.88.0) mini-css-extract-plugin: specifier: ^2.7.6 version: 2.7.6(webpack@5.88.0) @@ -431,8 +431,8 @@ importers: specifier: workspace:* version: link:../gi-sdk '@antv/graphin': - specifier: ^2.7.25 - version: 2.7.25(lodash-es@4.17.21)(react-dom@17.0.2)(react@17.0.2) + specifier: ^2.7.27 + version: 2.7.27(lodash-es@4.17.21)(react-dom@17.0.2)(react@17.0.2) antd: specifier: 4.x version: 4.24.10(react-dom@17.0.2)(react@17.0.2) @@ -467,8 +467,8 @@ importers: specifier: workspace:* version: link:../gi-sdk '@antv/graphin': - specifier: ^2.7.25 - version: 2.7.25(lodash-es@4.17.21)(react-dom@17.0.2)(react@17.0.2) + specifier: ^2.7.27 + version: 2.7.27(lodash-es@4.17.21)(react-dom@17.0.2)(react@17.0.2) antd: specifier: 4.x version: 4.24.10(react-dom@17.0.2)(react@17.0.2) @@ -518,8 +518,8 @@ importers: specifier: workspace:* version: link:../gi-sdk '@antv/graphin': - specifier: ^2.7.25 - version: 2.7.25(lodash-es@4.17.21)(react-dom@17.0.2)(react@17.0.2) + specifier: ^2.7.27 + version: 2.7.27(lodash-es@4.17.21)(react-dom@17.0.2)(react@17.0.2) antd: specifier: 4.x version: 4.24.10(react-dom@17.0.2)(react@17.0.2) @@ -560,14 +560,14 @@ importers: specifier: workspace:* version: link:../gi-sdk '@antv/graphin': - specifier: ^2.7.25 - version: 2.7.25(lodash-es@4.17.21)(react-dom@17.0.2)(react@17.0.2) + specifier: ^2.7.27 + version: 2.7.27(lodash-es@4.17.21)(react-dom@17.0.2)(react@17.0.2) '@antv/l7-draw': specifier: ^2.4.24 - version: 2.4.24(@antv/l7-maps@2.17.3)(@antv/l7@2.17.3) + version: 2.4.24(@antv/l7-maps@2.19.6)(@antv/l7@2.19.6) '@antv/l7plot': specifier: ^0.0.11 - version: 0.0.11(@antv/l7@2.17.3) + version: 0.0.11(@antv/l7@2.19.6) '@turf/turf': specifier: ^6.5.0 version: 6.5.0 @@ -594,7 +594,7 @@ importers: version: 17.0.2(react@17.0.2) react-spring: specifier: 9.6.0 - version: 9.6.0(@react-three/fiber@8.13.5)(konva@9.2.0)(react-dom@17.0.2)(react-konva@16.8.6)(react-native@0.72.3)(react-zdog@1.1.1)(react@17.0.2)(three@0.139.2)(zdog@1.1.3) + version: 9.6.0(@react-three/fiber@8.15.8)(konva@9.2.2)(react-dom@17.0.2)(react-konva@16.8.6)(react-native@0.72.6)(react-zdog@1.2.2)(react@17.0.2)(three@0.139.2)(zdog@1.1.3) three: specifier: 0.139.2 version: 0.139.2 @@ -621,8 +621,8 @@ importers: specifier: workspace:* version: link:../gi-sdk '@antv/graphin': - specifier: ^2.7.21 - version: 2.7.21(lodash-es@4.17.21)(react-dom@17.0.2)(react@17.0.2) + specifier: ^2.7.27 + version: 2.7.27(lodash-es@4.17.21)(react-dom@17.0.2)(react@17.0.2) antd: specifier: 4.x version: 4.24.10(react-dom@17.0.2)(react@17.0.2) @@ -661,8 +661,8 @@ importers: specifier: workspace:* version: link:../gi-sdk '@antv/graphin': - specifier: ^2.7.25 - version: 2.7.25(lodash-es@4.17.21)(react-dom@16.14.0)(react@17.0.2) + specifier: ^2.7.27 + version: 2.7.27(lodash-es@4.17.21)(react-dom@16.14.0)(react@17.0.2) '@antv/graphin-icons': specifier: ^1.0.0 version: 1.0.0 @@ -690,10 +690,10 @@ importers: devDependencies: dumi: specifier: ^1.1.50 - version: 1.1.50(react-dom@16.14.0)(react-router@6.14.1)(react@17.0.2)(typescript@5.1.6) + version: 1.1.50(react-dom@16.14.0)(react-router@6.17.0)(react@17.0.2)(typescript@5.1.6) father: specifier: ^2.30.23 - version: 2.30.23(@babel/core@7.22.9)(@storybook/source-loader@7.0.27)(@types/react@17.0.0)(eslint@7.32.0)(jest@29.6.1)(react-dom@16.14.0)(react@17.0.2)(regenerator-runtime@0.13.11)(typescript@5.1.6)(webpack-cli@5.0.0)(webpack@5.88.0) + version: 2.30.23(@babel/core@7.23.2)(@storybook/source-loader@7.5.1)(@types/react@17.0.0)(eslint@7.32.0)(jest@29.7.0)(react-dom@16.14.0)(react@17.0.2)(regenerator-runtime@0.14.0)(typescript@5.1.6)(webpack-cli@5.0.0)(webpack@5.88.0) mini-css-extract-plugin: specifier: ^2.7.6 version: 2.7.6(webpack@5.88.0) @@ -702,7 +702,7 @@ importers: version: 3.0.2 umi: specifier: ^3.5.41 - version: 3.5.41(react-router@6.14.1) + version: 3.5.41(react-router@6.17.0) webpack: specifier: ^5.88.0 version: 5.88.0(webpack-cli@5.0.0) @@ -725,8 +725,8 @@ importers: specifier: workspace:* version: link:../gi-sdk '@antv/graphin': - specifier: ^2.7.25 - version: 2.7.25(lodash-es@4.17.21)(react-dom@17.0.2)(react@17.0.2) + specifier: ^2.7.27 + version: 2.7.27(lodash-es@4.17.21)(react-dom@17.0.2)(react@17.0.2) ahooks: specifier: ^3.7.7 version: 3.7.7(react@17.0.2) @@ -748,7 +748,7 @@ importers: devDependencies: father: specifier: ^4.0.7 - version: 4.0.7(styled-components@6.0.4)(webpack@5.88.0) + version: 4.0.7(styled-components@6.1.0)(webpack@5.88.0) packages/gi-common-components: dependencies: @@ -762,8 +762,8 @@ importers: specifier: ^2.4.31 version: 2.4.31 '@antv/graphin': - specifier: ^2.7.25 - version: 2.7.25(lodash-es@4.17.21)(react-dom@17.0.2)(react@17.0.2) + specifier: ^2.7.27 + version: 2.7.27(lodash-es@4.17.21)(react-dom@17.0.2)(react@17.0.2) '@formily/antd': specifier: ^2.1.0 version: 2.1.0(@ant-design/icons@4.7.0)(@types/react-dom@17.0.0)(@types/react@17.0.0)(antd@4.24.10)(prop-types@15.8.1)(react-dom@17.0.2)(react-is@18.2.0)(react@17.0.2)(typescript@4.7.4) @@ -790,7 +790,7 @@ importers: version: 2.2.6 dumi: specifier: ^1.1.50 - version: 1.1.50(react-dom@17.0.2)(react-router@6.14.1)(react@17.0.2)(typescript@4.7.4) + version: 1.1.50(react-dom@17.0.2)(react-router@6.17.0)(react@17.0.2)(typescript@4.7.4) nanoid: specifier: ^4.0.0 version: 4.0.0 @@ -848,8 +848,8 @@ importers: specifier: ^2.4.16 version: link:../gi-sdk '@antv/graphin': - specifier: ^2.7.25 - version: 2.7.25(lodash-es@4.17.21)(react-dom@17.0.2)(react@17.0.2) + specifier: ^2.7.27 + version: 2.7.27(lodash-es@4.17.21)(react-dom@17.0.2)(react@17.0.2) '@eggjs/tsconfig': specifier: ^1.0.0 version: 1.0.0 @@ -906,7 +906,7 @@ importers: version: 17.0.2(react@17.0.2) react-spring: specifier: 9.6.0 - version: 9.6.0(@react-three/fiber@8.13.5)(konva@9.2.0)(react-dom@17.0.2)(react-konva@16.8.6)(react-native@0.72.3)(react-zdog@1.1.1)(react@17.0.2)(three@0.139.2)(zdog@1.1.3) + version: 9.6.0(@react-three/fiber@8.15.8)(konva@9.2.2)(react-dom@17.0.2)(react-konva@16.8.6)(react-native@0.72.6)(react-zdog@1.2.2)(react@17.0.2)(three@0.139.2)(zdog@1.1.3) devDependencies: '@react-spring/types': specifier: 9.6.0 @@ -929,8 +929,8 @@ importers: specifier: workspace:* version: link:../gi-common-components '@antv/graphin': - specifier: ^2.7.25 - version: 2.7.25(lodash-es@4.17.21)(react-dom@17.0.2)(react@17.0.2) + specifier: ^2.7.27 + version: 2.7.27(lodash-es@4.17.21)(react-dom@17.0.2)(react@17.0.2) antd: specifier: 4.x version: 4.24.10(react-dom@17.0.2)(react@17.0.2) @@ -981,10 +981,10 @@ importers: version: 4.7.0(react-dom@17.0.2)(react@17.0.2) '@ant-design/pro-components': specifier: 2.3.57 - version: 2.3.57(antd@4.24.10)(prop-types@15.8.1)(rc-field-form@1.34.1)(react-dom@17.0.2)(react@17.0.2) + version: 2.3.57(antd@4.24.10)(prop-types@15.8.1)(rc-field-form@1.40.0)(react-dom@17.0.2)(react@17.0.2) '@ant-design/pro-table': specifier: 2.66.4 - version: 2.66.4(antd@4.24.10)(prop-types@15.8.1)(rc-field-form@1.34.1)(react-dom@17.0.2)(react@17.0.2) + version: 2.66.4(antd@4.24.10)(prop-types@15.8.1)(rc-field-form@1.40.0)(react-dom@17.0.2)(react@17.0.2) '@antv/dw-analyzer': specifier: ^1.1.5 version: 1.1.5 @@ -1031,11 +1031,11 @@ importers: specifier: workspace:* version: link:../gi-theme-antd '@antv/graphin': - specifier: ^2.7.21 - version: 2.7.21(lodash-es@4.17.21)(react-dom@17.0.2)(react@17.0.2) + specifier: ^2.7.27 + version: 2.7.27(lodash-es@4.17.21)(react-dom@17.0.2)(react@17.0.2) '@faker-js/faker': specifier: latest - version: 8.0.2 + version: 8.2.0 '@fast-csv/format': specifier: latest version: 4.3.5 @@ -1047,7 +1047,7 @@ importers: version: 7.0.12 '@types/systemjs': specifier: latest - version: 6.13.1 + version: 6.13.4 '@umijs/preset-react': specifier: ^1.8.12 version: 1.8.12(@ant-design/icons@4.7.0)(@ant-design/pro-layout@6.38.22)(dva-core@1.6.0-beta.7)(react-dom@17.0.2)(react-router@5.3.4)(react@17.0.2)(redbox-react@1.6.0)(umi@3.5.41) @@ -1135,7 +1135,7 @@ importers: version: 10.1.0 gh-pages: specifier: latest - version: 5.0.0 + version: 6.0.0 perf_hooks: specifier: ^0.0.1 version: 0.0.1 @@ -1153,10 +1153,10 @@ importers: version: 6.8.1(webpack@5.88.0) dumi: specifier: ^1.1.50 - version: 1.1.50(react-dom@16.14.0)(react-router@6.14.1)(react@17.0.2)(typescript@5.1.6) + version: 1.1.50(react-dom@16.14.0)(react-router@6.17.0)(react@17.0.2)(typescript@5.1.6) father: specifier: ^2.30.23 - version: 2.30.23(@babel/core@7.22.9)(@storybook/source-loader@7.0.27)(@types/react@17.0.0)(eslint@7.32.0)(jest@29.6.1)(react-dom@16.14.0)(react@17.0.2)(regenerator-runtime@0.13.11)(typescript@5.1.6)(webpack-cli@5.0.0)(webpack@5.88.0) + version: 2.30.23(@babel/core@7.23.2)(@storybook/source-loader@7.5.1)(@types/react@17.0.0)(eslint@7.32.0)(jest@29.7.0)(react-dom@16.14.0)(react@17.0.2)(regenerator-runtime@0.14.0)(typescript@5.1.6)(webpack-cli@5.0.0)(webpack@5.88.0) less: specifier: ^3.13.1 version: 3.13.1 @@ -1201,10 +1201,10 @@ packages: resolution: {integrity: sha512-Ql0wrl78aRQ/cqJ/YPQmDH3LGsINwSjaWb9Lc0GLH52kPn1AyXnSvFB5RxnQCILvcHVvOza3oWzcN+yhRpL0Cg==} dependencies: accessor-fn: 1.5.0 - kapsule: 1.14.4 + kapsule: 1.14.5 three: 0.139.2 - three-forcegraph: 1.41.9(three@0.139.2) - three-render-objects: 1.28.6(three@0.139.2) + three-forcegraph: 1.41.10(three@0.139.2) + three-render-objects: 1.29.0(three@0.139.2) dev: false /@aashutoshrathi/word-wrap@1.2.6: @@ -1242,7 +1242,7 @@ packages: engines: {node: '>=6.0.0'} dependencies: '@jridgewell/gen-mapping': 0.3.3 - '@jridgewell/trace-mapping': 0.3.18 + '@jridgewell/trace-mapping': 0.3.20 /@ant-design/colors@4.0.5: resolution: {integrity: sha512-3mnuX2prnWOWvpFTS2WH2LoouWlOgtnIpc6IarWN6GOzzLF8dW/U8UctuvIPhoboETehZfJ61XP+CGakBEPJ3Q==} @@ -1252,7 +1252,7 @@ packages: /@ant-design/colors@6.0.0: resolution: {integrity: sha512-qAZRvPzfdWHtfameEGP2Qvuf838NhergR35o+EuVyB5XvSA98xod5r4utvi4TJ3ywmevm290g9nsCG5MryrdWQ==} dependencies: - '@ctrl/tinycolor': 3.6.0 + '@ctrl/tinycolor': 3.6.1 /@ant-design/compatible@1.0.2(antd@4.24.10)(prop-types@15.8.1)(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-zflK4SV7ZnJNBqyxLG2wka+bCV7Fo9S750WPu/osmciMcXH/Z719NfuzDnoRM7y3lPRtJw6s3X3zAfulpmShhQ==} @@ -1277,25 +1277,25 @@ packages: - prop-types dev: false - /@ant-design/cssinjs@1.11.1(react-dom@17.0.2)(react@17.0.2): - resolution: {integrity: sha512-ya0wpkOzBTdQX4u2h6xpluflKPPQuq7LtvJQ9ThDXwu6t67CNFr6SJCEvkuQ9+4rU89VhYMP4IUaTaqYgtsBTQ==} + /@ant-design/cssinjs@1.17.2(react-dom@17.0.2)(react@17.0.2): + resolution: {integrity: sha512-vu7lnfEx4Mf8MPzZxn506Zen3Nt4fRr2uutwvdCuTCN5IiU0lDdQ0tiJ24/rmB8+pefwjluYsbyzbQSbgfJy+A==} peerDependencies: react: '>=16.0.0 || 17' react-dom: '>=16.0.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 '@emotion/hash': 0.8.0 '@emotion/unitless': 0.7.5 classnames: 2.3.2 csstype: 3.1.2 - rc-util: 5.34.1(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.38.0(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) stylis: 4.3.0 dev: false - /@ant-design/icons-svg@4.2.1: - resolution: {integrity: sha512-EB0iwlKDGpG93hW8f85CTJTs4SvMX7tt5ceupvhALp1IF44SeUFOMhKUOYqpsoYWQKAOuTRDMqn75rEaKDp0Xw==} + /@ant-design/icons-svg@4.3.1: + resolution: {integrity: sha512-4QBZg8ccyC6LPIRii7A0bZUk3+lEDCLnhB+FVsflGdcWPPmV+j3fire4AwwoqHV/BibgvBmR9ZIo4s867smv+g==} /@ant-design/icons@4.7.0(react-dom@16.14.0)(react@17.0.2): resolution: {integrity: sha512-aoB4Z7JA431rt6d4u+8xcNPPCrdufSRMUOpxa1ab6mz1JCQZOEVolj2WVs/tDFmN62zzK30mNelEsprLYsSF3g==} @@ -1305,10 +1305,10 @@ packages: react-dom: '>=16.0.0' dependencies: '@ant-design/colors': 6.0.0 - '@ant-design/icons-svg': 4.2.1 - '@babel/runtime': 7.22.6 + '@ant-design/icons-svg': 4.3.1 + '@babel/runtime': 7.23.2 classnames: 2.2.6 - rc-util: 5.34.1(react-dom@16.14.0)(react@17.0.2) + rc-util: 5.38.0(react-dom@16.14.0)(react@17.0.2) react: 17.0.2 react-dom: 16.14.0(react@17.0.2) @@ -1320,10 +1320,10 @@ packages: react-dom: '>=16.0.0' dependencies: '@ant-design/colors': 6.0.0 - '@ant-design/icons-svg': 4.2.1 - '@babel/runtime': 7.22.6 + '@ant-design/icons-svg': 4.3.1 + '@babel/runtime': 7.23.2 classnames: 2.2.6 - rc-util: 5.34.1(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.38.0(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) @@ -1336,19 +1336,19 @@ packages: '@ant-design/icons': 4.7.0(react-dom@17.0.2)(react@17.0.2) '@ant-design/pro-provider': 2.4.3(antd@4.24.10)(react-dom@17.0.2)(react@17.0.2) '@ant-design/pro-utils': 2.5.8(antd@4.24.10)(prop-types@15.8.1)(react-dom@17.0.2)(react@17.0.2) - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 antd: 4.24.10(react-dom@17.0.2)(react@17.0.2) classnames: 2.2.6 omit.js: 2.0.2 - rc-resize-observer: 1.3.1(react-dom@17.0.2)(react@17.0.2) - rc-util: 5.34.1(react-dom@17.0.2)(react@17.0.2) + rc-resize-observer: 1.4.0(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.38.0(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 transitivePeerDependencies: - prop-types - react-dom dev: false - /@ant-design/pro-components@2.3.57(antd@4.24.10)(prop-types@15.8.1)(rc-field-form@1.34.1)(react-dom@17.0.2)(react@17.0.2): + /@ant-design/pro-components@2.3.57(antd@4.24.10)(prop-types@15.8.1)(rc-field-form@1.40.0)(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-zXHAToBHjHQLrORO4reqknDcMeM+7Vgtqwb40AS+ZUD8uo3s+l8+YiV+BoxZDMbmxsQ0VzANU3610ZmSqUMkqg==} peerDependencies: antd: '>=4.23.0' @@ -1356,16 +1356,16 @@ packages: react-dom: '>=16.9.0' dependencies: '@ant-design/pro-card': 2.1.14(antd@4.24.10)(prop-types@15.8.1)(react-dom@17.0.2)(react@17.0.2) - '@ant-design/pro-descriptions': 2.0.48(antd@4.24.10)(prop-types@15.8.1)(rc-field-form@1.34.1)(react-dom@17.0.2)(react@17.0.2) + '@ant-design/pro-descriptions': 2.0.48(antd@4.24.10)(prop-types@15.8.1)(rc-field-form@1.40.0)(react-dom@17.0.2)(react@17.0.2) '@ant-design/pro-field': 2.2.9(antd@4.24.10)(prop-types@15.8.1)(react-dom@17.0.2)(react@17.0.2) - '@ant-design/pro-form': 2.5.8(antd@4.24.10)(prop-types@15.8.1)(rc-field-form@1.34.1)(react-dom@17.0.2)(react@17.0.2) + '@ant-design/pro-form': 2.5.8(antd@4.24.10)(prop-types@15.8.1)(rc-field-form@1.40.0)(react-dom@17.0.2)(react@17.0.2) '@ant-design/pro-layout': 7.8.2(antd@4.24.10)(prop-types@15.8.1)(react-dom@17.0.2)(react@17.0.2) - '@ant-design/pro-list': 2.1.1(antd@4.24.10)(prop-types@15.8.1)(rc-field-form@1.34.1)(react-dom@17.0.2)(react@17.0.2) + '@ant-design/pro-list': 2.1.1(antd@4.24.10)(prop-types@15.8.1)(rc-field-form@1.40.0)(react-dom@17.0.2)(react@17.0.2) '@ant-design/pro-provider': 2.4.3(antd@4.24.10)(react-dom@17.0.2)(react@17.0.2) '@ant-design/pro-skeleton': 2.0.8(antd@4.24.10)(react-dom@17.0.2)(react@17.0.2) - '@ant-design/pro-table': 3.3.1(antd@4.24.10)(prop-types@15.8.1)(rc-field-form@1.34.1)(react-dom@17.0.2)(react@17.0.2) + '@ant-design/pro-table': 3.3.1(antd@4.24.10)(prop-types@15.8.1)(rc-field-form@1.40.0)(react-dom@17.0.2)(react@17.0.2) '@ant-design/pro-utils': 2.5.8(antd@4.24.10)(prop-types@15.8.1)(react-dom@17.0.2)(react@17.0.2) - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 antd: 4.24.10(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) @@ -1375,19 +1375,19 @@ packages: - rc-field-form dev: false - /@ant-design/pro-descriptions@2.0.48(antd@4.24.10)(prop-types@15.8.1)(rc-field-form@1.34.1)(react-dom@17.0.2)(react@17.0.2): + /@ant-design/pro-descriptions@2.0.48(antd@4.24.10)(prop-types@15.8.1)(rc-field-form@1.40.0)(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-Y5edlJlnvRWF/8BqIcmJP3xSCvi1UT7uMDjFLdHhcIfWJsBgYfdLq7wupY/pN3rRJ0jCvVJUpVRMotdzAuK8ig==} peerDependencies: antd: '>=4.23.0' react: '>=16.9.0 || 17' dependencies: '@ant-design/pro-field': 2.2.9(antd@4.24.10)(prop-types@15.8.1)(react-dom@17.0.2)(react@17.0.2) - '@ant-design/pro-form': 2.5.8(antd@4.24.10)(prop-types@15.8.1)(rc-field-form@1.34.1)(react-dom@17.0.2)(react@17.0.2) + '@ant-design/pro-form': 2.5.8(antd@4.24.10)(prop-types@15.8.1)(rc-field-form@1.40.0)(react-dom@17.0.2)(react@17.0.2) '@ant-design/pro-skeleton': 2.0.8(antd@4.24.10)(react-dom@17.0.2)(react@17.0.2) '@ant-design/pro-utils': 2.5.8(antd@4.24.10)(prop-types@15.8.1)(react-dom@17.0.2)(react@17.0.2) - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 antd: 4.24.10(react-dom@17.0.2)(react@17.0.2) - rc-util: 5.34.1(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.38.0(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 use-json-comparison: 1.0.6(react@17.0.2) transitivePeerDependencies: @@ -1406,13 +1406,13 @@ packages: '@ant-design/icons': 4.7.0(react-dom@17.0.2)(react@17.0.2) '@ant-design/pro-provider': 1.6.0(antd@4.24.10)(react-dom@17.0.2)(react@17.0.2) '@ant-design/pro-utils': 1.35.3(antd@4.24.10)(prop-types@15.8.1)(react-dom@17.0.2)(react@17.0.2) - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 antd: 4.24.10(react-dom@17.0.2)(react@17.0.2) classnames: 2.2.6 lodash.tonumber: 4.0.3 moment: 2.29.1 omit.js: 2.0.2 - rc-util: 5.34.1(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.38.0(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 react-color: 2.19.3(react@17.0.2) swr: 1.2.2(react@17.0.2) @@ -1430,22 +1430,22 @@ packages: '@ant-design/icons': 4.7.0(react-dom@17.0.2)(react@17.0.2) '@ant-design/pro-provider': 2.4.3(antd@4.24.10)(react-dom@17.0.2)(react@17.0.2) '@ant-design/pro-utils': 2.5.8(antd@4.24.10)(prop-types@15.8.1)(react-dom@17.0.2)(react@17.0.2) - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 '@chenshuai2144/sketch-color': 1.0.9(react@17.0.2) antd: 4.24.10(react-dom@17.0.2)(react@17.0.2) classnames: 2.2.6 - dayjs: 1.11.9 + dayjs: 1.11.10 lodash.tonumber: 4.0.3 omit.js: 2.0.2 - rc-util: 5.34.1(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.38.0(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 - swr: 2.2.0(react@17.0.2) + swr: 2.2.4(react@17.0.2) transitivePeerDependencies: - prop-types - react-dom dev: false - /@ant-design/pro-form@1.57.0(antd@4.24.10)(prop-types@15.8.1)(rc-field-form@1.34.1)(react-dom@17.0.2)(react@17.0.2): + /@ant-design/pro-form@1.57.0(antd@4.24.10)(prop-types@15.8.1)(rc-field-form@1.40.0)(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-6KNYAiW5W29EAhWn1CMTphrVaadIe3NcUm3JE/mrhBlKDVGabmF0mqKz1WCw+S4BiOJttmRNoz8K0/ypTvXO2A==} peerDependencies: antd: '>=4.18.0' @@ -1457,15 +1457,15 @@ packages: '@ant-design/pro-field': 1.32.4(antd@4.24.10)(prop-types@15.8.1)(react-dom@17.0.2)(react@17.0.2) '@ant-design/pro-provider': 1.6.0(antd@4.24.10)(react-dom@17.0.2)(react@17.0.2) '@ant-design/pro-utils': 1.35.3(antd@4.24.10)(prop-types@15.8.1)(react-dom@17.0.2)(react@17.0.2) - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 '@umijs/use-params': 1.0.9(react@17.0.2) antd: 4.24.10(react-dom@17.0.2)(react@17.0.2) classnames: 2.2.6 lodash: 4.17.21 omit.js: 2.0.2 - rc-field-form: 1.34.1(react-dom@17.0.2)(react@17.0.2) - rc-resize-observer: 1.3.1(react-dom@17.0.2)(react@17.0.2) - rc-util: 5.34.1(react-dom@17.0.2)(react@17.0.2) + rc-field-form: 1.40.0(react-dom@17.0.2)(react@17.0.2) + rc-resize-observer: 1.4.0(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.38.0(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) use-json-comparison: 1.0.6(react@17.0.2) @@ -1474,7 +1474,7 @@ packages: - prop-types dev: false - /@ant-design/pro-form@2.5.8(antd@4.24.10)(prop-types@15.8.1)(rc-field-form@1.34.1)(react-dom@17.0.2)(react@17.0.2): + /@ant-design/pro-form@2.5.8(antd@4.24.10)(prop-types@15.8.1)(rc-field-form@1.40.0)(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-iBxb7vWOPjlkpfZjZHKnVlgA1ebE7yjuqkXJSQ9AYW2HB1UfXVYcI7xgrj0nkx6EdtL1sf3Rhl2OwKYpRIB9iQ==} peerDependencies: '@types/lodash.merge': ^4.6.7 @@ -1490,16 +1490,16 @@ packages: '@ant-design/pro-field': 2.2.9(antd@4.24.10)(prop-types@15.8.1)(react-dom@17.0.2)(react@17.0.2) '@ant-design/pro-provider': 2.4.3(antd@4.24.10)(react-dom@17.0.2)(react@17.0.2) '@ant-design/pro-utils': 2.5.8(antd@4.24.10)(prop-types@15.8.1)(react-dom@17.0.2)(react@17.0.2) - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 '@chenshuai2144/sketch-color': 1.0.9(react@17.0.2) '@umijs/use-params': 1.0.9(react@17.0.2) antd: 4.24.10(react-dom@17.0.2)(react@17.0.2) classnames: 2.2.6 lodash.merge: 4.6.2 omit.js: 2.0.2 - rc-field-form: 1.34.1(react-dom@17.0.2)(react@17.0.2) - rc-resize-observer: 1.3.1(react-dom@17.0.2)(react@17.0.2) - rc-util: 5.34.1(react-dom@17.0.2)(react@17.0.2) + rc-field-form: 1.40.0(react-dom@17.0.2)(react@17.0.2) + rc-resize-observer: 1.4.0(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.38.0(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) use-json-comparison: 1.0.6(react@17.0.2) @@ -1516,17 +1516,17 @@ packages: '@ant-design/icons': 4.7.0(react-dom@17.0.2)(react@17.0.2) '@ant-design/pro-provider': 1.10.0(react-dom@17.0.2)(react@17.0.2) '@ant-design/pro-utils': 1.45.3(prop-types@15.8.1)(react-dom@17.0.2)(react@17.0.2) - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 '@umijs/route-utils': 2.2.2 '@umijs/ssr-darkreader': 4.9.45 '@umijs/use-params': 1.0.9(react@17.0.2) antd: 4.24.10(react-dom@17.0.2)(react@17.0.2) - classnames: 2.3.2 + classnames: 2.2.6 lodash.merge: 4.6.2 omit.js: 2.0.2 path-to-regexp: 2.4.0 - rc-resize-observer: 1.3.1(react-dom@17.0.2)(react@17.0.2) - rc-util: 5.34.1(react-dom@17.0.2)(react@17.0.2) + rc-resize-observer: 1.4.0(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.38.0(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 swr: 1.2.2(react@17.0.2) unstated-next: 1.1.0 @@ -1548,7 +1548,7 @@ packages: '@ant-design/icons': 4.7.0(react-dom@17.0.2)(react@17.0.2) '@ant-design/pro-provider': 2.4.3(antd@4.24.10)(react-dom@17.0.2)(react@17.0.2) '@ant-design/pro-utils': 2.5.8(antd@4.24.10)(prop-types@15.8.1)(react-dom@17.0.2)(react@17.0.2) - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 '@umijs/route-utils': 4.0.1 '@umijs/use-params': 1.0.9(react@17.0.2) antd: 4.24.10(react-dom@17.0.2)(react@17.0.2) @@ -1556,11 +1556,11 @@ packages: lodash.merge: 4.6.2 omit.js: 2.0.2 path-to-regexp: 2.4.0 - rc-resize-observer: 1.3.1(react-dom@17.0.2)(react@17.0.2) - rc-util: 5.34.1(react-dom@17.0.2)(react@17.0.2) + rc-resize-observer: 1.4.0(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.38.0(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) - swr: 2.2.0(react@17.0.2) + swr: 2.2.4(react@17.0.2) use-json-comparison: 1.0.6(react@17.0.2) use-media-antd-query: 1.1.0(react@17.0.2) warning: 4.0.3 @@ -1568,7 +1568,7 @@ packages: - prop-types dev: false - /@ant-design/pro-list@2.1.1(antd@4.24.10)(prop-types@15.8.1)(rc-field-form@1.34.1)(react-dom@17.0.2)(react@17.0.2): + /@ant-design/pro-list@2.1.1(antd@4.24.10)(prop-types@15.8.1)(rc-field-form@1.40.0)(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-afOlH+Kms4eZzUvmA38lGsqobg+PXHqZtBducfgAJ+QgLxBu172TLKuG5wioTdMCm2DSxIKQ3+rQn0O9ZBdDqw==} peerDependencies: antd: '>=4.23.0' @@ -1578,12 +1578,12 @@ packages: '@ant-design/icons': 4.7.0(react-dom@17.0.2)(react@17.0.2) '@ant-design/pro-card': 2.1.14(antd@4.24.10)(prop-types@15.8.1)(react-dom@17.0.2)(react@17.0.2) '@ant-design/pro-field': 2.2.9(antd@4.24.10)(prop-types@15.8.1)(react-dom@17.0.2)(react@17.0.2) - '@ant-design/pro-table': 3.3.1(antd@4.24.10)(prop-types@15.8.1)(rc-field-form@1.34.1)(react-dom@17.0.2)(react@17.0.2) - '@babel/runtime': 7.22.6 + '@ant-design/pro-table': 3.3.1(antd@4.24.10)(prop-types@15.8.1)(rc-field-form@1.40.0)(react-dom@17.0.2)(react@17.0.2) + '@babel/runtime': 7.23.2 antd: 4.24.10(react-dom@17.0.2)(react@17.0.2) classnames: 2.2.6 - dayjs: 1.11.9 - rc-resize-observer: 1.3.1(react-dom@17.0.2)(react@17.0.2) + dayjs: 1.11.10 + rc-resize-observer: 1.4.0(react-dom@17.0.2)(react@17.0.2) rc-util: 4.21.1 react: 17.0.2 react-dom: 17.0.2(react@17.0.2) @@ -1599,9 +1599,9 @@ packages: peerDependencies: react: '>=16.9.0 || 17' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 antd: 4.24.10(react-dom@17.0.2)(react@17.0.2) - rc-util: 5.34.1(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.38.0(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 swr: 1.2.2(react@17.0.2) transitivePeerDependencies: @@ -1614,9 +1614,9 @@ packages: antd: '>=4.18.0' react: '>=16.9.0 || 17' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 antd: 4.24.10(react-dom@17.0.2)(react@17.0.2) - rc-util: 5.34.1(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.38.0(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 swr: 1.2.2(react@17.0.2) transitivePeerDependencies: @@ -1630,14 +1630,14 @@ packages: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@ant-design/cssinjs': 1.11.1(react-dom@17.0.2)(react@17.0.2) - '@babel/runtime': 7.22.6 - '@ctrl/tinycolor': 3.6.0 + '@ant-design/cssinjs': 1.17.2(react-dom@17.0.2)(react@17.0.2) + '@babel/runtime': 7.23.2 + '@ctrl/tinycolor': 3.6.1 antd: 4.24.10(react-dom@17.0.2)(react@17.0.2) - rc-util: 5.34.1(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.38.0(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) - swr: 2.2.0(react@17.0.2) + swr: 2.2.4(react@17.0.2) dev: false /@ant-design/pro-skeleton@2.0.8(antd@4.24.10)(react-dom@17.0.2)(react@17.0.2): @@ -1647,14 +1647,14 @@ packages: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 antd: 4.24.10(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) use-media-antd-query: 1.1.0(react@17.0.2) dev: false - /@ant-design/pro-table@2.66.4(antd@4.24.10)(prop-types@15.8.1)(rc-field-form@1.34.1)(react-dom@17.0.2)(react@17.0.2): + /@ant-design/pro-table@2.66.4(antd@4.24.10)(prop-types@15.8.1)(rc-field-form@1.40.0)(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-j6o5V6IkyzhsJnaXi19tVQ+cw2UFId1CWlXooWccdcE8xPP+7GX0E7usw9ng5HsI0h9rHDPWru6JtemXMo0RPQ==} peerDependencies: antd: '>=4.18.0' @@ -1664,16 +1664,16 @@ packages: dependencies: '@ant-design/icons': 4.7.0(react-dom@17.0.2)(react@17.0.2) '@ant-design/pro-field': 1.32.4(antd@4.24.10)(prop-types@15.8.1)(react-dom@17.0.2)(react@17.0.2) - '@ant-design/pro-form': 1.57.0(antd@4.24.10)(prop-types@15.8.1)(rc-field-form@1.34.1)(react-dom@17.0.2)(react@17.0.2) + '@ant-design/pro-form': 1.57.0(antd@4.24.10)(prop-types@15.8.1)(rc-field-form@1.40.0)(react-dom@17.0.2)(react@17.0.2) '@ant-design/pro-provider': 1.6.0(antd@4.24.10)(react-dom@17.0.2)(react@17.0.2) '@ant-design/pro-utils': 1.35.3(antd@4.24.10)(prop-types@15.8.1)(react-dom@17.0.2)(react@17.0.2) - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 antd: 4.24.10(react-dom@17.0.2)(react@17.0.2) classnames: 2.2.6 moment: 2.29.1 omit.js: 2.0.2 - rc-field-form: 1.34.1(react-dom@17.0.2)(react@17.0.2) - rc-util: 5.34.1(react-dom@17.0.2)(react@17.0.2) + rc-field-form: 1.40.0(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.38.0(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) react-sortable-hoc: 2.0.0(prop-types@15.8.1)(react-dom@17.0.2)(react@17.0.2) @@ -1684,7 +1684,7 @@ packages: - prop-types dev: false - /@ant-design/pro-table@3.3.1(antd@4.24.10)(prop-types@15.8.1)(rc-field-form@1.34.1)(react-dom@17.0.2)(react@17.0.2): + /@ant-design/pro-table@3.3.1(antd@4.24.10)(prop-types@15.8.1)(rc-field-form@1.40.0)(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-NQak8whJklHUrJlQMs6z2nQ9qPdrDXEbJWG/btxE6kFcfANydLRCdsHVmJADZ7NWv+ZvnAiXAzaR1pJeuZxu5A==} peerDependencies: antd: '>=4.23.0' @@ -1695,17 +1695,17 @@ packages: '@ant-design/icons': 4.7.0(react-dom@17.0.2)(react@17.0.2) '@ant-design/pro-card': 2.1.14(antd@4.24.10)(prop-types@15.8.1)(react-dom@17.0.2)(react@17.0.2) '@ant-design/pro-field': 2.2.9(antd@4.24.10)(prop-types@15.8.1)(react-dom@17.0.2)(react@17.0.2) - '@ant-design/pro-form': 2.5.8(antd@4.24.10)(prop-types@15.8.1)(rc-field-form@1.34.1)(react-dom@17.0.2)(react@17.0.2) + '@ant-design/pro-form': 2.5.8(antd@4.24.10)(prop-types@15.8.1)(rc-field-form@1.40.0)(react-dom@17.0.2)(react@17.0.2) '@ant-design/pro-provider': 2.4.3(antd@4.24.10)(react-dom@17.0.2)(react@17.0.2) '@ant-design/pro-utils': 2.5.8(antd@4.24.10)(prop-types@15.8.1)(react-dom@17.0.2)(react@17.0.2) - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 antd: 4.24.10(react-dom@17.0.2)(react@17.0.2) classnames: 2.2.6 - dayjs: 1.11.9 + dayjs: 1.11.10 omit.js: 2.0.2 - rc-field-form: 1.34.1(react-dom@17.0.2)(react@17.0.2) - rc-resize-observer: 1.3.1(react-dom@17.0.2)(react@17.0.2) - rc-util: 5.34.1(react-dom@17.0.2)(react@17.0.2) + rc-field-form: 1.40.0(react-dom@17.0.2)(react@17.0.2) + rc-resize-observer: 1.4.0(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.38.0(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) react-sortable-hoc: 2.0.0(prop-types@15.8.1)(react-dom@17.0.2)(react@17.0.2) @@ -1724,11 +1724,11 @@ packages: dependencies: '@ant-design/icons': 4.7.0(react-dom@17.0.2)(react@17.0.2) '@ant-design/pro-provider': 1.6.0(antd@4.24.10)(react-dom@17.0.2)(react@17.0.2) - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 antd: 4.24.10(react-dom@17.0.2)(react@17.0.2) classnames: 2.2.6 moment: 2.29.1 - rc-util: 5.34.1(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.38.0(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) react-sortable-hoc: 2.0.0(prop-types@15.8.1)(react-dom@17.0.2)(react@17.0.2) @@ -1745,11 +1745,11 @@ packages: dependencies: '@ant-design/icons': 4.7.0(react-dom@17.0.2)(react@17.0.2) '@ant-design/pro-provider': 1.10.0(react-dom@17.0.2)(react@17.0.2) - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 antd: 4.24.10(react-dom@17.0.2)(react@17.0.2) - classnames: 2.3.2 - moment: 2.29.4 - rc-util: 5.34.1(react-dom@17.0.2)(react@17.0.2) + classnames: 2.2.6 + moment: 2.29.1 + rc-util: 5.38.0(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) react-sortable-hoc: 2.0.0(prop-types@15.8.1)(react-dom@17.0.2)(react@17.0.2) @@ -1767,15 +1767,15 @@ packages: dependencies: '@ant-design/icons': 4.7.0(react-dom@17.0.2)(react@17.0.2) '@ant-design/pro-provider': 2.4.3(antd@4.24.10)(react-dom@17.0.2)(react@17.0.2) - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 antd: 4.24.10(react-dom@17.0.2)(react@17.0.2) classnames: 2.2.6 - dayjs: 1.11.9 - rc-util: 5.34.1(react-dom@17.0.2)(react@17.0.2) + dayjs: 1.11.10 + rc-util: 5.38.0(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) react-sortable-hoc: 2.0.0(prop-types@15.8.1)(react-dom@17.0.2)(react@17.0.2) - swr: 2.2.0(react@17.0.2) + swr: 2.2.4(react@17.0.2) transitivePeerDependencies: - prop-types dev: false @@ -1785,7 +1785,7 @@ packages: peerDependencies: react: '>=16.9.0 || 17' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.2.6 json2mq: 0.2.0 lodash: 4.17.21 @@ -1803,13 +1803,13 @@ packages: resolution: {integrity: sha512-DVhcFSQ8YQnMNW34Mk8BSsfc61iC1sAnmcfYoXTAshYHuU50p/6b7x3QYaGctDNKWGvi1ub7mPcSY0bK+aN0qg==} dependencies: '@antv/util': 2.0.17 - tslib: 2.6.0 + tslib: 2.6.2 /@antv/algorithm@0.1.26-beta.0: resolution: {integrity: sha512-pUXut6Y7KxJvj8EjXwkHP1w1z/nrf2Cx48DE+3kzJuz09FynaNd/NQvOEBMGSGyxoH8vVZ2vW4aDvTtbttHcPA==} dependencies: '@antv/util': 2.0.17 - tslib: 2.6.0 + tslib: 2.6.2 dev: false /@antv/async-hook@2.2.9: @@ -1824,14 +1824,14 @@ packages: '@antv/color-util': 2.0.6 '@antv/scale': 0.3.18 '@antv/util': 2.0.17 - tslib: 2.6.0 + tslib: 2.6.2 dev: false /@antv/color-util@2.0.6: resolution: {integrity: sha512-KnPEaAH+XNJMjax9U35W67nzPI+QQ2x27pYlzmSIWrbj4/k8PGrARXfzDTjwoozHJY8qG62Z+Ww6Alhu2FctXQ==} dependencies: '@antv/util': 2.0.17 - tslib: 2.6.0 + tslib: 2.6.2 dev: false /@antv/component@0.8.35: @@ -1845,7 +1845,7 @@ packages: '@antv/scale': 0.3.18 '@antv/util': 2.0.17 fecha: 4.2.3 - tslib: 2.6.0 + tslib: 2.6.2 dev: false /@antv/coord@0.3.1: @@ -1853,21 +1853,21 @@ packages: dependencies: '@antv/matrix-util': 3.1.0-beta.3 '@antv/util': 2.0.17 - tslib: 2.6.0 + tslib: 2.6.2 dev: false - /@antv/coord@0.4.4: - resolution: {integrity: sha512-KE9TPhPUjLfxghPdBrinKkmJh+3zmj8wQRNNMgBczNOaQMUrJbBvGhANkU9qups7zw4wkrSsJa5udFoWyT1G4Q==} + /@antv/coord@0.4.6: + resolution: {integrity: sha512-Zu1dJkyPvJ4McUmESWkpjgIf129MsBrZttxf7Bx0rs/N9txGXuj2YZpq1M77mBCWmclxHrcTJU9v1k/iMuIv0A==} dependencies: - '@antv/matrix-util': 3.0.4 '@antv/scale': 0.4.12 '@antv/util': 2.0.17 + gl-matrix: 3.4.3 dev: false /@antv/dom-util@2.0.4: resolution: {integrity: sha512-2shXUl504fKwt82T3GkuT4Uoc6p9qjCKnJ8gXGLSW4T1W37dqf9AV28aCfoVPHp2BUXpSsB+PAJX2rG/jLHsLQ==} dependencies: - tslib: 2.6.0 + tslib: 2.6.2 /@antv/dw-analyzer@1.1.5: resolution: {integrity: sha512-xwjZad740IlxYwwfylCZZg4Qobe32H3u7L6CarGM+kp0oWWqINeU/GV/aBciYs132RqIc2cxBjONRqctjHOrgA==} @@ -1884,7 +1884,7 @@ packages: '@antv/matrix-util': 3.1.0-beta.3 '@antv/path-util': 2.0.15 '@antv/util': 2.0.17 - '@types/d3-timer': 1.0.10 + '@types/d3-timer': 1.0.11 d3-ease: 1.0.7 d3-interpolate: 1.4.0 d3-timer: 1.0.10 @@ -1899,20 +1899,20 @@ packages: '@antv/matrix-util': 3.1.0-beta.3 '@antv/path-util': 2.0.15 '@antv/util': 2.0.17 - '@types/d3-timer': 2.0.1 + '@types/d3-timer': 2.0.2 d3-ease: 1.0.7 d3-interpolate: 3.0.1 d3-timer: 1.0.10 detect-browser: 5.3.0 - tslib: 2.6.0 + tslib: 2.6.2 - /@antv/g-camera-api@1.2.3: - resolution: {integrity: sha512-CE7vJoWKZpgqQ9A3pKVazSq0N6tbgrATocSNjm4qz1GPeWmxwtkDSzqRh6aIOon/jcQuQwflequp37UtYQe5WQ==} + /@antv/g-camera-api@1.2.16: + resolution: {integrity: sha512-omNdgzo05q+/ta+lyQfiF2+8g6qt/QgwLL+kcwkSzR4oq7faQKcT0scvj1zZVtvayZ7lRBki8CZ4JsCCl/Tp9Q==} dependencies: - '@antv/g-lite': 1.2.3 - '@antv/util': 3.3.2 + '@antv/g-lite': 1.2.15 + '@antv/util': 3.3.5 gl-matrix: 3.4.3 - tslib: 2.6.0 + tslib: 2.6.2 dev: false /@antv/g-canvas@0.5.14: @@ -1924,26 +1924,26 @@ packages: '@antv/path-util': 2.0.15 '@antv/util': 2.0.17 gl-matrix: 3.4.3 - tslib: 2.6.0 + tslib: 2.6.2 - /@antv/g-canvas@1.11.3: - resolution: {integrity: sha512-Yy9Rr3+m0QgpHQKnBCMDclnLMimQXNjTCGBlHzyKJjebseg7Q0RFdR69l/QkkqV1l6Pzkm2FJh1Hu6k83AxRRA==} + /@antv/g-canvas@1.11.20: + resolution: {integrity: sha512-qkSdlWz5sQx0iHPcUFW25dn2GtW++8CDoJX+Rc4FnLcWICUe2T4UyuQjfK02UVGlHGpW1DlqmDiPRasAWHXUrA==} dependencies: - '@antv/g-lite': 1.2.3 - '@antv/g-plugin-canvas-path-generator': 1.3.3 - '@antv/g-plugin-canvas-picker': 1.10.3 - '@antv/g-plugin-canvas-renderer': 1.9.3 - '@antv/g-plugin-dom-interaction': 1.9.3 - '@antv/g-plugin-html-renderer': 1.9.3 - '@antv/g-plugin-image-loader': 1.3.3 - '@antv/util': 3.3.2 - tslib: 2.6.0 + '@antv/g-lite': 1.2.15 + '@antv/g-plugin-canvas-path-generator': 1.3.15 + '@antv/g-plugin-canvas-picker': 1.10.17 + '@antv/g-plugin-canvas-renderer': 1.9.17 + '@antv/g-plugin-dom-interaction': 1.9.15 + '@antv/g-plugin-html-renderer': 1.9.18 + '@antv/g-plugin-image-loader': 1.3.15 + '@antv/util': 3.3.5 + tslib: 2.6.2 dev: false - /@antv/g-dom-mutation-observer-api@1.2.3: - resolution: {integrity: sha512-omCRtAxYEjS7AEK9EKCDgn6aBcTBC3JW1hGyPYbRfOuPp7TmtNhgrVLvlkjD072oWvmB3hJdvF+8KMzwzF/W+Q==} + /@antv/g-dom-mutation-observer-api@1.2.15: + resolution: {integrity: sha512-SEN/fM765lQvTUbKdrF6RfwOC7giF0AbHMF1TBkzBpD1p1HLuWJbYwrTsi8t0vWXzor8r+IZNQNYYavLq34bKg==} dependencies: - '@antv/g-lite': 1.2.3 + '@antv/g-lite': 1.2.15 dev: false /@antv/g-gesture@1.0.1(@antv/g-base@0.4.7): @@ -1956,16 +1956,16 @@ packages: d3-ease: 1.0.7 dev: false - /@antv/g-lite@1.2.3: - resolution: {integrity: sha512-w1iaKtTlNGc3DzoTGdBJizt+bpf6Xr3KhX5UEbaI8i5M+XHRuAndHjtk8/tsSRS8AjAOQ3WGwQXpO9Vbfk2ewQ==} + /@antv/g-lite@1.2.15: + resolution: {integrity: sha512-OsL3FqNTNdogwMg3COmaolNn9fdbYWSL/mZWSh0qOnYjjQrqng1pTbqFDUAYWNghAdbSSUfOsHlSUONcfSglJQ==} dependencies: - '@antv/g-math': 2.0.1 - '@antv/util': 3.3.2 + '@antv/g-math': 2.0.2 + '@antv/util': 3.3.5 d3-color: 1.4.1 eventemitter3: 5.0.1 gl-matrix: 3.4.3 rbush: 3.0.1 - tslib: 2.6.0 + tslib: 2.6.2 dev: false /@antv/g-math@0.1.9: @@ -1974,78 +1974,78 @@ packages: '@antv/util': 2.0.17 gl-matrix: 3.4.3 - /@antv/g-math@2.0.1: - resolution: {integrity: sha512-Y1DREalYzUMaglD0m6V9s9UxsseXgSmwNA3l9zDHRH1CXDLcvtmrku+DQM9oCgPtbPWV43AdyAYoNT3WLyL/WA==} + /@antv/g-math@2.0.2: + resolution: {integrity: sha512-uqGU1C+70orjeSUoIzD3TuXjL5dRQCIyjZrBrTmm0FWd6VQJMWHyG5ypuZ2lMiI5MrRajVSE1w+3J4hiNBYSJg==} dependencies: - '@antv/util': 3.3.2 + '@antv/util': 3.3.5 gl-matrix: 3.4.3 - tslib: 2.6.0 + tslib: 2.6.2 dev: false - /@antv/g-plugin-canvas-path-generator@1.3.3: - resolution: {integrity: sha512-llJe2qmgxM6PHZLn7DrDH7UckHTT9EGZXnN265F/iCWIac4g1iQDll/8mKMo6pQpiO3lZnK7HxTU1lHDNs+MaQ==} + /@antv/g-plugin-canvas-path-generator@1.3.15: + resolution: {integrity: sha512-dSosvMevvMVhqh9OOsgsKa75Ty7EpY45my5AYF7j2k9vh9bqmhk3QURQHu/D8qMbdWe8x9ZmOXIdP8+Ad7LWsA==} dependencies: - '@antv/g-lite': 1.2.3 - '@antv/g-math': 2.0.1 - '@antv/util': 3.3.2 - tslib: 2.6.0 + '@antv/g-lite': 1.2.15 + '@antv/g-math': 2.0.2 + '@antv/util': 3.3.5 + tslib: 2.6.2 dev: false - /@antv/g-plugin-canvas-picker@1.10.3: - resolution: {integrity: sha512-EamGo/5jZJ6vWpUnmbaYzYBFj6wkjz7MFYOGYe44iG7Pq4bh5Fljh6JnofoI4X03qTJRr7F+7EJJhqp9MevKIg==} + /@antv/g-plugin-canvas-picker@1.10.17: + resolution: {integrity: sha512-6C6buAbZ+Qg0JmloasgvRZkPqDH/G54+1CF/XOylbTp2mr2g7ZuK2zJva694HTEv5qm0iFPrg7NdYEuO9z19QQ==} dependencies: - '@antv/g-lite': 1.2.3 - '@antv/g-math': 2.0.1 - '@antv/g-plugin-canvas-path-generator': 1.3.3 - '@antv/g-plugin-canvas-renderer': 1.9.3 - '@antv/util': 3.3.2 + '@antv/g-lite': 1.2.15 + '@antv/g-math': 2.0.2 + '@antv/g-plugin-canvas-path-generator': 1.3.15 + '@antv/g-plugin-canvas-renderer': 1.9.17 + '@antv/util': 3.3.5 gl-matrix: 3.4.3 - tslib: 2.6.0 + tslib: 2.6.2 dev: false - /@antv/g-plugin-canvas-renderer@1.9.3: - resolution: {integrity: sha512-DUriPiiKnu8BxmuT73jwaUbyfNPrjEAL9Bt8p22MF5DefwqVdhaRgNZdqIIhPysjCMAtl2reRsDAdQv1qK+0TQ==} + /@antv/g-plugin-canvas-renderer@1.9.17: + resolution: {integrity: sha512-C1tHGvkxj/gS9+gOW07FsxQxAwu+We5hnJ2F79gZlmzVt/bmkHdTsjwyKDjv2dc+gQp3fMMsW0L3uKELv3SU1A==} dependencies: - '@antv/g-lite': 1.2.3 - '@antv/g-math': 2.0.1 - '@antv/g-plugin-canvas-path-generator': 1.3.3 - '@antv/g-plugin-image-loader': 1.3.3 - '@antv/util': 3.3.2 + '@antv/g-lite': 1.2.15 + '@antv/g-math': 2.0.2 + '@antv/g-plugin-canvas-path-generator': 1.3.15 + '@antv/g-plugin-image-loader': 1.3.15 + '@antv/util': 3.3.5 gl-matrix: 3.4.3 - tslib: 2.6.0 + tslib: 2.6.2 dev: false - /@antv/g-plugin-dom-interaction@1.9.3: - resolution: {integrity: sha512-StXwZpYx4TL6ZL57viXHexsamVBWCBfsjD387kt+JxxqM7J55w+/owTDncuzoT9jlJf2WLO8MM2oH2ds9FWS+A==} + /@antv/g-plugin-dom-interaction@1.9.15: + resolution: {integrity: sha512-uWc5KEQskk69VuakbJ2hMvzzw86Vpt8xOSvZu2JwmWmPsptlVcx4wURSDkwBqgMUu5lMfMiLym0ovAazkFoM7A==} dependencies: - '@antv/g-lite': 1.2.3 - tslib: 2.6.0 + '@antv/g-lite': 1.2.15 + tslib: 2.6.2 dev: false - /@antv/g-plugin-dragndrop@1.8.3: - resolution: {integrity: sha512-nhwcVLUIsjIgdFrAHZ05SPKN7th43zCL1z7wJNV5JkIg4zJXO85fEmrb9BsDb/mFomBJZCggCj441RFunBffVQ==} + /@antv/g-plugin-dragndrop@1.8.15: + resolution: {integrity: sha512-p1Tfue3BYN49uos2QXVy+fYyE2bD8/wayivOCMiDYIjQabUdw0rQ5FH3JnKAMRQ2RfNaQn9ArSlCtAhG8NiX0w==} dependencies: - '@antv/g-lite': 1.2.3 - '@antv/util': 3.3.2 - tslib: 2.6.0 + '@antv/g-lite': 1.2.15 + '@antv/util': 3.3.5 + tslib: 2.6.2 dev: false - /@antv/g-plugin-html-renderer@1.9.3: - resolution: {integrity: sha512-+90gdbij8+YwERbYgILwsnPv7KAZohjJ+mKNfUIZYaeVWkpDEvmyDbJ9zRBpzb2EGduu2S6aWcAvdhnrGtEVNA==} + /@antv/g-plugin-html-renderer@1.9.18: + resolution: {integrity: sha512-O8QLrMLm3aW2mddUqMp8/gVL0qGuN4JSvrv+l/x4T8iHyyjE0GDCXaLoiHPVeQmREYKanTLYp4Y2F24N2G53jQ==} dependencies: - '@antv/g-lite': 1.2.3 - '@antv/util': 3.3.2 + '@antv/g-lite': 1.2.15 + '@antv/util': 3.3.5 gl-matrix: 3.4.3 - tslib: 2.6.0 + tslib: 2.6.2 dev: false - /@antv/g-plugin-image-loader@1.3.3: - resolution: {integrity: sha512-D5x/YnGxWiUR9/sPAmvFAGGV7E4huaX88/n3hTxjmSmQWLN57ktv2UnmQPKsecyYNEmHJQimXmOBhOKNd6NFLg==} + /@antv/g-plugin-image-loader@1.3.15: + resolution: {integrity: sha512-L9WD3fObMc5KsNCpVnVV5tbL2VvVJxctxU7p0IVaix/4DhcwspIZzm0C3iLwDvsIVNJNahJi2ndEd5j998eosA==} dependencies: - '@antv/g-lite': 1.2.3 - '@antv/util': 3.3.2 + '@antv/g-lite': 1.2.15 + '@antv/util': 3.3.5 gl-matrix: 3.4.3 - tslib: 2.6.0 + tslib: 2.6.2 dev: false /@antv/g-svg@0.5.7: @@ -2055,14 +2055,14 @@ packages: '@antv/g-math': 0.1.9 '@antv/util': 2.0.17 detect-browser: 5.3.0 - tslib: 2.6.0 + tslib: 2.6.2 - /@antv/g-web-animations-api@1.2.3: - resolution: {integrity: sha512-iIosg6QCHudKJCoIO7wcM1kiCqdKwU5up+qqaHpu8SvWjTGyKRNgX8lm+jIzBZwG6VCglWjXF33iENSsuZZ6hQ==} + /@antv/g-web-animations-api@1.2.15: + resolution: {integrity: sha512-tGjTKlMWbizb8o/hDIHcw1E1o6uS+N3f8dK8A5vTzdBVYWsX0TUEPENTZuQTPgpCU7Rpm3JdtlQc7WAXuSqa6A==} dependencies: - '@antv/g-lite': 1.2.3 - '@antv/util': 3.3.2 - tslib: 2.6.0 + '@antv/g-lite': 1.2.15 + '@antv/util': 3.3.5 + tslib: 2.6.2 dev: false /@antv/g-webgpu-core@0.7.2: @@ -2107,21 +2107,21 @@ packages: '@antv/path-util': 2.0.15 '@antv/scale': 0.3.18 '@antv/util': 2.0.17 - tslib: 2.6.0 + tslib: 2.6.2 dev: false /@antv/g2@5.0.11: resolution: {integrity: sha512-pzGtQZyHRxnWxfC8fic9n9ajP9jR0aUmv9IrGpJbyAzLaDs+WCjO1O9XiVZrbUFqaizeJ9yAb6tSX3mFM2p6cQ==} dependencies: - '@antv/coord': 0.4.4 + '@antv/coord': 0.4.6 '@antv/event-emitter': 0.1.3 - '@antv/g': 5.18.4 - '@antv/g-canvas': 1.11.3 - '@antv/g-plugin-dragndrop': 1.8.3 - '@antv/gui': 0.5.0-alpha.26(@antv/g@5.18.4) + '@antv/g': 5.18.17 + '@antv/g-canvas': 1.11.20 + '@antv/g-plugin-dragndrop': 1.8.15 + '@antv/gui': 0.5.0(@antv/g@5.18.17) '@antv/path-util': 3.0.1 '@antv/scale': 0.4.12 - '@antv/util': 3.3.2 + '@antv/util': 3.3.5 d3-array: 3.2.4 d3-dsv: 3.0.1 d3-force: 3.0.0 @@ -2151,7 +2151,7 @@ packages: fmin: 0.0.2 pdfast: 0.2.0 size-sensor: 1.0.1 - tslib: 2.6.0 + tslib: 2.6.2 dev: false /@antv/g6-core@0.8.19: @@ -2165,8 +2165,8 @@ packages: '@antv/matrix-util': 3.1.0-beta.3 '@antv/path-util': 2.0.15 '@antv/util': 2.0.17 - ml-matrix: 6.10.4 - tslib: 2.6.0 + ml-matrix: 6.10.7 + tslib: 2.6.2 /@antv/g6-element@0.8.19: resolution: {integrity: sha512-q22KlMHlFjR+hUMeHJyDt1NDsuMB6YBGSV/AgJRcaoatNQRHqdUBDQuwoNhw40tjVs4OJQsWwJ/6PI0zlA3LwQ==} @@ -2198,7 +2198,7 @@ packages: d3-force: 2.1.1 dagre: 0.8.5 insert-css: 2.0.0 - ml-matrix: 6.10.4 + ml-matrix: 6.10.7 /@antv/g6-plugin@0.8.19: resolution: {integrity: sha512-vPDko7gdrszRp/2OlYwxyWOAFiW/mn/I798s689KsC7/e/YSOuq94TdmdZHulNLOlT6zqqYwIP3JQG6YxdyPTQ==} @@ -2220,35 +2220,21 @@ packages: dependencies: '@antv/g6-pc': 0.8.19 - /@antv/g@5.18.4: - resolution: {integrity: sha512-WMgc0DrzUwG3ngS+E2Wl2OEfJBabFAcR8Wkdf9Akd6aYwGDGOHuP4YQvYrBCSjLdfKlzMTEQSkMfkaRib1JOXg==} + /@antv/g@5.18.17: + resolution: {integrity: sha512-+zbh20z93mRRMoaGeuwQx/FhQjUlUK/g8nkMkQSG8DHdD3ujo/E4SG5QFJTPHJJ7tueEfET4sIFKQ7SL2MqLqQ==} dependencies: - '@antv/g-camera-api': 1.2.3 - '@antv/g-dom-mutation-observer-api': 1.2.3 - '@antv/g-lite': 1.2.3 - '@antv/g-web-animations-api': 1.2.3 + '@antv/g-camera-api': 1.2.16 + '@antv/g-dom-mutation-observer-api': 1.2.15 + '@antv/g-lite': 1.2.15 + '@antv/g-web-animations-api': 1.2.15 dev: false /@antv/graphin-icons@1.0.0: resolution: {integrity: sha512-2nogK6ZrDklnfIOJrqOAgD7iFLjfZIjLbA8pDUbeXN5c9b0Mu84oCfyqg8OmWwvi9Gt80eUzoplo73gKjZECJg==} dev: false - /@antv/graphin@2.7.21(lodash-es@4.17.21)(react-dom@17.0.2)(react@17.0.2): - resolution: {integrity: sha512-G4peQxcs4CApTLVfmD8shcbj4EjCjlSusNrn8olsQz/3HEIh5UqwZCV5F4ii8jmPNNQWTduhWlfCqlbI7Xw57g==} - peerDependencies: - lodash-es: '>=4.17.21' - react: '>=16.9.0 || 17' - react-dom: '>=16.9.0' - dependencies: - '@antv/g6': 4.8.19 - d3-quadtree: 3.0.1 - lodash-es: 4.17.21 - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) - dev: false - - /@antv/graphin@2.7.25(lodash-es@4.17.21)(react-dom@16.14.0)(react@17.0.2): - resolution: {integrity: sha512-ascs0D+e87ukiap+1x2ru+R5QCzIQKFGWNG9vjnUrpphQzgGvHE7wGah28gu853oMPWegckdGQHaVlEukpadiw==} + /@antv/graphin@2.7.27(lodash-es@4.17.21)(react-dom@16.14.0)(react@17.0.2): + resolution: {integrity: sha512-cqsLl3xpZ5mPgTq5UufcqJDlxzKZSLk9/JWXmoQYpvDC4cpzDjBZeVlaDfhT8iToB5aR15CEIu6j+XsQDMqUsA==} peerDependencies: lodash-es: '>=4.17.21' react: '>=16.9.0 || 17' @@ -2261,8 +2247,8 @@ packages: react-dom: 16.14.0(react@17.0.2) dev: false - /@antv/graphin@2.7.25(lodash-es@4.17.21)(react-dom@17.0.2)(react@17.0.2): - resolution: {integrity: sha512-ascs0D+e87ukiap+1x2ru+R5QCzIQKFGWNG9vjnUrpphQzgGvHE7wGah28gu853oMPWegckdGQHaVlEukpadiw==} + /@antv/graphin@2.7.27(lodash-es@4.17.21)(react-dom@17.0.2)(react@17.0.2): + resolution: {integrity: sha512-cqsLl3xpZ5mPgTq5UufcqJDlxzKZSLk9/JWXmoQYpvDC4cpzDjBZeVlaDfhT8iToB5aR15CEIu6j+XsQDMqUsA==} peerDependencies: lodash-es: '>=4.17.21' react: '>=16.9.0 || 17' @@ -2277,15 +2263,15 @@ packages: /@antv/graphlib@1.2.0: resolution: {integrity: sha512-hhJOMThec51nU4Fe5p/viLlNIL71uDEgYFzKPajWjr2715SFG1HAgiP6AVylIeqBcAZ04u3Lw7usjl/TuI5RuQ==} - /@antv/gui@0.5.0-alpha.26(@antv/g@5.18.4): - resolution: {integrity: sha512-Bjso6MqUhyHB6tLgpoM+Cy4QrZzVyu23FaW3q5EUWUPf3B3nuOrCfM4qlli5tMdyLevAPcjtu+9l6LRkY6PdIw==} + /@antv/gui@0.5.0(@antv/g@5.18.17): + resolution: {integrity: sha512-ZbKhQ3LKM0xFeTV9dU8A63ZslN3te7kD0jQ8KbSD5XfG1eaKYWNFZ4H/7kuKTQyxZZX/67nnWqrOZpKXx7zeMw==} peerDependencies: '@antv/g': ^5.14.1 dependencies: '@antv/dom-util': 2.0.4 - '@antv/g': 5.18.4 + '@antv/g': 5.18.17 '@antv/scale': 0.4.12 - '@antv/util': 3.3.2 + '@antv/util': 3.3.5 d3-array: 3.2.4 svg-path-parser: 1.1.0 dev: false @@ -2295,69 +2281,67 @@ packages: dependencies: '@antv/util': 2.0.17 - /@antv/l7-component@2.17.3: - resolution: {integrity: sha512-wMiGdPWt3rbCtxyxR8eI4Gcfc1Bcm4oVpa+uLV4TACK03QmElm4ISEIgLf5rw5/DXhLi9YOR5IX1/9h0S6WqVw==} + /@antv/l7-component@2.19.6: + resolution: {integrity: sha512-6nXHD8JrzfUpSHea+lDSpDgOM3yOFpETiEY46q6gY2LddalY3k8GggA54BD+mgbgNrH3hJ93+vdAjNlJrSS7Kw==} dependencies: - '@antv/l7-core': 2.17.3 - '@antv/l7-utils': 2.17.3 - '@babel/runtime': 7.22.6 + '@antv/l7-core': 2.19.6 + '@antv/l7-utils': 2.19.6 + '@babel/runtime': 7.23.2 eventemitter3: 4.0.7 inversify: 5.1.1 - lodash: 4.17.21 reflect-metadata: 0.1.13 supercluster: 7.1.5 dev: false - /@antv/l7-core@2.17.3: - resolution: {integrity: sha512-NMJXxaME6vfz8Gkpta+pldyNYpuQubbJHDp4gYgItUldcPk67pIFjupHhEH735PXJM1Wzhb1K+ycArUetadlQg==} + /@antv/l7-core@2.19.6: + resolution: {integrity: sha512-AQJRkKjr9mb7NqYMC6Ft4cOMFlrh5DRd7gUEfMn31kg0djW9Vww1Xk81adkzxIazXOkA7O0P1iLhEreoCX5oDA==} dependencies: '@antv/async-hook': 2.2.9 - '@antv/l7-utils': 2.17.3 - '@babel/runtime': 7.22.6 + '@antv/l7-utils': 2.19.6 + '@babel/runtime': 7.23.2 + '@mapbox/tiny-sdf': 1.2.5 '@turf/helpers': 6.5.0 ajv: 6.12.6 element-resize-event: 3.0.6 eventemitter3: 4.0.7 gl-matrix: 3.4.3 + hammerjs: 2.0.8 inversify: 5.1.1 inversify-inject-decorators: 3.1.0 - l7-tiny-sdf: 0.0.4 - l7hammerjs: 0.0.7 - lodash: 4.17.21 reflect-metadata: 0.1.13 viewport-mercator-project: 6.2.3 dev: false - /@antv/l7-draw@2.4.24(@antv/l7-maps@2.17.3)(@antv/l7@2.17.3): + /@antv/l7-draw@2.4.24(@antv/l7-maps@2.19.6)(@antv/l7@2.19.6): resolution: {integrity: sha512-ZEk9Jk8NAPGGSwInWj8VPTNTPZLeJe2IspVRsnurD//+mtdS7hY6/sWbmdfH66WtOmmV7/kw/dL+MXXelNRaXg==} peerDependencies: '@antv/l7': ^2.3.0 '@antv/l7-maps': ^2.3.0 dependencies: - '@antv/l7': 2.17.3 - '@antv/l7-maps': 2.17.3 - '@babel/runtime': 7.22.6 + '@antv/l7': 2.19.6 + '@antv/l7-maps': 2.19.6 + '@babel/runtime': 7.23.2 '@mapbox/geojson-rewind': 0.5.2 '@turf/circle': 6.5.0 '@turf/distance': 6.5.0 '@turf/helpers': 6.5.0 '@turf/midpoint': 5.1.5 '@turf/turf': 5.1.6 - '@types/mapbox-gl': 1.13.6 + '@types/mapbox-gl': 1.13.8 eventemitter3: 4.0.7 load-styles: 2.0.0 lodash: 4.17.21 dev: false - /@antv/l7-layers@2.17.3: - resolution: {integrity: sha512-GR83dQz4PXvbBvNzbTERyxrv67XV7vxd9860rfcutlto2G57/+a7RcmliPMfSBQY66QS3jb9lSiXHNnHsVG0LQ==} + /@antv/l7-layers@2.19.6: + resolution: {integrity: sha512-nSZ3Db5n1NkZ9ZN3wVoemoP1fnxZ4TmjKH0CNO5OkQT+CcNFtAVZELJGCRpowOoJLPw3OqEEg0KAr2Bs/+MXxA==} dependencies: '@antv/async-hook': 2.2.9 - '@antv/l7-core': 2.17.3 - '@antv/l7-maps': 2.17.3 - '@antv/l7-source': 2.17.3 - '@antv/l7-utils': 2.17.3 - '@babel/runtime': 7.22.6 + '@antv/l7-core': 2.19.6 + '@antv/l7-maps': 2.19.6 + '@antv/l7-source': 2.19.6 + '@antv/l7-utils': 2.19.6 + '@babel/runtime': 7.23.2 '@mapbox/martini': 0.2.0 '@turf/clone': 6.5.0 '@turf/helpers': 6.5.0 @@ -2374,33 +2358,32 @@ packages: gl-matrix: 3.4.3 gl-vec2: 1.3.0 inversify: 5.1.1 - lodash: 4.17.21 polyline-miter-util: 1.0.1 reflect-metadata: 0.1.13 dev: false - /@antv/l7-map@2.17.3: - resolution: {integrity: sha512-b1s6fDj5nVn+dwV6vowG3Wsyi+XUth1ErtV8Dd3STj011ZZ2kcx34KyxPyPy4JHRPQT42zmYnk7iQn1uWs2WOA==} + /@antv/l7-map@2.19.6: + resolution: {integrity: sha512-SyfYs0OyCUxutlnT+F2y9xRDsgKxwt5z7L9BnLp4sX0xSBw0cO13TOP3aGwMRXRYtduqlkCniAegzdOmJc3pUg==} dependencies: - '@antv/l7-utils': 2.17.3 - '@babel/runtime': 7.22.6 + '@antv/l7-utils': 2.19.6 + '@babel/runtime': 7.23.2 '@mapbox/point-geometry': 0.1.0 '@mapbox/unitbezier': 0.0.0 eventemitter3: 4.0.7 gl-matrix: 3.4.3 - lodash: 4.17.21 + lodash-es: 4.17.21 dev: false - /@antv/l7-maps@2.17.3: - resolution: {integrity: sha512-CAO8HFn5LTgERscCe3A7xI+OEsLyVdAD51SR+z0e9nePcJQU5QdHlwiFHh6wSllrJr2syQf5MlwZeJ9MMcRxzA==} + /@antv/l7-maps@2.19.6: + resolution: {integrity: sha512-G8qXy15+hMcZxZYDbzXWRedygJpQX4tFz0J6HOihlBX3eorYkoxVub2ySEVnXzwwEWxr/8UTEpKG6kJ0lZrKFQ==} dependencies: '@amap/amap-jsapi-loader': 1.0.1 - '@antv/l7-core': 2.17.3 - '@antv/l7-map': 2.17.3 - '@antv/l7-utils': 2.17.3 - '@babel/runtime': 7.22.6 - '@types/amap-js-api': 1.4.11 - '@types/mapbox-gl': 1.13.6 + '@antv/l7-core': 2.19.6 + '@antv/l7-map': 2.19.6 + '@antv/l7-utils': 2.19.6 + '@babel/runtime': 7.23.2 + '@types/amap-js-api': 1.4.14 + '@types/mapbox-gl': 1.13.8 gl-matrix: 3.4.3 inversify: 5.1.1 mapbox-gl: 1.13.3 @@ -2408,41 +2391,40 @@ packages: viewport-mercator-project: 6.2.3 dev: false - /@antv/l7-renderer@2.17.3: - resolution: {integrity: sha512-7ix33kJYiktgbm5y5RJJWZ7gQtFHTVFHBKiHoRzD7Cjamr2igDtkG4GXRn/aAgXdEdn54Qd++hBQjmYjX+s/9A==} + /@antv/l7-renderer@2.19.6: + resolution: {integrity: sha512-++8m/k56dC0+cTm4uVhhgZrlMPrtJ34nTxKUhmBkT9X4I3/wjmwcHIo7fnzcTiwlJYBCHtPcSIYD/LW+Dj+tLg==} dependencies: - '@antv/l7-core': 2.17.3 - '@antv/l7-utils': 2.17.3 - '@babel/runtime': 7.22.6 + '@antv/l7-core': 2.19.6 + '@antv/l7-utils': 2.19.6 + '@babel/runtime': 7.23.2 inversify: 5.1.1 - l7regl: 0.0.20 - lodash: 4.17.21 reflect-metadata: 0.1.13 + regl: 1.7.0 dev: false - /@antv/l7-scene@2.17.3: - resolution: {integrity: sha512-TEyuWLGC8WdY0nBrDRdNZzNuYlu08EyD+/69/voAn6eoGuk3UopPsP2ct/ox5TA+fkkAS1Llh3G+hCvAjfuIeQ==} + /@antv/l7-scene@2.19.6: + resolution: {integrity: sha512-QrEFd8lwqZYLL3FvZCj2Md6hcdhAtVpqAC2Xo/j7OKPUlafEkV8PCPTq4/X3LwG5Mapa3s5uNsO4uGeec1qmYA==} dependencies: - '@antv/l7-component': 2.17.3 - '@antv/l7-core': 2.17.3 - '@antv/l7-layers': 2.17.3 - '@antv/l7-maps': 2.17.3 - '@antv/l7-renderer': 2.17.3 - '@antv/l7-utils': 2.17.3 - '@babel/runtime': 7.22.6 + '@antv/l7-component': 2.19.6 + '@antv/l7-core': 2.19.6 + '@antv/l7-layers': 2.19.6 + '@antv/l7-maps': 2.19.6 + '@antv/l7-renderer': 2.19.6 + '@antv/l7-utils': 2.19.6 + '@babel/runtime': 7.23.2 eventemitter3: 4.0.7 inversify: 5.1.1 mapbox-gl: 1.13.3 reflect-metadata: 0.1.13 dev: false - /@antv/l7-source@2.17.3: - resolution: {integrity: sha512-yu3JKJRHCiCsnnEge/WkmwNO1V/P0fsDou0DhB8y2IaEN5FSoifUzcoogM5Qz5bKHFf6QvF28hhiCKd/7/1mIQ==} + /@antv/l7-source@2.19.6: + resolution: {integrity: sha512-v9NP1cjJ0S8vsqYwWGnFpJY58dhuoOSUgEOZB8DnWL9M8JBFzXDtDOGILT16iTVvSvTQEWLu09JGDSZDsZlI+g==} dependencies: '@antv/async-hook': 2.2.9 - '@antv/l7-core': 2.17.3 - '@antv/l7-utils': 2.17.3 - '@babel/runtime': 7.22.6 + '@antv/l7-core': 2.19.6 + '@antv/l7-utils': 2.19.6 + '@babel/runtime': 7.23.2 '@mapbox/geojson-rewind': 0.5.2 '@mapbox/vector-tile': 1.3.1 '@turf/helpers': 6.5.0 @@ -2453,16 +2435,15 @@ packages: eventemitter3: 4.0.7 geojson-vt: 3.2.1 inversify: 5.1.1 - lodash: 4.17.21 pbf: 3.2.1 reflect-metadata: 0.1.13 supercluster: 7.1.5 dev: false - /@antv/l7-utils@2.17.3: - resolution: {integrity: sha512-mbAIf3GGoEkwaBgMJhR2+t1DQrgyg2XYU4ueAyT91pMJNpmPWfWmWj8SifUnX6SANQGWlEtG0/g5+0zCVJ4SCA==} + /@antv/l7-utils@2.19.6: + resolution: {integrity: sha512-Iy3qMRGyiUner9JkszLJUSYruPwoHE0pKihS+c+9W8RecsSWMVOCeE89r/f6dt9QK3+iLI80oVx+Ael7q37K/Q==} dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 '@turf/bbox': 6.5.0 '@turf/bbox-polygon': 6.5.0 '@turf/helpers': 6.5.0 @@ -2474,17 +2455,21 @@ packages: web-worker-helper: 0.0.3 dev: false - /@antv/l7@2.17.3: - resolution: {integrity: sha512-xh++e6F8NMhwqXTGKAhZ35HHWkF9GLP9xBxQ9eyjX6MdqfV2KOI6IPyDx3Tz3iRVAYC+e8OXjB+Exq6qizzrKQ==} + /@antv/l7@2.19.6: + resolution: {integrity: sha512-DaGJO6GttToYotBun4RLezjF+pV37rNdGGhA5Z/DmPQUhGmVUhAK8CTUjYDYFmzMcEn/8j6b8GhQGkZ0ziQHhA==} dependencies: - '@antv/l7-component': 2.17.3 - '@antv/l7-core': 2.17.3 - '@antv/l7-layers': 2.17.3 - '@antv/l7-maps': 2.17.3 - '@antv/l7-scene': 2.17.3 - '@antv/l7-source': 2.17.3 - '@antv/l7-utils': 2.17.3 - '@babel/runtime': 7.22.6 + '@antv/l7-component': 2.19.6 + '@antv/l7-core': 2.19.6 + '@antv/l7-layers': 2.19.6 + '@antv/l7-maps': 2.19.6 + '@antv/l7-scene': 2.19.6 + '@antv/l7-source': 2.19.6 + '@antv/l7-utils': 2.19.6 + '@babel/runtime': 7.23.2 + webpack-bundle-analyzer: 4.9.1 + transitivePeerDependencies: + - bufferutil + - utf-8-validate dev: false /@antv/l7plot-component@0.0.5: @@ -2494,13 +2479,13 @@ packages: '@antv/util': 2.0.17 dev: false - /@antv/l7plot@0.0.11(@antv/l7@2.17.3): + /@antv/l7plot@0.0.11(@antv/l7@2.19.6): resolution: {integrity: sha512-lT6MbyjjzhgqvRFl80pXm2f4zc7j5uxIiWiLE4EQn+FeT7KhQOgqysM+3SCwEu57tIpVrrBi0BPqyzL4qSrarg==} peerDependencies: '@antv/l7': ^2.7.22 dependencies: '@antv/event-emitter': 0.1.3 - '@antv/l7': 2.17.3 + '@antv/l7': 2.19.6 '@antv/l7plot-component': 0.0.5 '@antv/util': 2.0.17 lodash-es: 4.17.21 @@ -2512,11 +2497,11 @@ packages: dependencies: '@antv/g-webgpu': 0.7.2 '@antv/graphlib': 1.2.0 - '@antv/util': 3.3.2 + '@antv/util': 3.3.5 d3-force: 2.1.1 d3-quadtree: 2.0.0 dagre-compound: 0.0.11(dagre@0.8.5) - ml-matrix: 6.10.4 + ml-matrix: 6.10.7 transitivePeerDependencies: - dagre @@ -2525,28 +2510,28 @@ packages: dependencies: '@antv/util': 2.0.17 gl-matrix: 3.4.3 - tslib: 2.6.0 + tslib: 2.6.2 /@antv/matrix-util@3.1.0-beta.3: resolution: {integrity: sha512-W2R6Za3A6CmG51Y/4jZUM/tFgYSq7vTqJL1VD9dKrvwxS4sE0ZcXINtkp55CdyBwJ6Cwm8pfoRpnD4FnHahN0A==} dependencies: '@antv/util': 2.0.17 gl-matrix: 3.4.3 - tslib: 2.6.0 + tslib: 2.6.2 /@antv/path-util@2.0.15: resolution: {integrity: sha512-R2VLZ5C8PLPtr3VciNyxtjKqJ0XlANzpFb5sE9GE61UQqSRuSVSzIakMxjEPrpqbgc+s+y8i+fmc89Snu7qbNw==} dependencies: '@antv/matrix-util': 3.0.4 '@antv/util': 2.0.17 - tslib: 2.6.0 + tslib: 2.6.2 /@antv/path-util@3.0.1: resolution: {integrity: sha512-tpvAzMpF9Qm6ik2YSMqICNU5tco5POOW7S4XoxZAI/B0L26adU+Md/SmO0BBo2SpuywKvzPH3hPT3xmoyhr04Q==} dependencies: gl-matrix: 3.4.3 lodash-es: 4.17.21 - tslib: 2.6.0 + tslib: 2.6.2 dev: false /@antv/s2-react@1.41.0(@ant-design/icons@4.7.0)(@antv/s2@1.48.0)(antd@4.24.10)(react-dom@17.0.2)(react@17.0.2): @@ -2590,7 +2575,7 @@ packages: dependencies: '@antv/util': 2.0.17 fecha: 4.2.3 - tslib: 2.6.0 + tslib: 2.6.2 /@antv/scale@0.4.12: resolution: {integrity: sha512-7klJjPXUpCwYc7WADh1XBC11DJYrP5fJoNfv4Ks6z7zPkIM7/PTGr+nU48P69nFL3X04Pe7QjVpevdfCqWvhZQ==} @@ -2604,7 +2589,7 @@ packages: resolution: {integrity: sha512-o6I9hi5CIUvLGDhth0RxNSFDRwXeywmt6ExR4+RmVAzIi48ps6HUy+svxOCayvrPBN37uE6TAc2KDofRo0nK9Q==} dependencies: csstype: 3.1.2 - tslib: 2.6.0 + tslib: 2.6.2 /@antv/util@3.2.5(gl-matrix@3.4.3): resolution: {integrity: sha512-5qFvH+NPzB79pxEdjVdBPChe2Bbxmh2Z72iGAnPSibNhtLpn+d03laqXTeNJ4+1BhBG8Y+KKZoRpE6GR4d2zUQ==} @@ -2613,47 +2598,28 @@ packages: dependencies: fast-deep-equal: 3.1.3 gl-matrix: 3.4.3 - tslib: 2.6.0 + tslib: 2.6.2 dev: false - /@antv/util@3.3.2: - resolution: {integrity: sha512-uvyQxEOugdJs/FVlpz/+8pKxn70z8jEVydPqv+LI62cpIF7YDjVnMfNIsoMqwEoTzPUJ9TJalyLqZhT5rYez0w==} + /@antv/util@3.3.5: + resolution: {integrity: sha512-bVv1loamL/MgUEN9dNt7VKAsghO4Wgb+kzr8B9TgkM5tHgKk++xiTwi3pejIdgU8DDkzcyaRsO+VTOXJt8jLng==} dependencies: fast-deep-equal: 3.1.3 + flru: 1.0.2 gl-matrix: 3.4.3 - tslib: 2.6.0 + tslib: 2.6.2 - /@babel/cli@7.22.9(@babel/core@7.22.9): - resolution: {integrity: sha512-nb2O7AThqRo7/E53EGiuAkMaRbb7J5Qp3RvN+dmua1U+kydm0oznkhqbTEG15yk26G/C3yL6OdZjzgl+DMXVVA==} - engines: {node: '>=6.9.0'} - hasBin: true - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.9 - '@jridgewell/trace-mapping': 0.3.18 - commander: 4.1.1 - convert-source-map: 1.9.0 - fs-readdir-recursive: 1.1.0 - glob: 7.2.3 - make-dir: 2.1.0 - slash: 2.0.0 - optionalDependencies: - '@nicolo-ribaudo/chokidar-2': 2.1.8-no-fsevents.3 - chokidar: 3.5.3 - dev: true - - /@babel/cli@7.22.9(@babel/core@7.4.4): - resolution: {integrity: sha512-nb2O7AThqRo7/E53EGiuAkMaRbb7J5Qp3RvN+dmua1U+kydm0oznkhqbTEG15yk26G/C3yL6OdZjzgl+DMXVVA==} + /@babel/cli@7.23.0(@babel/core@7.4.4): + resolution: {integrity: sha512-17E1oSkGk2IwNILM4jtfAvgjt+ohmpfBky8aLerUfYZhiPNg7ca+CRCxZn8QDxwNhV/upsc2VHBCqGFIR+iBfA==} engines: {node: '>=6.9.0'} hasBin: true peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.4.4 - '@jridgewell/trace-mapping': 0.3.18 + '@jridgewell/trace-mapping': 0.3.20 commander: 4.1.1 - convert-source-map: 1.9.0 + convert-source-map: 2.0.0 fs-readdir-recursive: 1.1.0 glob: 7.2.3 make-dir: 2.1.0 @@ -2666,49 +2632,50 @@ packages: /@babel/code-frame@7.0.0: resolution: {integrity: sha512-OfC2uemaknXr87bdLUkWog7nYuliM9Ij5HUcajsVcMCpQrcLmtxRbVFTIqmcSkSeYRBFBRxs2FiUqFJDLdiebA==} dependencies: - '@babel/highlight': 7.22.5 + '@babel/highlight': 7.22.20 dev: true /@babel/code-frame@7.12.11: resolution: {integrity: sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==} dependencies: - '@babel/highlight': 7.22.5 + '@babel/highlight': 7.22.20 dev: true - /@babel/code-frame@7.22.5: - resolution: {integrity: sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ==} + /@babel/code-frame@7.22.13: + resolution: {integrity: sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==} engines: {node: '>=6.9.0'} dependencies: - '@babel/highlight': 7.22.5 + '@babel/highlight': 7.22.20 + chalk: 2.4.2 /@babel/code-frame@7.5.5: resolution: {integrity: sha512-27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw==} dependencies: - '@babel/highlight': 7.22.5 + '@babel/highlight': 7.22.20 dev: true - /@babel/compat-data@7.22.9: - resolution: {integrity: sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==} + /@babel/compat-data@7.23.2: + resolution: {integrity: sha512-0S9TQMmDHlqAZ2ITT95irXKfxN9bncq8ZCoJhun3nHL/lLUxd2NKBJYoNGWH7S0hz6fRQwWlAWn/ILM0C70KZQ==} engines: {node: '>=6.9.0'} /@babel/core@7.12.9: resolution: {integrity: sha512-gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/code-frame': 7.22.5 - '@babel/generator': 7.22.9 - '@babel/helper-module-transforms': 7.22.9(@babel/core@7.12.9) - '@babel/helpers': 7.22.6 - '@babel/parser': 7.22.7 - '@babel/template': 7.22.5 - '@babel/traverse': 7.22.8(supports-color@5.5.0) - '@babel/types': 7.22.5 + '@babel/code-frame': 7.22.13 + '@babel/generator': 7.23.0 + '@babel/helper-module-transforms': 7.23.0(@babel/core@7.12.9) + '@babel/helpers': 7.23.2 + '@babel/parser': 7.23.0 + '@babel/template': 7.22.15 + '@babel/traverse': 7.23.2(supports-color@5.5.0) + '@babel/types': 7.23.0 convert-source-map: 1.9.0 debug: 4.3.4(supports-color@5.5.0) gensync: 1.0.0-beta.2 json5: 2.2.3 lodash: 4.17.21 - resolve: 1.22.2 + resolve: 1.22.8 semver: 5.7.2 source-map: 0.5.7 transitivePeerDependencies: @@ -2720,15 +2687,15 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@ampproject/remapping': 2.2.1 - '@babel/code-frame': 7.22.5 - '@babel/generator': 7.22.9 - '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.18.2) - '@babel/helper-module-transforms': 7.22.9(@babel/core@7.18.2) - '@babel/helpers': 7.22.6 - '@babel/parser': 7.22.7 - '@babel/template': 7.22.5 - '@babel/traverse': 7.22.8(supports-color@5.5.0) - '@babel/types': 7.22.5 + '@babel/code-frame': 7.22.13 + '@babel/generator': 7.23.0 + '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-module-transforms': 7.23.0(@babel/core@7.18.2) + '@babel/helpers': 7.23.2 + '@babel/parser': 7.23.0 + '@babel/template': 7.22.15 + '@babel/traverse': 7.23.2(supports-color@5.5.0) + '@babel/types': 7.23.0 convert-source-map: 1.9.0 debug: 4.3.4(supports-color@5.5.0) gensync: 1.0.0-beta.2 @@ -2743,15 +2710,15 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@ampproject/remapping': 2.2.1 - '@babel/code-frame': 7.22.5 - '@babel/generator': 7.22.9 - '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.18.6) - '@babel/helper-module-transforms': 7.22.9(@babel/core@7.18.6) - '@babel/helpers': 7.22.6 - '@babel/parser': 7.22.7 - '@babel/template': 7.22.5 - '@babel/traverse': 7.22.8(supports-color@5.5.0) - '@babel/types': 7.22.5 + '@babel/code-frame': 7.22.13 + '@babel/generator': 7.23.0 + '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-module-transforms': 7.23.0(@babel/core@7.18.6) + '@babel/helpers': 7.23.2 + '@babel/parser': 7.23.0 + '@babel/template': 7.22.15 + '@babel/traverse': 7.23.2(supports-color@5.5.0) + '@babel/types': 7.23.0 convert-source-map: 1.9.0 debug: 4.3.4(supports-color@5.5.0) gensync: 1.0.0-beta.2 @@ -2764,39 +2731,39 @@ packages: resolution: {integrity: sha512-59vB0RWt09cAct5EIe58+NzGP4TFSD3Bz//2/ELy3ZeTeKF6VTD1AXlH8BGGbCX0PuobZBsIzO7IAI9PH67eKw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/code-frame': 7.22.5 - '@babel/generator': 7.22.9 - '@babel/helpers': 7.22.6 - '@babel/parser': 7.22.7 - '@babel/template': 7.22.5 - '@babel/traverse': 7.22.8(supports-color@5.5.0) - '@babel/types': 7.22.5 + '@babel/code-frame': 7.22.13 + '@babel/generator': 7.23.0 + '@babel/helpers': 7.23.2 + '@babel/parser': 7.23.0 + '@babel/template': 7.22.15 + '@babel/traverse': 7.23.2(supports-color@5.5.0) + '@babel/types': 7.23.0 convert-source-map: 1.9.0 debug: 4.3.4(supports-color@5.5.0) json5: 2.2.3 lodash: 4.17.21 - resolve: 1.22.2 + resolve: 1.22.8 semver: 5.7.2 source-map: 0.5.7 transitivePeerDependencies: - supports-color dev: true - /@babel/core@7.22.9: - resolution: {integrity: sha512-G2EgeufBcYw27U4hhoIwFcgc1XU7TlXJ3mv04oOv1WCuo900U/anZSPzEqNjwdjgffkk2Gs0AN0dW1CKVLcG7w==} + /@babel/core@7.23.2: + resolution: {integrity: sha512-n7s51eWdaWZ3vGT2tD4T7J6eJs3QoBXydv7vkUM06Bf1cbVD2Kc2UrkzhiQwobfV7NwOnQXYL7UBJ5VPU+RGoQ==} engines: {node: '>=6.9.0'} dependencies: '@ampproject/remapping': 2.2.1 - '@babel/code-frame': 7.22.5 - '@babel/generator': 7.22.9 - '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.9) - '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.9) - '@babel/helpers': 7.22.6 - '@babel/parser': 7.22.7 - '@babel/template': 7.22.5 - '@babel/traverse': 7.22.8(supports-color@5.5.0) - '@babel/types': 7.22.5 - convert-source-map: 1.9.0 + '@babel/code-frame': 7.22.13 + '@babel/generator': 7.23.0 + '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.2) + '@babel/helpers': 7.23.2 + '@babel/parser': 7.23.0 + '@babel/template': 7.22.15 + '@babel/traverse': 7.23.2(supports-color@5.5.0) + '@babel/types': 7.23.0 + convert-source-map: 2.0.0 debug: 4.3.4(supports-color@5.5.0) gensync: 1.0.0-beta.2 json5: 2.2.3 @@ -2808,18 +2775,18 @@ packages: resolution: {integrity: sha512-lQgGX3FPRgbz2SKmhMtYgJvVzGZrmjaF4apZ2bLwofAKiSjxU0drPh4S/VasyYXwaTs+A1gvQ45BN8SQJzHsQQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/code-frame': 7.22.5 - '@babel/generator': 7.22.9 - '@babel/helpers': 7.22.6 - '@babel/parser': 7.22.7 - '@babel/template': 7.22.5 - '@babel/traverse': 7.22.8(supports-color@5.5.0) - '@babel/types': 7.22.5 + '@babel/code-frame': 7.22.13 + '@babel/generator': 7.23.0 + '@babel/helpers': 7.23.2 + '@babel/parser': 7.23.0 + '@babel/template': 7.22.15 + '@babel/traverse': 7.23.2(supports-color@5.5.0) + '@babel/types': 7.23.0 convert-source-map: 1.9.0 debug: 4.3.4(supports-color@5.5.0) json5: 2.2.3 lodash: 4.17.21 - resolve: 1.22.2 + resolve: 1.22.8 semver: 5.7.2 source-map: 0.5.7 transitivePeerDependencies: @@ -2830,18 +2797,18 @@ packages: resolution: {integrity: sha512-OvjIh6aqXtlsA8ujtGKfC7LYWksYSX8yQcM8Ay3LuvVeQ63lcOKgoZWVqcpFwkd29aYU9rVx7jxhfhiEDV9MZA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/code-frame': 7.22.5 - '@babel/generator': 7.22.9 - '@babel/helpers': 7.22.6 - '@babel/parser': 7.22.7 - '@babel/template': 7.22.5 - '@babel/traverse': 7.22.8(supports-color@5.5.0) - '@babel/types': 7.22.5 + '@babel/code-frame': 7.22.13 + '@babel/generator': 7.23.0 + '@babel/helpers': 7.23.2 + '@babel/parser': 7.23.0 + '@babel/template': 7.22.15 + '@babel/traverse': 7.23.2(supports-color@5.5.0) + '@babel/types': 7.23.0 convert-source-map: 1.9.0 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.1.1 json5: 2.2.3 lodash: 4.17.21 - resolve: 1.22.2 + resolve: 1.22.8 semver: 5.7.2 source-map: 0.5.7 transitivePeerDependencies: @@ -2852,280 +2819,194 @@ packages: resolution: {integrity: sha512-kWc7L0fw1xwvI0zi8OKVBuxRVefwGOrKSQMvrQ3dW+bIIavBY3/NpXmpjMy7bQnLgwgzWQZ8TlM57YHpHNHz4w==} engines: {node: '>=6.9.0'} dependencies: - '@babel/code-frame': 7.22.5 - '@babel/generator': 7.22.9 - '@babel/helper-module-transforms': 7.22.9(@babel/core@7.9.0) - '@babel/helpers': 7.22.6 - '@babel/parser': 7.22.7 - '@babel/template': 7.22.5 - '@babel/traverse': 7.22.8(supports-color@5.5.0) - '@babel/types': 7.22.5 + '@babel/code-frame': 7.22.13 + '@babel/generator': 7.23.0 + '@babel/helper-module-transforms': 7.23.0(@babel/core@7.9.0) + '@babel/helpers': 7.23.2 + '@babel/parser': 7.23.0 + '@babel/template': 7.22.15 + '@babel/traverse': 7.23.2(supports-color@5.5.0) + '@babel/types': 7.23.0 convert-source-map: 1.9.0 debug: 4.3.4(supports-color@5.5.0) gensync: 1.0.0-beta.2 json5: 2.2.3 lodash: 4.17.21 - resolve: 1.22.2 + resolve: 1.22.8 semver: 5.7.2 source-map: 0.5.7 transitivePeerDependencies: - supports-color dev: true - /@babel/eslint-parser@7.22.9(@babel/core@7.22.9)(eslint@7.32.0): - resolution: {integrity: sha512-xdMkt39/nviO/4vpVdrEYPwXCsYIXSSAr6mC7WQsNIlGnuxKyKE7GZjalcnbSWiC4OXGNNN3UQPeHfjSC6sTDA==} + /@babel/eslint-parser@7.22.15(@babel/core@7.23.2)(eslint@7.32.0): + resolution: {integrity: sha512-yc8OOBIQk1EcRrpizuARSQS0TWAcOMpEJ1aafhNznaeYkeL+OhqnDObGFylB8ka8VFF/sZc+S4RzHyO+3LjQxg==} engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0} peerDependencies: - '@babel/core': '>=7.11.0' + '@babel/core': ^7.11.0 eslint: ^7.5.0 || ^8.0.0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1 eslint: 7.32.0 eslint-visitor-keys: 2.1.0 semver: 6.3.1 dev: true - /@babel/eslint-parser@7.22.9(@babel/core@7.22.9)(eslint@8.0.0): - resolution: {integrity: sha512-xdMkt39/nviO/4vpVdrEYPwXCsYIXSSAr6mC7WQsNIlGnuxKyKE7GZjalcnbSWiC4OXGNNN3UQPeHfjSC6sTDA==} + /@babel/eslint-parser@7.22.15(@babel/core@7.23.2)(eslint@8.0.0): + resolution: {integrity: sha512-yc8OOBIQk1EcRrpizuARSQS0TWAcOMpEJ1aafhNznaeYkeL+OhqnDObGFylB8ka8VFF/sZc+S4RzHyO+3LjQxg==} engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0} peerDependencies: - '@babel/core': '>=7.11.0' + '@babel/core': ^7.11.0 eslint: ^7.5.0 || ^8.0.0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1 eslint: 8.0.0 eslint-visitor-keys: 2.1.0 semver: 6.3.1 dev: true - /@babel/generator@7.22.9: - resolution: {integrity: sha512-KtLMbmicyuK2Ak/FTCJVbDnkN1SlT8/kceFTiuDiiRUUSMnHMidxSCdG4ndkTOHHpoomWe/4xkvHkEOncwjYIw==} + /@babel/generator@7.23.0: + resolution: {integrity: sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.5 + '@babel/types': 7.23.0 '@jridgewell/gen-mapping': 0.3.3 - '@jridgewell/trace-mapping': 0.3.18 + '@jridgewell/trace-mapping': 0.3.20 jsesc: 2.5.2 /@babel/helper-annotate-as-pure@7.22.5: resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.5 - - /@babel/helper-builder-binary-assignment-operator-visitor@7.22.5: - resolution: {integrity: sha512-m1EP3lVOPptR+2DwD125gziZNcmoNSHGmJROKoy87loWUQyJaVXDgpmruWqDARZSmtYQ+Dl25okU8+qhVzuykw==} - engines: {node: '>=6.9.0'} - dependencies: - '@babel/types': 7.22.5 - - /@babel/helper-compilation-targets@7.22.9(@babel/core@7.18.2): - resolution: {integrity: sha512-7qYrNM6HjpnPHJbopxmb8hSPoZ0gsX8IvUS32JGVoy+pU9e5N0nLr1VjJoR6kA4d9dmGLxNYOjeB8sUDal2WMw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/compat-data': 7.22.9 - '@babel/core': 7.18.2 - '@babel/helper-validator-option': 7.22.5 - browserslist: 4.21.9 - lru-cache: 5.1.1 - semver: 6.3.1 - dev: true - - /@babel/helper-compilation-targets@7.22.9(@babel/core@7.18.6): - resolution: {integrity: sha512-7qYrNM6HjpnPHJbopxmb8hSPoZ0gsX8IvUS32JGVoy+pU9e5N0nLr1VjJoR6kA4d9dmGLxNYOjeB8sUDal2WMw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/compat-data': 7.22.9 - '@babel/core': 7.18.6 - '@babel/helper-validator-option': 7.22.5 - browserslist: 4.21.9 - lru-cache: 5.1.1 - semver: 6.3.1 + '@babel/types': 7.23.0 - /@babel/helper-compilation-targets@7.22.9(@babel/core@7.2.2): - resolution: {integrity: sha512-7qYrNM6HjpnPHJbopxmb8hSPoZ0gsX8IvUS32JGVoy+pU9e5N0nLr1VjJoR6kA4d9dmGLxNYOjeB8sUDal2WMw==} + /@babel/helper-builder-binary-assignment-operator-visitor@7.22.15: + resolution: {integrity: sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==} engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 dependencies: - '@babel/compat-data': 7.22.9 - '@babel/core': 7.2.2 - '@babel/helper-validator-option': 7.22.5 - browserslist: 4.21.9 - lru-cache: 5.1.1 - semver: 6.3.1 - dev: true + '@babel/types': 7.23.0 - /@babel/helper-compilation-targets@7.22.9(@babel/core@7.22.9): - resolution: {integrity: sha512-7qYrNM6HjpnPHJbopxmb8hSPoZ0gsX8IvUS32JGVoy+pU9e5N0nLr1VjJoR6kA4d9dmGLxNYOjeB8sUDal2WMw==} + /@babel/helper-compilation-targets@7.22.15: + resolution: {integrity: sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==} engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 dependencies: - '@babel/compat-data': 7.22.9 - '@babel/core': 7.22.9 - '@babel/helper-validator-option': 7.22.5 - browserslist: 4.21.9 + '@babel/compat-data': 7.23.2 + '@babel/helper-validator-option': 7.22.15 + browserslist: 4.22.1 lru-cache: 5.1.1 semver: 6.3.1 - /@babel/helper-compilation-targets@7.22.9(@babel/core@7.4.4): - resolution: {integrity: sha512-7qYrNM6HjpnPHJbopxmb8hSPoZ0gsX8IvUS32JGVoy+pU9e5N0nLr1VjJoR6kA4d9dmGLxNYOjeB8sUDal2WMw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/compat-data': 7.22.9 - '@babel/core': 7.4.4 - '@babel/helper-validator-option': 7.22.5 - browserslist: 4.21.9 - lru-cache: 5.1.1 - semver: 6.3.1 - dev: true - - /@babel/helper-compilation-targets@7.22.9(@babel/core@7.4.5): - resolution: {integrity: sha512-7qYrNM6HjpnPHJbopxmb8hSPoZ0gsX8IvUS32JGVoy+pU9e5N0nLr1VjJoR6kA4d9dmGLxNYOjeB8sUDal2WMw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/compat-data': 7.22.9 - '@babel/core': 7.4.5 - '@babel/helper-validator-option': 7.22.5 - browserslist: 4.21.9 - lru-cache: 5.1.1 - semver: 6.3.1 - dev: true - - /@babel/helper-compilation-targets@7.22.9(@babel/core@7.9.0): - resolution: {integrity: sha512-7qYrNM6HjpnPHJbopxmb8hSPoZ0gsX8IvUS32JGVoy+pU9e5N0nLr1VjJoR6kA4d9dmGLxNYOjeB8sUDal2WMw==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0 - dependencies: - '@babel/compat-data': 7.22.9 - '@babel/core': 7.9.0 - '@babel/helper-validator-option': 7.22.5 - browserslist: 4.21.9 - lru-cache: 5.1.1 - semver: 6.3.1 - dev: true - - /@babel/helper-create-class-features-plugin@7.22.9(@babel/core@7.18.2): - resolution: {integrity: sha512-Pwyi89uO4YrGKxL/eNJ8lfEH55DnRloGPOseaA8NFNL6jAUnn+KccaISiFazCj5IolPPDjGSdzQzXVzODVRqUQ==} + /@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.18.2): + resolution: {integrity: sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.18.2 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-function-name': 7.22.5 - '@babel/helper-member-expression-to-functions': 7.22.5 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 + '@babel/helper-member-expression-to-functions': 7.23.0 '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-replace-supers': 7.22.9(@babel/core@7.18.2) + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.18.2) '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 semver: 6.3.1 dev: true - /@babel/helper-create-class-features-plugin@7.22.9(@babel/core@7.2.2): - resolution: {integrity: sha512-Pwyi89uO4YrGKxL/eNJ8lfEH55DnRloGPOseaA8NFNL6jAUnn+KccaISiFazCj5IolPPDjGSdzQzXVzODVRqUQ==} + /@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.2.2): + resolution: {integrity: sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.2.2 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-function-name': 7.22.5 - '@babel/helper-member-expression-to-functions': 7.22.5 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 + '@babel/helper-member-expression-to-functions': 7.23.0 '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-replace-supers': 7.22.9(@babel/core@7.2.2) + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.2.2) '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 semver: 6.3.1 dev: true - /@babel/helper-create-class-features-plugin@7.22.9(@babel/core@7.22.9): - resolution: {integrity: sha512-Pwyi89uO4YrGKxL/eNJ8lfEH55DnRloGPOseaA8NFNL6jAUnn+KccaISiFazCj5IolPPDjGSdzQzXVzODVRqUQ==} + /@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.23.2): + resolution: {integrity: sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-function-name': 7.22.5 - '@babel/helper-member-expression-to-functions': 7.22.5 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 + '@babel/helper-member-expression-to-functions': 7.23.0 '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-replace-supers': 7.22.9(@babel/core@7.22.9) + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.2) '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 semver: 6.3.1 - /@babel/helper-create-class-features-plugin@7.22.9(@babel/core@7.4.4): - resolution: {integrity: sha512-Pwyi89uO4YrGKxL/eNJ8lfEH55DnRloGPOseaA8NFNL6jAUnn+KccaISiFazCj5IolPPDjGSdzQzXVzODVRqUQ==} + /@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.4.4): + resolution: {integrity: sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.4.4 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-function-name': 7.22.5 - '@babel/helper-member-expression-to-functions': 7.22.5 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 + '@babel/helper-member-expression-to-functions': 7.23.0 '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-replace-supers': 7.22.9(@babel/core@7.4.4) + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.4.4) '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 semver: 6.3.1 dev: true - /@babel/helper-create-class-features-plugin@7.22.9(@babel/core@7.4.5): - resolution: {integrity: sha512-Pwyi89uO4YrGKxL/eNJ8lfEH55DnRloGPOseaA8NFNL6jAUnn+KccaISiFazCj5IolPPDjGSdzQzXVzODVRqUQ==} + /@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.4.5): + resolution: {integrity: sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.4.5 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-function-name': 7.22.5 - '@babel/helper-member-expression-to-functions': 7.22.5 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 + '@babel/helper-member-expression-to-functions': 7.23.0 '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-replace-supers': 7.22.9(@babel/core@7.4.5) + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.4.5) '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 semver: 6.3.1 dev: true - /@babel/helper-create-class-features-plugin@7.22.9(@babel/core@7.9.0): - resolution: {integrity: sha512-Pwyi89uO4YrGKxL/eNJ8lfEH55DnRloGPOseaA8NFNL6jAUnn+KccaISiFazCj5IolPPDjGSdzQzXVzODVRqUQ==} + /@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.9.0): + resolution: {integrity: sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.9.0 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-function-name': 7.22.5 - '@babel/helper-member-expression-to-functions': 7.22.5 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 + '@babel/helper-member-expression-to-functions': 7.23.0 '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-replace-supers': 7.22.9(@babel/core@7.9.0) + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.9.0) '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 semver: 6.3.1 dev: true - /@babel/helper-create-regexp-features-plugin@7.22.9(@babel/core@7.18.2): - resolution: {integrity: sha512-+svjVa/tFwsNSG4NEy1h85+HQ5imbT92Q5/bgtS7P0GTQlP8WuFdqsiABmQouhiFGyV66oGxZFpeYHza1rNsKw==} + /@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.18.2): + resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 @@ -3136,8 +3017,8 @@ packages: semver: 6.3.1 dev: true - /@babel/helper-create-regexp-features-plugin@7.22.9(@babel/core@7.2.2): - resolution: {integrity: sha512-+svjVa/tFwsNSG4NEy1h85+HQ5imbT92Q5/bgtS7P0GTQlP8WuFdqsiABmQouhiFGyV66oGxZFpeYHza1rNsKw==} + /@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.2.2): + resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 @@ -3148,19 +3029,19 @@ packages: semver: 6.3.1 dev: true - /@babel/helper-create-regexp-features-plugin@7.22.9(@babel/core@7.22.9): - resolution: {integrity: sha512-+svjVa/tFwsNSG4NEy1h85+HQ5imbT92Q5/bgtS7P0GTQlP8WuFdqsiABmQouhiFGyV66oGxZFpeYHza1rNsKw==} + /@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.23.2): + resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-annotate-as-pure': 7.22.5 regexpu-core: 5.3.2 semver: 6.3.1 - /@babel/helper-create-regexp-features-plugin@7.22.9(@babel/core@7.4.4): - resolution: {integrity: sha512-+svjVa/tFwsNSG4NEy1h85+HQ5imbT92Q5/bgtS7P0GTQlP8WuFdqsiABmQouhiFGyV66oGxZFpeYHza1rNsKw==} + /@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.4.4): + resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 @@ -3171,8 +3052,8 @@ packages: semver: 6.3.1 dev: true - /@babel/helper-create-regexp-features-plugin@7.22.9(@babel/core@7.4.5): - resolution: {integrity: sha512-+svjVa/tFwsNSG4NEy1h85+HQ5imbT92Q5/bgtS7P0GTQlP8WuFdqsiABmQouhiFGyV66oGxZFpeYHza1rNsKw==} + /@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.4.5): + resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 @@ -3183,8 +3064,8 @@ packages: semver: 6.3.1 dev: true - /@babel/helper-create-regexp-features-plugin@7.22.9(@babel/core@7.9.0): - resolution: {integrity: sha512-+svjVa/tFwsNSG4NEy1h85+HQ5imbT92Q5/bgtS7P0GTQlP8WuFdqsiABmQouhiFGyV66oGxZFpeYHza1rNsKw==} + /@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.9.0): + resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 @@ -3201,189 +3082,189 @@ packages: '@babel/core': ^7.4.0-0 dependencies: '@babel/core': 7.18.2 - '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.18.2) + '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 debug: 4.3.4(supports-color@5.5.0) lodash.debounce: 4.0.8 - resolve: 1.22.2 + resolve: 1.22.8 semver: 6.3.1 transitivePeerDependencies: - supports-color dev: true - /@babel/helper-define-polyfill-provider@0.4.1(@babel/core@7.22.9): - resolution: {integrity: sha512-kX4oXixDxG197yhX+J3Wp+NpL2wuCFjWQAr6yX2jtCnflK9ulMI51ULFGIrWiX1jGfvAxdHp+XQCcP2bZGPs9A==} + /@babel/helper-define-polyfill-provider@0.4.3(@babel/core@7.23.2): + resolution: {integrity: sha512-WBrLmuPP47n7PNwsZ57pqam6G/RGo1vw/87b0Blc53tZNGZ4x7YvZ6HgQe2vo1W/FR20OgjeZuGXzudPiXHFug==} peerDependencies: - '@babel/core': ^7.4.0-0 + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: - '@babel/core': 7.22.9 - '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.9) + '@babel/core': 7.23.2 + '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 debug: 4.3.4(supports-color@5.5.0) lodash.debounce: 4.0.8 - resolve: 1.22.2 + resolve: 1.22.8 transitivePeerDependencies: - supports-color - /@babel/helper-define-polyfill-provider@0.4.1(@babel/core@7.4.4): - resolution: {integrity: sha512-kX4oXixDxG197yhX+J3Wp+NpL2wuCFjWQAr6yX2jtCnflK9ulMI51ULFGIrWiX1jGfvAxdHp+XQCcP2bZGPs9A==} + /@babel/helper-define-polyfill-provider@0.4.3(@babel/core@7.4.4): + resolution: {integrity: sha512-WBrLmuPP47n7PNwsZ57pqam6G/RGo1vw/87b0Blc53tZNGZ4x7YvZ6HgQe2vo1W/FR20OgjeZuGXzudPiXHFug==} peerDependencies: - '@babel/core': ^7.4.0-0 + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: '@babel/core': 7.4.4 - '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.4.4) + '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 debug: 4.3.4(supports-color@5.5.0) lodash.debounce: 4.0.8 - resolve: 1.22.2 + resolve: 1.22.8 transitivePeerDependencies: - supports-color dev: true - /@babel/helper-environment-visitor@7.22.5: - resolution: {integrity: sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==} + /@babel/helper-environment-visitor@7.22.20: + resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==} engines: {node: '>=6.9.0'} - /@babel/helper-function-name@7.22.5: - resolution: {integrity: sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==} + /@babel/helper-function-name@7.23.0: + resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/template': 7.22.5 - '@babel/types': 7.22.5 + '@babel/template': 7.22.15 + '@babel/types': 7.23.0 /@babel/helper-hoist-variables@7.22.5: resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.5 + '@babel/types': 7.23.0 - /@babel/helper-member-expression-to-functions@7.22.5: - resolution: {integrity: sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ==} + /@babel/helper-member-expression-to-functions@7.23.0: + resolution: {integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.5 + '@babel/types': 7.23.0 - /@babel/helper-module-imports@7.22.5: - resolution: {integrity: sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==} + /@babel/helper-module-imports@7.22.15: + resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.5 + '@babel/types': 7.23.0 - /@babel/helper-module-transforms@7.22.9(@babel/core@7.12.9): - resolution: {integrity: sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==} + /@babel/helper-module-transforms@7.23.0(@babel/core@7.12.9): + resolution: {integrity: sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.12.9 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-module-imports': 7.22.5 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-module-imports': 7.22.15 '@babel/helper-simple-access': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 - '@babel/helper-validator-identifier': 7.22.5 + '@babel/helper-validator-identifier': 7.22.20 dev: true - /@babel/helper-module-transforms@7.22.9(@babel/core@7.18.2): - resolution: {integrity: sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==} + /@babel/helper-module-transforms@7.23.0(@babel/core@7.18.2): + resolution: {integrity: sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.18.2 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-module-imports': 7.22.5 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-module-imports': 7.22.15 '@babel/helper-simple-access': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 - '@babel/helper-validator-identifier': 7.22.5 + '@babel/helper-validator-identifier': 7.22.20 dev: true - /@babel/helper-module-transforms@7.22.9(@babel/core@7.18.6): - resolution: {integrity: sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==} + /@babel/helper-module-transforms@7.23.0(@babel/core@7.18.6): + resolution: {integrity: sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.18.6 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-module-imports': 7.22.5 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-module-imports': 7.22.15 '@babel/helper-simple-access': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 - '@babel/helper-validator-identifier': 7.22.5 + '@babel/helper-validator-identifier': 7.22.20 - /@babel/helper-module-transforms@7.22.9(@babel/core@7.2.2): - resolution: {integrity: sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==} + /@babel/helper-module-transforms@7.23.0(@babel/core@7.2.2): + resolution: {integrity: sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.2.2 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-module-imports': 7.22.5 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-module-imports': 7.22.15 '@babel/helper-simple-access': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 - '@babel/helper-validator-identifier': 7.22.5 + '@babel/helper-validator-identifier': 7.22.20 dev: true - /@babel/helper-module-transforms@7.22.9(@babel/core@7.22.9): - resolution: {integrity: sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==} + /@babel/helper-module-transforms@7.23.0(@babel/core@7.23.2): + resolution: {integrity: sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.9 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-module-imports': 7.22.5 + '@babel/core': 7.23.2 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-module-imports': 7.22.15 '@babel/helper-simple-access': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 - '@babel/helper-validator-identifier': 7.22.5 + '@babel/helper-validator-identifier': 7.22.20 - /@babel/helper-module-transforms@7.22.9(@babel/core@7.4.4): - resolution: {integrity: sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==} + /@babel/helper-module-transforms@7.23.0(@babel/core@7.4.4): + resolution: {integrity: sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.4.4 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-module-imports': 7.22.5 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-module-imports': 7.22.15 '@babel/helper-simple-access': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 - '@babel/helper-validator-identifier': 7.22.5 + '@babel/helper-validator-identifier': 7.22.20 dev: true - /@babel/helper-module-transforms@7.22.9(@babel/core@7.4.5): - resolution: {integrity: sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==} + /@babel/helper-module-transforms@7.23.0(@babel/core@7.4.5): + resolution: {integrity: sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.4.5 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-module-imports': 7.22.5 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-module-imports': 7.22.15 '@babel/helper-simple-access': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 - '@babel/helper-validator-identifier': 7.22.5 + '@babel/helper-validator-identifier': 7.22.20 dev: true - /@babel/helper-module-transforms@7.22.9(@babel/core@7.9.0): - resolution: {integrity: sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==} + /@babel/helper-module-transforms@7.23.0(@babel/core@7.9.0): + resolution: {integrity: sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.9.0 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-module-imports': 7.22.5 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-module-imports': 7.22.15 '@babel/helper-simple-access': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 - '@babel/helper-validator-identifier': 7.22.5 + '@babel/helper-validator-identifier': 7.22.20 dev: true /@babel/helper-optimise-call-expression@7.22.5: resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.5 + '@babel/types': 7.23.0 /@babel/helper-plugin-utils@7.10.4: resolution: {integrity: sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==} @@ -3393,145 +3274,145 @@ packages: resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==} engines: {node: '>=6.9.0'} - /@babel/helper-remap-async-to-generator@7.22.9(@babel/core@7.18.2): - resolution: {integrity: sha512-8WWC4oR4Px+tr+Fp0X3RHDVfINGpF3ad1HIbrc8A77epiR6eMMc6jsgozkzT2uDiOOdoS9cLIQ+XD2XvI2WSmQ==} + /@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.18.2): + resolution: {integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.18.2 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-wrap-function': 7.22.9 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-wrap-function': 7.22.20 dev: true - /@babel/helper-remap-async-to-generator@7.22.9(@babel/core@7.2.2): - resolution: {integrity: sha512-8WWC4oR4Px+tr+Fp0X3RHDVfINGpF3ad1HIbrc8A77epiR6eMMc6jsgozkzT2uDiOOdoS9cLIQ+XD2XvI2WSmQ==} + /@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.2.2): + resolution: {integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.2.2 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-wrap-function': 7.22.9 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-wrap-function': 7.22.20 dev: true - /@babel/helper-remap-async-to-generator@7.22.9(@babel/core@7.22.9): - resolution: {integrity: sha512-8WWC4oR4Px+tr+Fp0X3RHDVfINGpF3ad1HIbrc8A77epiR6eMMc6jsgozkzT2uDiOOdoS9cLIQ+XD2XvI2WSmQ==} + /@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.23.2): + resolution: {integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-wrap-function': 7.22.9 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-wrap-function': 7.22.20 - /@babel/helper-remap-async-to-generator@7.22.9(@babel/core@7.4.4): - resolution: {integrity: sha512-8WWC4oR4Px+tr+Fp0X3RHDVfINGpF3ad1HIbrc8A77epiR6eMMc6jsgozkzT2uDiOOdoS9cLIQ+XD2XvI2WSmQ==} + /@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.4.4): + resolution: {integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.4.4 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-wrap-function': 7.22.9 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-wrap-function': 7.22.20 dev: true - /@babel/helper-remap-async-to-generator@7.22.9(@babel/core@7.4.5): - resolution: {integrity: sha512-8WWC4oR4Px+tr+Fp0X3RHDVfINGpF3ad1HIbrc8A77epiR6eMMc6jsgozkzT2uDiOOdoS9cLIQ+XD2XvI2WSmQ==} + /@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.4.5): + resolution: {integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.4.5 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-wrap-function': 7.22.9 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-wrap-function': 7.22.20 dev: true - /@babel/helper-remap-async-to-generator@7.22.9(@babel/core@7.9.0): - resolution: {integrity: sha512-8WWC4oR4Px+tr+Fp0X3RHDVfINGpF3ad1HIbrc8A77epiR6eMMc6jsgozkzT2uDiOOdoS9cLIQ+XD2XvI2WSmQ==} + /@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.9.0): + resolution: {integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.9.0 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-wrap-function': 7.22.9 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-wrap-function': 7.22.20 dev: true - /@babel/helper-replace-supers@7.22.9(@babel/core@7.18.2): - resolution: {integrity: sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg==} + /@babel/helper-replace-supers@7.22.20(@babel/core@7.18.2): + resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.18.2 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-member-expression-to-functions': 7.22.5 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-member-expression-to-functions': 7.23.0 '@babel/helper-optimise-call-expression': 7.22.5 dev: true - /@babel/helper-replace-supers@7.22.9(@babel/core@7.2.2): - resolution: {integrity: sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg==} + /@babel/helper-replace-supers@7.22.20(@babel/core@7.2.2): + resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.2.2 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-member-expression-to-functions': 7.22.5 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-member-expression-to-functions': 7.23.0 '@babel/helper-optimise-call-expression': 7.22.5 dev: true - /@babel/helper-replace-supers@7.22.9(@babel/core@7.22.9): - resolution: {integrity: sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg==} + /@babel/helper-replace-supers@7.22.20(@babel/core@7.23.2): + resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.9 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-member-expression-to-functions': 7.22.5 + '@babel/core': 7.23.2 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-member-expression-to-functions': 7.23.0 '@babel/helper-optimise-call-expression': 7.22.5 - /@babel/helper-replace-supers@7.22.9(@babel/core@7.4.4): - resolution: {integrity: sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg==} + /@babel/helper-replace-supers@7.22.20(@babel/core@7.4.4): + resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.4.4 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-member-expression-to-functions': 7.22.5 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-member-expression-to-functions': 7.23.0 '@babel/helper-optimise-call-expression': 7.22.5 dev: true - /@babel/helper-replace-supers@7.22.9(@babel/core@7.4.5): - resolution: {integrity: sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg==} + /@babel/helper-replace-supers@7.22.20(@babel/core@7.4.5): + resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.4.5 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-member-expression-to-functions': 7.22.5 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-member-expression-to-functions': 7.23.0 '@babel/helper-optimise-call-expression': 7.22.5 dev: true - /@babel/helper-replace-supers@7.22.9(@babel/core@7.9.0): - resolution: {integrity: sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg==} + /@babel/helper-replace-supers@7.22.20(@babel/core@7.9.0): + resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.9.0 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-member-expression-to-functions': 7.22.5 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-member-expression-to-functions': 7.23.0 '@babel/helper-optimise-call-expression': 7.22.5 dev: true @@ -3539,76 +3420,76 @@ packages: resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.5 + '@babel/types': 7.23.0 /@babel/helper-skip-transparent-expression-wrappers@7.22.5: resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.5 + '@babel/types': 7.23.0 /@babel/helper-split-export-declaration@7.22.6: resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==} engines: {node: '>=6.9.0'} dependencies: - '@babel/types': 7.22.5 + '@babel/types': 7.23.0 /@babel/helper-string-parser@7.22.5: resolution: {integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==} engines: {node: '>=6.9.0'} - /@babel/helper-validator-identifier@7.22.5: - resolution: {integrity: sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==} + /@babel/helper-validator-identifier@7.22.20: + resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==} engines: {node: '>=6.9.0'} - /@babel/helper-validator-option@7.22.5: - resolution: {integrity: sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==} + /@babel/helper-validator-option@7.22.15: + resolution: {integrity: sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==} engines: {node: '>=6.9.0'} - /@babel/helper-wrap-function@7.22.9: - resolution: {integrity: sha512-sZ+QzfauuUEfxSEjKFmi3qDSHgLsTPK/pEpoD/qonZKOtTPTLbf59oabPQ4rKekt9lFcj/hTZaOhWwFYrgjk+Q==} + /@babel/helper-wrap-function@7.22.20: + resolution: {integrity: sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-function-name': 7.22.5 - '@babel/template': 7.22.5 - '@babel/types': 7.22.5 + '@babel/helper-function-name': 7.23.0 + '@babel/template': 7.22.15 + '@babel/types': 7.23.0 - /@babel/helpers@7.22.6: - resolution: {integrity: sha512-YjDs6y/fVOYFV8hAf1rxd1QvR9wJe1pDBZ2AREKq/SDayfPzgk0PBnVuTCE5X1acEpMMNOVUqoe+OwiZGJ+OaA==} + /@babel/helpers@7.23.2: + resolution: {integrity: sha512-lzchcp8SjTSVe/fPmLwtWVBFC7+Tbn8LGHDVfDp9JGxpAY5opSaEFgt8UQvrnECWOTdji2mOWMz1rOhkHscmGQ==} engines: {node: '>=6.9.0'} dependencies: - '@babel/template': 7.22.5 - '@babel/traverse': 7.22.8(supports-color@5.5.0) - '@babel/types': 7.22.5 + '@babel/template': 7.22.15 + '@babel/traverse': 7.23.2(supports-color@5.5.0) + '@babel/types': 7.23.0 transitivePeerDependencies: - supports-color - /@babel/highlight@7.22.5: - resolution: {integrity: sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw==} + /@babel/highlight@7.22.20: + resolution: {integrity: sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==} engines: {node: '>=6.9.0'} dependencies: - '@babel/helper-validator-identifier': 7.22.5 + '@babel/helper-validator-identifier': 7.22.20 chalk: 2.4.2 js-tokens: 4.0.0 - /@babel/parser@7.22.7: - resolution: {integrity: sha512-7NF8pOkHP5o2vpmGgNGcfAeCvOYhGLyA3Z4eBQkT1RJlWu47n63bCs93QfJ2hIAFCil7L5P2IWhs1oToVgrL0Q==} + /@babel/parser@7.23.0: + resolution: {integrity: sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==} engines: {node: '>=6.0.0'} hasBin: true dependencies: - '@babel/types': 7.22.5 + '@babel/types': 7.23.0 - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.5(@babel/core@7.22.9): - resolution: {integrity: sha512-NP1M5Rf+u2Gw9qfSO4ihjcTGW5zXTi36ITLd4/EoAcEhIZ0yjMqmftDNl3QC19CX7olhrjpyU454g/2W7X0jvQ==} + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.15(@babel/core@7.23.2): + resolution: {integrity: sha512-FB9iYlz7rURmRJyXRKEnalYPPdn87H5no108cyuQQyMwlpJ2SJtpIUBI27kdTin956pz+LPypkPVPUTlxOmrsg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.5(@babel/core@7.4.4): - resolution: {integrity: sha512-NP1M5Rf+u2Gw9qfSO4ihjcTGW5zXTi36ITLd4/EoAcEhIZ0yjMqmftDNl3QC19CX7olhrjpyU454g/2W7X0jvQ==} + /@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.15(@babel/core@7.4.4): + resolution: {integrity: sha512-FB9iYlz7rURmRJyXRKEnalYPPdn87H5no108cyuQQyMwlpJ2SJtpIUBI27kdTin956pz+LPypkPVPUTlxOmrsg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 @@ -3617,19 +3498,19 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.5(@babel/core@7.22.9): - resolution: {integrity: sha512-31Bb65aZaUwqCbWMnZPduIZxCBngHFlzyN6Dq6KAJjtx+lx6ohKHubc61OomYi7XwVD4Ol0XCVz4h+pYFR048g==} + /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.15(@babel/core@7.23.2): + resolution: {integrity: sha512-Hyph9LseGvAeeXzikV88bczhsrLrIZqDPxO+sSmAunMPaGrBGhfMWzCPYTtiW9t+HzSE2wtV8e5cc5P6r1xMDQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.13.0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-transform-optional-chaining': 7.22.6(@babel/core@7.22.9) + '@babel/plugin-transform-optional-chaining': 7.23.0(@babel/core@7.23.2) - /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.5(@babel/core@7.4.4): - resolution: {integrity: sha512-31Bb65aZaUwqCbWMnZPduIZxCBngHFlzyN6Dq6KAJjtx+lx6ohKHubc61OomYi7XwVD4Ol0XCVz4h+pYFR048g==} + /@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.15(@babel/core@7.4.4): + resolution: {integrity: sha512-Hyph9LseGvAeeXzikV88bczhsrLrIZqDPxO+sSmAunMPaGrBGhfMWzCPYTtiW9t+HzSE2wtV8e5cc5P6r1xMDQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.13.0 @@ -3637,129 +3518,129 @@ packages: '@babel/core': 7.4.4 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-transform-optional-chaining': 7.22.6(@babel/core@7.4.4) - dev: true - - /@babel/plugin-external-helpers@7.22.5(@babel/core@7.22.9): - resolution: {integrity: sha512-ngnNEWxmykPk82mH4ajZT0qTztr3Je6hrMuKAslZVM8G1YZTENJSYwrIGtt6KOtznug3exmAtF4so/nPqJuA4A==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.9 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/plugin-transform-optional-chaining': 7.23.0(@babel/core@7.4.4) dev: true /@babel/plugin-proposal-async-generator-functions@7.2.0(@babel/core@7.4.5): resolution: {integrity: sha512-+Dfo/SCQqrwx48ptLVGLdE39YtWRuKc/Y9I5Fy0P1DDBB9lsAHpjcEJQt+4IifuSOSTLBKJObJqMvaO1pIE8LQ==} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-async-generator-functions instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.4.5 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.22.9(@babel/core@7.4.5) + '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.4.5) '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.4.5) dev: true /@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.18.2): resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-async-generator-functions instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.2 - '@babel/helper-environment-visitor': 7.22.5 + '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.22.9(@babel/core@7.18.2) + '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.18.2) '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.18.2) dev: true /@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.2.2): resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-async-generator-functions instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.2.2 - '@babel/helper-environment-visitor': 7.22.5 + '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.22.9(@babel/core@7.2.2) + '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.2.2) '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.2.2) dev: true - /@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.22.9): + /@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.23.2): resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-async-generator-functions instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 - '@babel/helper-environment-visitor': 7.22.5 + '@babel/core': 7.23.2 + '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.22.9(@babel/core@7.22.9) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.9) + '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.2) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.2) dev: false /@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.9.0): resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-async-generator-functions instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.9.0 - '@babel/helper-environment-visitor': 7.22.5 + '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.22.9(@babel/core@7.9.0) + '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.9.0) '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.9.0) dev: true /@babel/plugin-proposal-class-properties@7.12.1(@babel/core@7.18.2): resolution: {integrity: sha512-cKp3dlQsFsEs5CWKnN7BnSHOd0EOW8EKpEjkoz1pO2E5KzIDNV9Ros1b0CnmbVgAGXJubOYVBOGCT1OmJwOI7w==} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.2 - '@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.18.2) + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.18.2) '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.22.9): + /@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.23.2): resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 - '@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.22.9) + '@babel/core': 7.23.2 + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2) '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-proposal-class-properties@7.2.3(@babel/core@7.2.2): resolution: {integrity: sha512-FVuQngLoN2iDrpW7LmhPZ2sO4DJxf35FOcwidwB9Ru9tMvI5URthnkVHuG14IStV+TzkMTyLMoOUlSTtrdVwqw==} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.2.2 - '@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.2.2) + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.2.2) '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-proposal-class-properties@7.4.4(@babel/core@7.4.5): resolution: {integrity: sha512-WjKTI8g8d5w1Bc9zgwSz2nfrsNQsXcCf9J9cdCvrJV6RF56yztwm4TmJC0MgJ9tvwO9gUA/mcYe89bLdGfiXFg==} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.4.5 - '@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.4.5) + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.4.5) '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-proposal-class-properties@7.8.3(@babel/core@7.9.0): resolution: {integrity: sha512-EqFhbo7IosdgPgZggHaNObkmO1kNUe3slaKu54d5OWvy+p9QIKOzK1GAEpAIsZtWVtPXUHSMcT4smvDrCfY4AA==} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.9.0 - '@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.9.0) + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.9.0) '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -3769,34 +3650,34 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.2 - '@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.18.2) + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.18.2) '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-decorators': 7.22.5(@babel/core@7.18.2) + '@babel/plugin-syntax-decorators': 7.22.10(@babel/core@7.18.2) dev: true - /@babel/plugin-proposal-decorators@7.22.7(@babel/core@7.22.9): - resolution: {integrity: sha512-omXqPF7Onq4Bb7wHxXjM3jSMSJvUUbvDvmmds7KI5n9Cq6Ln5I05I1W2nRlRof1rGdiUxJrxwe285WF96XlBXQ==} + /@babel/plugin-proposal-decorators@7.23.2(@babel/core@7.23.2): + resolution: {integrity: sha512-eR0gJQc830fJVGz37oKLvt9W9uUIQSAovUl0e9sJ3YeO09dlcoBVYD3CLrjCj4qHdXmfiyTyFt8yeQYSN5fxLg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 - '@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.22.9) + '@babel/core': 7.23.2 + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2) '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.9(@babel/core@7.22.9) + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.2) '@babel/helper-split-export-declaration': 7.22.6 - '@babel/plugin-syntax-decorators': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-syntax-decorators': 7.22.10(@babel/core@7.23.2) dev: true - /@babel/plugin-proposal-decorators@7.4.4(@babel/core@7.22.9): + /@babel/plugin-proposal-decorators@7.4.4(@babel/core@7.23.2): resolution: {integrity: sha512-z7MpQz3XC/iQJWXH9y+MaWcLPNSMY9RQSthrLzak8R8hCj0fuyNk+Dzi9kfNe/JxxlWQ2g7wkABbgWjW36MTcw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 - '@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.22.9) + '@babel/core': 7.23.2 + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2) '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-decorators': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-syntax-decorators': 7.22.10(@babel/core@7.23.2) dev: true /@babel/plugin-proposal-decorators@7.4.4(@babel/core@7.4.5): @@ -3805,9 +3686,9 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.4.5 - '@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.4.5) + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.4.5) '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-decorators': 7.22.5(@babel/core@7.4.5) + '@babel/plugin-syntax-decorators': 7.22.10(@babel/core@7.4.5) dev: true /@babel/plugin-proposal-decorators@7.8.3(@babel/core@7.9.0): @@ -3816,9 +3697,9 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.9.0 - '@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.9.0) + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.9.0) '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-decorators': 7.22.5(@babel/core@7.9.0) + '@babel/plugin-syntax-decorators': 7.22.10(@babel/core@7.9.0) dev: true /@babel/plugin-proposal-do-expressions@7.12.1(@babel/core@7.18.2): @@ -3844,6 +3725,7 @@ packages: /@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.18.2): resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-dynamic-import instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -3855,6 +3737,7 @@ packages: /@babel/plugin-proposal-dynamic-import@7.18.6(@babel/core@7.9.0): resolution: {integrity: sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-dynamic-import instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -3883,19 +3766,20 @@ packages: '@babel/plugin-syntax-export-default-from': 7.22.5(@babel/core@7.4.5) dev: true - /@babel/plugin-proposal-export-default-from@7.22.5(@babel/core@7.22.9): - resolution: {integrity: sha512-UCe1X/hplyv6A5g2WnQ90tnHRvYL29dabCWww92lO7VdfMVTVReBTRrhiMrKQejHD9oVkdnRdwYuzUZkBVQisg==} + /@babel/plugin-proposal-export-default-from@7.22.17(@babel/core@7.23.2): + resolution: {integrity: sha512-cop/3quQBVvdz6X5SJC6AhUv3C9DrVTM06LUEXimEdWAhCSyOJIr9NiZDU9leHZ0/aiG0Sh7Zmvaku5TWYNgbA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-export-default-from': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-syntax-export-default-from': 7.22.5(@babel/core@7.23.2) dev: false /@babel/plugin-proposal-export-namespace-from@7.12.1(@babel/core@7.18.2): resolution: {integrity: sha512-6CThGf0irEkzujYS5LQcjBx8j/4aQGiVv7J9+2f7pGfxqyKh3WnmVJYW3hdrQjyksErMGBPQrCnHfOtna+WLbw==} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-export-namespace-from instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -3906,6 +3790,7 @@ packages: /@babel/plugin-proposal-export-namespace-from@7.2.0(@babel/core@7.4.5): resolution: {integrity: sha512-DZUxbHYxQ5fUFIkMEnh75ogEdBLPfL+mQUqrO2hNY2LGm+tqFnxE924+mhAcCOh/8za8AaZsWHbq6bBoS3TAzA==} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-export-namespace-from instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -3927,6 +3812,7 @@ packages: /@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.18.2): resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-json-strings instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -3938,6 +3824,7 @@ packages: /@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.2.2): resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-json-strings instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -3949,6 +3836,7 @@ packages: /@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.4.5): resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-json-strings instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -3960,6 +3848,7 @@ packages: /@babel/plugin-proposal-json-strings@7.18.6(@babel/core@7.9.0): resolution: {integrity: sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-json-strings instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -3971,6 +3860,7 @@ packages: /@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.18.2): resolution: {integrity: sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-logical-assignment-operators instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -3981,6 +3871,7 @@ packages: /@babel/plugin-proposal-nullish-coalescing-operator@7.12.1(@babel/core@7.18.2): resolution: {integrity: sha512-nZY0ESiaQDI1y96+jk6VxMOaL4LPo/QDHBqL+SF3/vl6dHkTwHlOI8L4ZwuRBHgakRBw5zsVylel7QPbbGuYgg==} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -3989,20 +3880,21 @@ packages: '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.18.2) dev: true - /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.22.9): + /@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.23.2): resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==} engines: {node: '>=6.9.0'} deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.9) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.2) dev: false /@babel/plugin-proposal-nullish-coalescing-operator@7.4.4(@babel/core@7.4.5): resolution: {integrity: sha512-Amph7Epui1Dh/xxUxS2+K22/MUi6+6JVTvy3P58tja3B6yKTSjwwx0/d83rF7551D6PVSSoplQb8GCwqec7HRw==} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -4013,6 +3905,7 @@ packages: /@babel/plugin-proposal-nullish-coalescing-operator@7.8.3(@babel/core@7.9.0): resolution: {integrity: sha512-TS9MlfzXpXKt6YYomudb/KU7nQI6/xnapG6in1uZxoxDghuSMZsPb6D2fyUwNYSAp4l1iR7QtFOjkqcRYcUsfw==} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -4024,6 +3917,7 @@ packages: /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.18.2): resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-numeric-separator instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -4032,19 +3926,21 @@ packages: '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.18.2) dev: true - /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.22.9): + /@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.23.2): resolution: {integrity: sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-numeric-separator instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.9) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.2) dev: false /@babel/plugin-proposal-numeric-separator@7.8.3(@babel/core@7.9.0): resolution: {integrity: sha512-jWioO1s6R/R+wEHizfaScNsAx+xKgwTLNXSh7tTC4Usj3ItsPEhYkEpU4h+lpnBwq7NBVOJXfO6cRFYcX69JUQ==} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-numeric-separator instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -4055,17 +3951,19 @@ packages: /@babel/plugin-proposal-object-rest-spread@7.12.1(@babel/core@7.12.9): resolution: {integrity: sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA==} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.12.9 '@babel/helper-plugin-utils': 7.10.4 '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.12.9) - '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.12.9) + '@babel/plugin-transform-parameters': 7.22.15(@babel/core@7.12.9) dev: true /@babel/plugin-proposal-object-rest-spread@7.2.0(@babel/core@7.2.2): resolution: {integrity: sha512-1L5mWLSvR76XYUQJXkd/EEQgjq8HHRP6lQuZTTg0VA4tTGPpGemmCdAfQIz1rzEuWAm+ecP8PyyEm30jC1eQCg==} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -4077,46 +3975,50 @@ packages: /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.18.2): resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.22.9 + '@babel/compat-data': 7.23.2 '@babel/core': 7.18.2 - '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.18.2) + '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.18.2) - '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.18.2) + '@babel/plugin-transform-parameters': 7.22.15(@babel/core@7.18.2) dev: true - /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.22.9): + /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.23.2): resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.22.9 - '@babel/core': 7.22.9 - '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.9) + '@babel/compat-data': 7.23.2 + '@babel/core': 7.23.2 + '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.9) - '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-transform-parameters': 7.22.15(@babel/core@7.23.2) /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.9.0): resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.22.9 + '@babel/compat-data': 7.23.2 '@babel/core': 7.9.0 - '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.9.0) + '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.9.0) - '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.9.0) + '@babel/plugin-transform-parameters': 7.22.15(@babel/core@7.9.0) dev: true /@babel/plugin-proposal-object-rest-spread@7.4.4(@babel/core@7.4.5): resolution: {integrity: sha512-dMBG6cSPBbHeEBdFXeQ2QLc5gUpg4Vkaz8octD4aoW/ISO+jBOcsuxYL7bsb5WSu8RLP6boxrBIALEHgoHtO9g==} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-object-rest-spread instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -4128,6 +4030,7 @@ packages: /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.18.2): resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-catch-binding instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -4139,6 +4042,7 @@ packages: /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.2.2): resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-catch-binding instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -4147,20 +4051,22 @@ packages: '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.2.2) dev: true - /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.22.9): + /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.23.2): resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-catch-binding instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.9) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.2) dev: false /@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.9.0): resolution: {integrity: sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-catch-binding instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -4171,6 +4077,7 @@ packages: /@babel/plugin-proposal-optional-catch-binding@7.2.0(@babel/core@7.4.5): resolution: {integrity: sha512-mgYj3jCcxug6KUcX4OBoOJz3CMrwRfQELPQ5560F70YQUBZB7uac9fqaWamKR1iWUzGiK2t0ygzjTScZnVz75g==} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-catch-binding instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -4181,6 +4088,7 @@ packages: /@babel/plugin-proposal-optional-chaining@7.12.1(@babel/core@7.18.2): resolution: {integrity: sha512-c2uRpY6WzaVDzynVY9liyykS+kVU+WRZPMPYpkelXH8KBt1oXoI89kPbZKKG/jDT5UK92FTW2fZkZaJhdiBabw==} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -4192,6 +4100,7 @@ packages: /@babel/plugin-proposal-optional-chaining@7.2.0(@babel/core@7.4.5): resolution: {integrity: sha512-ea3Q6edZC/55wEBVZAEz42v528VulyO0eir+7uky/sT4XRcdkWJcFi1aPtitTlwUzGnECWJNExWww1SStt+yWw==} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -4200,21 +4109,22 @@ packages: '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.4.5) dev: true - /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.22.9): + /@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.23.2): resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==} engines: {node: '>=6.9.0'} deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.9) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.2) dev: false /@babel/plugin-proposal-optional-chaining@7.9.0(@babel/core@7.9.0): resolution: {integrity: sha512-NDn5tu3tcv4W30jNhmc2hyD5c56G6cXx4TesJubhxrJeCvuuMpttxr0OnNCqbZGhFjLrg+NIhxxC+BK5F6yS3w==} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: @@ -4236,21 +4146,22 @@ packages: /@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.18.2): resolution: {integrity: sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-methods instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.2 - '@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.18.2) + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.18.2) '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.22.9): + /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.2): resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 /@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.4.4): resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==} @@ -4261,81 +4172,65 @@ packages: '@babel/core': 7.4.4 dev: true - /@babel/plugin-proposal-private-property-in-object@7.21.11(@babel/core@7.22.9): + /@babel/plugin-proposal-private-property-in-object@7.21.11(@babel/core@7.23.2): resolution: {integrity: sha512-0QZ8qP/3RLDVBwBFoWAwCtgcDZJVwA5LUJRZU8x2YFfKNuFq161wK3cuGrALu5yiPu+vzwTAg/sMWVNeWeNyaw==} engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-property-in-object instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.22.9) + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2) '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.22.9) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.2) dev: true /@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.18.2): resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==} engines: {node: '>=4'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-unicode-property-regex instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.2 - '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.18.2) + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.18.2) '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.2.2): resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==} engines: {node: '>=4'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-unicode-property-regex instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.2.2 - '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.2.2) - '@babel/helper-plugin-utils': 7.22.5 - dev: true - - /@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.22.9): - resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==} - engines: {node: '>=4'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.22.9 - '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.22.9) - '@babel/helper-plugin-utils': 7.22.5 - - /@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.4.4): - resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==} - engines: {node: '>=4'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.4.4 - '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.4.4) + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.2.2) '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.4.5): resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==} engines: {node: '>=4'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-unicode-property-regex instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.4.5 - '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.4.5) + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.4.5) '@babel/helper-plugin-utils': 7.22.5 dev: true /@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.9.0): resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==} engines: {node: '>=4'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-unicode-property-regex instead. peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.9.0 - '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.9.0) + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.9.0) '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -4366,12 +4261,12 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.22.9): + /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.23.2): resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.4.4): @@ -4410,12 +4305,12 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: false - /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.22.9): + /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.23.2): resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -4437,12 +4332,12 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: false - /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.22.9): + /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.23.2): resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.4.4): @@ -4454,13 +4349,13 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.22.9): + /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.23.2): resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.4.4): @@ -4473,8 +4368,8 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-decorators@7.22.5(@babel/core@7.18.2): - resolution: {integrity: sha512-avpUOBS7IU6al8MmF1XpAyj9QYeLPuSDJI5D4pVMSMdL7xQokKqJPYQC67RCT0aCTashUXPiGwMJ0DEXXCEmMA==} + /@babel/plugin-syntax-decorators@7.22.10(@babel/core@7.18.2): + resolution: {integrity: sha512-z1KTVemBjnz+kSEilAsI4lbkPOl5TvJH7YDSY1CTIzvLWJ+KHXp+mRe8VPmfnyvqOPqar1V2gid2PleKzRUstQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -4483,18 +4378,18 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-decorators@7.22.5(@babel/core@7.22.9): - resolution: {integrity: sha512-avpUOBS7IU6al8MmF1XpAyj9QYeLPuSDJI5D4pVMSMdL7xQokKqJPYQC67RCT0aCTashUXPiGwMJ0DEXXCEmMA==} + /@babel/plugin-syntax-decorators@7.22.10(@babel/core@7.23.2): + resolution: {integrity: sha512-z1KTVemBjnz+kSEilAsI4lbkPOl5TvJH7YDSY1CTIzvLWJ+KHXp+mRe8VPmfnyvqOPqar1V2gid2PleKzRUstQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-decorators@7.22.5(@babel/core@7.4.5): - resolution: {integrity: sha512-avpUOBS7IU6al8MmF1XpAyj9QYeLPuSDJI5D4pVMSMdL7xQokKqJPYQC67RCT0aCTashUXPiGwMJ0DEXXCEmMA==} + /@babel/plugin-syntax-decorators@7.22.10(@babel/core@7.4.5): + resolution: {integrity: sha512-z1KTVemBjnz+kSEilAsI4lbkPOl5TvJH7YDSY1CTIzvLWJ+KHXp+mRe8VPmfnyvqOPqar1V2gid2PleKzRUstQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -4503,8 +4398,8 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-decorators@7.22.5(@babel/core@7.9.0): - resolution: {integrity: sha512-avpUOBS7IU6al8MmF1XpAyj9QYeLPuSDJI5D4pVMSMdL7xQokKqJPYQC67RCT0aCTashUXPiGwMJ0DEXXCEmMA==} + /@babel/plugin-syntax-decorators@7.22.10(@babel/core@7.9.0): + resolution: {integrity: sha512-z1KTVemBjnz+kSEilAsI4lbkPOl5TvJH7YDSY1CTIzvLWJ+KHXp+mRe8VPmfnyvqOPqar1V2gid2PleKzRUstQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -4560,12 +4455,12 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.22.9): + /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.23.2): resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.4.4): @@ -4596,13 +4491,13 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-export-default-from@7.22.5(@babel/core@7.22.9): + /@babel/plugin-syntax-export-default-from@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-ODAqWWXB/yReh/jVQDag/3/tl6lgBueQkk/TcfW/59Oykm4c8a55XloX0CTk2k2VJiFWMgHby9xNX29IbCv9dQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 dev: false @@ -4625,12 +4520,12 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.22.9): + /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.23.2): resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.4.4): @@ -4661,13 +4556,13 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-flow@7.22.5(@babel/core@7.22.9): + /@babel/plugin-syntax-flow@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-9RdCl0i+q0QExayk2nOS7853w08yLucnnPML6EN9S8fgMPVtdLDCdx/cOQ/i44Lb9UeQX9A35yaqBBOMMZxPxQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-syntax-flow@7.22.5(@babel/core@7.9.0): @@ -4690,13 +4585,13 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-import-assertions@7.22.5(@babel/core@7.22.9): + /@babel/plugin-syntax-import-assertions@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-syntax-import-assertions@7.22.5(@babel/core@7.4.4): @@ -4709,13 +4604,13 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-import-attributes@7.22.5(@babel/core@7.22.9): + /@babel/plugin-syntax-import-attributes@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-syntax-import-attributes@7.22.5(@babel/core@7.4.4): @@ -4737,12 +4632,12 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: false - /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.22.9): + /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.23.2): resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.4.4): @@ -4781,12 +4676,12 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.22.9): + /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.23.2): resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.4.4): @@ -4845,13 +4740,13 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.22.9): + /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.4.5): @@ -4892,12 +4787,12 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: false - /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.22.9): + /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.23.2): resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.4.4): @@ -4927,12 +4822,12 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: false - /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.22.9): + /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.23.2): resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.4.4): @@ -4980,12 +4875,12 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: false - /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.22.9): + /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.23.2): resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.4.4): @@ -5042,12 +4937,12 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.22.9): + /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.23.2): resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.4.4): @@ -5104,12 +4999,12 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.22.9): + /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.23.2): resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.4.4): @@ -5157,12 +5052,12 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: false - /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.22.9): + /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.23.2): resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.4.4): @@ -5202,13 +5097,13 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.22.9): + /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.23.2): resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.4.4): @@ -5241,13 +5136,13 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: false - /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.22.9): + /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.23.2): resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.4.4): @@ -5290,13 +5185,13 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.22.9): + /@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.4.5): @@ -5319,14 +5214,14 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.22.9): + /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.23.2): resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.9 - '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.22.9) + '@babel/core': 7.23.2 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.2) '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.4.4): @@ -5336,7 +5231,7 @@ packages: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.4.4 - '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.4.4) + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.4.4) '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -5360,13 +5255,13 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-arrow-functions@7.22.5(@babel/core@7.22.9): + /@babel/plugin-transform-arrow-functions@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-arrow-functions@7.22.5(@babel/core@7.4.4): @@ -5399,28 +5294,28 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-async-generator-functions@7.22.7(@babel/core@7.22.9): - resolution: {integrity: sha512-7HmE7pk/Fmke45TODvxvkxRMV9RazV+ZZzhOL9AG8G29TLrr3jkjwF7uJfxZ30EoXpO+LJkq4oA8NjO2DTnEDg==} + /@babel/plugin-transform-async-generator-functions@7.23.2(@babel/core@7.23.2): + resolution: {integrity: sha512-BBYVGxbDVHfoeXbOwcagAkOQAm9NxoTdMGfTqghu1GrvadSaw6iW3Je6IcL5PNOw8VwjxqBECXy50/iCQSY/lQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 - '@babel/helper-environment-visitor': 7.22.5 + '@babel/core': 7.23.2 + '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.22.9(@babel/core@7.22.9) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.9) + '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.2) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.2) - /@babel/plugin-transform-async-generator-functions@7.22.7(@babel/core@7.4.4): - resolution: {integrity: sha512-7HmE7pk/Fmke45TODvxvkxRMV9RazV+ZZzhOL9AG8G29TLrr3jkjwF7uJfxZ30EoXpO+LJkq4oA8NjO2DTnEDg==} + /@babel/plugin-transform-async-generator-functions@7.23.2(@babel/core@7.4.4): + resolution: {integrity: sha512-BBYVGxbDVHfoeXbOwcagAkOQAm9NxoTdMGfTqghu1GrvadSaw6iW3Je6IcL5PNOw8VwjxqBECXy50/iCQSY/lQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.4.4 - '@babel/helper-environment-visitor': 7.22.5 + '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.22.9(@babel/core@7.4.4) + '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.4.4) '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.4.4) dev: true @@ -5431,9 +5326,9 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.2 - '@babel/helper-module-imports': 7.22.5 + '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.22.9(@babel/core@7.18.2) + '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.18.2) dev: true /@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.2.2): @@ -5443,21 +5338,21 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.2.2 - '@babel/helper-module-imports': 7.22.5 + '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.22.9(@babel/core@7.2.2) + '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.2.2) dev: true - /@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.22.9): + /@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 - '@babel/helper-module-imports': 7.22.5 + '@babel/core': 7.23.2 + '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.22.9(@babel/core@7.22.9) + '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.2) /@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.4.4): resolution: {integrity: sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==} @@ -5466,9 +5361,9 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.4.4 - '@babel/helper-module-imports': 7.22.5 + '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.22.9(@babel/core@7.4.4) + '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.4.4) dev: true /@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.4.5): @@ -5478,9 +5373,9 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.4.5 - '@babel/helper-module-imports': 7.22.5 + '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.22.9(@babel/core@7.4.5) + '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.4.5) dev: true /@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.9.0): @@ -5490,9 +5385,9 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.9.0 - '@babel/helper-module-imports': 7.22.5 + '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-remap-async-to-generator': 7.22.9(@babel/core@7.9.0) + '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.9.0) dev: true /@babel/plugin-transform-block-scoped-functions@7.22.5(@babel/core@7.18.2): @@ -5515,13 +5410,13 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-block-scoped-functions@7.22.5(@babel/core@7.22.9): + /@babel/plugin-transform-block-scoped-functions@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-block-scoped-functions@7.22.5(@babel/core@7.4.4): @@ -5554,8 +5449,8 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-block-scoping@7.22.5(@babel/core@7.18.2): - resolution: {integrity: sha512-EcACl1i5fSQ6bt+YGuU/XGCeZKStLmyVGytWkpyhCLeQVA0eu6Wtiw92V+I1T/hnezUv7j74dA/Ro69gWcU+hg==} + /@babel/plugin-transform-block-scoping@7.23.0(@babel/core@7.18.2): + resolution: {integrity: sha512-cOsrbmIOXmf+5YbL99/S49Y3j46k/T16b9ml8bm9lP6N9US5iQ2yBK7gpui1pg0V/WMcXdkfKbTb7HXq9u+v4g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -5564,8 +5459,8 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-block-scoping@7.22.5(@babel/core@7.2.2): - resolution: {integrity: sha512-EcACl1i5fSQ6bt+YGuU/XGCeZKStLmyVGytWkpyhCLeQVA0eu6Wtiw92V+I1T/hnezUv7j74dA/Ro69gWcU+hg==} + /@babel/plugin-transform-block-scoping@7.23.0(@babel/core@7.2.2): + resolution: {integrity: sha512-cOsrbmIOXmf+5YbL99/S49Y3j46k/T16b9ml8bm9lP6N9US5iQ2yBK7gpui1pg0V/WMcXdkfKbTb7HXq9u+v4g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -5574,17 +5469,17 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-block-scoping@7.22.5(@babel/core@7.22.9): - resolution: {integrity: sha512-EcACl1i5fSQ6bt+YGuU/XGCeZKStLmyVGytWkpyhCLeQVA0eu6Wtiw92V+I1T/hnezUv7j74dA/Ro69gWcU+hg==} + /@babel/plugin-transform-block-scoping@7.23.0(@babel/core@7.23.2): + resolution: {integrity: sha512-cOsrbmIOXmf+5YbL99/S49Y3j46k/T16b9ml8bm9lP6N9US5iQ2yBK7gpui1pg0V/WMcXdkfKbTb7HXq9u+v4g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-block-scoping@7.22.5(@babel/core@7.4.4): - resolution: {integrity: sha512-EcACl1i5fSQ6bt+YGuU/XGCeZKStLmyVGytWkpyhCLeQVA0eu6Wtiw92V+I1T/hnezUv7j74dA/Ro69gWcU+hg==} + /@babel/plugin-transform-block-scoping@7.23.0(@babel/core@7.4.4): + resolution: {integrity: sha512-cOsrbmIOXmf+5YbL99/S49Y3j46k/T16b9ml8bm9lP6N9US5iQ2yBK7gpui1pg0V/WMcXdkfKbTb7HXq9u+v4g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -5593,8 +5488,8 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-block-scoping@7.22.5(@babel/core@7.4.5): - resolution: {integrity: sha512-EcACl1i5fSQ6bt+YGuU/XGCeZKStLmyVGytWkpyhCLeQVA0eu6Wtiw92V+I1T/hnezUv7j74dA/Ro69gWcU+hg==} + /@babel/plugin-transform-block-scoping@7.23.0(@babel/core@7.4.5): + resolution: {integrity: sha512-cOsrbmIOXmf+5YbL99/S49Y3j46k/T16b9ml8bm9lP6N9US5iQ2yBK7gpui1pg0V/WMcXdkfKbTb7HXq9u+v4g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -5603,8 +5498,8 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-block-scoping@7.22.5(@babel/core@7.9.0): - resolution: {integrity: sha512-EcACl1i5fSQ6bt+YGuU/XGCeZKStLmyVGytWkpyhCLeQVA0eu6Wtiw92V+I1T/hnezUv7j74dA/Ro69gWcU+hg==} + /@babel/plugin-transform-block-scoping@7.23.0(@babel/core@7.9.0): + resolution: {integrity: sha512-cOsrbmIOXmf+5YbL99/S49Y3j46k/T16b9ml8bm9lP6N9US5iQ2yBK7gpui1pg0V/WMcXdkfKbTb7HXq9u+v4g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -5613,14 +5508,14 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-class-properties@7.22.5(@babel/core@7.22.9): + /@babel/plugin-transform-class-properties@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 - '@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.22.9) + '@babel/core': 7.23.2 + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2) '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-class-properties@7.22.5(@babel/core@7.4.4): @@ -5630,136 +5525,136 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.4.4 - '@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.4.4) + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.4.4) '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-class-static-block@7.22.5(@babel/core@7.22.9): - resolution: {integrity: sha512-SPToJ5eYZLxlnp1UzdARpOGeC2GbHvr9d/UV0EukuVx8atktg194oe+C5BqQ8jRTkgLRVOPYeXRSBg1IlMoVRA==} + /@babel/plugin-transform-class-static-block@7.22.11(@babel/core@7.23.2): + resolution: {integrity: sha512-GMM8gGmqI7guS/llMFk1bJDkKfn3v3C4KHK9Yg1ey5qcHcOlKb0QvcMrgzvxo+T03/4szNh5lghY+fEC98Kq9g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.12.0 dependencies: - '@babel/core': 7.22.9 - '@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.22.9) + '@babel/core': 7.23.2 + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2) '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.22.9) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.2) - /@babel/plugin-transform-class-static-block@7.22.5(@babel/core@7.4.4): - resolution: {integrity: sha512-SPToJ5eYZLxlnp1UzdARpOGeC2GbHvr9d/UV0EukuVx8atktg194oe+C5BqQ8jRTkgLRVOPYeXRSBg1IlMoVRA==} + /@babel/plugin-transform-class-static-block@7.22.11(@babel/core@7.4.4): + resolution: {integrity: sha512-GMM8gGmqI7guS/llMFk1bJDkKfn3v3C4KHK9Yg1ey5qcHcOlKb0QvcMrgzvxo+T03/4szNh5lghY+fEC98Kq9g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.12.0 dependencies: '@babel/core': 7.4.4 - '@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.4.4) + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.4.4) '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.4.4) dev: true - /@babel/plugin-transform-classes@7.22.6(@babel/core@7.18.2): - resolution: {integrity: sha512-58EgM6nuPNG6Py4Z3zSuu0xWu2VfodiMi72Jt5Kj2FECmaYk1RrTXA45z6KBFsu9tRgwQDwIiY4FXTt+YsSFAQ==} + /@babel/plugin-transform-classes@7.22.15(@babel/core@7.18.2): + resolution: {integrity: sha512-VbbC3PGjBdE0wAWDdHM9G8Gm977pnYI0XpqMd6LrKISj8/DJXEsWqgRuTYaNE9Bv0JGhTZUzHDlMk18IpOuoqw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.2 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.18.2) - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-function-name': 7.22.5 + '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 '@babel/helper-optimise-call-expression': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.9(@babel/core@7.18.2) + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.18.2) '@babel/helper-split-export-declaration': 7.22.6 globals: 11.12.0 dev: true - /@babel/plugin-transform-classes@7.22.6(@babel/core@7.2.2): - resolution: {integrity: sha512-58EgM6nuPNG6Py4Z3zSuu0xWu2VfodiMi72Jt5Kj2FECmaYk1RrTXA45z6KBFsu9tRgwQDwIiY4FXTt+YsSFAQ==} + /@babel/plugin-transform-classes@7.22.15(@babel/core@7.2.2): + resolution: {integrity: sha512-VbbC3PGjBdE0wAWDdHM9G8Gm977pnYI0XpqMd6LrKISj8/DJXEsWqgRuTYaNE9Bv0JGhTZUzHDlMk18IpOuoqw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.2.2 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.2.2) - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-function-name': 7.22.5 + '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 '@babel/helper-optimise-call-expression': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.9(@babel/core@7.2.2) + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.2.2) '@babel/helper-split-export-declaration': 7.22.6 globals: 11.12.0 dev: true - /@babel/plugin-transform-classes@7.22.6(@babel/core@7.22.9): - resolution: {integrity: sha512-58EgM6nuPNG6Py4Z3zSuu0xWu2VfodiMi72Jt5Kj2FECmaYk1RrTXA45z6KBFsu9tRgwQDwIiY4FXTt+YsSFAQ==} + /@babel/plugin-transform-classes@7.22.15(@babel/core@7.23.2): + resolution: {integrity: sha512-VbbC3PGjBdE0wAWDdHM9G8Gm977pnYI0XpqMd6LrKISj8/DJXEsWqgRuTYaNE9Bv0JGhTZUzHDlMk18IpOuoqw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.9) - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-function-name': 7.22.5 + '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 '@babel/helper-optimise-call-expression': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.9(@babel/core@7.22.9) + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.2) '@babel/helper-split-export-declaration': 7.22.6 globals: 11.12.0 - /@babel/plugin-transform-classes@7.22.6(@babel/core@7.4.4): - resolution: {integrity: sha512-58EgM6nuPNG6Py4Z3zSuu0xWu2VfodiMi72Jt5Kj2FECmaYk1RrTXA45z6KBFsu9tRgwQDwIiY4FXTt+YsSFAQ==} + /@babel/plugin-transform-classes@7.22.15(@babel/core@7.4.4): + resolution: {integrity: sha512-VbbC3PGjBdE0wAWDdHM9G8Gm977pnYI0XpqMd6LrKISj8/DJXEsWqgRuTYaNE9Bv0JGhTZUzHDlMk18IpOuoqw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.4.4 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.4.4) - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-function-name': 7.22.5 + '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 '@babel/helper-optimise-call-expression': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.9(@babel/core@7.4.4) + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.4.4) '@babel/helper-split-export-declaration': 7.22.6 globals: 11.12.0 dev: true - /@babel/plugin-transform-classes@7.22.6(@babel/core@7.4.5): - resolution: {integrity: sha512-58EgM6nuPNG6Py4Z3zSuu0xWu2VfodiMi72Jt5Kj2FECmaYk1RrTXA45z6KBFsu9tRgwQDwIiY4FXTt+YsSFAQ==} + /@babel/plugin-transform-classes@7.22.15(@babel/core@7.4.5): + resolution: {integrity: sha512-VbbC3PGjBdE0wAWDdHM9G8Gm977pnYI0XpqMd6LrKISj8/DJXEsWqgRuTYaNE9Bv0JGhTZUzHDlMk18IpOuoqw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.4.5 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.4.5) - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-function-name': 7.22.5 + '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 '@babel/helper-optimise-call-expression': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.9(@babel/core@7.4.5) + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.4.5) '@babel/helper-split-export-declaration': 7.22.6 globals: 11.12.0 dev: true - /@babel/plugin-transform-classes@7.22.6(@babel/core@7.9.0): - resolution: {integrity: sha512-58EgM6nuPNG6Py4Z3zSuu0xWu2VfodiMi72Jt5Kj2FECmaYk1RrTXA45z6KBFsu9tRgwQDwIiY4FXTt+YsSFAQ==} + /@babel/plugin-transform-classes@7.22.15(@babel/core@7.9.0): + resolution: {integrity: sha512-VbbC3PGjBdE0wAWDdHM9G8Gm977pnYI0XpqMd6LrKISj8/DJXEsWqgRuTYaNE9Bv0JGhTZUzHDlMk18IpOuoqw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.9.0 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.9.0) - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-function-name': 7.22.5 + '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 '@babel/helper-optimise-call-expression': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.9(@babel/core@7.9.0) + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.9.0) '@babel/helper-split-export-declaration': 7.22.6 globals: 11.12.0 dev: true @@ -5772,7 +5667,7 @@ packages: dependencies: '@babel/core': 7.18.2 '@babel/helper-plugin-utils': 7.22.5 - '@babel/template': 7.22.5 + '@babel/template': 7.22.15 dev: true /@babel/plugin-transform-computed-properties@7.22.5(@babel/core@7.2.2): @@ -5783,18 +5678,18 @@ packages: dependencies: '@babel/core': 7.2.2 '@babel/helper-plugin-utils': 7.22.5 - '@babel/template': 7.22.5 + '@babel/template': 7.22.15 dev: true - /@babel/plugin-transform-computed-properties@7.22.5(@babel/core@7.22.9): + /@babel/plugin-transform-computed-properties@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 - '@babel/template': 7.22.5 + '@babel/template': 7.22.15 /@babel/plugin-transform-computed-properties@7.22.5(@babel/core@7.4.4): resolution: {integrity: sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==} @@ -5804,7 +5699,7 @@ packages: dependencies: '@babel/core': 7.4.4 '@babel/helper-plugin-utils': 7.22.5 - '@babel/template': 7.22.5 + '@babel/template': 7.22.15 dev: true /@babel/plugin-transform-computed-properties@7.22.5(@babel/core@7.4.5): @@ -5815,7 +5710,7 @@ packages: dependencies: '@babel/core': 7.4.5 '@babel/helper-plugin-utils': 7.22.5 - '@babel/template': 7.22.5 + '@babel/template': 7.22.15 dev: true /@babel/plugin-transform-computed-properties@7.22.5(@babel/core@7.9.0): @@ -5826,7 +5721,7 @@ packages: dependencies: '@babel/core': 7.9.0 '@babel/helper-plugin-utils': 7.22.5 - '@babel/template': 7.22.5 + '@babel/template': 7.22.15 dev: true /@babel/plugin-transform-destructuring@7.2.0(@babel/core@7.2.2): @@ -5838,8 +5733,8 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-destructuring@7.22.5(@babel/core@7.18.2): - resolution: {integrity: sha512-GfqcFuGW8vnEqTUBM7UtPd5A4q797LTvvwKxXTgRsFjoqaJiEg9deBG6kWeQYkVEL569NpnmpC0Pkr/8BLKGnQ==} + /@babel/plugin-transform-destructuring@7.23.0(@babel/core@7.18.2): + resolution: {integrity: sha512-vaMdgNXFkYrB+8lbgniSYWHsgqK5gjaMNcc84bMIOMRLH0L9AqYq3hwMdvnyqj1OPqea8UtjPEuS/DCenah1wg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -5848,17 +5743,17 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-destructuring@7.22.5(@babel/core@7.22.9): - resolution: {integrity: sha512-GfqcFuGW8vnEqTUBM7UtPd5A4q797LTvvwKxXTgRsFjoqaJiEg9deBG6kWeQYkVEL569NpnmpC0Pkr/8BLKGnQ==} + /@babel/plugin-transform-destructuring@7.23.0(@babel/core@7.23.2): + resolution: {integrity: sha512-vaMdgNXFkYrB+8lbgniSYWHsgqK5gjaMNcc84bMIOMRLH0L9AqYq3hwMdvnyqj1OPqea8UtjPEuS/DCenah1wg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-destructuring@7.22.5(@babel/core@7.4.4): - resolution: {integrity: sha512-GfqcFuGW8vnEqTUBM7UtPd5A4q797LTvvwKxXTgRsFjoqaJiEg9deBG6kWeQYkVEL569NpnmpC0Pkr/8BLKGnQ==} + /@babel/plugin-transform-destructuring@7.23.0(@babel/core@7.4.4): + resolution: {integrity: sha512-vaMdgNXFkYrB+8lbgniSYWHsgqK5gjaMNcc84bMIOMRLH0L9AqYq3hwMdvnyqj1OPqea8UtjPEuS/DCenah1wg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -5867,8 +5762,8 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-destructuring@7.22.5(@babel/core@7.9.0): - resolution: {integrity: sha512-GfqcFuGW8vnEqTUBM7UtPd5A4q797LTvvwKxXTgRsFjoqaJiEg9deBG6kWeQYkVEL569NpnmpC0Pkr/8BLKGnQ==} + /@babel/plugin-transform-destructuring@7.23.0(@babel/core@7.9.0): + resolution: {integrity: sha512-vaMdgNXFkYrB+8lbgniSYWHsgqK5gjaMNcc84bMIOMRLH0L9AqYq3hwMdvnyqj1OPqea8UtjPEuS/DCenah1wg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -5893,7 +5788,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.2 - '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.18.2) + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.18.2) '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -5904,18 +5799,18 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.2.2 - '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.2.2) + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.2.2) '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-dotall-regex@7.22.5(@babel/core@7.22.9): + /@babel/plugin-transform-dotall-regex@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 - '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.22.9) + '@babel/core': 7.23.2 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.2) '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-dotall-regex@7.22.5(@babel/core@7.4.4): @@ -5925,7 +5820,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.4.4 - '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.4.4) + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.4.4) '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -5936,7 +5831,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.4.5 - '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.4.5) + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.4.5) '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -5947,7 +5842,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.9.0 - '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.9.0) + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.9.0) '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -5971,13 +5866,13 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-duplicate-keys@7.22.5(@babel/core@7.22.9): + /@babel/plugin-transform-duplicate-keys@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-duplicate-keys@7.22.5(@babel/core@7.4.4): @@ -6010,18 +5905,18 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-dynamic-import@7.22.5(@babel/core@7.22.9): - resolution: {integrity: sha512-0MC3ppTB1AMxd8fXjSrbPa7LT9hrImt+/fcj+Pg5YMD7UQyWp/02+JWpdnCymmsXwIx5Z+sYn1bwCn4ZJNvhqQ==} + /@babel/plugin-transform-dynamic-import@7.22.11(@babel/core@7.23.2): + resolution: {integrity: sha512-g/21plo58sfteWjaO0ZNVb+uEOkJNjAaHhbejrnBmu011l/eNDScmkbjCC3l4FKb10ViaGU4aOkFznSu2zRHgA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.9) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.2) - /@babel/plugin-transform-dynamic-import@7.22.5(@babel/core@7.4.4): - resolution: {integrity: sha512-0MC3ppTB1AMxd8fXjSrbPa7LT9hrImt+/fcj+Pg5YMD7UQyWp/02+JWpdnCymmsXwIx5Z+sYn1bwCn4ZJNvhqQ==} + /@babel/plugin-transform-dynamic-import@7.22.11(@babel/core@7.4.4): + resolution: {integrity: sha512-g/21plo58sfteWjaO0ZNVb+uEOkJNjAaHhbejrnBmu011l/eNDScmkbjCC3l4FKb10ViaGU4aOkFznSu2zRHgA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -6038,7 +5933,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.2 - '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.5 + '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -6049,18 +5944,18 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.2.2 - '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.5 + '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-exponentiation-operator@7.22.5(@babel/core@7.22.9): + /@babel/plugin-transform-exponentiation-operator@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 - '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.5 + '@babel/core': 7.23.2 + '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-exponentiation-operator@7.22.5(@babel/core@7.4.4): @@ -6070,7 +5965,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.4.4 - '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.5 + '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -6081,7 +5976,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.4.5 - '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.5 + '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -6092,22 +5987,22 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.9.0 - '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.5 + '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-export-namespace-from@7.22.5(@babel/core@7.22.9): - resolution: {integrity: sha512-X4hhm7FRnPgd4nDA4b/5V280xCx6oL7Oob5+9qVS5C13Zq4bh1qq7LU0GgRU6b5dBWBvhGaXYVB4AcN6+ol6vg==} + /@babel/plugin-transform-export-namespace-from@7.22.11(@babel/core@7.23.2): + resolution: {integrity: sha512-xa7aad7q7OiT8oNZ1mU7NrISjlSkVdMbNxn9IuLZyL9AJEhs1Apba3I+u5riX1dIkdptP5EKDG5XDPByWxtehw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.22.9) + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.2) - /@babel/plugin-transform-export-namespace-from@7.22.5(@babel/core@7.4.4): - resolution: {integrity: sha512-X4hhm7FRnPgd4nDA4b/5V280xCx6oL7Oob5+9qVS5C13Zq4bh1qq7LU0GgRU6b5dBWBvhGaXYVB4AcN6+ol6vg==} + /@babel/plugin-transform-export-namespace-from@7.22.11(@babel/core@7.4.4): + resolution: {integrity: sha512-xa7aad7q7OiT8oNZ1mU7NrISjlSkVdMbNxn9IuLZyL9AJEhs1Apba3I+u5riX1dIkdptP5EKDG5XDPByWxtehw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -6128,15 +6023,15 @@ packages: '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.2.2) dev: true - /@babel/plugin-transform-flow-strip-types@7.22.5(@babel/core@7.22.9): + /@babel/plugin-transform-flow-strip-types@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-tujNbZdxdG0/54g/oua8ISToaXTFBf8EnSb5PgQSciIXWOWKX3S4+JR7ZE9ol8FZwf9kxitzkGQ+QWeov/mCiA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.23.2) /@babel/plugin-transform-flow-strip-types@7.9.0(@babel/core@7.9.0): resolution: {integrity: sha512-7Qfg0lKQhEHs93FChxVLAvhBshOPQDtJUTVHr/ZwQNRccCm4O9D79r9tVSoV8iNwjP1YgfD+e/fgHcPkN1qEQg==} @@ -6148,8 +6043,8 @@ packages: '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.9.0) dev: true - /@babel/plugin-transform-for-of@7.22.5(@babel/core@7.18.2): - resolution: {integrity: sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A==} + /@babel/plugin-transform-for-of@7.22.15(@babel/core@7.18.2): + resolution: {integrity: sha512-me6VGeHsx30+xh9fbDLLPi0J1HzmeIIyenoOQHuw2D4m2SAU3NrspX5XxJLBpqn5yrLzrlw2Iy3RA//Bx27iOA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -6158,8 +6053,8 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-for-of@7.22.5(@babel/core@7.2.2): - resolution: {integrity: sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A==} + /@babel/plugin-transform-for-of@7.22.15(@babel/core@7.2.2): + resolution: {integrity: sha512-me6VGeHsx30+xh9fbDLLPi0J1HzmeIIyenoOQHuw2D4m2SAU3NrspX5XxJLBpqn5yrLzrlw2Iy3RA//Bx27iOA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -6168,17 +6063,17 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-for-of@7.22.5(@babel/core@7.22.9): - resolution: {integrity: sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A==} + /@babel/plugin-transform-for-of@7.22.15(@babel/core@7.23.2): + resolution: {integrity: sha512-me6VGeHsx30+xh9fbDLLPi0J1HzmeIIyenoOQHuw2D4m2SAU3NrspX5XxJLBpqn5yrLzrlw2Iy3RA//Bx27iOA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-for-of@7.22.5(@babel/core@7.4.4): - resolution: {integrity: sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A==} + /@babel/plugin-transform-for-of@7.22.15(@babel/core@7.4.4): + resolution: {integrity: sha512-me6VGeHsx30+xh9fbDLLPi0J1HzmeIIyenoOQHuw2D4m2SAU3NrspX5XxJLBpqn5yrLzrlw2Iy3RA//Bx27iOA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -6187,8 +6082,8 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-for-of@7.22.5(@babel/core@7.4.5): - resolution: {integrity: sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A==} + /@babel/plugin-transform-for-of@7.22.15(@babel/core@7.4.5): + resolution: {integrity: sha512-me6VGeHsx30+xh9fbDLLPi0J1HzmeIIyenoOQHuw2D4m2SAU3NrspX5XxJLBpqn5yrLzrlw2Iy3RA//Bx27iOA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -6197,8 +6092,8 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-for-of@7.22.5(@babel/core@7.9.0): - resolution: {integrity: sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A==} + /@babel/plugin-transform-for-of@7.22.15(@babel/core@7.9.0): + resolution: {integrity: sha512-me6VGeHsx30+xh9fbDLLPi0J1HzmeIIyenoOQHuw2D4m2SAU3NrspX5XxJLBpqn5yrLzrlw2Iy3RA//Bx27iOA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -6214,8 +6109,8 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.2 - '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.18.2) - '@babel/helper-function-name': 7.22.5 + '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-function-name': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -6226,20 +6121,20 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.2.2 - '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.2.2) - '@babel/helper-function-name': 7.22.5 + '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-function-name': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-function-name@7.22.5(@babel/core@7.22.9): + /@babel/plugin-transform-function-name@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 - '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.9) - '@babel/helper-function-name': 7.22.5 + '@babel/core': 7.23.2 + '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-function-name': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-function-name@7.22.5(@babel/core@7.4.4): @@ -6249,8 +6144,8 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.4.4 - '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.4.4) - '@babel/helper-function-name': 7.22.5 + '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-function-name': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -6261,8 +6156,8 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.4.5 - '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.4.5) - '@babel/helper-function-name': 7.22.5 + '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-function-name': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -6273,23 +6168,23 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.9.0 - '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.9.0) - '@babel/helper-function-name': 7.22.5 + '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-function-name': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-json-strings@7.22.5(@babel/core@7.22.9): - resolution: {integrity: sha512-DuCRB7fu8MyTLbEQd1ew3R85nx/88yMoqo2uPSjevMj3yoN7CDM8jkgrY0wmVxfJZyJ/B9fE1iq7EQppWQmR5A==} + /@babel/plugin-transform-json-strings@7.22.11(@babel/core@7.23.2): + resolution: {integrity: sha512-CxT5tCqpA9/jXFlme9xIBCc5RPtdDq3JpkkhgHQqtDdiTnTI0jtZ0QzXhr5DILeYifDPp2wvY2ad+7+hLMW5Pw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.9) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.2) - /@babel/plugin-transform-json-strings@7.22.5(@babel/core@7.4.4): - resolution: {integrity: sha512-DuCRB7fu8MyTLbEQd1ew3R85nx/88yMoqo2uPSjevMj3yoN7CDM8jkgrY0wmVxfJZyJ/B9fE1iq7EQppWQmR5A==} + /@babel/plugin-transform-json-strings@7.22.11(@babel/core@7.4.4): + resolution: {integrity: sha512-CxT5tCqpA9/jXFlme9xIBCc5RPtdDq3JpkkhgHQqtDdiTnTI0jtZ0QzXhr5DILeYifDPp2wvY2ad+7+hLMW5Pw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -6319,13 +6214,13 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-literals@7.22.5(@babel/core@7.22.9): + /@babel/plugin-transform-literals@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-literals@7.22.5(@babel/core@7.4.4): @@ -6358,18 +6253,18 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-logical-assignment-operators@7.22.5(@babel/core@7.22.9): - resolution: {integrity: sha512-MQQOUW1KL8X0cDWfbwYP+TbVbZm16QmQXJQ+vndPtH/BoO0lOKpVoEDMI7+PskYxH+IiE0tS8xZye0qr1lGzSA==} + /@babel/plugin-transform-logical-assignment-operators@7.22.11(@babel/core@7.23.2): + resolution: {integrity: sha512-qQwRTP4+6xFCDV5k7gZBF3C31K34ut0tbEcTKxlX/0KXxm9GLcO14p570aWxFvVzx6QAfPgq7gaeIHXJC8LswQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.9) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.2) - /@babel/plugin-transform-logical-assignment-operators@7.22.5(@babel/core@7.4.4): - resolution: {integrity: sha512-MQQOUW1KL8X0cDWfbwYP+TbVbZm16QmQXJQ+vndPtH/BoO0lOKpVoEDMI7+PskYxH+IiE0tS8xZye0qr1lGzSA==} + /@babel/plugin-transform-logical-assignment-operators@7.22.11(@babel/core@7.4.4): + resolution: {integrity: sha512-qQwRTP4+6xFCDV5k7gZBF3C31K34ut0tbEcTKxlX/0KXxm9GLcO14p570aWxFvVzx6QAfPgq7gaeIHXJC8LswQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -6389,13 +6284,13 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-member-expression-literals@7.22.5(@babel/core@7.22.9): + /@babel/plugin-transform-member-expression-literals@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-member-expression-literals@7.22.5(@babel/core@7.4.4): @@ -6428,68 +6323,68 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-modules-amd@7.22.5(@babel/core@7.18.2): - resolution: {integrity: sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ==} + /@babel/plugin-transform-modules-amd@7.23.0(@babel/core@7.18.2): + resolution: {integrity: sha512-xWT5gefv2HGSm4QHtgc1sYPbseOyf+FFDo2JbpE25GWl5BqTGO9IMwTYJRoIdjsF85GE+VegHxSCUt5EvoYTAw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.2 - '@babel/helper-module-transforms': 7.22.9(@babel/core@7.18.2) + '@babel/helper-module-transforms': 7.23.0(@babel/core@7.18.2) '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-modules-amd@7.22.5(@babel/core@7.2.2): - resolution: {integrity: sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ==} + /@babel/plugin-transform-modules-amd@7.23.0(@babel/core@7.2.2): + resolution: {integrity: sha512-xWT5gefv2HGSm4QHtgc1sYPbseOyf+FFDo2JbpE25GWl5BqTGO9IMwTYJRoIdjsF85GE+VegHxSCUt5EvoYTAw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.2.2 - '@babel/helper-module-transforms': 7.22.9(@babel/core@7.2.2) + '@babel/helper-module-transforms': 7.23.0(@babel/core@7.2.2) '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-modules-amd@7.22.5(@babel/core@7.22.9): - resolution: {integrity: sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ==} + /@babel/plugin-transform-modules-amd@7.23.0(@babel/core@7.23.2): + resolution: {integrity: sha512-xWT5gefv2HGSm4QHtgc1sYPbseOyf+FFDo2JbpE25GWl5BqTGO9IMwTYJRoIdjsF85GE+VegHxSCUt5EvoYTAw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 - '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.9) + '@babel/core': 7.23.2 + '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.2) '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-modules-amd@7.22.5(@babel/core@7.4.4): - resolution: {integrity: sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ==} + /@babel/plugin-transform-modules-amd@7.23.0(@babel/core@7.4.4): + resolution: {integrity: sha512-xWT5gefv2HGSm4QHtgc1sYPbseOyf+FFDo2JbpE25GWl5BqTGO9IMwTYJRoIdjsF85GE+VegHxSCUt5EvoYTAw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.4.4 - '@babel/helper-module-transforms': 7.22.9(@babel/core@7.4.4) + '@babel/helper-module-transforms': 7.23.0(@babel/core@7.4.4) '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-modules-amd@7.22.5(@babel/core@7.4.5): - resolution: {integrity: sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ==} + /@babel/plugin-transform-modules-amd@7.23.0(@babel/core@7.4.5): + resolution: {integrity: sha512-xWT5gefv2HGSm4QHtgc1sYPbseOyf+FFDo2JbpE25GWl5BqTGO9IMwTYJRoIdjsF85GE+VegHxSCUt5EvoYTAw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.4.5 - '@babel/helper-module-transforms': 7.22.9(@babel/core@7.4.5) + '@babel/helper-module-transforms': 7.23.0(@babel/core@7.4.5) '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-modules-amd@7.22.5(@babel/core@7.9.0): - resolution: {integrity: sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ==} + /@babel/plugin-transform-modules-amd@7.23.0(@babel/core@7.9.0): + resolution: {integrity: sha512-xWT5gefv2HGSm4QHtgc1sYPbseOyf+FFDo2JbpE25GWl5BqTGO9IMwTYJRoIdjsF85GE+VegHxSCUt5EvoYTAw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.9.0 - '@babel/helper-module-transforms': 7.22.9(@babel/core@7.9.0) + '@babel/helper-module-transforms': 7.23.0(@babel/core@7.9.0) '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -6499,146 +6394,146 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.2 - '@babel/helper-module-transforms': 7.22.9(@babel/core@7.18.2) + '@babel/helper-module-transforms': 7.23.0(@babel/core@7.18.2) '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-simple-access': 7.22.5 babel-plugin-dynamic-import-node: 2.3.3 dev: true - /@babel/plugin-transform-modules-commonjs@7.22.5(@babel/core@7.2.2): - resolution: {integrity: sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA==} + /@babel/plugin-transform-modules-commonjs@7.23.0(@babel/core@7.2.2): + resolution: {integrity: sha512-32Xzss14/UVc7k9g775yMIvkVK8xwKE0DPdP5JTapr3+Z9w4tzeOuLNY6BXDQR6BdnzIlXnCGAzsk/ICHBLVWQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.2.2 - '@babel/helper-module-transforms': 7.22.9(@babel/core@7.2.2) + '@babel/helper-module-transforms': 7.23.0(@babel/core@7.2.2) '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-simple-access': 7.22.5 dev: true - /@babel/plugin-transform-modules-commonjs@7.22.5(@babel/core@7.22.9): - resolution: {integrity: sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA==} + /@babel/plugin-transform-modules-commonjs@7.23.0(@babel/core@7.23.2): + resolution: {integrity: sha512-32Xzss14/UVc7k9g775yMIvkVK8xwKE0DPdP5JTapr3+Z9w4tzeOuLNY6BXDQR6BdnzIlXnCGAzsk/ICHBLVWQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 - '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.9) + '@babel/core': 7.23.2 + '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.2) '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-simple-access': 7.22.5 - /@babel/plugin-transform-modules-commonjs@7.22.5(@babel/core@7.4.4): - resolution: {integrity: sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA==} + /@babel/plugin-transform-modules-commonjs@7.23.0(@babel/core@7.4.4): + resolution: {integrity: sha512-32Xzss14/UVc7k9g775yMIvkVK8xwKE0DPdP5JTapr3+Z9w4tzeOuLNY6BXDQR6BdnzIlXnCGAzsk/ICHBLVWQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.4.4 - '@babel/helper-module-transforms': 7.22.9(@babel/core@7.4.4) + '@babel/helper-module-transforms': 7.23.0(@babel/core@7.4.4) '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-simple-access': 7.22.5 dev: true - /@babel/plugin-transform-modules-commonjs@7.22.5(@babel/core@7.4.5): - resolution: {integrity: sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA==} + /@babel/plugin-transform-modules-commonjs@7.23.0(@babel/core@7.4.5): + resolution: {integrity: sha512-32Xzss14/UVc7k9g775yMIvkVK8xwKE0DPdP5JTapr3+Z9w4tzeOuLNY6BXDQR6BdnzIlXnCGAzsk/ICHBLVWQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.4.5 - '@babel/helper-module-transforms': 7.22.9(@babel/core@7.4.5) + '@babel/helper-module-transforms': 7.23.0(@babel/core@7.4.5) '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-simple-access': 7.22.5 dev: true - /@babel/plugin-transform-modules-commonjs@7.22.5(@babel/core@7.9.0): - resolution: {integrity: sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA==} + /@babel/plugin-transform-modules-commonjs@7.23.0(@babel/core@7.9.0): + resolution: {integrity: sha512-32Xzss14/UVc7k9g775yMIvkVK8xwKE0DPdP5JTapr3+Z9w4tzeOuLNY6BXDQR6BdnzIlXnCGAzsk/ICHBLVWQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.9.0 - '@babel/helper-module-transforms': 7.22.9(@babel/core@7.9.0) + '@babel/helper-module-transforms': 7.23.0(@babel/core@7.9.0) '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-simple-access': 7.22.5 dev: true - /@babel/plugin-transform-modules-systemjs@7.22.5(@babel/core@7.18.2): - resolution: {integrity: sha512-emtEpoaTMsOs6Tzz+nbmcePl6AKVtS1yC4YNAeMun9U8YCsgadPNxnOPQ8GhHFB2qdx+LZu9LgoC0Lthuu05DQ==} + /@babel/plugin-transform-modules-systemjs@7.23.0(@babel/core@7.18.2): + resolution: {integrity: sha512-qBej6ctXZD2f+DhlOC9yO47yEYgUh5CZNz/aBoH4j/3NOlRfJXJbY7xDQCqQVf9KbrqGzIWER1f23doHGrIHFg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.2 '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-module-transforms': 7.22.9(@babel/core@7.18.2) + '@babel/helper-module-transforms': 7.23.0(@babel/core@7.18.2) '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-identifier': 7.22.5 + '@babel/helper-validator-identifier': 7.22.20 dev: true - /@babel/plugin-transform-modules-systemjs@7.22.5(@babel/core@7.2.2): - resolution: {integrity: sha512-emtEpoaTMsOs6Tzz+nbmcePl6AKVtS1yC4YNAeMun9U8YCsgadPNxnOPQ8GhHFB2qdx+LZu9LgoC0Lthuu05DQ==} + /@babel/plugin-transform-modules-systemjs@7.23.0(@babel/core@7.2.2): + resolution: {integrity: sha512-qBej6ctXZD2f+DhlOC9yO47yEYgUh5CZNz/aBoH4j/3NOlRfJXJbY7xDQCqQVf9KbrqGzIWER1f23doHGrIHFg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.2.2 '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-module-transforms': 7.22.9(@babel/core@7.2.2) + '@babel/helper-module-transforms': 7.23.0(@babel/core@7.2.2) '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-identifier': 7.22.5 + '@babel/helper-validator-identifier': 7.22.20 dev: true - /@babel/plugin-transform-modules-systemjs@7.22.5(@babel/core@7.22.9): - resolution: {integrity: sha512-emtEpoaTMsOs6Tzz+nbmcePl6AKVtS1yC4YNAeMun9U8YCsgadPNxnOPQ8GhHFB2qdx+LZu9LgoC0Lthuu05DQ==} + /@babel/plugin-transform-modules-systemjs@7.23.0(@babel/core@7.23.2): + resolution: {integrity: sha512-qBej6ctXZD2f+DhlOC9yO47yEYgUh5CZNz/aBoH4j/3NOlRfJXJbY7xDQCqQVf9KbrqGzIWER1f23doHGrIHFg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.9) + '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.2) '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-identifier': 7.22.5 + '@babel/helper-validator-identifier': 7.22.20 - /@babel/plugin-transform-modules-systemjs@7.22.5(@babel/core@7.4.4): - resolution: {integrity: sha512-emtEpoaTMsOs6Tzz+nbmcePl6AKVtS1yC4YNAeMun9U8YCsgadPNxnOPQ8GhHFB2qdx+LZu9LgoC0Lthuu05DQ==} + /@babel/plugin-transform-modules-systemjs@7.23.0(@babel/core@7.4.4): + resolution: {integrity: sha512-qBej6ctXZD2f+DhlOC9yO47yEYgUh5CZNz/aBoH4j/3NOlRfJXJbY7xDQCqQVf9KbrqGzIWER1f23doHGrIHFg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.4.4 '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-module-transforms': 7.22.9(@babel/core@7.4.4) + '@babel/helper-module-transforms': 7.23.0(@babel/core@7.4.4) '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-identifier': 7.22.5 + '@babel/helper-validator-identifier': 7.22.20 dev: true - /@babel/plugin-transform-modules-systemjs@7.22.5(@babel/core@7.4.5): - resolution: {integrity: sha512-emtEpoaTMsOs6Tzz+nbmcePl6AKVtS1yC4YNAeMun9U8YCsgadPNxnOPQ8GhHFB2qdx+LZu9LgoC0Lthuu05DQ==} + /@babel/plugin-transform-modules-systemjs@7.23.0(@babel/core@7.4.5): + resolution: {integrity: sha512-qBej6ctXZD2f+DhlOC9yO47yEYgUh5CZNz/aBoH4j/3NOlRfJXJbY7xDQCqQVf9KbrqGzIWER1f23doHGrIHFg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.4.5 '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-module-transforms': 7.22.9(@babel/core@7.4.5) + '@babel/helper-module-transforms': 7.23.0(@babel/core@7.4.5) '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-identifier': 7.22.5 + '@babel/helper-validator-identifier': 7.22.20 dev: true - /@babel/plugin-transform-modules-systemjs@7.22.5(@babel/core@7.9.0): - resolution: {integrity: sha512-emtEpoaTMsOs6Tzz+nbmcePl6AKVtS1yC4YNAeMun9U8YCsgadPNxnOPQ8GhHFB2qdx+LZu9LgoC0Lthuu05DQ==} + /@babel/plugin-transform-modules-systemjs@7.23.0(@babel/core@7.9.0): + resolution: {integrity: sha512-qBej6ctXZD2f+DhlOC9yO47yEYgUh5CZNz/aBoH4j/3NOlRfJXJbY7xDQCqQVf9KbrqGzIWER1f23doHGrIHFg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.9.0 '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-module-transforms': 7.22.9(@babel/core@7.9.0) + '@babel/helper-module-transforms': 7.23.0(@babel/core@7.9.0) '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-identifier': 7.22.5 + '@babel/helper-validator-identifier': 7.22.20 dev: true /@babel/plugin-transform-modules-umd@7.22.5(@babel/core@7.18.2): @@ -6648,7 +6543,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.2 - '@babel/helper-module-transforms': 7.22.9(@babel/core@7.18.2) + '@babel/helper-module-transforms': 7.23.0(@babel/core@7.18.2) '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -6659,18 +6554,18 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.2.2 - '@babel/helper-module-transforms': 7.22.9(@babel/core@7.2.2) + '@babel/helper-module-transforms': 7.23.0(@babel/core@7.2.2) '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-modules-umd@7.22.5(@babel/core@7.22.9): + /@babel/plugin-transform-modules-umd@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 - '@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.9) + '@babel/core': 7.23.2 + '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.2) '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-modules-umd@7.22.5(@babel/core@7.4.4): @@ -6680,7 +6575,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.4.4 - '@babel/helper-module-transforms': 7.22.9(@babel/core@7.4.4) + '@babel/helper-module-transforms': 7.23.0(@babel/core@7.4.4) '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -6691,7 +6586,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.4.5 - '@babel/helper-module-transforms': 7.22.9(@babel/core@7.4.5) + '@babel/helper-module-transforms': 7.23.0(@babel/core@7.4.5) '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -6702,7 +6597,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.9.0 - '@babel/helper-module-transforms': 7.22.9(@babel/core@7.9.0) + '@babel/helper-module-transforms': 7.23.0(@babel/core@7.9.0) '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -6713,18 +6608,18 @@ packages: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.18.2 - '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.18.2) + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.18.2) '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.22.9): + /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.9 - '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.22.9) + '@babel/core': 7.23.2 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.2) '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.4.4): @@ -6734,7 +6629,7 @@ packages: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.4.4 - '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.4.4) + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.4.4) '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -6745,7 +6640,7 @@ packages: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.4.5 - '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.4.5) + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.4.5) '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -6756,7 +6651,7 @@ packages: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.9.0 - '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.9.0) + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.9.0) '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -6780,13 +6675,13 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-new-target@7.22.5(@babel/core@7.22.9): + /@babel/plugin-transform-new-target@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-new-target@7.22.5(@babel/core@7.4.4): @@ -6819,18 +6714,18 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-nullish-coalescing-operator@7.22.5(@babel/core@7.22.9): - resolution: {integrity: sha512-6CF8g6z1dNYZ/VXok5uYkkBBICHZPiGEl7oDnAx2Mt1hlHVHOSIKWJaXHjQJA5VB43KZnXZDIexMchY4y2PGdA==} + /@babel/plugin-transform-nullish-coalescing-operator@7.22.11(@babel/core@7.23.2): + resolution: {integrity: sha512-YZWOw4HxXrotb5xsjMJUDlLgcDXSfO9eCmdl1bgW4+/lAGdkjaEvOnQ4p5WKKdUgSzO39dgPl0pTnfxm0OAXcg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.9) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.2) - /@babel/plugin-transform-nullish-coalescing-operator@7.22.5(@babel/core@7.4.4): - resolution: {integrity: sha512-6CF8g6z1dNYZ/VXok5uYkkBBICHZPiGEl7oDnAx2Mt1hlHVHOSIKWJaXHjQJA5VB43KZnXZDIexMchY4y2PGdA==} + /@babel/plugin-transform-nullish-coalescing-operator@7.22.11(@babel/core@7.4.4): + resolution: {integrity: sha512-YZWOw4HxXrotb5xsjMJUDlLgcDXSfO9eCmdl1bgW4+/lAGdkjaEvOnQ4p5WKKdUgSzO39dgPl0pTnfxm0OAXcg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -6840,18 +6735,18 @@ packages: '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.4.4) dev: true - /@babel/plugin-transform-numeric-separator@7.22.5(@babel/core@7.22.9): - resolution: {integrity: sha512-NbslED1/6M+sXiwwtcAB/nieypGw02Ejf4KtDeMkCEpP6gWFMX1wI9WKYua+4oBneCCEmulOkRpwywypVZzs/g==} + /@babel/plugin-transform-numeric-separator@7.22.11(@babel/core@7.23.2): + resolution: {integrity: sha512-3dzU4QGPsILdJbASKhF/V2TVP+gJya1PsueQCxIPCEcerqF21oEcrob4mzjsp2Py/1nLfF5m+xYNMDpmA8vffg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.9) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.2) - /@babel/plugin-transform-numeric-separator@7.22.5(@babel/core@7.4.4): - resolution: {integrity: sha512-NbslED1/6M+sXiwwtcAB/nieypGw02Ejf4KtDeMkCEpP6gWFMX1wI9WKYua+4oBneCCEmulOkRpwywypVZzs/g==} + /@babel/plugin-transform-numeric-separator@7.22.11(@babel/core@7.4.4): + resolution: {integrity: sha512-3dzU4QGPsILdJbASKhF/V2TVP+gJya1PsueQCxIPCEcerqF21oEcrob4mzjsp2Py/1nLfF5m+xYNMDpmA8vffg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -6861,31 +6756,31 @@ packages: '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.4.4) dev: true - /@babel/plugin-transform-object-rest-spread@7.22.5(@babel/core@7.22.9): - resolution: {integrity: sha512-Kk3lyDmEslH9DnvCDA1s1kkd3YWQITiBOHngOtDL9Pt6BZjzqb6hiOlb8VfjiiQJ2unmegBqZu0rx5RxJb5vmQ==} + /@babel/plugin-transform-object-rest-spread@7.22.15(@babel/core@7.23.2): + resolution: {integrity: sha512-fEB+I1+gAmfAyxZcX1+ZUwLeAuuf8VIg67CTznZE0MqVFumWkh8xWtn58I4dxdVf080wn7gzWoF8vndOViJe9Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.22.9 - '@babel/core': 7.22.9 - '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.9) + '@babel/compat-data': 7.23.2 + '@babel/core': 7.23.2 + '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.9) - '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-transform-parameters': 7.22.15(@babel/core@7.23.2) - /@babel/plugin-transform-object-rest-spread@7.22.5(@babel/core@7.4.4): - resolution: {integrity: sha512-Kk3lyDmEslH9DnvCDA1s1kkd3YWQITiBOHngOtDL9Pt6BZjzqb6hiOlb8VfjiiQJ2unmegBqZu0rx5RxJb5vmQ==} + /@babel/plugin-transform-object-rest-spread@7.22.15(@babel/core@7.4.4): + resolution: {integrity: sha512-fEB+I1+gAmfAyxZcX1+ZUwLeAuuf8VIg67CTznZE0MqVFumWkh8xWtn58I4dxdVf080wn7gzWoF8vndOViJe9Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.22.9 + '@babel/compat-data': 7.23.2 '@babel/core': 7.4.4 - '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.4.4) + '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.4.4) - '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.4.4) + '@babel/plugin-transform-parameters': 7.22.15(@babel/core@7.4.4) dev: true /@babel/plugin-transform-object-super@7.22.5(@babel/core@7.18.2): @@ -6896,7 +6791,7 @@ packages: dependencies: '@babel/core': 7.18.2 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.9(@babel/core@7.18.2) + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.18.2) dev: true /@babel/plugin-transform-object-super@7.22.5(@babel/core@7.2.2): @@ -6907,18 +6802,18 @@ packages: dependencies: '@babel/core': 7.2.2 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.9(@babel/core@7.2.2) + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.2.2) dev: true - /@babel/plugin-transform-object-super@7.22.5(@babel/core@7.22.9): + /@babel/plugin-transform-object-super@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.9(@babel/core@7.22.9) + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.2) /@babel/plugin-transform-object-super@7.22.5(@babel/core@7.4.4): resolution: {integrity: sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==} @@ -6928,7 +6823,7 @@ packages: dependencies: '@babel/core': 7.4.4 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.9(@babel/core@7.4.4) + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.4.4) dev: true /@babel/plugin-transform-object-super@7.22.5(@babel/core@7.4.5): @@ -6939,7 +6834,7 @@ packages: dependencies: '@babel/core': 7.4.5 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.9(@babel/core@7.4.5) + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.4.5) dev: true /@babel/plugin-transform-object-super@7.22.5(@babel/core@7.9.0): @@ -6950,21 +6845,21 @@ packages: dependencies: '@babel/core': 7.9.0 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-replace-supers': 7.22.9(@babel/core@7.9.0) + '@babel/helper-replace-supers': 7.22.20(@babel/core@7.9.0) dev: true - /@babel/plugin-transform-optional-catch-binding@7.22.5(@babel/core@7.22.9): - resolution: {integrity: sha512-pH8orJahy+hzZje5b8e2QIlBWQvGpelS76C63Z+jhZKsmzfNaPQ+LaW6dcJ9bxTpo1mtXbgHwy765Ro3jftmUg==} + /@babel/plugin-transform-optional-catch-binding@7.22.11(@babel/core@7.23.2): + resolution: {integrity: sha512-rli0WxesXUeCJnMYhzAglEjLWVDF6ahb45HuprcmQuLidBJFWjNnOzssk2kuc6e33FlLaiZhG/kUIzUMWdBKaQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.9) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.2) - /@babel/plugin-transform-optional-catch-binding@7.22.5(@babel/core@7.4.4): - resolution: {integrity: sha512-pH8orJahy+hzZje5b8e2QIlBWQvGpelS76C63Z+jhZKsmzfNaPQ+LaW6dcJ9bxTpo1mtXbgHwy765Ro3jftmUg==} + /@babel/plugin-transform-optional-catch-binding@7.22.11(@babel/core@7.4.4): + resolution: {integrity: sha512-rli0WxesXUeCJnMYhzAglEjLWVDF6ahb45HuprcmQuLidBJFWjNnOzssk2kuc6e33FlLaiZhG/kUIzUMWdBKaQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -6974,19 +6869,19 @@ packages: '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.4.4) dev: true - /@babel/plugin-transform-optional-chaining@7.22.6(@babel/core@7.22.9): - resolution: {integrity: sha512-Vd5HiWml0mDVtcLHIoEU5sw6HOUW/Zk0acLs/SAeuLzkGNOPc9DB4nkUajemhCmTIz3eiaKREZn2hQQqF79YTg==} + /@babel/plugin-transform-optional-chaining@7.23.0(@babel/core@7.23.2): + resolution: {integrity: sha512-sBBGXbLJjxTzLBF5rFWaikMnOGOk/BmK6vVByIdEggZ7Vn6CvWXZyRkkLFK6WE0IF8jSliyOkUN6SScFgzCM0g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.9) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.2) - /@babel/plugin-transform-optional-chaining@7.22.6(@babel/core@7.4.4): - resolution: {integrity: sha512-Vd5HiWml0mDVtcLHIoEU5sw6HOUW/Zk0acLs/SAeuLzkGNOPc9DB4nkUajemhCmTIz3eiaKREZn2hQQqF79YTg==} + /@babel/plugin-transform-optional-chaining@7.23.0(@babel/core@7.4.4): + resolution: {integrity: sha512-sBBGXbLJjxTzLBF5rFWaikMnOGOk/BmK6vVByIdEggZ7Vn6CvWXZyRkkLFK6WE0IF8jSliyOkUN6SScFgzCM0g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -6997,8 +6892,8 @@ packages: '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.4.4) dev: true - /@babel/plugin-transform-parameters@7.22.5(@babel/core@7.12.9): - resolution: {integrity: sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg==} + /@babel/plugin-transform-parameters@7.22.15(@babel/core@7.12.9): + resolution: {integrity: sha512-hjk7qKIqhyzhhUvRT683TYQOFa/4cQKwQy7ALvTpODswN40MljzNDa0YldevS6tGbxwaEKVn502JmY0dP7qEtQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -7007,8 +6902,8 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-parameters@7.22.5(@babel/core@7.18.2): - resolution: {integrity: sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg==} + /@babel/plugin-transform-parameters@7.22.15(@babel/core@7.18.2): + resolution: {integrity: sha512-hjk7qKIqhyzhhUvRT683TYQOFa/4cQKwQy7ALvTpODswN40MljzNDa0YldevS6tGbxwaEKVn502JmY0dP7qEtQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -7017,8 +6912,8 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-parameters@7.22.5(@babel/core@7.2.2): - resolution: {integrity: sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg==} + /@babel/plugin-transform-parameters@7.22.15(@babel/core@7.2.2): + resolution: {integrity: sha512-hjk7qKIqhyzhhUvRT683TYQOFa/4cQKwQy7ALvTpODswN40MljzNDa0YldevS6tGbxwaEKVn502JmY0dP7qEtQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -7027,17 +6922,17 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-parameters@7.22.5(@babel/core@7.22.9): - resolution: {integrity: sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg==} + /@babel/plugin-transform-parameters@7.22.15(@babel/core@7.23.2): + resolution: {integrity: sha512-hjk7qKIqhyzhhUvRT683TYQOFa/4cQKwQy7ALvTpODswN40MljzNDa0YldevS6tGbxwaEKVn502JmY0dP7qEtQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-parameters@7.22.5(@babel/core@7.4.4): - resolution: {integrity: sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg==} + /@babel/plugin-transform-parameters@7.22.15(@babel/core@7.4.4): + resolution: {integrity: sha512-hjk7qKIqhyzhhUvRT683TYQOFa/4cQKwQy7ALvTpODswN40MljzNDa0YldevS6tGbxwaEKVn502JmY0dP7qEtQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -7046,8 +6941,8 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-parameters@7.22.5(@babel/core@7.4.5): - resolution: {integrity: sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg==} + /@babel/plugin-transform-parameters@7.22.15(@babel/core@7.4.5): + resolution: {integrity: sha512-hjk7qKIqhyzhhUvRT683TYQOFa/4cQKwQy7ALvTpODswN40MljzNDa0YldevS6tGbxwaEKVn502JmY0dP7qEtQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -7056,8 +6951,8 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-parameters@7.22.5(@babel/core@7.9.0): - resolution: {integrity: sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg==} + /@babel/plugin-transform-parameters@7.22.15(@babel/core@7.9.0): + resolution: {integrity: sha512-hjk7qKIqhyzhhUvRT683TYQOFa/4cQKwQy7ALvTpODswN40MljzNDa0YldevS6tGbxwaEKVn502JmY0dP7qEtQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -7066,14 +6961,14 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-private-methods@7.22.5(@babel/core@7.22.9): + /@babel/plugin-transform-private-methods@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 - '@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.22.9) + '@babel/core': 7.23.2 + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2) '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-private-methods@7.22.5(@babel/core@7.4.4): @@ -7083,31 +6978,31 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.4.4 - '@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.4.4) + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.4.4) '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-private-property-in-object@7.22.5(@babel/core@7.22.9): - resolution: {integrity: sha512-/9xnaTTJcVoBtSSmrVyhtSvO3kbqS2ODoh2juEU72c3aYonNF0OMGiaz2gjukyKM2wBBYJP38S4JiE0Wfb5VMQ==} + /@babel/plugin-transform-private-property-in-object@7.22.11(@babel/core@7.23.2): + resolution: {integrity: sha512-sSCbqZDBKHetvjSwpyWzhuHkmW5RummxJBVbYLkGkaiTOWGxml7SXt0iWa03bzxFIx7wOj3g/ILRd0RcJKBeSQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.22.9) + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2) '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.22.9) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.2) - /@babel/plugin-transform-private-property-in-object@7.22.5(@babel/core@7.4.4): - resolution: {integrity: sha512-/9xnaTTJcVoBtSSmrVyhtSvO3kbqS2ODoh2juEU72c3aYonNF0OMGiaz2gjukyKM2wBBYJP38S4JiE0Wfb5VMQ==} + /@babel/plugin-transform-private-property-in-object@7.22.11(@babel/core@7.4.4): + resolution: {integrity: sha512-sSCbqZDBKHetvjSwpyWzhuHkmW5RummxJBVbYLkGkaiTOWGxml7SXt0iWa03bzxFIx7wOj3g/ILRd0RcJKBeSQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.4.4 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.4.4) + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.4.4) '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.4.4) dev: true @@ -7122,13 +7017,13 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-property-literals@7.22.5(@babel/core@7.22.9): + /@babel/plugin-transform-property-literals@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-property-literals@7.22.5(@babel/core@7.4.4): @@ -7171,13 +7066,13 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-react-constant-elements@7.22.5(@babel/core@7.22.9): + /@babel/plugin-transform-react-constant-elements@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-BF5SXoO+nX3h5OhlN78XbbDrBOffv+AxPP2ENaJOVqjWCgBDeOY3WcaUcddutGSfoap+5NEQ/q/4I3WZIvgkXA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -7201,13 +7096,13 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-react-display-name@7.22.5(@babel/core@7.22.9): + /@babel/plugin-transform-react-display-name@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-PVk3WPYudRF5z4GKMEYUrLjPl38fJSKNaEOkFuoprioowGuWN6w2RKznuFNSlJx7pzzXXStPUnNSOEO0jL5EVw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-react-display-name@7.22.5(@babel/core@7.4.5): @@ -7236,17 +7131,17 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.2 - '@babel/plugin-transform-react-jsx': 7.22.5(@babel/core@7.18.2) + '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.18.2) dev: true - /@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.22.9): + /@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 - '@babel/plugin-transform-react-jsx': 7.22.5(@babel/core@7.22.9) + '@babel/core': 7.23.2 + '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.23.2) dev: true /@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.9.0): @@ -7256,7 +7151,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.9.0 - '@babel/plugin-transform-react-jsx': 7.22.5(@babel/core@7.9.0) + '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.9.0) dev: true /@babel/plugin-transform-react-jsx-self@7.22.5(@babel/core@7.18.2): @@ -7279,13 +7174,13 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-react-jsx-self@7.22.5(@babel/core@7.22.9): + /@babel/plugin-transform-react-jsx-self@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-nTh2ogNUtxbiSbxaT4Ds6aXnXEipHweN9YRgOX/oNXdf0cCrGn/+2LozFa3lnPV5D90MkjhgckCPBrsoSc1a7g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 dev: false @@ -7329,13 +7224,13 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-react-jsx-source@7.22.5(@babel/core@7.22.9): + /@babel/plugin-transform-react-jsx-source@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-yIiRO6yobeEIaI0RTbIr8iAK9FcBHLtZq0S89ZPjDLQXBA4xvghaKqI0etp/tF3htTM0sazJKKLz9oEiGRtu7w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 dev: false @@ -7359,73 +7254,73 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-react-jsx@7.22.5(@babel/core@7.18.2): - resolution: {integrity: sha512-rog5gZaVbUip5iWDMTYbVM15XQq+RkUKhET/IHR6oizR+JEoN6CAfTTuHcK4vwUyzca30qqHqEpzBOnaRMWYMA==} + /@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.18.2): + resolution: {integrity: sha512-oKckg2eZFa8771O/5vi7XeTvmM6+O9cxZu+kanTU7tD4sin5nO/G8jGJhq8Hvt2Z0kUoEDRayuZLaUlYl8QuGA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.2 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-module-imports': 7.22.5 + '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.18.2) - '@babel/types': 7.22.5 + '@babel/types': 7.23.0 dev: true - /@babel/plugin-transform-react-jsx@7.22.5(@babel/core@7.2.2): - resolution: {integrity: sha512-rog5gZaVbUip5iWDMTYbVM15XQq+RkUKhET/IHR6oizR+JEoN6CAfTTuHcK4vwUyzca30qqHqEpzBOnaRMWYMA==} + /@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.2.2): + resolution: {integrity: sha512-oKckg2eZFa8771O/5vi7XeTvmM6+O9cxZu+kanTU7tD4sin5nO/G8jGJhq8Hvt2Z0kUoEDRayuZLaUlYl8QuGA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.2.2 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-module-imports': 7.22.5 + '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.2.2) - '@babel/types': 7.22.5 + '@babel/types': 7.23.0 dev: true - /@babel/plugin-transform-react-jsx@7.22.5(@babel/core@7.22.9): - resolution: {integrity: sha512-rog5gZaVbUip5iWDMTYbVM15XQq+RkUKhET/IHR6oizR+JEoN6CAfTTuHcK4vwUyzca30qqHqEpzBOnaRMWYMA==} + /@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.23.2): + resolution: {integrity: sha512-oKckg2eZFa8771O/5vi7XeTvmM6+O9cxZu+kanTU7tD4sin5nO/G8jGJhq8Hvt2Z0kUoEDRayuZLaUlYl8QuGA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-module-imports': 7.22.5 + '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.9) - '@babel/types': 7.22.5 + '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.2) + '@babel/types': 7.23.0 - /@babel/plugin-transform-react-jsx@7.22.5(@babel/core@7.4.5): - resolution: {integrity: sha512-rog5gZaVbUip5iWDMTYbVM15XQq+RkUKhET/IHR6oizR+JEoN6CAfTTuHcK4vwUyzca30qqHqEpzBOnaRMWYMA==} + /@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.4.5): + resolution: {integrity: sha512-oKckg2eZFa8771O/5vi7XeTvmM6+O9cxZu+kanTU7tD4sin5nO/G8jGJhq8Hvt2Z0kUoEDRayuZLaUlYl8QuGA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.4.5 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-module-imports': 7.22.5 + '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.4.5) - '@babel/types': 7.22.5 + '@babel/types': 7.23.0 dev: true - /@babel/plugin-transform-react-jsx@7.22.5(@babel/core@7.9.0): - resolution: {integrity: sha512-rog5gZaVbUip5iWDMTYbVM15XQq+RkUKhET/IHR6oizR+JEoN6CAfTTuHcK4vwUyzca30qqHqEpzBOnaRMWYMA==} + /@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.9.0): + resolution: {integrity: sha512-oKckg2eZFa8771O/5vi7XeTvmM6+O9cxZu+kanTU7tD4sin5nO/G8jGJhq8Hvt2Z0kUoEDRayuZLaUlYl8QuGA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.9.0 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-module-imports': 7.22.5 + '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.9.0) - '@babel/types': 7.22.5 + '@babel/types': 7.23.0 dev: true /@babel/plugin-transform-react-pure-annotations@7.22.5(@babel/core@7.18.2): @@ -7439,13 +7334,13 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-react-pure-annotations@7.22.5(@babel/core@7.22.9): + /@babel/plugin-transform-react-pure-annotations@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-gP4k85wx09q+brArVinTXhWiyzLl9UpmGva0+mWyKxk6JZequ05x3eUcIUE+FyttPKJFRRVtAvQaJ6YF9h1ZpA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -7459,58 +7354,58 @@ packages: regenerator-transform: 0.13.4 dev: true - /@babel/plugin-transform-regenerator@7.22.5(@babel/core@7.18.2): - resolution: {integrity: sha512-rR7KePOE7gfEtNTh9Qw+iO3Q/e4DEsoQ+hdvM6QUDH7JRJ5qxq5AA52ZzBWbI5i9lfNuvySgOGP8ZN7LAmaiPw==} + /@babel/plugin-transform-regenerator@7.22.10(@babel/core@7.18.2): + resolution: {integrity: sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.2 '@babel/helper-plugin-utils': 7.22.5 - regenerator-transform: 0.15.1 + regenerator-transform: 0.15.2 dev: true - /@babel/plugin-transform-regenerator@7.22.5(@babel/core@7.22.9): - resolution: {integrity: sha512-rR7KePOE7gfEtNTh9Qw+iO3Q/e4DEsoQ+hdvM6QUDH7JRJ5qxq5AA52ZzBWbI5i9lfNuvySgOGP8ZN7LAmaiPw==} + /@babel/plugin-transform-regenerator@7.22.10(@babel/core@7.23.2): + resolution: {integrity: sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 - regenerator-transform: 0.15.1 + regenerator-transform: 0.15.2 - /@babel/plugin-transform-regenerator@7.22.5(@babel/core@7.4.4): - resolution: {integrity: sha512-rR7KePOE7gfEtNTh9Qw+iO3Q/e4DEsoQ+hdvM6QUDH7JRJ5qxq5AA52ZzBWbI5i9lfNuvySgOGP8ZN7LAmaiPw==} + /@babel/plugin-transform-regenerator@7.22.10(@babel/core@7.4.4): + resolution: {integrity: sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.4.4 '@babel/helper-plugin-utils': 7.22.5 - regenerator-transform: 0.15.1 + regenerator-transform: 0.15.2 dev: true - /@babel/plugin-transform-regenerator@7.22.5(@babel/core@7.4.5): - resolution: {integrity: sha512-rR7KePOE7gfEtNTh9Qw+iO3Q/e4DEsoQ+hdvM6QUDH7JRJ5qxq5AA52ZzBWbI5i9lfNuvySgOGP8ZN7LAmaiPw==} + /@babel/plugin-transform-regenerator@7.22.10(@babel/core@7.4.5): + resolution: {integrity: sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.4.5 '@babel/helper-plugin-utils': 7.22.5 - regenerator-transform: 0.15.1 + regenerator-transform: 0.15.2 dev: true - /@babel/plugin-transform-regenerator@7.22.5(@babel/core@7.9.0): - resolution: {integrity: sha512-rR7KePOE7gfEtNTh9Qw+iO3Q/e4DEsoQ+hdvM6QUDH7JRJ5qxq5AA52ZzBWbI5i9lfNuvySgOGP8ZN7LAmaiPw==} + /@babel/plugin-transform-regenerator@7.22.10(@babel/core@7.9.0): + resolution: {integrity: sha512-F28b1mDt8KcT5bUyJc/U9nwzw6cV+UmTeRlXYIl2TNqMMJif0Jeey9/RQ3C4NOd2zp0/TRsDns9ttj2L523rsw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.9.0 '@babel/helper-plugin-utils': 7.22.5 - regenerator-transform: 0.15.1 + regenerator-transform: 0.15.2 dev: true /@babel/plugin-transform-reserved-words@7.22.5(@babel/core@7.18.2): @@ -7523,13 +7418,13 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-reserved-words@7.22.5(@babel/core@7.22.9): + /@babel/plugin-transform-reserved-words@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-reserved-words@7.22.5(@babel/core@7.4.4): @@ -7569,7 +7464,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.2 - '@babel/helper-module-imports': 7.22.5 + '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 babel-plugin-polyfill-corejs2: 0.3.3(@babel/core@7.18.2) babel-plugin-polyfill-corejs3: 0.5.3(@babel/core@7.18.2) @@ -7585,24 +7480,24 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.2.2 - '@babel/helper-module-imports': 7.22.5 + '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - resolve: 1.22.2 + resolve: 1.22.8 semver: 5.7.2 dev: true - /@babel/plugin-transform-runtime@7.22.9(@babel/core@7.22.9): - resolution: {integrity: sha512-9KjBH61AGJetCPYp/IEyLEp47SyybZb0nDRpBvmtEkm+rUIwxdlKpyNHI1TmsGkeuLclJdleQHRZ8XLBnnh8CQ==} + /@babel/plugin-transform-runtime@7.23.2(@babel/core@7.23.2): + resolution: {integrity: sha512-XOntj6icgzMS58jPVtQpiuF6ZFWxQiJavISGx5KGjRj+3gqZr8+N6Kx+N9BApWzgS+DOjIZfXXj0ZesenOWDyA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 - '@babel/helper-module-imports': 7.22.5 + '@babel/core': 7.23.2 + '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - babel-plugin-polyfill-corejs2: 0.4.4(@babel/core@7.22.9) - babel-plugin-polyfill-corejs3: 0.8.2(@babel/core@7.22.9) - babel-plugin-polyfill-regenerator: 0.5.1(@babel/core@7.22.9) + babel-plugin-polyfill-corejs2: 0.4.6(@babel/core@7.23.2) + babel-plugin-polyfill-corejs3: 0.8.6(@babel/core@7.23.2) + babel-plugin-polyfill-regenerator: 0.5.3(@babel/core@7.23.2) semver: 6.3.1 transitivePeerDependencies: - supports-color @@ -7614,9 +7509,9 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.4.5 - '@babel/helper-module-imports': 7.22.5 + '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - resolve: 1.22.2 + resolve: 1.22.8 semver: 5.7.2 dev: true @@ -7626,9 +7521,9 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.9.0 - '@babel/helper-module-imports': 7.22.5 + '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - resolve: 1.22.2 + resolve: 1.22.8 semver: 5.7.2 dev: true @@ -7652,13 +7547,13 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-shorthand-properties@7.22.5(@babel/core@7.22.9): + /@babel/plugin-transform-shorthand-properties@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-shorthand-properties@7.22.5(@babel/core@7.4.4): @@ -7713,13 +7608,13 @@ packages: '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 dev: true - /@babel/plugin-transform-spread@7.22.5(@babel/core@7.22.9): + /@babel/plugin-transform-spread@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 @@ -7776,13 +7671,13 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-sticky-regex@7.22.5(@babel/core@7.22.9): + /@babel/plugin-transform-sticky-regex@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-sticky-regex@7.22.5(@babel/core@7.4.4): @@ -7835,13 +7730,13 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-template-literals@7.22.5(@babel/core@7.22.9): + /@babel/plugin-transform-template-literals@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-template-literals@7.22.5(@babel/core@7.4.4): @@ -7894,13 +7789,13 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-typeof-symbol@7.22.5(@babel/core@7.22.9): + /@babel/plugin-transform-typeof-symbol@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-typeof-symbol@7.22.5(@babel/core@7.4.4): @@ -7933,72 +7828,72 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-typescript@7.22.9(@babel/core@7.18.2): - resolution: {integrity: sha512-BnVR1CpKiuD0iobHPaM1iLvcwPYN2uVFAqoLVSpEDKWuOikoCv5HbKLxclhKYUXlWkX86DoZGtqI4XhbOsyrMg==} + /@babel/plugin-transform-typescript@7.22.15(@babel/core@7.18.2): + resolution: {integrity: sha512-1uirS0TnijxvQLnlv5wQBwOX3E1wCFX7ITv+9pBV2wKEk4K+M5tqDaoNXnTH8tjEIYHLO98MwiTWO04Ggz4XuA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.2 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.18.2) + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.18.2) '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.18.2) dev: true - /@babel/plugin-transform-typescript@7.22.9(@babel/core@7.2.2): - resolution: {integrity: sha512-BnVR1CpKiuD0iobHPaM1iLvcwPYN2uVFAqoLVSpEDKWuOikoCv5HbKLxclhKYUXlWkX86DoZGtqI4XhbOsyrMg==} + /@babel/plugin-transform-typescript@7.22.15(@babel/core@7.2.2): + resolution: {integrity: sha512-1uirS0TnijxvQLnlv5wQBwOX3E1wCFX7ITv+9pBV2wKEk4K+M5tqDaoNXnTH8tjEIYHLO98MwiTWO04Ggz4XuA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.2.2 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.2.2) + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.2.2) '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.2.2) dev: true - /@babel/plugin-transform-typescript@7.22.9(@babel/core@7.22.9): - resolution: {integrity: sha512-BnVR1CpKiuD0iobHPaM1iLvcwPYN2uVFAqoLVSpEDKWuOikoCv5HbKLxclhKYUXlWkX86DoZGtqI4XhbOsyrMg==} + /@babel/plugin-transform-typescript@7.22.15(@babel/core@7.23.2): + resolution: {integrity: sha512-1uirS0TnijxvQLnlv5wQBwOX3E1wCFX7ITv+9pBV2wKEk4K+M5tqDaoNXnTH8tjEIYHLO98MwiTWO04Ggz4XuA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.22.9) + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.2) '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.23.2) - /@babel/plugin-transform-typescript@7.22.9(@babel/core@7.4.5): - resolution: {integrity: sha512-BnVR1CpKiuD0iobHPaM1iLvcwPYN2uVFAqoLVSpEDKWuOikoCv5HbKLxclhKYUXlWkX86DoZGtqI4XhbOsyrMg==} + /@babel/plugin-transform-typescript@7.22.15(@babel/core@7.4.5): + resolution: {integrity: sha512-1uirS0TnijxvQLnlv5wQBwOX3E1wCFX7ITv+9pBV2wKEk4K+M5tqDaoNXnTH8tjEIYHLO98MwiTWO04Ggz4XuA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.4.5 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.4.5) + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.4.5) '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.4.5) dev: true - /@babel/plugin-transform-typescript@7.22.9(@babel/core@7.9.0): - resolution: {integrity: sha512-BnVR1CpKiuD0iobHPaM1iLvcwPYN2uVFAqoLVSpEDKWuOikoCv5HbKLxclhKYUXlWkX86DoZGtqI4XhbOsyrMg==} + /@babel/plugin-transform-typescript@7.22.15(@babel/core@7.9.0): + resolution: {integrity: sha512-1uirS0TnijxvQLnlv5wQBwOX3E1wCFX7ITv+9pBV2wKEk4K+M5tqDaoNXnTH8tjEIYHLO98MwiTWO04Ggz4XuA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.9.0 '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.9.0) + '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.9.0) '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.9.0) dev: true - /@babel/plugin-transform-unicode-escapes@7.22.5(@babel/core@7.18.2): - resolution: {integrity: sha512-biEmVg1IYB/raUO5wT1tgfacCef15Fbzhkx493D3urBI++6hpJ+RFG4SrWMn0NEZLfvilqKf3QDrRVZHo08FYg==} + /@babel/plugin-transform-unicode-escapes@7.22.10(@babel/core@7.18.2): + resolution: {integrity: sha512-lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -8007,17 +7902,17 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-unicode-escapes@7.22.5(@babel/core@7.22.9): - resolution: {integrity: sha512-biEmVg1IYB/raUO5wT1tgfacCef15Fbzhkx493D3urBI++6hpJ+RFG4SrWMn0NEZLfvilqKf3QDrRVZHo08FYg==} + /@babel/plugin-transform-unicode-escapes@7.22.10(@babel/core@7.23.2): + resolution: {integrity: sha512-lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 - /@babel/plugin-transform-unicode-escapes@7.22.5(@babel/core@7.4.4): - resolution: {integrity: sha512-biEmVg1IYB/raUO5wT1tgfacCef15Fbzhkx493D3urBI++6hpJ+RFG4SrWMn0NEZLfvilqKf3QDrRVZHo08FYg==} + /@babel/plugin-transform-unicode-escapes@7.22.10(@babel/core@7.4.4): + resolution: {integrity: sha512-lRfaRKGZCBqDlRU3UIFovdp9c9mEvlylmpod0/OatICsSfuQ9YFthRo1tpTkGsklEefZdqlEFdY4A2dwTb6ohg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -8026,14 +7921,14 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-unicode-property-regex@7.22.5(@babel/core@7.22.9): + /@babel/plugin-transform-unicode-property-regex@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 - '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.22.9) + '@babel/core': 7.23.2 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.2) '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-unicode-property-regex@7.22.5(@babel/core@7.4.4): @@ -8043,7 +7938,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.4.4 - '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.4.4) + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.4.4) '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -8054,7 +7949,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.2 - '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.18.2) + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.18.2) '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -8065,18 +7960,18 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.2.2 - '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.2.2) + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.2.2) '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-unicode-regex@7.22.5(@babel/core@7.22.9): + /@babel/plugin-transform-unicode-regex@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 - '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.22.9) + '@babel/core': 7.23.2 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.2) '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-unicode-regex@7.22.5(@babel/core@7.4.4): @@ -8086,7 +7981,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.4.4 - '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.4.4) + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.4.4) '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -8097,7 +7992,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.4.5 - '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.4.5) + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.4.5) '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -8108,18 +8003,18 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.9.0 - '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.9.0) + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.9.0) '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-transform-unicode-sets-regex@7.22.5(@babel/core@7.22.9): + /@babel/plugin-transform-unicode-sets-regex@7.22.5(@babel/core@7.23.2): resolution: {integrity: sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.9 - '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.22.9) + '@babel/core': 7.23.2 + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.2) '@babel/helper-plugin-utils': 7.22.5 /@babel/plugin-transform-unicode-sets-regex@7.22.5(@babel/core@7.4.4): @@ -8129,7 +8024,7 @@ packages: '@babel/core': ^7.0.0 dependencies: '@babel/core': 7.4.4 - '@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.4.4) + '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.4.4) '@babel/helper-plugin-utils': 7.22.5 dev: true @@ -8154,12 +8049,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.22.9 + '@babel/compat-data': 7.23.2 '@babel/core': 7.18.2 - '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.18.2) - '@babel/helper-module-imports': 7.22.5 + '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-option': 7.22.5 + '@babel/helper-validator-option': 7.22.15 '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.18.2) '@babel/plugin-proposal-class-properties': 7.12.1(@babel/core@7.18.2) '@babel/plugin-proposal-dynamic-import': 7.18.6(@babel/core@7.18.2) @@ -8188,38 +8083,38 @@ packages: '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.18.2) '@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.18.2) '@babel/plugin-transform-block-scoped-functions': 7.22.5(@babel/core@7.18.2) - '@babel/plugin-transform-block-scoping': 7.22.5(@babel/core@7.18.2) - '@babel/plugin-transform-classes': 7.22.6(@babel/core@7.18.2) + '@babel/plugin-transform-block-scoping': 7.23.0(@babel/core@7.18.2) + '@babel/plugin-transform-classes': 7.22.15(@babel/core@7.18.2) '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.18.2) - '@babel/plugin-transform-destructuring': 7.22.5(@babel/core@7.18.2) + '@babel/plugin-transform-destructuring': 7.23.0(@babel/core@7.18.2) '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.18.2) '@babel/plugin-transform-duplicate-keys': 7.22.5(@babel/core@7.18.2) '@babel/plugin-transform-exponentiation-operator': 7.22.5(@babel/core@7.18.2) - '@babel/plugin-transform-for-of': 7.22.5(@babel/core@7.18.2) + '@babel/plugin-transform-for-of': 7.22.15(@babel/core@7.18.2) '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.18.2) '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.18.2) '@babel/plugin-transform-member-expression-literals': 7.22.5(@babel/core@7.18.2) - '@babel/plugin-transform-modules-amd': 7.22.5(@babel/core@7.18.2) + '@babel/plugin-transform-modules-amd': 7.23.0(@babel/core@7.18.2) '@babel/plugin-transform-modules-commonjs': 7.12.1(@babel/core@7.18.2) - '@babel/plugin-transform-modules-systemjs': 7.22.5(@babel/core@7.18.2) + '@babel/plugin-transform-modules-systemjs': 7.23.0(@babel/core@7.18.2) '@babel/plugin-transform-modules-umd': 7.22.5(@babel/core@7.18.2) '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.18.2) '@babel/plugin-transform-new-target': 7.22.5(@babel/core@7.18.2) '@babel/plugin-transform-object-super': 7.22.5(@babel/core@7.18.2) - '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.18.2) + '@babel/plugin-transform-parameters': 7.22.15(@babel/core@7.18.2) '@babel/plugin-transform-property-literals': 7.22.5(@babel/core@7.18.2) - '@babel/plugin-transform-regenerator': 7.22.5(@babel/core@7.18.2) + '@babel/plugin-transform-regenerator': 7.22.10(@babel/core@7.18.2) '@babel/plugin-transform-reserved-words': 7.22.5(@babel/core@7.18.2) '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.18.2) '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.18.2) '@babel/plugin-transform-sticky-regex': 7.22.5(@babel/core@7.18.2) '@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.18.2) '@babel/plugin-transform-typeof-symbol': 7.22.5(@babel/core@7.18.2) - '@babel/plugin-transform-unicode-escapes': 7.22.5(@babel/core@7.18.2) + '@babel/plugin-transform-unicode-escapes': 7.22.10(@babel/core@7.18.2) '@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.18.2) - '@babel/preset-modules': 0.1.5(@babel/core@7.18.2) - '@babel/types': 7.22.5 - core-js-compat: 3.31.1 + '@babel/preset-modules': 0.1.6(@babel/core@7.18.2) + '@babel/types': 7.23.0 + core-js-compat: 3.33.1 semver: 5.7.2 dev: true @@ -8229,7 +8124,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.2.2 - '@babel/helper-module-imports': 7.22.5 + '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.2.2) '@babel/plugin-proposal-json-strings': 7.18.6(@babel/core@7.2.2) @@ -8242,23 +8137,23 @@ packages: '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.2.2) '@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.2.2) '@babel/plugin-transform-block-scoped-functions': 7.22.5(@babel/core@7.2.2) - '@babel/plugin-transform-block-scoping': 7.22.5(@babel/core@7.2.2) - '@babel/plugin-transform-classes': 7.22.6(@babel/core@7.2.2) + '@babel/plugin-transform-block-scoping': 7.23.0(@babel/core@7.2.2) + '@babel/plugin-transform-classes': 7.22.15(@babel/core@7.2.2) '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.2.2) '@babel/plugin-transform-destructuring': 7.2.0(@babel/core@7.2.2) '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.2.2) '@babel/plugin-transform-duplicate-keys': 7.22.5(@babel/core@7.2.2) '@babel/plugin-transform-exponentiation-operator': 7.22.5(@babel/core@7.2.2) - '@babel/plugin-transform-for-of': 7.22.5(@babel/core@7.2.2) + '@babel/plugin-transform-for-of': 7.22.15(@babel/core@7.2.2) '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.2.2) '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.2.2) - '@babel/plugin-transform-modules-amd': 7.22.5(@babel/core@7.2.2) - '@babel/plugin-transform-modules-commonjs': 7.22.5(@babel/core@7.2.2) - '@babel/plugin-transform-modules-systemjs': 7.22.5(@babel/core@7.2.2) + '@babel/plugin-transform-modules-amd': 7.23.0(@babel/core@7.2.2) + '@babel/plugin-transform-modules-commonjs': 7.23.0(@babel/core@7.2.2) + '@babel/plugin-transform-modules-systemjs': 7.23.0(@babel/core@7.2.2) '@babel/plugin-transform-modules-umd': 7.22.5(@babel/core@7.2.2) '@babel/plugin-transform-new-target': 7.22.5(@babel/core@7.2.2) '@babel/plugin-transform-object-super': 7.22.5(@babel/core@7.2.2) - '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.2.2) + '@babel/plugin-transform-parameters': 7.22.15(@babel/core@7.2.2) '@babel/plugin-transform-regenerator': 7.0.0(@babel/core@7.2.2) '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.2.2) '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.2.2) @@ -8266,115 +8161,115 @@ packages: '@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.2.2) '@babel/plugin-transform-typeof-symbol': 7.22.5(@babel/core@7.2.2) '@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.2.2) - browserslist: 4.21.9 + browserslist: 4.22.1 invariant: 2.2.4 js-levenshtein: 1.1.6 semver: 5.7.2 dev: true - /@babel/preset-env@7.22.9(@babel/core@7.22.9): - resolution: {integrity: sha512-wNi5H/Emkhll/bqPjsjQorSykrlfY5OWakd6AulLvMEytpKasMVUpVy8RL4qBIBs5Ac6/5i0/Rv0b/Fg6Eag/g==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/compat-data': 7.22.9 - '@babel/core': 7.22.9 - '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.9) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-option': 7.22.5 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.22.9) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.9) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.22.9) - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.22.9) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.9) - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.22.9) - '@babel/plugin-syntax-import-assertions': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-syntax-import-attributes': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.22.9) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.9) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.9) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.9) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.9) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.9) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.9) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.9) - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.22.9) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.22.9) - '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.22.9) - '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-async-generator-functions': 7.22.7(@babel/core@7.22.9) - '@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-block-scoped-functions': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-block-scoping': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-class-properties': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-class-static-block': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-classes': 7.22.6(@babel/core@7.22.9) - '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-destructuring': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-duplicate-keys': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-dynamic-import': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-exponentiation-operator': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-export-namespace-from': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-for-of': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-json-strings': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-logical-assignment-operators': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-member-expression-literals': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-modules-amd': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-modules-commonjs': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-modules-systemjs': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-modules-umd': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-new-target': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-nullish-coalescing-operator': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-numeric-separator': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-object-rest-spread': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-object-super': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-optional-catch-binding': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-optional-chaining': 7.22.6(@babel/core@7.22.9) - '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-private-methods': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-private-property-in-object': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-property-literals': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-regenerator': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-reserved-words': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-sticky-regex': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-typeof-symbol': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-unicode-escapes': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-unicode-property-regex': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-unicode-sets-regex': 7.22.5(@babel/core@7.22.9) - '@babel/preset-modules': 0.1.5(@babel/core@7.22.9) - '@babel/types': 7.22.5 - babel-plugin-polyfill-corejs2: 0.4.4(@babel/core@7.22.9) - babel-plugin-polyfill-corejs3: 0.8.2(@babel/core@7.22.9) - babel-plugin-polyfill-regenerator: 0.5.1(@babel/core@7.22.9) - core-js-compat: 3.31.1 + /@babel/preset-env@7.23.2(@babel/core@7.23.2): + resolution: {integrity: sha512-BW3gsuDD+rvHL2VO2SjAUNTBe5YrjsTiDyqamPDWY723na3/yPQ65X5oQkFVJZ0o50/2d+svm1rkPoJeR1KxVQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/compat-data': 7.23.2 + '@babel/core': 7.23.2 + '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-plugin-utils': 7.22.5 + '@babel/helper-validator-option': 7.22.15 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.22.15(@babel/core@7.23.2) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.22.15(@babel/core@7.23.2) + '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.2) + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.2) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.2) + '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.2) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-import-assertions': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-syntax-import-attributes': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.2) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.2) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.2) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.2) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.2) + '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.23.2) + '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-async-generator-functions': 7.23.2(@babel/core@7.23.2) + '@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-block-scoped-functions': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-block-scoping': 7.23.0(@babel/core@7.23.2) + '@babel/plugin-transform-class-properties': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-class-static-block': 7.22.11(@babel/core@7.23.2) + '@babel/plugin-transform-classes': 7.22.15(@babel/core@7.23.2) + '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-destructuring': 7.23.0(@babel/core@7.23.2) + '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-duplicate-keys': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-dynamic-import': 7.22.11(@babel/core@7.23.2) + '@babel/plugin-transform-exponentiation-operator': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-export-namespace-from': 7.22.11(@babel/core@7.23.2) + '@babel/plugin-transform-for-of': 7.22.15(@babel/core@7.23.2) + '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-json-strings': 7.22.11(@babel/core@7.23.2) + '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-logical-assignment-operators': 7.22.11(@babel/core@7.23.2) + '@babel/plugin-transform-member-expression-literals': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-modules-amd': 7.23.0(@babel/core@7.23.2) + '@babel/plugin-transform-modules-commonjs': 7.23.0(@babel/core@7.23.2) + '@babel/plugin-transform-modules-systemjs': 7.23.0(@babel/core@7.23.2) + '@babel/plugin-transform-modules-umd': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-new-target': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-nullish-coalescing-operator': 7.22.11(@babel/core@7.23.2) + '@babel/plugin-transform-numeric-separator': 7.22.11(@babel/core@7.23.2) + '@babel/plugin-transform-object-rest-spread': 7.22.15(@babel/core@7.23.2) + '@babel/plugin-transform-object-super': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-optional-catch-binding': 7.22.11(@babel/core@7.23.2) + '@babel/plugin-transform-optional-chaining': 7.23.0(@babel/core@7.23.2) + '@babel/plugin-transform-parameters': 7.22.15(@babel/core@7.23.2) + '@babel/plugin-transform-private-methods': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-private-property-in-object': 7.22.11(@babel/core@7.23.2) + '@babel/plugin-transform-property-literals': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-regenerator': 7.22.10(@babel/core@7.23.2) + '@babel/plugin-transform-reserved-words': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-sticky-regex': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-typeof-symbol': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-unicode-escapes': 7.22.10(@babel/core@7.23.2) + '@babel/plugin-transform-unicode-property-regex': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-unicode-sets-regex': 7.22.5(@babel/core@7.23.2) + '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.23.2) + '@babel/types': 7.23.0 + babel-plugin-polyfill-corejs2: 0.4.6(@babel/core@7.23.2) + babel-plugin-polyfill-corejs3: 0.8.6(@babel/core@7.23.2) + babel-plugin-polyfill-regenerator: 0.5.3(@babel/core@7.23.2) + core-js-compat: 3.33.1 semver: 6.3.1 transitivePeerDependencies: - supports-color - /@babel/preset-env@7.22.9(@babel/core@7.4.4): - resolution: {integrity: sha512-wNi5H/Emkhll/bqPjsjQorSykrlfY5OWakd6AulLvMEytpKasMVUpVy8RL4qBIBs5Ac6/5i0/Rv0b/Fg6Eag/g==} + /@babel/preset-env@7.23.2(@babel/core@7.4.4): + resolution: {integrity: sha512-BW3gsuDD+rvHL2VO2SjAUNTBe5YrjsTiDyqamPDWY723na3/yPQ65X5oQkFVJZ0o50/2d+svm1rkPoJeR1KxVQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.22.9 + '@babel/compat-data': 7.23.2 '@babel/core': 7.4.4 - '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.4.4) + '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-option': 7.22.5 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.22.5(@babel/core@7.4.4) - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.22.5(@babel/core@7.4.4) + '@babel/helper-validator-option': 7.22.15 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.22.15(@babel/core@7.4.4) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.22.15(@babel/core@7.4.4) '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.4.4) '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.4.4) '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.4.4) @@ -8395,59 +8290,59 @@ packages: '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.4.4) '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.4.4) '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.4.4) - '@babel/plugin-transform-async-generator-functions': 7.22.7(@babel/core@7.4.4) + '@babel/plugin-transform-async-generator-functions': 7.23.2(@babel/core@7.4.4) '@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.4.4) '@babel/plugin-transform-block-scoped-functions': 7.22.5(@babel/core@7.4.4) - '@babel/plugin-transform-block-scoping': 7.22.5(@babel/core@7.4.4) + '@babel/plugin-transform-block-scoping': 7.23.0(@babel/core@7.4.4) '@babel/plugin-transform-class-properties': 7.22.5(@babel/core@7.4.4) - '@babel/plugin-transform-class-static-block': 7.22.5(@babel/core@7.4.4) - '@babel/plugin-transform-classes': 7.22.6(@babel/core@7.4.4) + '@babel/plugin-transform-class-static-block': 7.22.11(@babel/core@7.4.4) + '@babel/plugin-transform-classes': 7.22.15(@babel/core@7.4.4) '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.4.4) - '@babel/plugin-transform-destructuring': 7.22.5(@babel/core@7.4.4) + '@babel/plugin-transform-destructuring': 7.23.0(@babel/core@7.4.4) '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.4.4) '@babel/plugin-transform-duplicate-keys': 7.22.5(@babel/core@7.4.4) - '@babel/plugin-transform-dynamic-import': 7.22.5(@babel/core@7.4.4) + '@babel/plugin-transform-dynamic-import': 7.22.11(@babel/core@7.4.4) '@babel/plugin-transform-exponentiation-operator': 7.22.5(@babel/core@7.4.4) - '@babel/plugin-transform-export-namespace-from': 7.22.5(@babel/core@7.4.4) - '@babel/plugin-transform-for-of': 7.22.5(@babel/core@7.4.4) + '@babel/plugin-transform-export-namespace-from': 7.22.11(@babel/core@7.4.4) + '@babel/plugin-transform-for-of': 7.22.15(@babel/core@7.4.4) '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.4.4) - '@babel/plugin-transform-json-strings': 7.22.5(@babel/core@7.4.4) + '@babel/plugin-transform-json-strings': 7.22.11(@babel/core@7.4.4) '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.4.4) - '@babel/plugin-transform-logical-assignment-operators': 7.22.5(@babel/core@7.4.4) + '@babel/plugin-transform-logical-assignment-operators': 7.22.11(@babel/core@7.4.4) '@babel/plugin-transform-member-expression-literals': 7.22.5(@babel/core@7.4.4) - '@babel/plugin-transform-modules-amd': 7.22.5(@babel/core@7.4.4) - '@babel/plugin-transform-modules-commonjs': 7.22.5(@babel/core@7.4.4) - '@babel/plugin-transform-modules-systemjs': 7.22.5(@babel/core@7.4.4) + '@babel/plugin-transform-modules-amd': 7.23.0(@babel/core@7.4.4) + '@babel/plugin-transform-modules-commonjs': 7.23.0(@babel/core@7.4.4) + '@babel/plugin-transform-modules-systemjs': 7.23.0(@babel/core@7.4.4) '@babel/plugin-transform-modules-umd': 7.22.5(@babel/core@7.4.4) '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.4.4) '@babel/plugin-transform-new-target': 7.22.5(@babel/core@7.4.4) - '@babel/plugin-transform-nullish-coalescing-operator': 7.22.5(@babel/core@7.4.4) - '@babel/plugin-transform-numeric-separator': 7.22.5(@babel/core@7.4.4) - '@babel/plugin-transform-object-rest-spread': 7.22.5(@babel/core@7.4.4) + '@babel/plugin-transform-nullish-coalescing-operator': 7.22.11(@babel/core@7.4.4) + '@babel/plugin-transform-numeric-separator': 7.22.11(@babel/core@7.4.4) + '@babel/plugin-transform-object-rest-spread': 7.22.15(@babel/core@7.4.4) '@babel/plugin-transform-object-super': 7.22.5(@babel/core@7.4.4) - '@babel/plugin-transform-optional-catch-binding': 7.22.5(@babel/core@7.4.4) - '@babel/plugin-transform-optional-chaining': 7.22.6(@babel/core@7.4.4) - '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.4.4) + '@babel/plugin-transform-optional-catch-binding': 7.22.11(@babel/core@7.4.4) + '@babel/plugin-transform-optional-chaining': 7.23.0(@babel/core@7.4.4) + '@babel/plugin-transform-parameters': 7.22.15(@babel/core@7.4.4) '@babel/plugin-transform-private-methods': 7.22.5(@babel/core@7.4.4) - '@babel/plugin-transform-private-property-in-object': 7.22.5(@babel/core@7.4.4) + '@babel/plugin-transform-private-property-in-object': 7.22.11(@babel/core@7.4.4) '@babel/plugin-transform-property-literals': 7.22.5(@babel/core@7.4.4) - '@babel/plugin-transform-regenerator': 7.22.5(@babel/core@7.4.4) + '@babel/plugin-transform-regenerator': 7.22.10(@babel/core@7.4.4) '@babel/plugin-transform-reserved-words': 7.22.5(@babel/core@7.4.4) '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.4.4) '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.4.4) '@babel/plugin-transform-sticky-regex': 7.22.5(@babel/core@7.4.4) '@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.4.4) '@babel/plugin-transform-typeof-symbol': 7.22.5(@babel/core@7.4.4) - '@babel/plugin-transform-unicode-escapes': 7.22.5(@babel/core@7.4.4) + '@babel/plugin-transform-unicode-escapes': 7.22.10(@babel/core@7.4.4) '@babel/plugin-transform-unicode-property-regex': 7.22.5(@babel/core@7.4.4) '@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.4.4) '@babel/plugin-transform-unicode-sets-regex': 7.22.5(@babel/core@7.4.4) - '@babel/preset-modules': 0.1.5(@babel/core@7.4.4) - '@babel/types': 7.22.5 - babel-plugin-polyfill-corejs2: 0.4.4(@babel/core@7.4.4) - babel-plugin-polyfill-corejs3: 0.8.2(@babel/core@7.4.4) - babel-plugin-polyfill-regenerator: 0.5.1(@babel/core@7.4.4) - core-js-compat: 3.31.1 + '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.4.4) + '@babel/types': 7.23.0 + babel-plugin-polyfill-corejs2: 0.4.6(@babel/core@7.4.4) + babel-plugin-polyfill-corejs3: 0.8.6(@babel/core@7.4.4) + babel-plugin-polyfill-regenerator: 0.5.3(@babel/core@7.4.4) + core-js-compat: 3.33.1 semver: 6.3.1 transitivePeerDependencies: - supports-color @@ -8459,7 +8354,7 @@ packages: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.4.5 - '@babel/helper-module-imports': 7.22.5 + '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-proposal-async-generator-functions': 7.2.0(@babel/core@7.4.5) '@babel/plugin-proposal-json-strings': 7.18.6(@babel/core@7.4.5) @@ -8473,27 +8368,27 @@ packages: '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.4.5) '@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.4.5) '@babel/plugin-transform-block-scoped-functions': 7.22.5(@babel/core@7.4.5) - '@babel/plugin-transform-block-scoping': 7.22.5(@babel/core@7.4.5) - '@babel/plugin-transform-classes': 7.22.6(@babel/core@7.4.5) + '@babel/plugin-transform-block-scoping': 7.23.0(@babel/core@7.4.5) + '@babel/plugin-transform-classes': 7.22.15(@babel/core@7.4.5) '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.4.5) '@babel/plugin-transform-destructuring': 7.4.4(@babel/core@7.4.5) '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.4.5) '@babel/plugin-transform-duplicate-keys': 7.22.5(@babel/core@7.4.5) '@babel/plugin-transform-exponentiation-operator': 7.22.5(@babel/core@7.4.5) - '@babel/plugin-transform-for-of': 7.22.5(@babel/core@7.4.5) + '@babel/plugin-transform-for-of': 7.22.15(@babel/core@7.4.5) '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.4.5) '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.4.5) '@babel/plugin-transform-member-expression-literals': 7.22.5(@babel/core@7.4.5) - '@babel/plugin-transform-modules-amd': 7.22.5(@babel/core@7.4.5) - '@babel/plugin-transform-modules-commonjs': 7.22.5(@babel/core@7.4.5) - '@babel/plugin-transform-modules-systemjs': 7.22.5(@babel/core@7.4.5) + '@babel/plugin-transform-modules-amd': 7.23.0(@babel/core@7.4.5) + '@babel/plugin-transform-modules-commonjs': 7.23.0(@babel/core@7.4.5) + '@babel/plugin-transform-modules-systemjs': 7.23.0(@babel/core@7.4.5) '@babel/plugin-transform-modules-umd': 7.22.5(@babel/core@7.4.5) '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.4.5) '@babel/plugin-transform-new-target': 7.22.5(@babel/core@7.4.5) '@babel/plugin-transform-object-super': 7.22.5(@babel/core@7.4.5) - '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.4.5) + '@babel/plugin-transform-parameters': 7.22.15(@babel/core@7.4.5) '@babel/plugin-transform-property-literals': 7.22.5(@babel/core@7.4.5) - '@babel/plugin-transform-regenerator': 7.22.5(@babel/core@7.4.5) + '@babel/plugin-transform-regenerator': 7.22.10(@babel/core@7.4.5) '@babel/plugin-transform-reserved-words': 7.22.5(@babel/core@7.4.5) '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.4.5) '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.4.5) @@ -8501,9 +8396,9 @@ packages: '@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.4.5) '@babel/plugin-transform-typeof-symbol': 7.22.5(@babel/core@7.4.5) '@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.4.5) - '@babel/types': 7.22.5 - browserslist: 4.21.9 - core-js-compat: 3.31.1 + '@babel/types': 7.23.0 + browserslist: 4.22.1 + core-js-compat: 3.33.1 invariant: 2.2.4 js-levenshtein: 1.1.6 semver: 5.7.2 @@ -8514,10 +8409,10 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.22.9 + '@babel/compat-data': 7.23.2 '@babel/core': 7.9.0 - '@babel/helper-compilation-targets': 7.22.9(@babel/core@7.9.0) - '@babel/helper-module-imports': 7.22.5 + '@babel/helper-compilation-targets': 7.22.15 + '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.9.0) '@babel/plugin-proposal-dynamic-import': 7.18.6(@babel/core@7.9.0) @@ -8540,27 +8435,27 @@ packages: '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.9.0) '@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.9.0) '@babel/plugin-transform-block-scoped-functions': 7.22.5(@babel/core@7.9.0) - '@babel/plugin-transform-block-scoping': 7.22.5(@babel/core@7.9.0) - '@babel/plugin-transform-classes': 7.22.6(@babel/core@7.9.0) + '@babel/plugin-transform-block-scoping': 7.23.0(@babel/core@7.9.0) + '@babel/plugin-transform-classes': 7.22.15(@babel/core@7.9.0) '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.9.0) - '@babel/plugin-transform-destructuring': 7.22.5(@babel/core@7.9.0) + '@babel/plugin-transform-destructuring': 7.23.0(@babel/core@7.9.0) '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.9.0) '@babel/plugin-transform-duplicate-keys': 7.22.5(@babel/core@7.9.0) '@babel/plugin-transform-exponentiation-operator': 7.22.5(@babel/core@7.9.0) - '@babel/plugin-transform-for-of': 7.22.5(@babel/core@7.9.0) + '@babel/plugin-transform-for-of': 7.22.15(@babel/core@7.9.0) '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.9.0) '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.9.0) '@babel/plugin-transform-member-expression-literals': 7.22.5(@babel/core@7.9.0) - '@babel/plugin-transform-modules-amd': 7.22.5(@babel/core@7.9.0) - '@babel/plugin-transform-modules-commonjs': 7.22.5(@babel/core@7.9.0) - '@babel/plugin-transform-modules-systemjs': 7.22.5(@babel/core@7.9.0) + '@babel/plugin-transform-modules-amd': 7.23.0(@babel/core@7.9.0) + '@babel/plugin-transform-modules-commonjs': 7.23.0(@babel/core@7.9.0) + '@babel/plugin-transform-modules-systemjs': 7.23.0(@babel/core@7.9.0) '@babel/plugin-transform-modules-umd': 7.22.5(@babel/core@7.9.0) '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.9.0) '@babel/plugin-transform-new-target': 7.22.5(@babel/core@7.9.0) '@babel/plugin-transform-object-super': 7.22.5(@babel/core@7.9.0) - '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.9.0) + '@babel/plugin-transform-parameters': 7.22.15(@babel/core@7.9.0) '@babel/plugin-transform-property-literals': 7.22.5(@babel/core@7.9.0) - '@babel/plugin-transform-regenerator': 7.22.5(@babel/core@7.9.0) + '@babel/plugin-transform-regenerator': 7.22.10(@babel/core@7.9.0) '@babel/plugin-transform-reserved-words': 7.22.5(@babel/core@7.9.0) '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.9.0) '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.9.0) @@ -8568,10 +8463,10 @@ packages: '@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.9.0) '@babel/plugin-transform-typeof-symbol': 7.22.5(@babel/core@7.9.0) '@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.9.0) - '@babel/preset-modules': 0.1.5(@babel/core@7.9.0) - '@babel/types': 7.22.5 - browserslist: 4.21.9 - core-js-compat: 3.31.1 + '@babel/preset-modules': 0.1.6(@babel/core@7.9.0) + '@babel/types': 7.23.0 + browserslist: 4.22.1 + core-js-compat: 3.33.1 invariant: 2.2.4 levenary: 1.1.1 semver: 5.7.2 @@ -8587,65 +8482,61 @@ packages: '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.2.2) dev: true - /@babel/preset-flow@7.22.5(@babel/core@7.22.9): - resolution: {integrity: sha512-ta2qZ+LSiGCrP5pgcGt8xMnnkXQrq8Sa4Ulhy06BOlF5QbLw9q5hIx7bn5MrsvyTGAfh6kTOo07Q+Pfld/8Y5Q==} + /@babel/preset-flow@7.22.15(@babel/core@7.23.2): + resolution: {integrity: sha512-dB5aIMqpkgbTfN5vDdTRPzjqtWiZcRESNR88QYnoPR+bmdYoluOzMX9tQerTv0XzSgZYctPfO1oc0N5zdog1ew==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-option': 7.22.5 - '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.22.9) + '@babel/helper-validator-option': 7.22.15 + '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.23.2) - /@babel/preset-modules@0.1.5(@babel/core@7.18.2): - resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} + /@babel/preset-modules@0.1.6(@babel/core@7.18.2): + resolution: {integrity: sha512-ID2yj6K/4lKfhuU3+EX4UvNbIt7eACFbHmNUjzA+ep+B5971CknnA/9DEWKbRokfbbtblxxxXFJJrH47UEAMVg==} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0 dependencies: '@babel/core': 7.18.2 '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.18.2) '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.18.2) - '@babel/types': 7.22.5 + '@babel/types': 7.23.0 esutils: 2.0.3 dev: true - /@babel/preset-modules@0.1.5(@babel/core@7.22.9): - resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} + /@babel/preset-modules@0.1.6(@babel/core@7.9.0): + resolution: {integrity: sha512-ID2yj6K/4lKfhuU3+EX4UvNbIt7eACFbHmNUjzA+ep+B5971CknnA/9DEWKbRokfbbtblxxxXFJJrH47UEAMVg==} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.9.0 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.22.9) - '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.22.9) - '@babel/types': 7.22.5 + '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.9.0) + '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.9.0) + '@babel/types': 7.23.0 esutils: 2.0.3 + dev: true - /@babel/preset-modules@0.1.5(@babel/core@7.4.4): - resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} + /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.23.2): + resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0 dependencies: - '@babel/core': 7.4.4 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.4.4) - '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.4.4) - '@babel/types': 7.22.5 + '@babel/types': 7.23.0 esutils: 2.0.3 - dev: true - /@babel/preset-modules@0.1.5(@babel/core@7.9.0): - resolution: {integrity: sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==} + /@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.4.4): + resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0 dependencies: - '@babel/core': 7.9.0 + '@babel/core': 7.4.4 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.9.0) - '@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.9.0) - '@babel/types': 7.22.5 + '@babel/types': 7.23.0 esutils: 2.0.3 dev: true @@ -8657,7 +8548,7 @@ packages: '@babel/core': 7.2.2 '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.2.2) - '@babel/plugin-transform-react-jsx': 7.22.5(@babel/core@7.2.2) + '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.2.2) '@babel/plugin-transform-react-jsx-self': 7.22.5(@babel/core@7.2.2) '@babel/plugin-transform-react-jsx-source': 7.22.5(@babel/core@7.2.2) dev: true @@ -8670,7 +8561,7 @@ packages: '@babel/core': 7.4.5 '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.4.5) - '@babel/plugin-transform-react-jsx': 7.22.5(@babel/core@7.4.5) + '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.4.5) '@babel/plugin-transform-react-jsx-self': 7.22.5(@babel/core@7.4.5) '@babel/plugin-transform-react-jsx-source': 7.22.5(@babel/core@7.4.5) dev: true @@ -8683,41 +8574,41 @@ packages: '@babel/core': 7.18.2 '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.18.2) - '@babel/plugin-transform-react-jsx': 7.22.5(@babel/core@7.18.2) + '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.18.2) '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.18.2) '@babel/plugin-transform-react-jsx-self': 7.22.5(@babel/core@7.18.2) '@babel/plugin-transform-react-jsx-source': 7.22.5(@babel/core@7.18.2) '@babel/plugin-transform-react-pure-annotations': 7.22.5(@babel/core@7.18.2) dev: true - /@babel/preset-react@7.22.5(@babel/core@7.18.2): - resolution: {integrity: sha512-M+Is3WikOpEJHgR385HbuCITPTaPRaNkibTEa9oiofmJvIsrceb4yp9RL9Kb+TE8LznmeyZqpP+Lopwcx59xPQ==} + /@babel/preset-react@7.22.15(@babel/core@7.18.2): + resolution: {integrity: sha512-Csy1IJ2uEh/PecCBXXoZGAZBeCATTuePzCSB7dLYWS0vOEj6CNpjxIhW4duWwZodBNueH7QO14WbGn8YyeuN9w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: '@babel/core': 7.18.2 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-option': 7.22.5 + '@babel/helper-validator-option': 7.22.15 '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.18.2) - '@babel/plugin-transform-react-jsx': 7.22.5(@babel/core@7.18.2) + '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.18.2) '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.18.2) '@babel/plugin-transform-react-pure-annotations': 7.22.5(@babel/core@7.18.2) dev: true - /@babel/preset-react@7.22.5(@babel/core@7.22.9): - resolution: {integrity: sha512-M+Is3WikOpEJHgR385HbuCITPTaPRaNkibTEa9oiofmJvIsrceb4yp9RL9Kb+TE8LznmeyZqpP+Lopwcx59xPQ==} + /@babel/preset-react@7.22.15(@babel/core@7.23.2): + resolution: {integrity: sha512-Csy1IJ2uEh/PecCBXXoZGAZBeCATTuePzCSB7dLYWS0vOEj6CNpjxIhW4duWwZodBNueH7QO14WbGn8YyeuN9w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-option': 7.22.5 - '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-react-jsx': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-react-pure-annotations': 7.22.5(@babel/core@7.22.9) + '@babel/helper-validator-option': 7.22.15 + '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.23.2) + '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-react-pure-annotations': 7.22.5(@babel/core@7.23.2) dev: true /@babel/preset-react@7.9.1(@babel/core@7.9.0): @@ -8728,7 +8619,7 @@ packages: '@babel/core': 7.9.0 '@babel/helper-plugin-utils': 7.22.5 '@babel/plugin-transform-react-display-name': 7.8.3(@babel/core@7.9.0) - '@babel/plugin-transform-react-jsx': 7.22.5(@babel/core@7.9.0) + '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.9.0) '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.9.0) '@babel/plugin-transform-react-jsx-self': 7.22.5(@babel/core@7.9.0) '@babel/plugin-transform-react-jsx-source': 7.22.5(@babel/core@7.9.0) @@ -8741,7 +8632,7 @@ packages: dependencies: '@babel/core': 7.2.2 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-transform-typescript': 7.22.9(@babel/core@7.2.2) + '@babel/plugin-transform-typescript': 7.22.15(@babel/core@7.2.2) dev: true /@babel/preset-typescript@7.12.1(@babel/core@7.18.2): @@ -8751,21 +8642,21 @@ packages: dependencies: '@babel/core': 7.18.2 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-transform-typescript': 7.22.9(@babel/core@7.18.2) + '@babel/plugin-transform-typescript': 7.22.15(@babel/core@7.18.2) dev: true - /@babel/preset-typescript@7.22.5(@babel/core@7.22.9): - resolution: {integrity: sha512-YbPaal9LxztSGhmndR46FmAbkJ/1fAsw293tSU+I5E5h+cnJ3d4GTwyUgGYmOXJYdGA+uNePle4qbaRzj2NISQ==} + /@babel/preset-typescript@7.23.2(@babel/core@7.23.2): + resolution: {integrity: sha512-u4UJc1XsS1GhIGteM8rnGiIvf9rJpiVgMEeCnwlLA7WJPC+jcXWJAGxYmeqs5hOZD8BbAfnV5ezBOxQbb4OUxA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-validator-option': 7.22.5 - '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-modules-commonjs': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-typescript': 7.22.9(@babel/core@7.22.9) + '@babel/helper-validator-option': 7.22.15 + '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-modules-commonjs': 7.23.0(@babel/core@7.23.2) + '@babel/plugin-transform-typescript': 7.22.15(@babel/core@7.23.2) /@babel/preset-typescript@7.3.3(@babel/core@7.4.5): resolution: {integrity: sha512-mzMVuIP4lqtn4du2ynEfdO0+RYcslwrZiJHXu4MGaC1ctJiW2fyaeDrtjJGs7R/KebZ1sgowcIoWf4uRpEfKEg==} @@ -8774,7 +8665,7 @@ packages: dependencies: '@babel/core': 7.4.5 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-transform-typescript': 7.22.9(@babel/core@7.4.5) + '@babel/plugin-transform-typescript': 7.22.15(@babel/core@7.4.5) dev: true /@babel/preset-typescript@7.9.0(@babel/core@7.9.0): @@ -8784,7 +8675,7 @@ packages: dependencies: '@babel/core': 7.9.0 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-transform-typescript': 7.22.9(@babel/core@7.9.0) + '@babel/plugin-transform-typescript': 7.22.15(@babel/core@7.9.0) dev: true /@babel/register@7.12.1(@babel/core@7.18.2): @@ -8800,21 +8691,21 @@ packages: source-map-support: 0.5.21 dev: true - /@babel/register@7.22.5(@babel/core@7.22.9): - resolution: {integrity: sha512-vV6pm/4CijSQ8Y47RH5SopXzursN35RQINfGJkmOlcpAtGuf94miFvIPhCKGQN7WGIcsgG1BHEX2KVdTYwTwUQ==} + /@babel/register@7.22.15(@babel/core@7.23.2): + resolution: {integrity: sha512-V3Q3EqoQdn65RCgTLwauZaTfd1ShhwPmbBv+1dkZV/HpCGMKVyn6oFcRlI7RaKqiDQjX2Qd3AuoEguBgdjIKlg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 clone-deep: 4.0.1 find-cache-dir: 2.1.0 make-dir: 2.1.0 pirates: 4.0.6 source-map-support: 0.5.21 - /@babel/register@7.22.5(@babel/core@7.4.4): - resolution: {integrity: sha512-vV6pm/4CijSQ8Y47RH5SopXzursN35RQINfGJkmOlcpAtGuf94miFvIPhCKGQN7WGIcsgG1BHEX2KVdTYwTwUQ==} + /@babel/register@7.22.15(@babel/core@7.4.4): + resolution: {integrity: sha512-V3Q3EqoQdn65RCgTLwauZaTfd1ShhwPmbBv+1dkZV/HpCGMKVyn6oFcRlI7RaKqiDQjX2Qd3AuoEguBgdjIKlg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 @@ -8836,23 +8727,16 @@ packages: dependencies: regenerator-runtime: 0.13.11 - /@babel/runtime@7.21.0: - resolution: {integrity: sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw==} + /@babel/runtime@7.23.2: + resolution: {integrity: sha512-mM8eg4yl5D6i3lu2QKPuPH4FArvJ8KhTofbE7jwMUv9KX5mBvwPAqnV3MlyBNqdp9RyRKP6Yck8TrfYrPvX3bg==} engines: {node: '>=6.9.0'} dependencies: - regenerator-runtime: 0.13.11 - dev: true - - /@babel/runtime@7.22.6: - resolution: {integrity: sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ==} - engines: {node: '>=6.9.0'} - dependencies: - regenerator-runtime: 0.13.11 + regenerator-runtime: 0.14.0 /@babel/runtime@7.4.5: resolution: {integrity: sha512-TuI4qpWZP6lGOGIuGWtp9sPluqYICmbk8T/1vpSysqJxRPkudh/ofFWyqdcMsDf2s7KvDL4/YHgKyvcS3g9CJQ==} dependencies: - regenerator-runtime: 0.13.11 + regenerator-runtime: 0.13.2 dev: true /@babel/runtime@7.9.0: @@ -8861,37 +8745,37 @@ packages: regenerator-runtime: 0.13.11 dev: true - /@babel/template@7.22.5: - resolution: {integrity: sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==} + /@babel/template@7.22.15: + resolution: {integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==} engines: {node: '>=6.9.0'} dependencies: - '@babel/code-frame': 7.22.5 - '@babel/parser': 7.22.7 - '@babel/types': 7.22.5 + '@babel/code-frame': 7.22.13 + '@babel/parser': 7.23.0 + '@babel/types': 7.23.0 - /@babel/traverse@7.22.8(supports-color@5.5.0): - resolution: {integrity: sha512-y6LPR+wpM2I3qJrsheCTwhIinzkETbplIgPBbwvqPKc+uljeA5gP+3nP8irdYt1mjQaDnlIcG+dw8OjAco4GXw==} + /@babel/traverse@7.23.2(supports-color@5.5.0): + resolution: {integrity: sha512-azpe59SQ48qG6nu2CzcMLbxUudtN+dOM9kDbUqGq3HXUJRlo7i8fvPoxQUzYgLZ4cMVmuZgm8vvBpNeRhd6XSw==} engines: {node: '>=6.9.0'} dependencies: - '@babel/code-frame': 7.22.5 - '@babel/generator': 7.22.9 - '@babel/helper-environment-visitor': 7.22.5 - '@babel/helper-function-name': 7.22.5 + '@babel/code-frame': 7.22.13 + '@babel/generator': 7.23.0 + '@babel/helper-environment-visitor': 7.22.20 + '@babel/helper-function-name': 7.23.0 '@babel/helper-hoist-variables': 7.22.5 '@babel/helper-split-export-declaration': 7.22.6 - '@babel/parser': 7.22.7 - '@babel/types': 7.22.5 + '@babel/parser': 7.23.0 + '@babel/types': 7.23.0 debug: 4.3.4(supports-color@5.5.0) globals: 11.12.0 transitivePeerDependencies: - supports-color - /@babel/types@7.22.5: - resolution: {integrity: sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA==} + /@babel/types@7.23.0: + resolution: {integrity: sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg==} engines: {node: '>=6.9.0'} dependencies: '@babel/helper-string-parser': 7.22.5 - '@babel/helper-validator-identifier': 7.22.5 + '@babel/helper-validator-identifier': 7.22.20 to-fast-properties: 2.0.0 /@bcoe/v8-coverage@0.2.3: @@ -8907,7 +8791,7 @@ packages: /@changesets/apply-release-plan@6.1.4: resolution: {integrity: sha512-FMpKF1fRlJyCZVYHr3CbinpZZ+6MwvOtWUuO8uo+svcATEoc1zRDcj23pAurJ2TZ/uVz1wFHH6K3NlACy0PLew==} dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 '@changesets/config': 2.3.1 '@changesets/get-version-range-type': 0.3.2 '@changesets/git': 2.0.0 @@ -8925,7 +8809,7 @@ packages: /@changesets/assemble-release-plan@5.2.4: resolution: {integrity: sha512-xJkWX+1/CUaOUWTguXEbCDTyWJFECEhmdtbkjhn5GVBGxdP/JwaHBIU9sW3FR6gD07UwZ7ovpiPclQZs+j+mvg==} dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 '@changesets/errors': 0.1.4 '@changesets/get-dependents-graph': 1.3.6 '@changesets/types': 5.2.1 @@ -8943,7 +8827,7 @@ packages: resolution: {integrity: sha512-XnTa+b51vt057fyAudvDKGB0Sh72xutQZNAdXkCqPBKO2zvs2yYZx5hFZj1u9cbtpwM6Sxtcr02/FQJfZOzemQ==} hasBin: true dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 '@changesets/apply-release-plan': 6.1.4 '@changesets/assemble-release-plan': 5.2.4 '@changesets/changelog-git': 0.1.14 @@ -8958,11 +8842,11 @@ packages: '@changesets/types': 5.2.1 '@changesets/write': 0.2.3 '@manypkg/get-packages': 1.1.3 - '@types/is-ci': 3.0.0 - '@types/semver': 6.2.3 + '@types/is-ci': 3.0.3 + '@types/semver': 6.2.5 ansi-colors: 4.1.3 chalk: 2.4.2 - enquirer: 2.3.6 + enquirer: 2.4.1 external-editor: 3.1.0 fs-extra: 7.0.1 human-id: 1.0.2 @@ -8970,12 +8854,12 @@ packages: meow: 6.1.1 outdent: 0.5.0 p-limit: 2.3.0 - preferred-pm: 3.0.3 + preferred-pm: 3.1.2 resolve-from: 5.0.0 semver: 5.7.2 spawndamnit: 2.0.0 term-size: 2.2.1 - tty-table: 4.2.1 + tty-table: 4.2.2 dev: true /@changesets/config@2.3.1: @@ -9009,7 +8893,7 @@ packages: /@changesets/get-release-plan@3.0.17: resolution: {integrity: sha512-6IwKTubNEgoOZwDontYc2x2cWXfr6IKxP3IhKeK+WjyD6y3M4Gl/jdQvBw+m/5zWILSOCAaGLu2ZF6Q+WiPniw==} dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 '@changesets/assemble-release-plan': 5.2.4 '@changesets/config': 2.3.1 '@changesets/pre': 1.0.14 @@ -9025,7 +8909,7 @@ packages: /@changesets/git@2.0.0: resolution: {integrity: sha512-enUVEWbiqUTxqSnmesyJGWfzd51PY4H7mH9yUw0hPVpZBJ6tQZFMU3F3mT/t9OJ/GjyiM4770i+sehAn6ymx6A==} dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 '@changesets/errors': 0.1.4 '@changesets/types': 5.2.1 '@manypkg/get-packages': 1.1.3 @@ -9050,7 +8934,7 @@ packages: /@changesets/pre@1.0.14: resolution: {integrity: sha512-dTsHmxQWEQekHYHbg+M1mDVYFvegDh9j/kySNuDKdylwfMEevTeDouR7IfHNyVodxZXu17sXoJuf2D0vi55FHQ==} dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 '@changesets/errors': 0.1.4 '@changesets/types': 5.2.1 '@manypkg/get-packages': 1.1.3 @@ -9060,7 +8944,7 @@ packages: /@changesets/read@0.5.9: resolution: {integrity: sha512-T8BJ6JS6j1gfO1HFq50kU3qawYxa4NTbI/ASNVVCBTsKquy2HYwM9r7ZnzkiMe8IEObAJtUVGSrePCOxAK2haQ==} dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 '@changesets/git': 2.0.0 '@changesets/logger': 0.0.5 '@changesets/parse': 0.3.16 @@ -9081,7 +8965,7 @@ packages: /@changesets/write@0.2.3: resolution: {integrity: sha512-Dbamr7AIMvslKnNYsLFafaVORx4H0pvCA2MHqgtNCySMe1blImEyAEOzDmcgKAkgz4+uwoLz7demIrX+JBr/Xw==} dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 '@changesets/types': 5.2.1 fs-extra: 7.0.1 human-id: 1.0.2 @@ -9117,107 +9001,107 @@ packages: resolution: {integrity: sha512-5a6wqoJV/xEdbRNKVo6I4hO3VjyDq//8q2f9I6PBAvMesJHFauXDorcNCsr9RzvsZnaWi5NYCcfyqP1QeFHFbw==} engines: {node: '>=4.0.0'} - /@csstools/postcss-color-function@1.1.1(postcss@8.4.25): + /@csstools/postcss-color-function@1.1.1(postcss@8.4.31): resolution: {integrity: sha512-Bc0f62WmHdtRDjf5f3e2STwRAl89N2CLb+9iAwzrv4L2hncrbDwnQD9PCq0gtAt7pOI2leIV08HIBUd4jxD8cw==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.25) - postcss: 8.4.25 + '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.31) + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: true - /@csstools/postcss-font-format-keywords@1.0.1(postcss@8.4.25): + /@csstools/postcss-font-format-keywords@1.0.1(postcss@8.4.31): resolution: {integrity: sha512-ZgrlzuUAjXIOc2JueK0X5sZDjCtgimVp/O5CEqTcs5ShWBa6smhWYbS0x5cVc/+rycTDbjjzoP0KTDnUneZGOg==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.25 + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: true - /@csstools/postcss-hwb-function@1.0.2(postcss@8.4.25): + /@csstools/postcss-hwb-function@1.0.2(postcss@8.4.31): resolution: {integrity: sha512-YHdEru4o3Rsbjmu6vHy4UKOXZD+Rn2zmkAmLRfPet6+Jz4Ojw8cbWxe1n42VaXQhD3CQUXXTooIy8OkVbUcL+w==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.25 + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: true - /@csstools/postcss-ic-unit@1.0.1(postcss@8.4.25): + /@csstools/postcss-ic-unit@1.0.1(postcss@8.4.31): resolution: {integrity: sha512-Ot1rcwRAaRHNKC9tAqoqNZhjdYBzKk1POgWfhN4uCOE47ebGcLRqXjKkApVDpjifL6u2/55ekkpnFcp+s/OZUw==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.25) - postcss: 8.4.25 + '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.31) + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: true - /@csstools/postcss-is-pseudo-class@2.0.7(postcss@8.4.25): + /@csstools/postcss-is-pseudo-class@2.0.7(postcss@8.4.31): resolution: {integrity: sha512-7JPeVVZHd+jxYdULl87lvjgvWldYu+Bc62s9vD/ED6/QTGjy0jy0US/f6BG53sVMTBJ1lzKZFpYmofBN9eaRiA==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.0.13) - postcss: 8.4.25 + postcss: 8.4.31 postcss-selector-parser: 6.0.13 dev: true - /@csstools/postcss-normalize-display-values@1.0.1(postcss@8.4.25): + /@csstools/postcss-normalize-display-values@1.0.1(postcss@8.4.31): resolution: {integrity: sha512-jcOanIbv55OFKQ3sYeFD/T0Ti7AMXc9nM1hZWu8m/2722gOTxFg7xYu4RDLJLeZmPUVQlGzo4jhzvTUq3x4ZUw==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.25 + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: true - /@csstools/postcss-oklab-function@1.1.1(postcss@8.4.25): + /@csstools/postcss-oklab-function@1.1.1(postcss@8.4.31): resolution: {integrity: sha512-nJpJgsdA3dA9y5pgyb/UfEzE7W5Ka7u0CX0/HIMVBNWzWemdcTH3XwANECU6anWv/ao4vVNLTMxhiPNZsTK6iA==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.25) - postcss: 8.4.25 + '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.31) + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: true - /@csstools/postcss-progressive-custom-properties@1.3.0(postcss@8.4.25): + /@csstools/postcss-progressive-custom-properties@1.3.0(postcss@8.4.31): resolution: {integrity: sha512-ASA9W1aIy5ygskZYuWams4BzafD12ULvSypmaLJT2jvQ8G0M3I8PRQhC0h7mG0Z3LI05+agZjqSR9+K9yaQQjA==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.3 dependencies: - postcss: 8.4.25 + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: true - /@csstools/postcss-stepped-value-functions@1.0.1(postcss@8.4.25): + /@csstools/postcss-stepped-value-functions@1.0.1(postcss@8.4.31): resolution: {integrity: sha512-dz0LNoo3ijpTOQqEJLY8nyaapl6umbmDcgj4AD0lgVQ572b2eqA1iGZYTTWhrcrHztWDDRAX2DGYyw2VBjvCvQ==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.25 + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: true - /@csstools/postcss-unset-value@1.0.2(postcss@8.4.25): + /@csstools/postcss-unset-value@1.0.2(postcss@8.4.31): resolution: {integrity: sha512-c8J4roPBILnelAsdLr4XOAR/GsTm0GJi4XpcfvoWk3U6KiTCqiFYc63KhRMQQX35jYMp4Ao8Ij9+IZRgMfJp1g==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.25 + postcss: 8.4.31 dev: true /@csstools/selector-specificity@2.2.0(postcss-selector-parser@6.0.13): @@ -9229,8 +9113,8 @@ packages: postcss-selector-parser: 6.0.13 dev: true - /@ctrl/tinycolor@3.6.0: - resolution: {integrity: sha512-/Z3l6pXthq0JvMYdUFyX9j0MaCltlIn6mfh9jLyQwg5aPKxkyNa0PTHtU1AlFXLNk55ZuAeJRcpvq+tmLfKmaQ==} + /@ctrl/tinycolor@3.6.1: + resolution: {integrity: sha512-SITSV6aIXsuVNV3f3O0f2n/cgyEDWoSqtZMYiAmcsYHydcKrOz3gUxB/iXd/Qf08+IZX4KpgNbvUdMBmWz+kcA==} engines: {node: '>=10'} /@discoveryjs/json-ext@0.5.7: @@ -9275,7 +9159,7 @@ packages: peerDependencies: react: '>=16.3.0 || 17' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 '@emotion/cache': 10.0.29 '@emotion/css': 10.0.27 '@emotion/serialize': 0.11.16 @@ -9289,7 +9173,7 @@ packages: peerDependencies: react: '>=16.3.0 || 17' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 '@emotion/cache': 10.0.29 '@emotion/css': 10.0.27 '@emotion/serialize': 0.11.16 @@ -9349,7 +9233,7 @@ packages: '@emotion/core': ^10.0.28 react: '>=16.3.0 || 17' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 '@emotion/core': 10.3.1(react@16.14.0) '@emotion/is-prop-valid': 0.8.8 '@emotion/serialize': 0.11.16 @@ -9363,7 +9247,7 @@ packages: '@emotion/core': ^10.0.28 react: '>=16.3.0 || 17' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 '@emotion/core': 10.3.1(react@17.0.2) '@emotion/is-prop-valid': 0.8.8 '@emotion/serialize': 0.11.16 @@ -9628,7 +9512,7 @@ packages: eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 dependencies: eslint: 7.32.0 - eslint-visitor-keys: 3.4.1 + eslint-visitor-keys: 3.4.3 dev: true /@eslint-community/eslint-utils@4.4.0(eslint@8.0.0): @@ -9638,11 +9522,11 @@ packages: eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 dependencies: eslint: 8.0.0 - eslint-visitor-keys: 3.4.1 + eslint-visitor-keys: 3.4.3 dev: true - /@eslint-community/regexpp@4.5.1: - resolution: {integrity: sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ==} + /@eslint-community/regexpp@4.10.0: + resolution: {integrity: sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==} engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} dev: true @@ -9653,7 +9537,7 @@ packages: ajv: 6.12.6 debug: 4.3.4(supports-color@5.5.0) espree: 7.3.1 - globals: 13.20.0 + globals: 13.23.0 ignore: 4.0.6 import-fresh: 3.3.0 js-yaml: 3.14.1 @@ -9669,8 +9553,8 @@ packages: dependencies: ajv: 6.12.6 debug: 4.3.4(supports-color@5.5.0) - espree: 9.6.0 - globals: 13.20.0 + espree: 9.6.1 + globals: 13.23.0 ignore: 5.2.4 import-fresh: 3.3.0 js-yaml: 4.1.0 @@ -9680,15 +9564,15 @@ packages: - supports-color dev: true - /@faker-js/faker@8.0.2: - resolution: {integrity: sha512-Uo3pGspElQW91PCvKSIAXoEgAUlRnH29sX2/p89kg7sP1m2PzCufHINd0FhTXQf6DYGiUlVncdSPa2F9wxed2A==} + /@faker-js/faker@8.2.0: + resolution: {integrity: sha512-VacmzZqVxdWdf9y64lDOMZNDMM/FQdtM9IsaOPKOm2suYwEatb8VkdHqOzXcDnZbk7YDE2BmsJmy/2Hmkn563g==} engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0, npm: '>=6.14.13'} dev: false /@fast-csv/format@4.3.5: resolution: {integrity: sha512-8iRn6QF3I8Ak78lNAa+Gdl5MJJBM5vRHivFtMRUWINdevNo00K7OXxS2PshawLKTejVwieIlPmK5YlLu6w4u8A==} dependencies: - '@types/node': 14.18.53 + '@types/node': 14.18.63 lodash.escaperegexp: 4.1.2 lodash.isboolean: 3.0.3 lodash.isequal: 4.5.0 @@ -9700,13 +9584,13 @@ packages: resolution: {integrity: sha512-6ueQTeJZtwKjmh23bdkq/DMqH4l4bmfvtQH98blOSbiXv/OUiyijSW6jU22IT8BNM1ujCaEvJfTtyCYVH38EMQ==} dependencies: '@formatjs/intl-localematcher': 0.4.0 - tslib: 2.6.0 + tslib: 2.6.2 dev: false /@formatjs/fast-memoize@2.2.0: resolution: {integrity: sha512-hnk/nY8FyrL5YxwP9e4r9dqeM6cAbo8PeU9UjyXojZMNvVad2Z06FAVHyR3Ecw6fza+0GH7vdJgiKIVXTMbSBA==} dependencies: - tslib: 2.6.0 + tslib: 2.6.2 dev: false /@formatjs/icu-messageformat-parser@2.6.0: @@ -9714,14 +9598,14 @@ packages: dependencies: '@formatjs/ecma402-abstract': 1.17.0 '@formatjs/icu-skeleton-parser': 1.6.0 - tslib: 2.6.0 + tslib: 2.6.2 dev: false /@formatjs/icu-skeleton-parser@1.6.0: resolution: {integrity: sha512-eMmxNpoX/J1IPUjPGSZwo0Wh+7CEvdEMddP2Jxg1gQJXfGfht/FdW2D5XDFj3VMbOTUQlDIdZJY7uC6O6gjPoA==} dependencies: '@formatjs/ecma402-abstract': 1.17.0 - tslib: 2.6.0 + tslib: 2.6.2 dev: false /@formatjs/intl-displaynames@1.2.10: @@ -9735,7 +9619,7 @@ packages: dependencies: '@formatjs/ecma402-abstract': 1.17.0 '@formatjs/intl-localematcher': 0.4.0 - tslib: 2.6.0 + tslib: 2.6.2 dev: false /@formatjs/intl-listformat@1.4.8: @@ -9749,13 +9633,13 @@ packages: dependencies: '@formatjs/ecma402-abstract': 1.17.0 '@formatjs/intl-localematcher': 0.4.0 - tslib: 2.6.0 + tslib: 2.6.2 dev: false /@formatjs/intl-localematcher@0.4.0: resolution: {integrity: sha512-bRTd+rKomvfdS4QDlVJ6TA/Jx1F2h/TBVO5LjvhQ7QPPHp19oPNMIum7W2CMEReq/zPxpmCeB31F9+5gl/qtvw==} dependencies: - tslib: 2.6.0 + tslib: 2.6.2 dev: false /@formatjs/intl-pluralrules@1.5.9: @@ -9796,7 +9680,7 @@ packages: '@formatjs/intl-displaynames': 6.5.0 '@formatjs/intl-listformat': 7.4.0 intl-messageformat: 10.5.0 - tslib: 2.6.0 + tslib: 2.6.2 typescript: 5.1.6 dev: false @@ -10007,12 +9891,12 @@ packages: '@formily/shared': 2.2.2 dev: false - /@grpc/grpc-js@1.8.17: - resolution: {integrity: sha512-DGuSbtMFbaRsyffMf+VEkVu8HkSXEUfO3UyGJNtqxW9ABdtTIA+2UXAJpwbJS+xfQxuwqLUeELmL6FuZkOqPxw==} + /@grpc/grpc-js@1.9.7: + resolution: {integrity: sha512-yMaA/cIsRhGzW3ymCNpdlPcInXcovztlgu/rirThj2b87u3RzWUszliOqZ/pldy7yhmJPS8uwog+kZSTa4A0PQ==} engines: {node: ^8.13.0 || >=10.10.0} dependencies: - '@grpc/proto-loader': 0.7.8 - '@types/node': 14.18.53 + '@grpc/proto-loader': 0.7.10 + '@types/node': 14.18.63 dev: false /@grpc/proto-loader@0.5.6: @@ -10020,18 +9904,17 @@ packages: engines: {node: '>=6'} dependencies: lodash.camelcase: 4.3.0 - protobufjs: 6.11.3 + protobufjs: 6.11.4 dev: false - /@grpc/proto-loader@0.7.8: - resolution: {integrity: sha512-GU12e2c8dmdXb7XUlOgYWZ2o2i+z9/VeACkxTA/zzAe2IjclC5PnVL0lpgjhrqfpDYHzM8B1TF6pqWegMYAzlA==} + /@grpc/proto-loader@0.7.10: + resolution: {integrity: sha512-CAqDfoaQ8ykFd9zqBDn4k6iWT9loLAlc2ETmDFS9JCD70gDcnA4L3AFEo2iV7KyAtAAHFW9ftq1Fz+Vsgq80RQ==} engines: {node: '>=6'} hasBin: true dependencies: - '@types/long': 4.0.2 lodash.camelcase: 4.3.0 - long: 4.0.0 - protobufjs: 7.2.4 + long: 5.2.3 + protobufjs: 7.2.5 yargs: 17.7.2 dev: false @@ -10149,15 +10032,15 @@ packages: slash: 3.0.0 dev: false - /@jest/console@29.6.1: - resolution: {integrity: sha512-Aj772AYgwTSr5w8qnyoJ0eDYvN6bMsH3ORH1ivMotrInHLKdUz6BDlaEXHdM6kODaBIkNIyQGzsMvRdOv7VG7Q==} + /@jest/console@29.7.0: + resolution: {integrity: sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/types': 29.6.1 + '@jest/types': 29.6.3 '@types/node': 7.0.12 chalk: 4.1.2 - jest-message-util: 29.6.1 - jest-util: 29.6.1 + jest-message-util: 29.7.0 + jest-util: 29.7.0 slash: 3.0.0 dev: true @@ -10239,8 +10122,8 @@ packages: - utf-8-validate dev: false - /@jest/core@29.6.1: - resolution: {integrity: sha512-CcowHypRSm5oYQ1obz1wfvkjZZ2qoQlrKKvlfPwh5jUXVU12TWr2qMeH8chLMuTFzHh5a1g2yaqlqDICbr+ukQ==} + /@jest/core@29.7.0: + resolution: {integrity: sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 @@ -10248,44 +10131,45 @@ packages: node-notifier: optional: true dependencies: - '@jest/console': 29.6.1 - '@jest/reporters': 29.6.1 - '@jest/test-result': 29.6.1 - '@jest/transform': 29.6.1 - '@jest/types': 29.6.1 + '@jest/console': 29.7.0 + '@jest/reporters': 29.7.0 + '@jest/test-result': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 '@types/node': 7.0.12 ansi-escapes: 4.3.2 chalk: 4.1.2 - ci-info: 3.8.0 + ci-info: 3.9.0 exit: 0.1.2 graceful-fs: 4.2.11 - jest-changed-files: 29.5.0 - jest-config: 29.6.1(@types/node@7.0.12) - jest-haste-map: 29.6.1 - jest-message-util: 29.6.1 - jest-regex-util: 29.4.3 - jest-resolve: 29.6.1 - jest-resolve-dependencies: 29.6.1 - jest-runner: 29.6.1 - jest-runtime: 29.6.1 - jest-snapshot: 29.6.1 - jest-util: 29.6.1 - jest-validate: 29.6.1 - jest-watcher: 29.6.1 + jest-changed-files: 29.7.0 + jest-config: 29.7.0(@types/node@7.0.12) + jest-haste-map: 29.7.0 + jest-message-util: 29.7.0 + jest-regex-util: 29.6.3 + jest-resolve: 29.7.0 + jest-resolve-dependencies: 29.7.0 + jest-runner: 29.7.0 + jest-runtime: 29.7.0 + jest-snapshot: 29.7.0 + jest-util: 29.7.0 + jest-validate: 29.7.0 + jest-watcher: 29.7.0 micromatch: 4.0.5 - pretty-format: 29.6.1 + pretty-format: 29.7.0 slash: 3.0.0 strip-ansi: 6.0.1 transitivePeerDependencies: + - babel-plugin-macros - supports-color - ts-node dev: true - /@jest/create-cache-key-function@29.6.1: - resolution: {integrity: sha512-d77/1BbNLbJDBV6tH7ctYpau+3tnU5YMhg36uGabW4VDrl1Arp6E0jDRioHFoFqIbm+BXMVbyQc9MpfKo6OIQQ==} + /@jest/create-cache-key-function@29.7.0: + resolution: {integrity: sha512-4QqS3LY5PBmTRHj9sAg1HLoPzqAI0uOX6wI/TRqHIcOxlFidy6YEmCQJk6FSZjNLGCeubDMfmkWL+qaLKhSGQA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/types': 29.6.1 + '@jest/types': 29.6.3 dev: false /@jest/environment@24.9.0: @@ -10310,28 +10194,28 @@ packages: jest-mock: 26.6.2 dev: false - /@jest/environment@29.6.1: - resolution: {integrity: sha512-RMMXx4ws+Gbvw3DfLSuo2cfQlK7IwGbpuEWXCqyYDcqYTI+9Ju3a5hDnXaxjNsa6uKh9PQF2v+qg+RLe63tz5A==} + /@jest/environment@29.7.0: + resolution: {integrity: sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/fake-timers': 29.6.1 - '@jest/types': 29.6.1 + '@jest/fake-timers': 29.7.0 + '@jest/types': 29.6.3 '@types/node': 7.0.12 - jest-mock: 29.6.1 + jest-mock: 29.7.0 - /@jest/expect-utils@29.6.1: - resolution: {integrity: sha512-o319vIf5pEMx0LmzSxxkYYxo4wrRLKHq9dP1yJU7FoPTB0LfAKSz8SWD6D/6U3v/O52t9cF5t+MeJiRsfk7zMw==} + /@jest/expect-utils@29.7.0: + resolution: {integrity: sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - jest-get-type: 29.4.3 + jest-get-type: 29.6.3 dev: true - /@jest/expect@29.6.1: - resolution: {integrity: sha512-N5xlPrAYaRNyFgVf2s9Uyyvr795jnB6rObuPx4QFvNJz8aAjpZUDfO4bh5G/xuplMID8PrnuF1+SfSyDxhsgYg==} + /@jest/expect@29.7.0: + resolution: {integrity: sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - expect: 29.6.1 - jest-snapshot: 29.6.1 + expect: 29.7.0 + jest-snapshot: 29.7.0 transitivePeerDependencies: - supports-color dev: true @@ -10359,16 +10243,16 @@ packages: jest-util: 26.6.2 dev: false - /@jest/fake-timers@29.6.1: - resolution: {integrity: sha512-RdgHgbXyosCDMVYmj7lLpUwXA4c69vcNzhrt69dJJdf8azUrpRh3ckFCaTPNjsEeRi27Cig0oKDGxy5j7hOgHg==} + /@jest/fake-timers@29.7.0: + resolution: {integrity: sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/types': 29.6.1 + '@jest/types': 29.6.3 '@sinonjs/fake-timers': 10.3.0 '@types/node': 7.0.12 - jest-message-util: 29.6.1 - jest-mock: 29.6.1 - jest-util: 29.6.1 + jest-message-util: 29.7.0 + jest-mock: 29.7.0 + jest-util: 29.7.0 /@jest/globals@26.6.2: resolution: {integrity: sha512-85Ltnm7HlB/KesBUuALwQ68YTU72w9H2xW9FjZ1eL1U3lhtefjjl5c2MiUbpXt/i6LaPRvoOFJ22yCBSfQ0JIA==} @@ -10379,14 +10263,14 @@ packages: expect: 26.6.2 dev: false - /@jest/globals@29.6.1: - resolution: {integrity: sha512-2VjpaGy78JY9n9370H8zGRCFbYVWwjY6RdDMhoJHa1sYfwe6XM/azGN0SjY8kk7BOZApIejQ1BFPyH7FPG0w3A==} + /@jest/globals@29.7.0: + resolution: {integrity: sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/environment': 29.6.1 - '@jest/expect': 29.6.1 - '@jest/types': 29.6.1 - jest-mock: 29.6.1 + '@jest/environment': 29.7.0 + '@jest/expect': 29.7.0 + '@jest/types': 29.6.3 + jest-mock: 29.7.0 transitivePeerDependencies: - supports-color dev: true @@ -10438,9 +10322,9 @@ packages: graceful-fs: 4.2.11 istanbul-lib-coverage: 3.2.0 istanbul-lib-instrument: 4.0.3 - istanbul-lib-report: 3.0.0 + istanbul-lib-report: 3.0.1 istanbul-lib-source-maps: 4.0.1 - istanbul-reports: 3.1.5 + istanbul-reports: 3.1.6 jest-haste-map: 26.6.2 jest-resolve: 26.6.2 jest-util: 26.6.2 @@ -10456,8 +10340,8 @@ packages: - supports-color dev: false - /@jest/reporters@29.6.1: - resolution: {integrity: sha512-9zuaI9QKr9JnoZtFQlw4GREQbxgmNYXU6QuWtmuODvk5nvPUeBYapVR/VYMyi2WSx3jXTLJTJji8rN6+Cm4+FA==} + /@jest/reporters@29.7.0: + resolution: {integrity: sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 @@ -10466,11 +10350,11 @@ packages: optional: true dependencies: '@bcoe/v8-coverage': 0.2.3 - '@jest/console': 29.6.1 - '@jest/test-result': 29.6.1 - '@jest/transform': 29.6.1 - '@jest/types': 29.6.1 - '@jridgewell/trace-mapping': 0.3.18 + '@jest/console': 29.7.0 + '@jest/test-result': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + '@jridgewell/trace-mapping': 0.3.20 '@types/node': 7.0.12 chalk: 4.1.2 collect-v8-coverage: 1.0.2 @@ -10478,23 +10362,23 @@ packages: glob: 7.2.3 graceful-fs: 4.2.11 istanbul-lib-coverage: 3.2.0 - istanbul-lib-instrument: 5.2.1 - istanbul-lib-report: 3.0.0 + istanbul-lib-instrument: 6.0.1 + istanbul-lib-report: 3.0.1 istanbul-lib-source-maps: 4.0.1 - istanbul-reports: 3.1.5 - jest-message-util: 29.6.1 - jest-util: 29.6.1 - jest-worker: 29.6.1 + istanbul-reports: 3.1.6 + jest-message-util: 29.7.0 + jest-util: 29.7.0 + jest-worker: 29.7.0 slash: 3.0.0 string-length: 4.0.2 strip-ansi: 6.0.1 - v8-to-istanbul: 9.1.0 + v8-to-istanbul: 9.1.3 transitivePeerDependencies: - supports-color dev: true - /@jest/schemas@29.6.0: - resolution: {integrity: sha512-rxLjXyJBTL4LQeJW3aKo0M/+GkCOXsO+8i9Iu7eDb6KwtP65ayoDsitrdPBtujxQ88k4wI2FNYfa6TOGwSn6cQ==} + /@jest/schemas@29.6.3: + resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@sinclair/typebox': 0.27.8 @@ -10517,11 +10401,11 @@ packages: source-map: 0.6.1 dev: false - /@jest/source-map@29.6.0: - resolution: {integrity: sha512-oA+I2SHHQGxDCZpbrsCQSoMLb3Bz547JnM+jUr9qEbuw0vQlWZfpPS7CO9J7XiwKicEz9OFn/IYoLkkiUD7bzA==} + /@jest/source-map@29.6.3: + resolution: {integrity: sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jridgewell/trace-mapping': 0.3.18 + '@jridgewell/trace-mapping': 0.3.20 callsites: 3.1.0 graceful-fs: 4.2.11 dev: true @@ -10532,7 +10416,7 @@ packages: dependencies: '@jest/console': 24.9.0 '@jest/types': 24.9.0 - '@types/istanbul-lib-coverage': 2.0.4 + '@types/istanbul-lib-coverage': 2.0.5 dev: true /@jest/test-result@26.6.2: @@ -10541,17 +10425,17 @@ packages: dependencies: '@jest/console': 26.6.2 '@jest/types': 26.6.2 - '@types/istanbul-lib-coverage': 2.0.4 + '@types/istanbul-lib-coverage': 2.0.5 collect-v8-coverage: 1.0.2 dev: false - /@jest/test-result@29.6.1: - resolution: {integrity: sha512-Ynr13ZRcpX6INak0TPUukU8GWRfm/vAytE3JbJNGAvINySWYdfE7dGZMbk36oVuK4CigpbhMn8eg1dixZ7ZJOw==} + /@jest/test-result@29.7.0: + resolution: {integrity: sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/console': 29.6.1 - '@jest/types': 29.6.1 - '@types/istanbul-lib-coverage': 2.0.4 + '@jest/console': 29.7.0 + '@jest/types': 29.6.3 + '@types/istanbul-lib-coverage': 2.0.5 collect-v8-coverage: 1.0.2 dev: true @@ -10586,13 +10470,13 @@ packages: - utf-8-validate dev: false - /@jest/test-sequencer@29.6.1: - resolution: {integrity: sha512-oBkC36PCDf/wb6dWeQIhaviU0l5u6VCsXa119yqdUosYAt7/FbQU2M2UoziO3igj/HBDEgp57ONQ3fm0v9uyyg==} + /@jest/test-sequencer@29.7.0: + resolution: {integrity: sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/test-result': 29.6.1 + '@jest/test-result': 29.7.0 graceful-fs: 4.2.11 - jest-haste-map: 29.6.1 + jest-haste-map: 29.7.0 slash: 3.0.0 dev: true @@ -10643,21 +10527,21 @@ packages: - supports-color dev: false - /@jest/transform@29.6.1: - resolution: {integrity: sha512-URnTneIU3ZjRSaf906cvf6Hpox3hIeJXRnz3VDSw5/X93gR8ycdfSIEy19FlVx8NFmpN7fe3Gb1xF+NjXaQLWg==} + /@jest/transform@29.7.0: + resolution: {integrity: sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@babel/core': 7.22.9 - '@jest/types': 29.6.1 - '@jridgewell/trace-mapping': 0.3.18 + '@babel/core': 7.23.2 + '@jest/types': 29.6.3 + '@jridgewell/trace-mapping': 0.3.20 babel-plugin-istanbul: 6.1.1 chalk: 4.1.2 convert-source-map: 2.0.0 fast-json-stable-stringify: 2.1.0 graceful-fs: 4.2.11 - jest-haste-map: 29.6.1 - jest-regex-util: 29.4.3 - jest-util: 29.6.1 + jest-haste-map: 29.7.0 + jest-regex-util: 29.6.3 + jest-util: 29.7.0 micromatch: 4.0.5 pirates: 4.0.6 slash: 3.0.0 @@ -10670,7 +10554,7 @@ packages: resolution: {integrity: sha512-XKK7ze1apu5JWQ5eZjHITP66AX+QsLlbaJRBGYr8pNzwcAE2JVkwnf0yqjHTsDRcjR0mujy/NmZMXw5kl+kGBw==} engines: {node: '>= 6'} dependencies: - '@types/istanbul-lib-coverage': 2.0.4 + '@types/istanbul-lib-coverage': 2.0.5 '@types/istanbul-reports': 1.1.2 '@types/yargs': 13.0.12 dev: true @@ -10679,10 +10563,10 @@ packages: resolution: {integrity: sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==} engines: {node: '>= 10.14.2'} dependencies: - '@types/istanbul-lib-coverage': 2.0.4 - '@types/istanbul-reports': 3.0.1 + '@types/istanbul-lib-coverage': 2.0.5 + '@types/istanbul-reports': 3.0.3 '@types/node': 7.0.12 - '@types/yargs': 15.0.15 + '@types/yargs': 15.0.17 chalk: 4.1.2 dev: false @@ -10690,22 +10574,22 @@ packages: resolution: {integrity: sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - '@types/istanbul-lib-coverage': 2.0.4 - '@types/istanbul-reports': 3.0.1 + '@types/istanbul-lib-coverage': 2.0.5 + '@types/istanbul-reports': 3.0.3 '@types/node': 7.0.12 - '@types/yargs': 16.0.5 + '@types/yargs': 16.0.7 chalk: 4.1.2 dev: false - /@jest/types@29.6.1: - resolution: {integrity: sha512-tPKQNMPuXgvdOn2/Lg9HNfUvjYVGolt04Hp03f5hAk878uwOLikN+JzeLY0HcVgKgFl9Hs3EIqpu3WX27XNhnw==} + /@jest/types@29.6.3: + resolution: {integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/schemas': 29.6.0 - '@types/istanbul-lib-coverage': 2.0.4 - '@types/istanbul-reports': 3.0.1 + '@jest/schemas': 29.6.3 + '@types/istanbul-lib-coverage': 2.0.5 + '@types/istanbul-reports': 3.0.3 '@types/node': 7.0.12 - '@types/yargs': 17.0.24 + '@types/yargs': 17.0.29 chalk: 4.1.2 /@jridgewell/gen-mapping@0.3.3: @@ -10714,16 +10598,11 @@ packages: dependencies: '@jridgewell/set-array': 1.1.2 '@jridgewell/sourcemap-codec': 1.4.15 - '@jridgewell/trace-mapping': 0.3.18 - - /@jridgewell/resolve-uri@3.1.0: - resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==} - engines: {node: '>=6.0.0'} + '@jridgewell/trace-mapping': 0.3.20 /@jridgewell/resolve-uri@3.1.1: resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==} engines: {node: '>=6.0.0'} - dev: true /@jridgewell/set-array@1.1.2: resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==} @@ -10733,19 +10612,16 @@ packages: resolution: {integrity: sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==} dependencies: '@jridgewell/gen-mapping': 0.3.3 - '@jridgewell/trace-mapping': 0.3.18 - - /@jridgewell/sourcemap-codec@1.4.14: - resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==} + '@jridgewell/trace-mapping': 0.3.20 /@jridgewell/sourcemap-codec@1.4.15: resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} - /@jridgewell/trace-mapping@0.3.18: - resolution: {integrity: sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==} + /@jridgewell/trace-mapping@0.3.20: + resolution: {integrity: sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==} dependencies: - '@jridgewell/resolve-uri': 3.1.0 - '@jridgewell/sourcemap-codec': 1.4.14 + '@jridgewell/resolve-uri': 3.1.1 + '@jridgewell/sourcemap-codec': 1.4.15 /@jridgewell/trace-mapping@0.3.9: resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==} @@ -10833,13 +10709,27 @@ packages: npmlog: 4.1.2 dev: true + /@ljharb/resumer@0.0.1: + resolution: {integrity: sha512-skQiAOrCfO7vRTq53cxznMpks7wS1va95UCidALlOVWqvBAzwPVErwizDwoMqNVMEn1mDq0utxZd02eIrvF1lw==} + engines: {node: '>= 0.4'} + dependencies: + '@ljharb/through': 2.3.11 + dev: false + + /@ljharb/through@2.3.11: + resolution: {integrity: sha512-ccfcIDlogiXNq5KcbAwbaO7lMh3Tm1i3khMPYpxlK8hH/W53zN81KM9coerRLOnTGu3nfXIniAmQbRI9OxbC0w==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.5 + dev: false + /@loadable/component@5.15.3(react@17.0.2): resolution: {integrity: sha512-VOgYgCABn6+/7aGIpg7m0Ruj34tGetaJzt4bQ345FwEovDQZ+dua+NWLmuJKv8rWZyxOUSfoJkmGnzyDXH2BAQ==} engines: {node: '>=8'} peerDependencies: react: ^16.3.0 || ^17.0.0 || ^18.0.0 || 17 dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 hoist-non-react-statics: 3.3.2 react: 17.0.2 react-is: 16.13.1 @@ -10848,7 +10738,7 @@ packages: /@manypkg/find-root@1.1.0: resolution: {integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==} dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 '@types/node': 12.20.24 find-up: 4.1.0 fs-extra: 8.1.0 @@ -10857,7 +10747,7 @@ packages: /@manypkg/get-packages@1.1.3: resolution: {integrity: sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A==} dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 '@changesets/types': 4.1.0 '@manypkg/find-root': 1.1.0 fs-extra: 8.1.0 @@ -11079,10 +10969,6 @@ packages: eslint-scope: 5.1.1 dev: true - /@nicolo-ribaudo/semver-v6@6.3.3: - resolution: {integrity: sha512-3Yc1fUTs69MG/uZbJlLSI3JISMn2UV2rg+1D/vROUqZyh3l6iYHCs7GMp+M40ZD7yOdDbYjJcU1oTJhrc+dGKg==} - hasBin: true - /@nodelib/fs.scandir@2.1.5: resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} engines: {node: '>= 8'} @@ -11106,60 +10992,25 @@ packages: '@nodelib/fs.scandir': 2.1.5 fastq: 1.15.0 - /@pmmmwh/react-refresh-webpack-plugin@0.5.10(react-refresh@0.14.0)(webpack@5.88.0): - resolution: {integrity: sha512-j0Ya0hCFZPd4x40qLzbhGsh9TMtdb+CJQiso+WxLOPNasohq9cc5SNUcwsZaRH6++Xh91Xkm/xHCkuIiIu0LUA==} - engines: {node: '>= 10.13'} - peerDependencies: - '@types/webpack': 4.x || 5.x - react-refresh: '>=0.10.0 <1.0.0' - sockjs-client: ^1.4.0 - type-fest: '>=0.17.0 <4.0.0' - webpack: '>=4.43.0 <6.0.0' - webpack-dev-server: 3.x || 4.x - webpack-hot-middleware: 2.x - webpack-plugin-serve: 0.x || 1.x - peerDependenciesMeta: - '@types/webpack': - optional: true - sockjs-client: - optional: true - type-fest: - optional: true - webpack-dev-server: - optional: true - webpack-hot-middleware: - optional: true - webpack-plugin-serve: - optional: true - dependencies: - ansi-html-community: 0.0.8 - common-path-prefix: 3.0.0 - core-js-pure: 3.31.1 - error-stack-parser: 2.1.4 - find-up: 5.0.0 - html-entities: 2.4.0 - loader-utils: 2.0.4 - react-refresh: 0.14.0 - schema-utils: 3.3.0 - source-map: 0.7.4 - webpack: 5.88.0(webpack-cli@5.0.0) - dev: true + /@polka/url@1.0.0-next.23: + resolution: {integrity: sha512-C16M+IYz0rgRhWZdCmK+h58JMv8vijAA61gmz2rspCSwKwzBebpdcsiUmwrtJRdphuY30i6BSLEOP8ppbNLyLg==} + dev: false /@probe.gl/env@3.6.0: resolution: {integrity: sha512-4tTZYUg/8BICC3Yyb9rOeoKeijKbZHRXBEKObrfPmX4sQmYB15ZOUpoVBhAyJkOYVAM8EkPci6Uw5dLCwx2BEQ==} dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 /@probe.gl/log@3.6.0: resolution: {integrity: sha512-hjpyenpEvOdowgZ1qMeCJxfRD4JkKdlXz0RC14m42Un62NtOT+GpWyKA4LssT0+xyLULCByRAtG2fzZorpIAcA==} dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 '@probe.gl/env': 3.6.0 /@probe.gl/stats@3.6.0: resolution: {integrity: sha512-JdALQXB44OP4kUBN/UrQgzbJe4qokbVF4Y8lkIA8iVCFnjVowWIgkD/z/0QO65yELT54tTrtepw1jScjKB+rhQ==} dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 /@protobufjs/aspromise@1.1.2: resolution: {integrity: sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==} @@ -11208,29 +11059,29 @@ packages: resolution: {integrity: sha512-2jIiLiVZB1jnY7IIRQKtoV8Gnr7XIhk4mC88ONGunZE3hYt5IHUG4BE/6+JiTBjjEWQLBeWnZB8hGpppkufiVw==} dev: false - /@rc-component/portal@1.1.1(react-dom@16.14.0)(react@17.0.2): - resolution: {integrity: sha512-m8w3dFXX0H6UkJ4wtfrSwhe2/6M08uz24HHrF8pWfAXPwA9hwCuTE5per/C86KwNLouRpwFGcr7LfpHaa1F38g==} + /@rc-component/portal@1.1.2(react-dom@16.14.0)(react@17.0.2): + resolution: {integrity: sha512-6f813C0IsasTZms08kfA8kPAGxbbkYToa8ALaiDIGGECU4i9hj8Plgbx0sNJDrey3EtHO30hmdaxtT0138xZcg==} engines: {node: '>=8.x'} peerDependencies: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.3.2 - rc-util: 5.34.1(react-dom@16.14.0)(react@17.0.2) + rc-util: 5.38.0(react-dom@16.14.0)(react@17.0.2) react: 17.0.2 react-dom: 16.14.0(react@17.0.2) - /@rc-component/portal@1.1.1(react-dom@17.0.2)(react@17.0.2): - resolution: {integrity: sha512-m8w3dFXX0H6UkJ4wtfrSwhe2/6M08uz24HHrF8pWfAXPwA9hwCuTE5per/C86KwNLouRpwFGcr7LfpHaa1F38g==} + /@rc-component/portal@1.1.2(react-dom@17.0.2)(react@17.0.2): + resolution: {integrity: sha512-6f813C0IsasTZms08kfA8kPAGxbbkYToa8ALaiDIGGECU4i9hj8Plgbx0sNJDrey3EtHO30hmdaxtT0138xZcg==} engines: {node: '>=8.x'} peerDependencies: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.3.2 - rc-util: 5.34.1(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.38.0(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) @@ -11290,10 +11141,10 @@ packages: react-lifecycles-compat: 3.0.4 dev: true - /@react-native-community/cli-clean@11.3.5: - resolution: {integrity: sha512-1+7BU962wKkIkHRp/uW3jYbQKKGtU7L+R3g59D8K6uLccuxJYUBJv18753ojMa6SD3SAq5Xh31bAre+YwVcOTA==} + /@react-native-community/cli-clean@11.3.7: + resolution: {integrity: sha512-twtsv54ohcRyWVzPXL3F9VHGb4Qhn3slqqRs3wEuRzjR7cTmV2TIO2b1VhaqF4HlCgNd+cGuirvLtK2JJyaxMg==} dependencies: - '@react-native-community/cli-tools': 11.3.5 + '@react-native-community/cli-tools': 11.3.7 chalk: 4.1.2 execa: 5.1.1 prompts: 2.4.2 @@ -11301,34 +11152,34 @@ packages: - encoding dev: false - /@react-native-community/cli-config@11.3.5: - resolution: {integrity: sha512-fMblIsHlUleKfGsgWyjFJYfx1SqrsnhS/QXfA8w7iT6GrNOOjBp5UWx8+xlMDFcmOb9e42g1ExFDKl3n8FWkxQ==} + /@react-native-community/cli-config@11.3.7: + resolution: {integrity: sha512-FDBLku9xskS+bx0YFJFLCmUJhEZ4/MMSC9qPYOGBollWYdgE7k/TWI0IeYFmMALAnbCdKQAYP5N29N55Tad8lg==} dependencies: - '@react-native-community/cli-tools': 11.3.5 + '@react-native-community/cli-tools': 11.3.7 chalk: 4.1.2 cosmiconfig: 5.2.1 deepmerge: 4.3.1 glob: 7.2.3 - joi: 17.9.2 + joi: 17.11.0 transitivePeerDependencies: - encoding dev: false - /@react-native-community/cli-debugger-ui@11.3.5: - resolution: {integrity: sha512-o5JVCKEpPUXMX4r3p1cYjiy3FgdOEkezZcQ6owWEae2dYvV19lLYyJwnocm9Y7aG9PvpgI3PIMVh3KZbhS21eA==} + /@react-native-community/cli-debugger-ui@11.3.7: + resolution: {integrity: sha512-aVmKuPKHZENR8SrflkMurZqeyLwbKieHdOvaZCh1Nn/0UC5CxWcyST2DB2XQboZwsvr3/WXKJkSUO+SZ1J9qTQ==} dependencies: serve-static: 1.15.0(supports-color@6.1.0) transitivePeerDependencies: - supports-color dev: false - /@react-native-community/cli-doctor@11.3.5: - resolution: {integrity: sha512-+4BuFHjoV4FFjX5y60l0s6nS0agidb1izTVwsFixeFKW73LUkOLu+Ae5HI94RAFEPE4ePEVNgYX3FynIau6K0g==} + /@react-native-community/cli-doctor@11.3.7: + resolution: {integrity: sha512-YEHUqWISOHnsl5+NM14KHelKh68Sr5/HeEZvvNdIcvcKtZic3FU7Xd1WcbNdo3gCq5JvzGFfufx02Tabh5zmrg==} dependencies: - '@react-native-community/cli-config': 11.3.5 - '@react-native-community/cli-platform-android': 11.3.5 - '@react-native-community/cli-platform-ios': 11.3.5 - '@react-native-community/cli-tools': 11.3.5 + '@react-native-community/cli-config': 11.3.7 + '@react-native-community/cli-platform-android': 11.3.7 + '@react-native-community/cli-platform-ios': 11.3.7 + '@react-native-community/cli-tools': 11.3.7 chalk: 4.1.2 command-exists: 1.2.9 envinfo: 7.10.0 @@ -11338,20 +11189,20 @@ packages: node-stream-zip: 1.15.0 ora: 5.4.1 prompts: 2.4.2 - semver: 6.3.1 + semver: 7.5.4 strip-ansi: 5.2.0 sudo-prompt: 9.2.1 wcwidth: 1.0.1 - yaml: 2.3.1 + yaml: 2.3.3 transitivePeerDependencies: - encoding dev: false - /@react-native-community/cli-hermes@11.3.5: - resolution: {integrity: sha512-+3m34hiaJpFel8BlJE7kJOaPzWR/8U8APZG2LXojbAdBAg99EGmQcwXIgsSVJFvH8h/nezf4DHbsPKigIe33zA==} + /@react-native-community/cli-hermes@11.3.7: + resolution: {integrity: sha512-chkKd8n/xeZkinRvtH6QcYA8rjNOKU3S3Lw/3Psxgx+hAYV0Gyk95qJHTalx7iu+PwjOOqqvCkJo5jCkYLkoqw==} dependencies: - '@react-native-community/cli-platform-android': 11.3.5 - '@react-native-community/cli-tools': 11.3.5 + '@react-native-community/cli-platform-android': 11.3.7 + '@react-native-community/cli-tools': 11.3.7 chalk: 4.1.2 hermes-profile-transformer: 0.0.6 ip: 1.1.8 @@ -11359,10 +11210,10 @@ packages: - encoding dev: false - /@react-native-community/cli-platform-android@11.3.5: - resolution: {integrity: sha512-s4Lj7FKxJ/BofGi/ifjPfrA9MjFwIgYpHnHBSlqtbsvPoSYzmVCU2qlWM8fb3AmkXIwyYt4A6MEr3MmNT2UoBg==} + /@react-native-community/cli-platform-android@11.3.7: + resolution: {integrity: sha512-WGtXI/Rm178UQb8bu1TAeFC/RJvYGnbHpULXvE20GkmeJ1HIrMjkagyk6kkY3Ej25JAP2R878gv+TJ/XiRhaEg==} dependencies: - '@react-native-community/cli-tools': 11.3.5 + '@react-native-community/cli-tools': 11.3.7 chalk: 4.1.2 execa: 5.1.1 glob: 7.2.3 @@ -11371,32 +11222,32 @@ packages: - encoding dev: false - /@react-native-community/cli-platform-ios@11.3.5: - resolution: {integrity: sha512-ytJC/YCFD7P+KuQHOT5Jzh1ho2XbJEjq71yHa1gJP2PG/Q/uB4h1x2XpxDqv5iXU6E250yjvKMmkReKTW4CTig==} + /@react-native-community/cli-platform-ios@11.3.7: + resolution: {integrity: sha512-Z/8rseBput49EldX7MogvN6zJlWzZ/4M97s2P+zjS09ZoBU7I0eOKLi0N9wx+95FNBvGQQ/0P62bB9UaFQH2jw==} dependencies: - '@react-native-community/cli-tools': 11.3.5 + '@react-native-community/cli-tools': 11.3.7 chalk: 4.1.2 execa: 5.1.1 - fast-xml-parser: 4.2.5 + fast-xml-parser: 4.3.2 glob: 7.2.3 ora: 5.4.1 transitivePeerDependencies: - encoding dev: false - /@react-native-community/cli-plugin-metro@11.3.5(@babel/core@7.22.9): - resolution: {integrity: sha512-r9AekfeLKdblB7LfWB71IrNy1XM03WrByQlUQajUOZAP2NmUUBLl9pMZscPjJeOSgLpHB9ixEFTIOhTabri/qg==} + /@react-native-community/cli-plugin-metro@11.3.7(@babel/core@7.23.2): + resolution: {integrity: sha512-0WhgoBVGF1f9jXcuagQmtxpwpfP+2LbLZH4qMyo6OtYLWLG13n2uRep+8tdGzfNzl1bIuUTeE9yZSAdnf9LfYQ==} dependencies: - '@react-native-community/cli-server-api': 11.3.5 - '@react-native-community/cli-tools': 11.3.5 + '@react-native-community/cli-server-api': 11.3.7 + '@react-native-community/cli-tools': 11.3.7 chalk: 4.1.2 execa: 5.1.1 - metro: 0.76.7 - metro-config: 0.76.7 - metro-core: 0.76.7 - metro-react-native-babel-transformer: 0.76.7(@babel/core@7.22.9) - metro-resolver: 0.76.7 - metro-runtime: 0.76.7 + metro: 0.76.8 + metro-config: 0.76.8 + metro-core: 0.76.8 + metro-react-native-babel-transformer: 0.76.8(@babel/core@7.23.2) + metro-resolver: 0.76.8 + metro-runtime: 0.76.8 readline: 1.3.0 transitivePeerDependencies: - '@babel/core' @@ -11406,11 +11257,11 @@ packages: - utf-8-validate dev: false - /@react-native-community/cli-server-api@11.3.5: - resolution: {integrity: sha512-PM/jF13uD1eAKuC84lntNuM5ZvJAtyb+H896P1dBIXa9boPLa3KejfUvNVoyOUJ5s8Ht25JKbc3yieV2+GMBDA==} + /@react-native-community/cli-server-api@11.3.7: + resolution: {integrity: sha512-yoFyGdvR3HxCnU6i9vFqKmmSqFzCbnFSnJ29a+5dppgPRetN+d//O8ard/YHqHzToFnXutAFf2neONn23qcJAg==} dependencies: - '@react-native-community/cli-debugger-ui': 11.3.5 - '@react-native-community/cli-tools': 11.3.5 + '@react-native-community/cli-debugger-ui': 11.3.7 + '@react-native-community/cli-tools': 11.3.7 compression: 1.7.4(supports-color@6.1.0) connect: 3.7.0 errorhandler: 1.5.1 @@ -11425,42 +11276,42 @@ packages: - utf-8-validate dev: false - /@react-native-community/cli-tools@11.3.5: - resolution: {integrity: sha512-zDklE1+ah/zL4BLxut5XbzqCj9KTHzbYBKX7//cXw2/0TpkNCaY9c+iKx//gZ5m7U1OKbb86Fm2b0AKtKVRf6Q==} + /@react-native-community/cli-tools@11.3.7: + resolution: {integrity: sha512-peyhP4TV6Ps1hk+MBHTFaIR1eI3u+OfGBvr5r0wPwo3FAJvldRinMgcB/TcCcOBXVORu7ba1XYjkubPeYcqAyA==} dependencies: appdirsjs: 1.2.7 chalk: 4.1.2 find-up: 5.0.0 mime: 2.6.0 - node-fetch: 2.6.12 + node-fetch: 2.7.0 open: 6.4.0 ora: 5.4.1 - semver: 6.3.1 + semver: 7.5.4 shell-quote: 1.8.1 transitivePeerDependencies: - encoding dev: false - /@react-native-community/cli-types@11.3.5: - resolution: {integrity: sha512-pf0kdWMEfPSV/+8rcViDCFzbLMtWIHMZ8ay7hKwqaoWegsJ0oprSF2tSTH+LSC/7X1Beb9ssIvHj1m5C4es5Xg==} + /@react-native-community/cli-types@11.3.7: + resolution: {integrity: sha512-OhSr/TiDQkXjL5YOs8+hvGSB+HltLn5ZI0+A3DCiMsjUgTTsYh+Z63OtyMpNjrdCEFcg0MpfdU2uxstCS6Dc5g==} dependencies: - joi: 17.9.2 + joi: 17.11.0 dev: false - /@react-native-community/cli@11.3.5(@babel/core@7.22.9): - resolution: {integrity: sha512-wMXgKEWe6uesw7vyXKKjx5EDRog0QdXHxdgRguG14AjQRao1+4gXEWq2yyExOTi/GDY6dfJBUGTCwGQxhnk/Lg==} + /@react-native-community/cli@11.3.7(@babel/core@7.23.2): + resolution: {integrity: sha512-Ou8eDlF+yh2rzXeCTpMPYJ2fuqsusNOhmpYPYNQJQ2h6PvaF30kPomflgRILems+EBBuggRtcT+I+1YH4o/q6w==} engines: {node: '>=16'} hasBin: true dependencies: - '@react-native-community/cli-clean': 11.3.5 - '@react-native-community/cli-config': 11.3.5 - '@react-native-community/cli-debugger-ui': 11.3.5 - '@react-native-community/cli-doctor': 11.3.5 - '@react-native-community/cli-hermes': 11.3.5 - '@react-native-community/cli-plugin-metro': 11.3.5(@babel/core@7.22.9) - '@react-native-community/cli-server-api': 11.3.5 - '@react-native-community/cli-tools': 11.3.5 - '@react-native-community/cli-types': 11.3.5 + '@react-native-community/cli-clean': 11.3.7 + '@react-native-community/cli-config': 11.3.7 + '@react-native-community/cli-debugger-ui': 11.3.7 + '@react-native-community/cli-doctor': 11.3.7 + '@react-native-community/cli-hermes': 11.3.7 + '@react-native-community/cli-plugin-metro': 11.3.7(@babel/core@7.23.2) + '@react-native-community/cli-server-api': 11.3.7 + '@react-native-community/cli-tools': 11.3.7 + '@react-native-community/cli-types': 11.3.7 chalk: 4.1.2 commander: 9.5.0 execa: 5.1.1 @@ -11468,7 +11319,7 @@ packages: fs-extra: 8.1.0 graceful-fs: 4.2.11 prompts: 2.4.2 - semver: 6.3.1 + semver: 7.5.4 transitivePeerDependencies: - '@babel/core' - bufferutil @@ -11481,15 +11332,15 @@ packages: resolution: {integrity: sha512-Im93xRJuHHxb1wniGhBMsxLwcfzdYreSZVQGDoMJgkd6+Iky61LInGEHnQCTN0fKNYF1Dvcofb4uMmE1RQHXHQ==} dev: false - /@react-native/codegen@0.72.6(@babel/preset-env@7.22.9): - resolution: {integrity: sha512-idTVI1es/oopN0jJT/0jB6nKdvTUKE3757zA5+NPXZTeB46CIRbmmos4XBiAec8ufu9/DigLPbHTYAaMNZJ6Ig==} + /@react-native/codegen@0.72.7(@babel/preset-env@7.23.2): + resolution: {integrity: sha512-O7xNcGeXGbY+VoqBGNlZ3O05gxfATlwE1Q1qQf5E38dK+tXn5BY4u0jaQ9DPjfE8pBba8g/BYI1N44lynidMtg==} peerDependencies: '@babel/preset-env': ^7.1.6 dependencies: - '@babel/parser': 7.22.7 - '@babel/preset-env': 7.22.9(@babel/core@7.22.9) + '@babel/parser': 7.23.0 + '@babel/preset-env': 7.23.2(@babel/core@7.23.2) flow-parser: 0.206.0 - jscodeshift: 0.14.0(@babel/preset-env@7.22.9) + jscodeshift: 0.14.0(@babel/preset-env@7.23.2) nullthrows: 1.1.1 transitivePeerDependencies: - supports-color @@ -11507,14 +11358,14 @@ packages: resolution: {integrity: sha512-285lfdqSXaqKuBbbtP9qL2tDrfxdOFtIMvkKadtleRQkdOxx+uzGvFr82KHmc/sSiMtfXGp7JnFYWVh4sFl7Yw==} dev: false - /@react-native/virtualized-lists@0.72.6(react-native@0.72.3): - resolution: {integrity: sha512-JhT6ydu35LvbSKdwnhWDuGHMOwM0WAh9oza/X8vXHA8ELHRyQ/4p8eKz/bTQcbQziJaaleUURToGhFuCtgiMoA==} + /@react-native/virtualized-lists@0.72.8(react-native@0.72.6): + resolution: {integrity: sha512-J3Q4Bkuo99k7mu+jPS9gSUSgq+lLRSI/+ahXNwV92XgJ/8UgOTxu2LPwhJnBk/sQKxq7E8WkZBnBiozukQMqrw==} peerDependencies: react-native: '*' dependencies: invariant: 2.2.4 nullthrows: 1.1.1 - react-native: 0.72.3(@babel/core@7.22.9)(@babel/preset-env@7.22.9)(react@17.0.2) + react-native: 0.72.6(@babel/core@7.23.2)(@babel/preset-env@7.23.2)(react@17.0.2) dev: false /@react-spring/animated@9.6.1(react@17.0.2): @@ -11539,7 +11390,7 @@ packages: react: 17.0.2 dev: false - /@react-spring/konva@9.6.1(konva@9.2.0)(react-konva@16.8.6)(react@17.0.2): + /@react-spring/konva@9.6.1(konva@9.2.2)(react-konva@16.8.6)(react@17.0.2): resolution: {integrity: sha512-MevnU+tnG1LPsmMRpfJfevfLtI0ObIvrwYc+Xg+kmYJe00vwMRSdulQOztKANKalFXBewwk72XrQCeRLXFaUIg==} peerDependencies: konva: '>=2.6' @@ -11550,12 +11401,12 @@ packages: '@react-spring/core': 9.6.1(react@17.0.2) '@react-spring/shared': 9.6.1(react@17.0.2) '@react-spring/types': 9.6.1 - konva: 9.2.0 + konva: 9.2.2 react: 17.0.2 - react-konva: 16.8.6(konva@9.2.0)(react-dom@17.0.2)(react@17.0.2) + react-konva: 16.8.6(konva@9.2.2)(react-dom@17.0.2)(react@17.0.2) dev: false - /@react-spring/native@9.6.1(react-native@0.72.3)(react@17.0.2): + /@react-spring/native@9.6.1(react-native@0.72.6)(react@17.0.2): resolution: {integrity: sha512-ZIfSytxFGLw4gYOb8gsmwG0+JZYxuM/Y1XPCXCkhuoMn+RmOYrr0kQ4gLczbmf+TRxth7OT1c8vBYz0+SCGcIQ==} peerDependencies: react: ^16.8.0 || >=17.0.0 || >=18.0.0 || 17 @@ -11566,7 +11417,7 @@ packages: '@react-spring/shared': 9.6.1(react@17.0.2) '@react-spring/types': 9.6.1 react: 17.0.2 - react-native: 0.72.3(@babel/core@7.22.9)(@babel/preset-env@7.22.9)(react@17.0.2) + react-native: 0.72.6(@babel/core@7.23.2)(@babel/preset-env@7.23.2)(react@17.0.2) dev: false /@react-spring/rafz@9.6.1: @@ -11583,7 +11434,7 @@ packages: react: 17.0.2 dev: false - /@react-spring/three@9.6.1(@react-three/fiber@8.13.5)(react@17.0.2)(three@0.139.2): + /@react-spring/three@9.6.1(@react-three/fiber@8.15.8)(react@17.0.2)(three@0.139.2): resolution: {integrity: sha512-Tyw2YhZPKJAX3t2FcqvpLRb71CyTe1GvT3V+i+xJzfALgpk10uPGdGaQQ5Xrzmok1340DAeg2pR/MCfaW7b8AA==} peerDependencies: '@react-three/fiber': '>=6.0' @@ -11594,7 +11445,7 @@ packages: '@react-spring/core': 9.6.1(react@17.0.2) '@react-spring/shared': 9.6.1(react@17.0.2) '@react-spring/types': 9.6.1 - '@react-three/fiber': 8.13.5(react-dom@17.0.2)(react-native@0.72.3)(react@17.0.2)(three@0.139.2) + '@react-three/fiber': 8.15.8(react-dom@17.0.2)(react-native@0.72.6)(react@17.0.2)(three@0.139.2) react: 17.0.2 three: 0.139.2 dev: false @@ -11621,7 +11472,7 @@ packages: react-dom: 17.0.2(react@17.0.2) dev: false - /@react-spring/zdog@9.6.1(react-dom@17.0.2)(react-zdog@1.1.1)(react@17.0.2)(zdog@1.1.3): + /@react-spring/zdog@9.6.1(react-dom@17.0.2)(react-zdog@1.2.2)(react@17.0.2)(zdog@1.1.3): resolution: {integrity: sha512-0jSGm2OFW/+/+4dkRp46KzEkcLVfzV2k6DO1om0dLDtQ4q6FpX4dmDTlRc7Apzin6VtfQONMFIGITtbqoS28MQ==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 17 @@ -11635,15 +11486,16 @@ packages: '@react-spring/types': 9.6.1 react: 17.0.2 react-dom: 17.0.2(react@17.0.2) - react-zdog: 1.1.1(react-dom@17.0.2)(react@17.0.2)(zdog@1.1.3) + react-zdog: 1.2.2 zdog: 1.1.3 dev: false - /@react-three/fiber@8.13.5(react-dom@17.0.2)(react-native@0.72.3)(react@17.0.2)(three@0.139.2): - resolution: {integrity: sha512-x9QdsaB/Wm/6NGvRXQahPPWfn2dQce7Fg3C2r00NNzyDdqRKw32YavL+WEqjZOOd0nvFpzv7FtaKc+VCOTR59w==} + /@react-three/fiber@8.15.8(react-dom@17.0.2)(react-native@0.72.6)(react@17.0.2)(three@0.139.2): + resolution: {integrity: sha512-AWDicsy3baDi3AJUaFxJp6+o6TWINuF+z/7JMxT/HBmaVpolY7mWUi9B02oWaifCf+sEDSNVwAGQ9ed86e9qLg==} peerDependencies: expo: '>=43.0' expo-asset: '>=8.4' + expo-file-system: '>=11.0' expo-gl: '>=11.0' react: '>=18.0 || 17' react-dom: '>=18.0' @@ -11654,6 +11506,8 @@ packages: optional: true expo-asset: optional: true + expo-file-system: + optional: true expo-gl: optional: true react-dom: @@ -11661,12 +11515,15 @@ packages: react-native: optional: true dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 '@types/react-reconciler': 0.26.7 + '@types/webxr': 0.5.7 + base64-js: 1.5.1 + buffer: 6.0.3 its-fine: 1.1.1(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) - react-native: 0.72.3(@babel/core@7.22.9)(@babel/preset-env@7.22.9)(react@17.0.2) + react-native: 0.72.6(@babel/core@7.23.2)(@babel/preset-env@7.23.2)(react@17.0.2) react-reconciler: 0.27.0(react@17.0.2) react-use-measure: 2.1.1(react-dom@17.0.2)(react@17.0.2) scheduler: 0.21.0 @@ -11683,9 +11540,9 @@ packages: react: 17.0.2 dev: true - /@remix-run/router@1.7.1: - resolution: {integrity: sha512-bgVQM4ZJ2u2CM8k1ey70o1ePFXsEzYVZoWghh6WjM8p59jQ7HxzbHW4SbnWFG7V9ig9chLawQxDTZ3xzOF8MkQ==} - engines: {node: '>=14'} + /@remix-run/router@1.10.0: + resolution: {integrity: sha512-Lm+fYpMfZoEucJ7cMxgt4dYt8jLfbpwRCzAjm9UgSLOkmlqo9gupxt6YX3DY0Fk155NT9l17d/ydi+964uS9Lw==} + engines: {node: '>=14.0.0'} /@rollup/plugin-babel@5.3.1(@babel/core@7.18.2)(rollup@2.33.3): resolution: {integrity: sha512-WFfdLWU/xVWKeRQnKmIAQULUI7Il0gZnBIH/ZFO069wYIfPu+8zrfp/KMW0atmELoRDq8FbiP3VCss9MhCut7Q==} @@ -11699,7 +11556,7 @@ packages: optional: true dependencies: '@babel/core': 7.18.2 - '@babel/helper-module-imports': 7.22.5 + '@babel/helper-module-imports': 7.22.15 '@rollup/pluginutils': 3.1.0(rollup@2.33.3) rollup: 2.33.3 dev: true @@ -11716,7 +11573,7 @@ packages: glob: 7.2.3 is-reference: 1.2.1 magic-string: 0.25.9 - resolve: 1.22.2 + resolve: 1.22.8 rollup: 2.33.3 dev: true @@ -11751,7 +11608,7 @@ packages: builtin-modules: 3.3.0 deepmerge: 4.2.2 is-module: 1.0.0 - resolve: 1.22.2 + resolve: 1.22.8 rollup: 2.33.3 dev: true @@ -11886,17 +11743,17 @@ packages: '@sinonjs/commons': 1.8.6 dev: false - /@storybook/addon-a11y@5.3.22(@types/react@17.0.0)(react-dom@16.14.0)(regenerator-runtime@0.13.11): + /@storybook/addon-a11y@5.3.22(@types/react@17.0.0)(react-dom@16.14.0)(regenerator-runtime@0.14.0): resolution: {integrity: sha512-8NVcPaKbeslmyB+nWWGsOqASDubRvXUXr6AR8aohKi+/3lvCrb4L2USC8Ncn2Ce4Nqr1zjlg0XxCxpGdkGJDcQ==} dependencies: - '@storybook/addons': 5.3.22(react-dom@16.14.0)(regenerator-runtime@0.13.11) - '@storybook/api': 5.3.22(react-dom@16.14.0)(regenerator-runtime@0.13.11) + '@storybook/addons': 5.3.22(react-dom@16.14.0)(regenerator-runtime@0.14.0) + '@storybook/api': 5.3.22(react-dom@16.14.0)(regenerator-runtime@0.14.0) '@storybook/client-logger': 5.3.22 '@storybook/components': 5.3.22(@types/react@17.0.0)(react-dom@16.14.0)(react@16.14.0) '@storybook/core-events': 5.3.22 '@storybook/theming': 5.3.22(react-dom@16.14.0)(react@16.14.0) axe-core: 3.5.6 - core-js: 3.31.1 + core-js: 3.33.1 global: 4.4.0 memoizerific: 1.11.3 react: 16.14.0 @@ -11912,17 +11769,17 @@ packages: - regenerator-runtime dev: true - /@storybook/addon-a11y@5.3.22(@types/react@17.0.0)(react-dom@17.0.2)(regenerator-runtime@0.13.11): + /@storybook/addon-a11y@5.3.22(@types/react@17.0.0)(react-dom@17.0.2)(regenerator-runtime@0.14.0): resolution: {integrity: sha512-8NVcPaKbeslmyB+nWWGsOqASDubRvXUXr6AR8aohKi+/3lvCrb4L2USC8Ncn2Ce4Nqr1zjlg0XxCxpGdkGJDcQ==} dependencies: - '@storybook/addons': 5.3.22(react-dom@17.0.2)(regenerator-runtime@0.13.11) - '@storybook/api': 5.3.22(react-dom@17.0.2)(regenerator-runtime@0.13.11) + '@storybook/addons': 5.3.22(react-dom@17.0.2)(regenerator-runtime@0.14.0) + '@storybook/api': 5.3.22(react-dom@17.0.2)(regenerator-runtime@0.14.0) '@storybook/client-logger': 5.3.22 '@storybook/components': 5.3.22(@types/react@17.0.0)(react-dom@17.0.2)(react@16.14.0) '@storybook/core-events': 5.3.22 '@storybook/theming': 5.3.22(react-dom@17.0.2)(react@16.14.0) axe-core: 3.5.6 - core-js: 3.31.1 + core-js: 3.33.1 global: 4.4.0 memoizerific: 1.11.3 react: 16.14.0 @@ -11938,16 +11795,16 @@ packages: - regenerator-runtime dev: true - /@storybook/addon-actions@5.3.21(@types/react@17.0.0)(react-dom@16.14.0)(regenerator-runtime@0.13.11): + /@storybook/addon-actions@5.3.21(@types/react@17.0.0)(react-dom@16.14.0)(regenerator-runtime@0.14.0): resolution: {integrity: sha512-6SAF/j8UBZaAbRz/rYUlcCXda+c4LQvvNlbVJc9GHjNNNMJQQVc3/EU+M7PyFz6uDUxudAW1+AFchGk04ACJ2g==} dependencies: - '@storybook/addons': 5.3.21(react-dom@16.14.0)(regenerator-runtime@0.13.11) - '@storybook/api': 5.3.21(react-dom@16.14.0)(regenerator-runtime@0.13.11) - '@storybook/client-api': 5.3.21(react-dom@16.14.0)(regenerator-runtime@0.13.11) + '@storybook/addons': 5.3.21(react-dom@16.14.0)(regenerator-runtime@0.14.0) + '@storybook/api': 5.3.21(react-dom@16.14.0)(regenerator-runtime@0.14.0) + '@storybook/client-api': 5.3.21(react-dom@16.14.0)(regenerator-runtime@0.14.0) '@storybook/components': 5.3.21(@types/react@17.0.0)(react-dom@16.14.0)(react@16.14.0) '@storybook/core-events': 5.3.21 '@storybook/theming': 5.3.21(react-dom@16.14.0)(react@16.14.0) - core-js: 3.31.1 + core-js: 3.33.1 fast-deep-equal: 2.0.1 global: 4.4.0 polished: 3.7.2 @@ -11961,16 +11818,16 @@ packages: - regenerator-runtime dev: true - /@storybook/addon-actions@5.3.21(@types/react@17.0.0)(react-dom@17.0.2)(regenerator-runtime@0.13.11): + /@storybook/addon-actions@5.3.21(@types/react@17.0.0)(react-dom@17.0.2)(regenerator-runtime@0.14.0): resolution: {integrity: sha512-6SAF/j8UBZaAbRz/rYUlcCXda+c4LQvvNlbVJc9GHjNNNMJQQVc3/EU+M7PyFz6uDUxudAW1+AFchGk04ACJ2g==} dependencies: - '@storybook/addons': 5.3.21(react-dom@17.0.2)(regenerator-runtime@0.13.11) - '@storybook/api': 5.3.21(react-dom@17.0.2)(regenerator-runtime@0.13.11) - '@storybook/client-api': 5.3.21(react-dom@17.0.2)(regenerator-runtime@0.13.11) + '@storybook/addons': 5.3.21(react-dom@17.0.2)(regenerator-runtime@0.14.0) + '@storybook/api': 5.3.21(react-dom@17.0.2)(regenerator-runtime@0.14.0) + '@storybook/client-api': 5.3.21(react-dom@17.0.2)(regenerator-runtime@0.14.0) '@storybook/components': 5.3.21(@types/react@17.0.0)(react-dom@17.0.2)(react@16.14.0) '@storybook/core-events': 5.3.21 '@storybook/theming': 5.3.21(react-dom@17.0.2)(react@16.14.0) - core-js: 3.31.1 + core-js: 3.33.1 fast-deep-equal: 2.0.1 global: 4.4.0 polished: 3.7.2 @@ -11989,25 +11846,25 @@ packages: peerDependencies: '@storybook/addon-actions': '*' dependencies: - '@storybook/addon-actions': 5.3.21(@types/react@17.0.0)(react-dom@16.14.0)(regenerator-runtime@0.13.11) + '@storybook/addon-actions': 5.3.21(@types/react@17.0.0)(react-dom@16.14.0)(regenerator-runtime@0.14.0) global: 4.4.0 dev: true - /@storybook/addon-knobs@5.3.21(@types/react@17.0.0)(react-dom@16.14.0)(react@17.0.2)(regenerator-runtime@0.13.11): + /@storybook/addon-knobs@5.3.21(@types/react@17.0.0)(react-dom@16.14.0)(react@17.0.2)(regenerator-runtime@0.14.0): resolution: {integrity: sha512-w1g61n2j87i3bzBltNl64u2hH06xQHKitfWWKBfRCiy1plC1hjZQ31GiUrA7uLUrD4NUx3GNO9dw0cDTnIIHRw==} deprecated: deprecating @storybook/addon-knobs in favor of @storybook/addon-controls peerDependencies: react: '*' dependencies: - '@storybook/addons': 5.3.21(react-dom@16.14.0)(regenerator-runtime@0.13.11) - '@storybook/api': 5.3.21(react-dom@16.14.0)(regenerator-runtime@0.13.11) - '@storybook/client-api': 5.3.21(react-dom@16.14.0)(regenerator-runtime@0.13.11) + '@storybook/addons': 5.3.21(react-dom@16.14.0)(regenerator-runtime@0.14.0) + '@storybook/api': 5.3.21(react-dom@16.14.0)(regenerator-runtime@0.14.0) + '@storybook/client-api': 5.3.21(react-dom@16.14.0)(regenerator-runtime@0.14.0) '@storybook/components': 5.3.21(@types/react@17.0.0)(react-dom@16.14.0)(react@17.0.2) '@storybook/core-events': 5.3.21 '@storybook/theming': 5.3.21(react-dom@16.14.0)(react@17.0.2) - '@types/react-color': 3.0.6 + '@types/react-color': 3.0.9 copy-to-clipboard: 3.3.2 - core-js: 3.31.1 + core-js: 3.33.1 escape-html: 1.0.3 fast-deep-equal: 2.0.1 global: 4.4.0 @@ -12024,21 +11881,21 @@ packages: - regenerator-runtime dev: true - /@storybook/addon-knobs@5.3.21(@types/react@17.0.0)(react-dom@17.0.2)(react@17.0.2)(regenerator-runtime@0.13.11): + /@storybook/addon-knobs@5.3.21(@types/react@17.0.0)(react-dom@17.0.2)(react@17.0.2)(regenerator-runtime@0.14.0): resolution: {integrity: sha512-w1g61n2j87i3bzBltNl64u2hH06xQHKitfWWKBfRCiy1plC1hjZQ31GiUrA7uLUrD4NUx3GNO9dw0cDTnIIHRw==} deprecated: deprecating @storybook/addon-knobs in favor of @storybook/addon-controls peerDependencies: react: '*' dependencies: - '@storybook/addons': 5.3.21(react-dom@17.0.2)(regenerator-runtime@0.13.11) - '@storybook/api': 5.3.21(react-dom@17.0.2)(regenerator-runtime@0.13.11) - '@storybook/client-api': 5.3.21(react-dom@17.0.2)(regenerator-runtime@0.13.11) + '@storybook/addons': 5.3.21(react-dom@17.0.2)(regenerator-runtime@0.14.0) + '@storybook/api': 5.3.21(react-dom@17.0.2)(regenerator-runtime@0.14.0) + '@storybook/client-api': 5.3.21(react-dom@17.0.2)(regenerator-runtime@0.14.0) '@storybook/components': 5.3.21(@types/react@17.0.0)(react-dom@17.0.2)(react@17.0.2) '@storybook/core-events': 5.3.21 '@storybook/theming': 5.3.21(react-dom@17.0.2)(react@17.0.2) - '@types/react-color': 3.0.6 + '@types/react-color': 3.0.9 copy-to-clipboard: 3.3.2 - core-js: 3.31.1 + core-js: 3.33.1 escape-html: 1.0.3 fast-deep-equal: 2.0.1 global: 4.4.0 @@ -12055,17 +11912,17 @@ packages: - regenerator-runtime dev: true - /@storybook/addon-links@5.3.21(react-dom@16.14.0)(react@17.0.2)(regenerator-runtime@0.13.11): + /@storybook/addon-links@5.3.21(react-dom@16.14.0)(react@17.0.2)(regenerator-runtime@0.14.0): resolution: {integrity: sha512-Gjg3EUGVNSubvWawgbdiXQIKOL7QoMQOCeh1Pyl+5GPozYWDMr8O+86funTbt9LPBzGE1J+RWHarDaArUc6tSw==} peerDependencies: react: '*' dependencies: - '@storybook/addons': 5.3.21(react-dom@16.14.0)(regenerator-runtime@0.13.11) + '@storybook/addons': 5.3.21(react-dom@16.14.0)(regenerator-runtime@0.14.0) '@storybook/client-logger': 5.3.21 '@storybook/core-events': 5.3.21 '@storybook/csf': 0.0.1 '@storybook/router': 5.3.21(react-dom@16.14.0)(react@17.0.2) - core-js: 3.31.1 + core-js: 3.33.1 global: 4.4.0 prop-types: 15.8.1 qs: 6.11.2 @@ -12076,17 +11933,17 @@ packages: - regenerator-runtime dev: true - /@storybook/addon-links@5.3.21(react-dom@17.0.2)(react@17.0.2)(regenerator-runtime@0.13.11): + /@storybook/addon-links@5.3.21(react-dom@17.0.2)(react@17.0.2)(regenerator-runtime@0.14.0): resolution: {integrity: sha512-Gjg3EUGVNSubvWawgbdiXQIKOL7QoMQOCeh1Pyl+5GPozYWDMr8O+86funTbt9LPBzGE1J+RWHarDaArUc6tSw==} peerDependencies: react: '*' dependencies: - '@storybook/addons': 5.3.21(react-dom@17.0.2)(regenerator-runtime@0.13.11) + '@storybook/addons': 5.3.21(react-dom@17.0.2)(regenerator-runtime@0.14.0) '@storybook/client-logger': 5.3.21 '@storybook/core-events': 5.3.21 '@storybook/csf': 0.0.1 '@storybook/router': 5.3.21(react-dom@17.0.2)(react@17.0.2) - core-js: 3.31.1 + core-js: 3.33.1 global: 4.4.0 prop-types: 15.8.1 qs: 6.11.2 @@ -12097,19 +11954,19 @@ packages: - regenerator-runtime dev: true - /@storybook/addon-notes@5.3.21(@types/react@17.0.0)(react-dom@16.14.0)(react@17.0.2)(regenerator-runtime@0.13.11): + /@storybook/addon-notes@5.3.21(@types/react@17.0.0)(react-dom@16.14.0)(react@17.0.2)(regenerator-runtime@0.14.0): resolution: {integrity: sha512-lPqIm8LDOqHpfoLeBNCObNfoI2ZMDuBILJAgfCYMy0D+uJbxUi2oAVayxNAZJNuCooMLcb90gc3kMoSVbmW8Sw==} peerDependencies: react: '*' dependencies: - '@storybook/addons': 5.3.21(react-dom@16.14.0)(regenerator-runtime@0.13.11) - '@storybook/api': 5.3.21(react-dom@16.14.0)(regenerator-runtime@0.13.11) + '@storybook/addons': 5.3.21(react-dom@16.14.0)(regenerator-runtime@0.14.0) + '@storybook/api': 5.3.21(react-dom@16.14.0)(regenerator-runtime@0.14.0) '@storybook/client-logger': 5.3.21 '@storybook/components': 5.3.21(@types/react@17.0.0)(react-dom@16.14.0)(react@17.0.2) '@storybook/core-events': 5.3.21 '@storybook/router': 5.3.21(react-dom@16.14.0)(react@17.0.2) '@storybook/theming': 5.3.21(react-dom@16.14.0)(react@17.0.2) - core-js: 3.31.1 + core-js: 3.33.1 global: 4.4.0 markdown-to-jsx: 6.11.4(react@17.0.2) memoizerific: 1.11.3 @@ -12122,19 +11979,19 @@ packages: - regenerator-runtime dev: true - /@storybook/addon-notes@5.3.21(@types/react@17.0.0)(react-dom@17.0.2)(react@17.0.2)(regenerator-runtime@0.13.11): + /@storybook/addon-notes@5.3.21(@types/react@17.0.0)(react-dom@17.0.2)(react@17.0.2)(regenerator-runtime@0.14.0): resolution: {integrity: sha512-lPqIm8LDOqHpfoLeBNCObNfoI2ZMDuBILJAgfCYMy0D+uJbxUi2oAVayxNAZJNuCooMLcb90gc3kMoSVbmW8Sw==} peerDependencies: react: '*' dependencies: - '@storybook/addons': 5.3.21(react-dom@17.0.2)(regenerator-runtime@0.13.11) - '@storybook/api': 5.3.21(react-dom@17.0.2)(regenerator-runtime@0.13.11) + '@storybook/addons': 5.3.21(react-dom@17.0.2)(regenerator-runtime@0.14.0) + '@storybook/api': 5.3.21(react-dom@17.0.2)(regenerator-runtime@0.14.0) '@storybook/client-logger': 5.3.21 '@storybook/components': 5.3.21(@types/react@17.0.0)(react-dom@17.0.2)(react@17.0.2) '@storybook/core-events': 5.3.21 '@storybook/router': 5.3.21(react-dom@17.0.2)(react@17.0.2) '@storybook/theming': 5.3.21(react-dom@17.0.2)(react@17.0.2) - core-js: 3.31.1 + core-js: 3.33.1 global: 4.4.0 markdown-to-jsx: 6.11.4(react@17.0.2) memoizerific: 1.11.3 @@ -12147,13 +12004,13 @@ packages: - regenerator-runtime dev: true - /@storybook/addon-options@5.3.21(react-dom@16.14.0)(react@17.0.2)(regenerator-runtime@0.13.11): + /@storybook/addon-options@5.3.21(react-dom@16.14.0)(react@17.0.2)(regenerator-runtime@0.14.0): resolution: {integrity: sha512-Q+xo6Irrb66NOQO9U4QWddAU6UEPNb+Mn5h9NHwJYV87mKl/3bqleApBhtOhSacWw5GjceiigzulXZTCs866Sw==} peerDependencies: react: '*' dependencies: - '@storybook/addons': 5.3.21(react-dom@16.14.0)(regenerator-runtime@0.13.11) - core-js: 3.31.1 + '@storybook/addons': 5.3.21(react-dom@16.14.0)(regenerator-runtime@0.14.0) + core-js: 3.33.1 react: 17.0.2 util-deprecate: 1.0.2 transitivePeerDependencies: @@ -12161,13 +12018,13 @@ packages: - regenerator-runtime dev: true - /@storybook/addon-options@5.3.21(react-dom@17.0.2)(react@17.0.2)(regenerator-runtime@0.13.11): + /@storybook/addon-options@5.3.21(react-dom@17.0.2)(react@17.0.2)(regenerator-runtime@0.14.0): resolution: {integrity: sha512-Q+xo6Irrb66NOQO9U4QWddAU6UEPNb+Mn5h9NHwJYV87mKl/3bqleApBhtOhSacWw5GjceiigzulXZTCs866Sw==} peerDependencies: react: '*' dependencies: - '@storybook/addons': 5.3.21(react-dom@17.0.2)(regenerator-runtime@0.13.11) - core-js: 3.31.1 + '@storybook/addons': 5.3.21(react-dom@17.0.2)(regenerator-runtime@0.14.0) + core-js: 3.33.1 react: 17.0.2 util-deprecate: 1.0.2 transitivePeerDependencies: @@ -12175,7 +12032,7 @@ packages: - regenerator-runtime dev: true - /@storybook/addon-storysource@5.3.21(@storybook/source-loader@7.0.27)(@types/react@17.0.0)(react-dom@16.14.0)(react@17.0.2): + /@storybook/addon-storysource@5.3.21(@storybook/source-loader@7.5.1)(@types/react@17.0.0)(react-dom@16.14.0)(react@17.0.2): resolution: {integrity: sha512-xndADOr74/Jf6Dy5bzV/cxmmXZBk4nted5O2fPGGnNIyvG24TPnJcQvPQfiHcC1Br/wW3HMgBcyQp3cT+UhXcg==} peerDependencies: '@storybook/source-loader': '*' @@ -12184,9 +12041,9 @@ packages: '@storybook/addons': 5.3.21(react-dom@16.14.0)(regenerator-runtime@0.13.11) '@storybook/components': 5.3.21(@types/react@17.0.0)(react-dom@16.14.0)(react@17.0.2) '@storybook/router': 5.3.21(react-dom@16.14.0)(react@17.0.2) - '@storybook/source-loader': 7.0.27(react-dom@16.14.0)(react@17.0.2) + '@storybook/source-loader': 7.5.1(react-dom@16.14.0)(react@17.0.2) '@storybook/theming': 5.3.21(react-dom@16.14.0)(react@17.0.2) - core-js: 3.31.1 + core-js: 3.33.1 estraverse: 4.3.0 loader-utils: 1.4.2 prettier: 1.19.1 @@ -12200,7 +12057,7 @@ packages: - react-dom dev: true - /@storybook/addon-storysource@5.3.21(@storybook/source-loader@7.0.27)(@types/react@17.0.0)(react-dom@17.0.2)(react@17.0.2): + /@storybook/addon-storysource@5.3.21(@storybook/source-loader@7.5.1)(@types/react@17.0.0)(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-xndADOr74/Jf6Dy5bzV/cxmmXZBk4nted5O2fPGGnNIyvG24TPnJcQvPQfiHcC1Br/wW3HMgBcyQp3cT+UhXcg==} peerDependencies: '@storybook/source-loader': '*' @@ -12209,9 +12066,9 @@ packages: '@storybook/addons': 5.3.21(react-dom@17.0.2)(regenerator-runtime@0.13.11) '@storybook/components': 5.3.21(@types/react@17.0.0)(react-dom@17.0.2)(react@17.0.2) '@storybook/router': 5.3.21(react-dom@17.0.2)(react@17.0.2) - '@storybook/source-loader': 7.0.27(react-dom@17.0.2)(react@17.0.2) + '@storybook/source-loader': 7.5.1(react-dom@17.0.2)(react@17.0.2) '@storybook/theming': 5.3.21(react-dom@17.0.2)(react@17.0.2) - core-js: 3.31.1 + core-js: 3.33.1 estraverse: 4.3.0 loader-utils: 1.4.2 prettier: 1.19.1 @@ -12232,7 +12089,22 @@ packages: '@storybook/channels': 5.3.21 '@storybook/client-logger': 5.3.21 '@storybook/core-events': 5.3.21 - core-js: 3.31.1 + core-js: 3.33.1 + global: 4.4.0 + util-deprecate: 1.0.2 + transitivePeerDependencies: + - react-dom + - regenerator-runtime + dev: true + + /@storybook/addons@5.3.21(react-dom@16.14.0)(regenerator-runtime@0.14.0): + resolution: {integrity: sha512-Ji/21WADTLVbTbiKcZ64BcL0Es+h1Afxx3kNmGJqPSTUYroCwIFCT9mUzCqU6G+YyWaISAmTii5UJkTwMkChwA==} + dependencies: + '@storybook/api': 5.3.21(react-dom@16.14.0)(regenerator-runtime@0.14.0) + '@storybook/channels': 5.3.21 + '@storybook/client-logger': 5.3.21 + '@storybook/core-events': 5.3.21 + core-js: 3.33.1 global: 4.4.0 util-deprecate: 1.0.2 transitivePeerDependencies: @@ -12247,7 +12119,22 @@ packages: '@storybook/channels': 5.3.21 '@storybook/client-logger': 5.3.21 '@storybook/core-events': 5.3.21 - core-js: 3.31.1 + core-js: 3.33.1 + global: 4.4.0 + util-deprecate: 1.0.2 + transitivePeerDependencies: + - react-dom + - regenerator-runtime + dev: true + + /@storybook/addons@5.3.21(react-dom@17.0.2)(regenerator-runtime@0.14.0): + resolution: {integrity: sha512-Ji/21WADTLVbTbiKcZ64BcL0Es+h1Afxx3kNmGJqPSTUYroCwIFCT9mUzCqU6G+YyWaISAmTii5UJkTwMkChwA==} + dependencies: + '@storybook/api': 5.3.21(react-dom@17.0.2)(regenerator-runtime@0.14.0) + '@storybook/channels': 5.3.21 + '@storybook/client-logger': 5.3.21 + '@storybook/core-events': 5.3.21 + core-js: 3.33.1 global: 4.4.0 util-deprecate: 1.0.2 transitivePeerDependencies: @@ -12255,14 +12142,14 @@ packages: - regenerator-runtime dev: true - /@storybook/addons@5.3.22(react-dom@16.14.0)(regenerator-runtime@0.13.11): + /@storybook/addons@5.3.22(react-dom@16.14.0)(regenerator-runtime@0.14.0): resolution: {integrity: sha512-GiQD1r4UQxzjrDMdVwBCxgJ5DdmtD0PAwX1ZIxqJYLLh+NnMIIh2gGSsXJDxMrN0FfLGYhRfgXjRChn1Cuaf8A==} dependencies: - '@storybook/api': 5.3.22(react-dom@16.14.0)(regenerator-runtime@0.13.11) + '@storybook/api': 5.3.22(react-dom@16.14.0)(regenerator-runtime@0.14.0) '@storybook/channels': 5.3.22 '@storybook/client-logger': 5.3.22 '@storybook/core-events': 5.3.22 - core-js: 3.31.1 + core-js: 3.33.1 global: 4.4.0 util-deprecate: 1.0.2 transitivePeerDependencies: @@ -12270,14 +12157,14 @@ packages: - regenerator-runtime dev: true - /@storybook/addons@5.3.22(react-dom@17.0.2)(regenerator-runtime@0.13.11): + /@storybook/addons@5.3.22(react-dom@17.0.2)(regenerator-runtime@0.14.0): resolution: {integrity: sha512-GiQD1r4UQxzjrDMdVwBCxgJ5DdmtD0PAwX1ZIxqJYLLh+NnMIIh2gGSsXJDxMrN0FfLGYhRfgXjRChn1Cuaf8A==} dependencies: - '@storybook/api': 5.3.22(react-dom@17.0.2)(regenerator-runtime@0.13.11) + '@storybook/api': 5.3.22(react-dom@17.0.2)(regenerator-runtime@0.14.0) '@storybook/channels': 5.3.22 '@storybook/client-logger': 5.3.22 '@storybook/core-events': 5.3.22 - core-js: 3.31.1 + core-js: 3.33.1 global: 4.4.0 util-deprecate: 1.0.2 transitivePeerDependencies: @@ -12297,8 +12184,8 @@ packages: '@storybook/csf': 0.0.1 '@storybook/router': 5.3.21(react-dom@16.14.0)(react@16.14.0) '@storybook/theming': 5.3.21(react-dom@16.14.0)(react@16.14.0) - '@types/reach__router': 1.3.11 - core-js: 3.31.1 + '@types/reach__router': 1.3.13 + core-js: 3.33.1 fast-deep-equal: 2.0.1 global: 4.4.0 lodash: 4.17.21 @@ -12315,6 +12202,36 @@ packages: - react-dom dev: true + /@storybook/api@5.3.21(react-dom@16.14.0)(regenerator-runtime@0.14.0): + resolution: {integrity: sha512-K1o4an/Rx8daKRDooks6qzN6ZGyqizeacZZbair3F8CsSfTgrr2zCcf9pgKojLQa9koEmMHlcdb2KnS+GwPEgA==} + peerDependencies: + regenerator-runtime: '*' + dependencies: + '@reach/router': 1.3.4(react-dom@16.14.0)(react@16.14.0) + '@storybook/channels': 5.3.21 + '@storybook/client-logger': 5.3.21 + '@storybook/core-events': 5.3.21 + '@storybook/csf': 0.0.1 + '@storybook/router': 5.3.21(react-dom@16.14.0)(react@16.14.0) + '@storybook/theming': 5.3.21(react-dom@16.14.0)(react@16.14.0) + '@types/reach__router': 1.3.13 + core-js: 3.33.1 + fast-deep-equal: 2.0.1 + global: 4.4.0 + lodash: 4.17.21 + memoizerific: 1.11.3 + prop-types: 15.8.1 + react: 16.14.0 + regenerator-runtime: 0.14.0 + semver: 6.3.1 + shallow-equal: 1.2.1 + store2: 2.14.2 + telejson: 3.3.0 + util-deprecate: 1.0.2 + transitivePeerDependencies: + - react-dom + dev: true + /@storybook/api@5.3.21(react-dom@17.0.2)(regenerator-runtime@0.13.11): resolution: {integrity: sha512-K1o4an/Rx8daKRDooks6qzN6ZGyqizeacZZbair3F8CsSfTgrr2zCcf9pgKojLQa9koEmMHlcdb2KnS+GwPEgA==} peerDependencies: @@ -12327,8 +12244,8 @@ packages: '@storybook/csf': 0.0.1 '@storybook/router': 5.3.21(react-dom@17.0.2)(react@16.14.0) '@storybook/theming': 5.3.21(react-dom@17.0.2)(react@16.14.0) - '@types/reach__router': 1.3.11 - core-js: 3.31.1 + '@types/reach__router': 1.3.13 + core-js: 3.33.1 fast-deep-equal: 2.0.1 global: 4.4.0 lodash: 4.17.21 @@ -12345,7 +12262,37 @@ packages: - react-dom dev: true - /@storybook/api@5.3.22(react-dom@16.14.0)(regenerator-runtime@0.13.11): + /@storybook/api@5.3.21(react-dom@17.0.2)(regenerator-runtime@0.14.0): + resolution: {integrity: sha512-K1o4an/Rx8daKRDooks6qzN6ZGyqizeacZZbair3F8CsSfTgrr2zCcf9pgKojLQa9koEmMHlcdb2KnS+GwPEgA==} + peerDependencies: + regenerator-runtime: '*' + dependencies: + '@reach/router': 1.3.4(react-dom@17.0.2)(react@16.14.0) + '@storybook/channels': 5.3.21 + '@storybook/client-logger': 5.3.21 + '@storybook/core-events': 5.3.21 + '@storybook/csf': 0.0.1 + '@storybook/router': 5.3.21(react-dom@17.0.2)(react@16.14.0) + '@storybook/theming': 5.3.21(react-dom@17.0.2)(react@16.14.0) + '@types/reach__router': 1.3.13 + core-js: 3.33.1 + fast-deep-equal: 2.0.1 + global: 4.4.0 + lodash: 4.17.21 + memoizerific: 1.11.3 + prop-types: 15.8.1 + react: 16.14.0 + regenerator-runtime: 0.14.0 + semver: 6.3.1 + shallow-equal: 1.2.1 + store2: 2.14.2 + telejson: 3.3.0 + util-deprecate: 1.0.2 + transitivePeerDependencies: + - react-dom + dev: true + + /@storybook/api@5.3.22(react-dom@16.14.0)(regenerator-runtime@0.14.0): resolution: {integrity: sha512-yNs4nZ63V1q9Gr1YMQ2i1UrIt+4U3LwsN0IBOYxZ7otfxYRIEBGUqlrlDXdYlgf5VmL8HkwB9n13EEdPu2Y1LA==} peerDependencies: regenerator-runtime: '*' @@ -12357,15 +12304,15 @@ packages: '@storybook/csf': 0.0.1 '@storybook/router': 5.3.22(react-dom@16.14.0)(react@16.14.0) '@storybook/theming': 5.3.22(react-dom@16.14.0)(react@16.14.0) - '@types/reach__router': 1.3.11 - core-js: 3.31.1 + '@types/reach__router': 1.3.13 + core-js: 3.33.1 fast-deep-equal: 2.0.1 global: 4.4.0 lodash: 4.17.21 memoizerific: 1.11.3 prop-types: 15.8.1 react: 16.14.0 - regenerator-runtime: 0.13.11 + regenerator-runtime: 0.14.0 semver: 6.3.1 shallow-equal: 1.2.1 store2: 2.14.2 @@ -12375,7 +12322,7 @@ packages: - react-dom dev: true - /@storybook/api@5.3.22(react-dom@17.0.2)(regenerator-runtime@0.13.11): + /@storybook/api@5.3.22(react-dom@17.0.2)(regenerator-runtime@0.14.0): resolution: {integrity: sha512-yNs4nZ63V1q9Gr1YMQ2i1UrIt+4U3LwsN0IBOYxZ7otfxYRIEBGUqlrlDXdYlgf5VmL8HkwB9n13EEdPu2Y1LA==} peerDependencies: regenerator-runtime: '*' @@ -12387,15 +12334,15 @@ packages: '@storybook/csf': 0.0.1 '@storybook/router': 5.3.22(react-dom@17.0.2)(react@16.14.0) '@storybook/theming': 5.3.22(react-dom@17.0.2)(react@16.14.0) - '@types/reach__router': 1.3.11 - core-js: 3.31.1 + '@types/reach__router': 1.3.13 + core-js: 3.33.1 fast-deep-equal: 2.0.1 global: 4.4.0 lodash: 4.17.21 memoizerific: 1.11.3 prop-types: 15.8.1 react: 16.14.0 - regenerator-runtime: 0.13.11 + regenerator-runtime: 0.14.0 semver: 6.3.1 shallow-equal: 1.2.1 store2: 2.14.2 @@ -12410,7 +12357,7 @@ packages: dependencies: '@storybook/channels': 5.3.21 '@storybook/client-logger': 5.3.21 - core-js: 3.31.1 + core-js: 3.33.1 global: 4.4.0 telejson: 3.3.0 dev: true @@ -12418,29 +12365,36 @@ packages: /@storybook/channels@5.3.21: resolution: {integrity: sha512-OXoFs9XtBVg/cCk6lYMrxkzaNlJRf54ABdorp7YAAj7S9tRL1JxOZHxmjNQwEoiRvssmem2rAWtEAxfuEANsAA==} dependencies: - core-js: 3.31.1 + core-js: 3.33.1 dev: true /@storybook/channels@5.3.22: resolution: {integrity: sha512-g09qHs5nzn0dK8n65mISwYKC5fZ9OC+ZUIweSX2BHleiuRbYx5xXqptgp+CBLei1Nqu/7GlOM6UFfWQGIsa3GQ==} dependencies: - core-js: 3.31.1 + core-js: 3.33.1 dev: true - /@storybook/channels@7.0.27: - resolution: {integrity: sha512-YppvPa1qMyC+oCQJ3tf7Quzpf2NnBlvIRLPJiGAMssUwX5qE0iKe9lTtkNwMaNxEvzz6rDxewSlz+f/MWr4gPw==} + /@storybook/channels@7.5.1: + resolution: {integrity: sha512-7hTGHqvtdFTqRx8LuCznOpqPBYfUeMUt/0IIp7SFuZT585yMPxrYoaK//QmLEWnPb80B8HVTSQi7caUkJb32LA==} + dependencies: + '@storybook/client-logger': 7.5.1 + '@storybook/core-events': 7.5.1 + '@storybook/global': 5.0.0 + qs: 6.11.2 + telejson: 7.2.0 + tiny-invariant: 1.3.1 dev: true - /@storybook/cli@5.3.22(jest@29.6.1): + /@storybook/cli@5.3.22(jest@29.7.0): resolution: {integrity: sha512-tLHYlKaOqllr4bUNiupB6bDRZ3CjQsU39C8xIP0kGPSZ+2jxxn/x/Z7prszfiP7Iphqp8oqUKO7HtdUBbiuSkg==} hasBin: true dependencies: - '@babel/core': 7.22.9 - '@babel/preset-env': 7.22.9(@babel/core@7.22.9) - '@storybook/codemod': 5.3.22(jest@29.6.1) + '@babel/core': 7.23.2 + '@babel/preset-env': 7.23.2(@babel/core@7.23.2) + '@storybook/codemod': 5.3.22(jest@29.7.0) chalk: 3.0.0 commander: 4.1.1 - core-js: 3.31.1 + core-js: 3.33.1 cross-spawn: 7.0.3 didyoumean: 1.2.2 envinfo: 7.10.0 @@ -12469,8 +12423,33 @@ packages: '@storybook/client-logger': 5.3.21 '@storybook/core-events': 5.3.21 '@storybook/csf': 0.0.1 - '@types/webpack-env': 1.18.1 - core-js: 3.31.1 + '@types/webpack-env': 1.18.3 + core-js: 3.33.1 + eventemitter3: 4.0.7 + global: 4.4.0 + is-plain-object: 3.0.1 + lodash: 4.17.21 + memoizerific: 1.11.3 + qs: 6.11.2 + stable: 0.1.8 + ts-dedent: 1.2.0 + util-deprecate: 1.0.2 + transitivePeerDependencies: + - react-dom + - regenerator-runtime + dev: true + + /@storybook/client-api@5.3.21(react-dom@16.14.0)(regenerator-runtime@0.14.0): + resolution: {integrity: sha512-vS4DfA2Avvl7JNQymO4e3RUNoTWIGVfZJ70Irnd6PTAZNojbCXTYuigDavrmyf83F3g5rQpwmSAPjuoi/X/FRA==} + dependencies: + '@storybook/addons': 5.3.21(react-dom@16.14.0)(regenerator-runtime@0.14.0) + '@storybook/channel-postmessage': 5.3.21 + '@storybook/channels': 5.3.21 + '@storybook/client-logger': 5.3.21 + '@storybook/core-events': 5.3.21 + '@storybook/csf': 0.0.1 + '@types/webpack-env': 1.18.3 + core-js: 3.33.1 eventemitter3: 4.0.7 global: 4.4.0 is-plain-object: 3.0.1 @@ -12494,8 +12473,33 @@ packages: '@storybook/client-logger': 5.3.21 '@storybook/core-events': 5.3.21 '@storybook/csf': 0.0.1 - '@types/webpack-env': 1.18.1 - core-js: 3.31.1 + '@types/webpack-env': 1.18.3 + core-js: 3.33.1 + eventemitter3: 4.0.7 + global: 4.4.0 + is-plain-object: 3.0.1 + lodash: 4.17.21 + memoizerific: 1.11.3 + qs: 6.11.2 + stable: 0.1.8 + ts-dedent: 1.2.0 + util-deprecate: 1.0.2 + transitivePeerDependencies: + - react-dom + - regenerator-runtime + dev: true + + /@storybook/client-api@5.3.21(react-dom@17.0.2)(regenerator-runtime@0.14.0): + resolution: {integrity: sha512-vS4DfA2Avvl7JNQymO4e3RUNoTWIGVfZJ70Irnd6PTAZNojbCXTYuigDavrmyf83F3g5rQpwmSAPjuoi/X/FRA==} + dependencies: + '@storybook/addons': 5.3.21(react-dom@17.0.2)(regenerator-runtime@0.14.0) + '@storybook/channel-postmessage': 5.3.21 + '@storybook/channels': 5.3.21 + '@storybook/client-logger': 5.3.21 + '@storybook/core-events': 5.3.21 + '@storybook/csf': 0.0.1 + '@types/webpack-env': 1.18.3 + core-js: 3.33.1 eventemitter3: 4.0.7 global: 4.4.0 is-plain-object: 3.0.1 @@ -12513,25 +12517,31 @@ packages: /@storybook/client-logger@5.3.21: resolution: {integrity: sha512-OzQkwpZ5SK9cXD9Mv6lxPGPot+hSZvnkEW12kpt1AHfJz4ET26YTDOI3oetPsjfRJo6qYLeQX8+wF7rklfXbzA==} dependencies: - core-js: 3.31.1 + core-js: 3.33.1 dev: true /@storybook/client-logger@5.3.22: resolution: {integrity: sha512-kcAm56izhmN3ulOJf0YRPNSmG9OUUqSfFx5K3hrBUaSImpBU6XTweFLsPhcXK77RTVpdf+aumkw4prEyicJzww==} dependencies: - core-js: 3.31.1 + core-js: 3.33.1 + dev: true + + /@storybook/client-logger@7.5.1: + resolution: {integrity: sha512-XxbLvg0aQRoBrzxYLcVYCbjDkGbkU8Rfb74XbV2CLiO2bIbFPmA1l1Nwbp+wkCGA+O6Z1zwzSl6wcKKqZ6XZCg==} + dependencies: + '@storybook/global': 5.0.0 dev: true - /@storybook/codemod@5.3.22(jest@29.6.1): + /@storybook/codemod@5.3.22(jest@29.7.0): resolution: {integrity: sha512-r8n7gPYe33dYXHt603bAcoMiiQTFN4b4+A+WspDVVAZU9M095dx7mm0zAbI/KvCG2heXdnyWz6Em3xcdQZmkXA==} dependencies: '@mdx-js/mdx': 1.6.22 '@storybook/csf': 0.0.1 '@storybook/node-logger': 5.3.22 - core-js: 3.31.1 + core-js: 3.33.1 cross-spawn: 7.0.3 globby: 11.1.0 - jest-specific-snapshot: 2.0.0(jest@29.6.1) + jest-specific-snapshot: 2.0.0(jest@29.7.0) jscodeshift: 0.7.1 lodash: 4.17.21 prettier: 1.19.1 @@ -12552,7 +12562,7 @@ packages: '@storybook/theming': 5.3.21(react-dom@16.14.0)(react@16.14.0) '@types/react-syntax-highlighter': 11.0.4 '@types/react-textarea-autosize': 4.3.6 - core-js: 3.31.1 + core-js: 3.33.1 global: 4.4.0 lodash: 4.17.21 markdown-to-jsx: 6.11.4(react@16.14.0) @@ -12562,7 +12572,7 @@ packages: prop-types: 15.8.1 react: 16.14.0 react-dom: 16.14.0(react@17.0.2) - react-focus-lock: 2.9.5(@types/react@17.0.0)(react@16.14.0) + react-focus-lock: 2.9.6(@types/react@17.0.0)(react@16.14.0) react-helmet-async: 1.3.0(react-dom@16.14.0)(react@16.14.0) react-popper-tooltip: 2.11.1(react-dom@16.14.0)(react@16.14.0) react-syntax-highlighter: 11.0.3(react@16.14.0) @@ -12583,7 +12593,7 @@ packages: '@storybook/theming': 5.3.21(react-dom@16.14.0)(react@17.0.2) '@types/react-syntax-highlighter': 11.0.4 '@types/react-textarea-autosize': 4.3.6 - core-js: 3.31.1 + core-js: 3.33.1 global: 4.4.0 lodash: 4.17.21 markdown-to-jsx: 6.11.4(react@17.0.2) @@ -12593,7 +12603,7 @@ packages: prop-types: 15.8.1 react: 17.0.2 react-dom: 16.14.0(react@17.0.2) - react-focus-lock: 2.9.5(@types/react@17.0.0)(react@17.0.2) + react-focus-lock: 2.9.6(@types/react@17.0.0)(react@17.0.2) react-helmet-async: 1.3.0(react-dom@16.14.0)(react@17.0.2) react-popper-tooltip: 2.11.1(react-dom@16.14.0)(react@17.0.2) react-syntax-highlighter: 11.0.3(react@17.0.2) @@ -12614,7 +12624,7 @@ packages: '@storybook/theming': 5.3.21(react-dom@17.0.2)(react@16.14.0) '@types/react-syntax-highlighter': 11.0.4 '@types/react-textarea-autosize': 4.3.6 - core-js: 3.31.1 + core-js: 3.33.1 global: 4.4.0 lodash: 4.17.21 markdown-to-jsx: 6.11.4(react@16.14.0) @@ -12624,7 +12634,7 @@ packages: prop-types: 15.8.1 react: 16.14.0 react-dom: 17.0.2(react@17.0.2) - react-focus-lock: 2.9.5(@types/react@17.0.0)(react@16.14.0) + react-focus-lock: 2.9.6(@types/react@17.0.0)(react@16.14.0) react-helmet-async: 1.3.0(react-dom@17.0.2)(react@16.14.0) react-popper-tooltip: 2.11.1(react-dom@17.0.2)(react@16.14.0) react-syntax-highlighter: 11.0.3(react@16.14.0) @@ -12645,7 +12655,7 @@ packages: '@storybook/theming': 5.3.21(react-dom@17.0.2)(react@17.0.2) '@types/react-syntax-highlighter': 11.0.4 '@types/react-textarea-autosize': 4.3.6 - core-js: 3.31.1 + core-js: 3.33.1 global: 4.4.0 lodash: 4.17.21 markdown-to-jsx: 6.11.4(react@17.0.2) @@ -12655,7 +12665,7 @@ packages: prop-types: 15.8.1 react: 17.0.2 react-dom: 17.0.2(react@17.0.2) - react-focus-lock: 2.9.5(@types/react@17.0.0)(react@17.0.2) + react-focus-lock: 2.9.6(@types/react@17.0.0)(react@17.0.2) react-helmet-async: 1.3.0(react-dom@17.0.2)(react@17.0.2) react-popper-tooltip: 2.11.1(react-dom@17.0.2)(react@17.0.2) react-syntax-highlighter: 11.0.3(react@17.0.2) @@ -12676,7 +12686,7 @@ packages: '@storybook/theming': 5.3.22(react-dom@16.14.0)(react@16.14.0) '@types/react-syntax-highlighter': 11.0.4 '@types/react-textarea-autosize': 4.3.6 - core-js: 3.31.1 + core-js: 3.33.1 global: 4.4.0 lodash: 4.17.21 markdown-to-jsx: 6.11.4(react@16.14.0) @@ -12686,7 +12696,7 @@ packages: prop-types: 15.8.1 react: 16.14.0 react-dom: 16.14.0(react@17.0.2) - react-focus-lock: 2.9.5(@types/react@17.0.0)(react@16.14.0) + react-focus-lock: 2.9.6(@types/react@17.0.0)(react@16.14.0) react-helmet-async: 1.3.0(react-dom@16.14.0)(react@16.14.0) react-popper-tooltip: 2.11.1(react-dom@16.14.0)(react@16.14.0) react-syntax-highlighter: 11.0.3(react@16.14.0) @@ -12707,7 +12717,7 @@ packages: '@storybook/theming': 5.3.22(react-dom@17.0.2)(react@16.14.0) '@types/react-syntax-highlighter': 11.0.4 '@types/react-textarea-autosize': 4.3.6 - core-js: 3.31.1 + core-js: 3.33.1 global: 4.4.0 lodash: 4.17.21 markdown-to-jsx: 6.11.4(react@16.14.0) @@ -12717,7 +12727,7 @@ packages: prop-types: 15.8.1 react: 16.14.0 react-dom: 17.0.2(react@17.0.2) - react-focus-lock: 2.9.5(@types/react@17.0.0)(react@16.14.0) + react-focus-lock: 2.9.6(@types/react@17.0.0)(react@16.14.0) react-helmet-async: 1.3.0(react-dom@17.0.2)(react@16.14.0) react-popper-tooltip: 2.11.1(react-dom@17.0.2)(react@16.14.0) react-syntax-highlighter: 11.0.3(react@16.14.0) @@ -12731,16 +12741,22 @@ packages: /@storybook/core-events@5.3.21: resolution: {integrity: sha512-/Zsm1sKAh6pzQv8jQUmuhM7nuM01ZljIRKy8p2HjPNlMjDB5yaRkBfyeAUXUg+qXNI6aHVWa4jGdPEdwwY4oLA==} dependencies: - core-js: 3.31.1 + core-js: 3.33.1 dev: true /@storybook/core-events@5.3.22: resolution: {integrity: sha512-dGRIMwbX47dTBe5Bc9jI9+iABwSFgQPvZXb56uvPsNBUd7/fDfryqSVrc/YfiQzhs0YS1IN6NCKEbOGbNRbpvg==} dependencies: - core-js: 3.31.1 + core-js: 3.33.1 + dev: true + + /@storybook/core-events@7.5.1: + resolution: {integrity: sha512-2eyaUhTfmEEqOEZVoCXVITCBn6N7QuZCG2UNxv0l//ED+7MuMiFhVw7kS7H3WOVk65R7gb8qbKFTNX8HFTgBHg==} + dependencies: + ts-dedent: 2.2.0 dev: true - /@storybook/core@5.3.21(@babel/core@7.22.9)(@types/react@17.0.0)(babel-loader@8.2.5)(eslint@7.32.0)(react-dom@16.14.0)(react@17.0.2)(typescript@5.1.6)(webpack-cli@5.0.0): + /@storybook/core@5.3.21(@babel/core@7.23.2)(@types/react@17.0.0)(babel-loader@8.2.5)(eslint@7.32.0)(react-dom@16.14.0)(react@17.0.2)(typescript@5.1.6)(webpack-cli@5.0.0): resolution: {integrity: sha512-plD47WIsn/JoyRJDOpmH7N7mEMo/jiA8ZlOitLW55zYvzUn8UrVpRFpMYo91OJxiCT6JFoaEh3XtNdhbgUwnPA==} peerDependencies: '@babel/core': '*' @@ -12748,12 +12764,12 @@ packages: react: '*' react-dom: '*' dependencies: - '@babel/core': 7.22.9 - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.9) - '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.22.9) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.9) - '@babel/plugin-transform-react-constant-elements': 7.22.5(@babel/core@7.22.9) - '@babel/preset-env': 7.22.9(@babel/core@7.22.9) + '@babel/core': 7.23.2 + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.23.2) + '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.23.2) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-transform-react-constant-elements': 7.22.5(@babel/core@7.23.2) + '@babel/preset-env': 7.23.2(@babel/core@7.23.2) '@storybook/addons': 5.3.21(react-dom@16.14.0)(regenerator-runtime@0.13.11) '@storybook/channel-postmessage': 5.3.21 '@storybook/client-api': 5.3.21(react-dom@16.14.0)(regenerator-runtime@0.13.11) @@ -12767,7 +12783,7 @@ packages: airbnb-js-shims: 2.2.1 ansi-to-html: 0.6.15 autoprefixer: 9.8.8 - babel-loader: 8.2.5(@babel/core@7.22.9)(webpack@5.88.0) + babel-loader: 8.2.5(@babel/core@7.23.2)(webpack@5.88.0) babel-plugin-add-react-displayname: 0.0.5 babel-plugin-emotion: 10.2.2 babel-plugin-macros: 2.8.0 @@ -12777,52 +12793,52 @@ packages: chalk: 3.0.0 cli-table3: 0.5.1 commander: 4.1.1 - core-js: 3.31.1 + core-js: 3.33.1 corejs-upgrade-webpack-plugin: 2.2.0(webpack-cli@5.0.0) - css-loader: 3.6.0(webpack@4.46.0) + css-loader: 3.6.0(webpack@4.47.0) detect-port: 1.5.1 - dotenv-webpack: 1.8.0(webpack@4.46.0) + dotenv-webpack: 1.8.0(webpack@4.47.0) ejs: 2.7.4 express: 4.18.2(supports-color@6.1.0) - file-loader: 4.3.0(webpack@4.46.0) + file-loader: 4.3.0(webpack@4.47.0) file-system-cache: 1.1.0 find-cache-dir: 3.3.2 find-up: 4.1.0 fs-extra: 8.1.0 glob-base: 0.3.0 global: 4.4.0 - html-webpack-plugin: 4.5.2(webpack@4.46.0) + html-webpack-plugin: 4.5.2(webpack@4.47.0) inquirer: 7.3.3 interpret: 2.2.0 ip: 1.1.8 json5: 2.2.3 lazy-universal-dotenv: 3.0.1 micromatch: 4.0.5 - node-fetch: 2.6.12 + node-fetch: 2.7.0 open: 7.4.2 pnp-webpack-plugin: 1.5.0(typescript@5.1.6) postcss-flexbugs-fixes: 4.2.1 postcss-loader: 3.0.0 pretty-hrtime: 1.0.3 qs: 6.11.2 - raw-loader: 3.1.0(webpack@4.46.0) + raw-loader: 3.1.0(webpack@4.47.0) react: 17.0.2 - react-dev-utils: 9.1.0(eslint@7.32.0)(typescript@5.1.6)(webpack@4.46.0) + react-dev-utils: 9.1.0(eslint@7.32.0)(typescript@5.1.6)(webpack@4.47.0) react-dom: 16.14.0(react@17.0.2) regenerator-runtime: 0.13.11 - resolve: 1.22.2 + resolve: 1.22.8 resolve-from: 5.0.0 semver: 6.3.1 serve-favicon: 2.5.0 shelljs: 0.8.5 - style-loader: 1.3.0(webpack@4.46.0) - terser-webpack-plugin: 2.3.8(webpack@4.46.0) + style-loader: 1.3.0(webpack@4.47.0) + terser-webpack-plugin: 2.3.8(webpack@4.47.0) ts-dedent: 1.2.0 unfetch: 4.2.0 - url-loader: 2.3.0(file-loader@4.3.0)(webpack@4.46.0) + url-loader: 2.3.0(file-loader@4.3.0)(webpack@4.47.0) util-deprecate: 1.0.2 - webpack: 4.46.0(webpack-cli@5.0.0) - webpack-dev-middleware: 3.7.3(webpack@4.46.0) + webpack: 4.47.0(webpack-cli@5.0.0) + webpack-dev-middleware: 3.7.3(webpack@4.47.0) webpack-hot-middleware: 2.25.4 webpack-virtual-modules: 0.2.2 transitivePeerDependencies: @@ -12837,7 +12853,7 @@ packages: - webpack-command dev: true - /@storybook/core@5.3.21(@babel/core@7.22.9)(@types/react@17.0.0)(babel-loader@8.2.5)(eslint@7.32.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6)(webpack-cli@5.0.0): + /@storybook/core@5.3.21(@babel/core@7.23.2)(@types/react@17.0.0)(babel-loader@8.2.5)(eslint@7.32.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6)(webpack-cli@5.0.0): resolution: {integrity: sha512-plD47WIsn/JoyRJDOpmH7N7mEMo/jiA8ZlOitLW55zYvzUn8UrVpRFpMYo91OJxiCT6JFoaEh3XtNdhbgUwnPA==} peerDependencies: '@babel/core': '*' @@ -12845,12 +12861,12 @@ packages: react: '*' react-dom: '*' dependencies: - '@babel/core': 7.22.9 - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.9) - '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.22.9) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.9) - '@babel/plugin-transform-react-constant-elements': 7.22.5(@babel/core@7.22.9) - '@babel/preset-env': 7.22.9(@babel/core@7.22.9) + '@babel/core': 7.23.2 + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.23.2) + '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.23.2) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-transform-react-constant-elements': 7.22.5(@babel/core@7.23.2) + '@babel/preset-env': 7.23.2(@babel/core@7.23.2) '@storybook/addons': 5.3.21(react-dom@17.0.2)(regenerator-runtime@0.13.11) '@storybook/channel-postmessage': 5.3.21 '@storybook/client-api': 5.3.21(react-dom@17.0.2)(regenerator-runtime@0.13.11) @@ -12864,7 +12880,7 @@ packages: airbnb-js-shims: 2.2.1 ansi-to-html: 0.6.15 autoprefixer: 9.8.8 - babel-loader: 8.2.5(@babel/core@7.22.9)(webpack@5.88.0) + babel-loader: 8.2.5(@babel/core@7.23.2)(webpack@5.88.0) babel-plugin-add-react-displayname: 0.0.5 babel-plugin-emotion: 10.2.2 babel-plugin-macros: 2.8.0 @@ -12874,52 +12890,52 @@ packages: chalk: 3.0.0 cli-table3: 0.5.1 commander: 4.1.1 - core-js: 3.31.1 + core-js: 3.33.1 corejs-upgrade-webpack-plugin: 2.2.0(webpack-cli@5.0.0) - css-loader: 3.6.0(webpack@4.46.0) + css-loader: 3.6.0(webpack@4.47.0) detect-port: 1.5.1 - dotenv-webpack: 1.8.0(webpack@4.46.0) + dotenv-webpack: 1.8.0(webpack@4.47.0) ejs: 2.7.4 express: 4.18.2(supports-color@6.1.0) - file-loader: 4.3.0(webpack@4.46.0) + file-loader: 4.3.0(webpack@4.47.0) file-system-cache: 1.1.0 find-cache-dir: 3.3.2 find-up: 4.1.0 fs-extra: 8.1.0 glob-base: 0.3.0 global: 4.4.0 - html-webpack-plugin: 4.5.2(webpack@4.46.0) + html-webpack-plugin: 4.5.2(webpack@4.47.0) inquirer: 7.3.3 interpret: 2.2.0 ip: 1.1.8 json5: 2.2.3 lazy-universal-dotenv: 3.0.1 micromatch: 4.0.5 - node-fetch: 2.6.12 + node-fetch: 2.7.0 open: 7.4.2 pnp-webpack-plugin: 1.5.0(typescript@5.1.6) postcss-flexbugs-fixes: 4.2.1 postcss-loader: 3.0.0 pretty-hrtime: 1.0.3 qs: 6.11.2 - raw-loader: 3.1.0(webpack@4.46.0) + raw-loader: 3.1.0(webpack@4.47.0) react: 17.0.2 - react-dev-utils: 9.1.0(eslint@7.32.0)(typescript@5.1.6)(webpack@4.46.0) + react-dev-utils: 9.1.0(eslint@7.32.0)(typescript@5.1.6)(webpack@4.47.0) react-dom: 17.0.2(react@17.0.2) regenerator-runtime: 0.13.11 - resolve: 1.22.2 + resolve: 1.22.8 resolve-from: 5.0.0 semver: 6.3.1 serve-favicon: 2.5.0 shelljs: 0.8.5 - style-loader: 1.3.0(webpack@4.46.0) - terser-webpack-plugin: 2.3.8(webpack@4.46.0) + style-loader: 1.3.0(webpack@4.47.0) + terser-webpack-plugin: 2.3.8(webpack@4.47.0) ts-dedent: 1.2.0 unfetch: 4.2.0 - url-loader: 2.3.0(file-loader@4.3.0)(webpack@4.46.0) + url-loader: 2.3.0(file-loader@4.3.0)(webpack@4.47.0) util-deprecate: 1.0.2 - webpack: 4.46.0(webpack-cli@5.0.0) - webpack-dev-middleware: 3.7.3(webpack@4.46.0) + webpack: 4.47.0(webpack-cli@5.0.0) + webpack-dev-middleware: 3.7.3(webpack@4.47.0) webpack-hot-middleware: 2.25.4 webpack-virtual-modules: 0.2.2 transitivePeerDependencies: @@ -12946,12 +12962,16 @@ packages: type-fest: 2.19.0 dev: true + /@storybook/global@5.0.0: + resolution: {integrity: sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ==} + dev: true + /@storybook/node-logger@5.3.21: resolution: {integrity: sha512-8xibncy873JXePCK5MC0qem1MKtWI1Lc4hv6rwURSwYpZtkO7yElay3XAFGUSfz8qFJkoDBmMTxBR3fp4Dln7g==} dependencies: - '@types/npmlog': 4.1.4 + '@types/npmlog': 4.1.5 chalk: 3.0.0 - core-js: 3.31.1 + core-js: 3.33.1 npmlog: 4.1.2 pretty-hrtime: 1.0.3 regenerator-runtime: 0.13.11 @@ -12960,15 +12980,15 @@ packages: /@storybook/node-logger@5.3.22: resolution: {integrity: sha512-+10c18mDoGNMtwcC61eojsHCR/HTuz3gCm+qJRfpJKGM249nqy+ctvGaYiEiN1bpFJMSFnDccV8BmCoJD4UqIw==} dependencies: - '@types/npmlog': 4.1.4 + '@types/npmlog': 4.1.5 chalk: 3.0.0 - core-js: 3.31.1 + core-js: 3.33.1 npmlog: 4.1.2 pretty-hrtime: 1.0.3 regenerator-runtime: 0.13.11 dev: true - /@storybook/react@5.3.21(@babel/core@7.22.9)(@types/react@17.0.0)(babel-loader@8.2.5)(eslint@7.32.0)(react-dom@16.14.0)(react@17.0.2)(typescript@5.1.6)(webpack-cli@5.0.0): + /@storybook/react@5.3.21(@babel/core@7.23.2)(@types/react@17.0.0)(babel-loader@8.2.5)(eslint@7.32.0)(react-dom@16.14.0)(react@17.0.2)(typescript@5.1.6)(webpack-cli@5.0.0): resolution: {integrity: sha512-A50F8dDZxyLGa/dE3q0Zxt7T5r9UbomoSclqw7oJTO9GI76QOu7GfsoWrEL2gTEDAmqXreLVQqGuTLQhBz0rlA==} engines: {node: '>=8.0.0'} hasBin: true @@ -12978,31 +12998,31 @@ packages: react: '*' react-dom: '*' dependencies: - '@babel/core': 7.22.9 - '@babel/plugin-transform-react-constant-elements': 7.22.5(@babel/core@7.22.9) - '@babel/preset-flow': 7.22.5(@babel/core@7.22.9) - '@babel/preset-react': 7.22.5(@babel/core@7.22.9) + '@babel/core': 7.23.2 + '@babel/plugin-transform-react-constant-elements': 7.22.5(@babel/core@7.23.2) + '@babel/preset-flow': 7.22.15(@babel/core@7.23.2) + '@babel/preset-react': 7.22.15(@babel/core@7.23.2) '@storybook/addons': 5.3.21(react-dom@16.14.0)(regenerator-runtime@0.13.11) - '@storybook/core': 5.3.21(@babel/core@7.22.9)(@types/react@17.0.0)(babel-loader@8.2.5)(eslint@7.32.0)(react-dom@16.14.0)(react@17.0.2)(typescript@5.1.6)(webpack-cli@5.0.0) + '@storybook/core': 5.3.21(@babel/core@7.23.2)(@types/react@17.0.0)(babel-loader@8.2.5)(eslint@7.32.0)(react-dom@16.14.0)(react@17.0.2)(typescript@5.1.6)(webpack-cli@5.0.0) '@storybook/node-logger': 5.3.21 '@svgr/webpack': 4.3.3 - '@types/webpack-env': 1.18.1 - babel-loader: 8.2.5(@babel/core@7.22.9)(webpack@5.88.0) + '@types/webpack-env': 1.18.3 + babel-loader: 8.2.5(@babel/core@7.23.2)(webpack@5.88.0) babel-plugin-add-react-displayname: 0.0.5 - babel-plugin-named-asset-import: 0.3.8(@babel/core@7.22.9) + babel-plugin-named-asset-import: 0.3.8(@babel/core@7.23.2) babel-plugin-react-docgen: 4.2.1 - core-js: 3.31.1 + core-js: 3.33.1 global: 4.4.0 lodash: 4.17.21 - mini-css-extract-plugin: 0.7.0(webpack@4.46.0) + mini-css-extract-plugin: 0.7.0(webpack@4.47.0) prop-types: 15.8.1 react: 17.0.2 - react-dev-utils: 9.1.0(eslint@7.32.0)(typescript@5.1.6)(webpack@4.46.0) + react-dev-utils: 9.1.0(eslint@7.32.0)(typescript@5.1.6)(webpack@4.47.0) react-dom: 16.14.0(react@17.0.2) regenerator-runtime: 0.13.11 semver: 6.3.1 ts-dedent: 1.2.0 - webpack: 4.46.0(webpack-cli@5.0.0) + webpack: 4.47.0(webpack-cli@5.0.0) transitivePeerDependencies: - '@types/react' - bluebird @@ -13015,7 +13035,7 @@ packages: - webpack-command dev: true - /@storybook/react@5.3.21(@babel/core@7.22.9)(@types/react@17.0.0)(babel-loader@8.2.5)(eslint@7.32.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6)(webpack-cli@5.0.0): + /@storybook/react@5.3.21(@babel/core@7.23.2)(@types/react@17.0.0)(babel-loader@8.2.5)(eslint@7.32.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6)(webpack-cli@5.0.0): resolution: {integrity: sha512-A50F8dDZxyLGa/dE3q0Zxt7T5r9UbomoSclqw7oJTO9GI76QOu7GfsoWrEL2gTEDAmqXreLVQqGuTLQhBz0rlA==} engines: {node: '>=8.0.0'} hasBin: true @@ -13025,31 +13045,31 @@ packages: react: '*' react-dom: '*' dependencies: - '@babel/core': 7.22.9 - '@babel/plugin-transform-react-constant-elements': 7.22.5(@babel/core@7.22.9) - '@babel/preset-flow': 7.22.5(@babel/core@7.22.9) - '@babel/preset-react': 7.22.5(@babel/core@7.22.9) + '@babel/core': 7.23.2 + '@babel/plugin-transform-react-constant-elements': 7.22.5(@babel/core@7.23.2) + '@babel/preset-flow': 7.22.15(@babel/core@7.23.2) + '@babel/preset-react': 7.22.15(@babel/core@7.23.2) '@storybook/addons': 5.3.21(react-dom@17.0.2)(regenerator-runtime@0.13.11) - '@storybook/core': 5.3.21(@babel/core@7.22.9)(@types/react@17.0.0)(babel-loader@8.2.5)(eslint@7.32.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6)(webpack-cli@5.0.0) + '@storybook/core': 5.3.21(@babel/core@7.23.2)(@types/react@17.0.0)(babel-loader@8.2.5)(eslint@7.32.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6)(webpack-cli@5.0.0) '@storybook/node-logger': 5.3.21 '@svgr/webpack': 4.3.3 - '@types/webpack-env': 1.18.1 - babel-loader: 8.2.5(@babel/core@7.22.9)(webpack@5.88.0) + '@types/webpack-env': 1.18.3 + babel-loader: 8.2.5(@babel/core@7.23.2)(webpack@5.88.0) babel-plugin-add-react-displayname: 0.0.5 - babel-plugin-named-asset-import: 0.3.8(@babel/core@7.22.9) + babel-plugin-named-asset-import: 0.3.8(@babel/core@7.23.2) babel-plugin-react-docgen: 4.2.1 - core-js: 3.31.1 + core-js: 3.33.1 global: 4.4.0 lodash: 4.17.21 - mini-css-extract-plugin: 0.7.0(webpack@4.46.0) + mini-css-extract-plugin: 0.7.0(webpack@4.47.0) prop-types: 15.8.1 react: 17.0.2 - react-dev-utils: 9.1.0(eslint@7.32.0)(typescript@5.1.6)(webpack@4.46.0) + react-dev-utils: 9.1.0(eslint@7.32.0)(typescript@5.1.6)(webpack@4.47.0) react-dom: 17.0.2(react@17.0.2) regenerator-runtime: 0.13.11 semver: 6.3.1 ts-dedent: 1.2.0 - webpack: 4.46.0(webpack-cli@5.0.0) + webpack: 4.47.0(webpack-cli@5.0.0) transitivePeerDependencies: - '@types/react' - bluebird @@ -13070,8 +13090,8 @@ packages: dependencies: '@reach/router': 1.3.4(react-dom@16.14.0)(react@16.14.0) '@storybook/csf': 0.0.1 - '@types/reach__router': 1.3.11 - core-js: 3.31.1 + '@types/reach__router': 1.3.13 + core-js: 3.33.1 global: 4.4.0 lodash: 4.17.21 memoizerific: 1.11.3 @@ -13089,8 +13109,8 @@ packages: dependencies: '@reach/router': 1.3.4(react-dom@16.14.0)(react@17.0.2) '@storybook/csf': 0.0.1 - '@types/reach__router': 1.3.11 - core-js: 3.31.1 + '@types/reach__router': 1.3.13 + core-js: 3.33.1 global: 4.4.0 lodash: 4.17.21 memoizerific: 1.11.3 @@ -13108,8 +13128,8 @@ packages: dependencies: '@reach/router': 1.3.4(react-dom@17.0.2)(react@16.14.0) '@storybook/csf': 0.0.1 - '@types/reach__router': 1.3.11 - core-js: 3.31.1 + '@types/reach__router': 1.3.13 + core-js: 3.33.1 global: 4.4.0 lodash: 4.17.21 memoizerific: 1.11.3 @@ -13127,8 +13147,8 @@ packages: dependencies: '@reach/router': 1.3.4(react-dom@17.0.2)(react@17.0.2) '@storybook/csf': 0.0.1 - '@types/reach__router': 1.3.11 - core-js: 3.31.1 + '@types/reach__router': 1.3.13 + core-js: 3.33.1 global: 4.4.0 lodash: 4.17.21 memoizerific: 1.11.3 @@ -13146,8 +13166,8 @@ packages: dependencies: '@reach/router': 1.3.4(react-dom@16.14.0)(react@16.14.0) '@storybook/csf': 0.0.1 - '@types/reach__router': 1.3.11 - core-js: 3.31.1 + '@types/reach__router': 1.3.13 + core-js: 3.33.1 global: 4.4.0 lodash: 4.17.21 memoizerific: 1.11.3 @@ -13165,8 +13185,8 @@ packages: dependencies: '@reach/router': 1.3.4(react-dom@17.0.2)(react@16.14.0) '@storybook/csf': 0.0.1 - '@types/reach__router': 1.3.11 - core-js: 3.31.1 + '@types/reach__router': 1.3.13 + core-js: 3.33.1 global: 4.4.0 lodash: 4.17.21 memoizerific: 1.11.3 @@ -13176,14 +13196,14 @@ packages: util-deprecate: 1.0.2 dev: true - /@storybook/source-loader@7.0.27(react-dom@16.14.0)(react@17.0.2): - resolution: {integrity: sha512-2qDH5WxumUGPia/q9pX1hsiGtoDXSQYFeLISJPsIe2Dd8WCiLOxIARXOkZxnzOL+pvFNaD2Y3Mas1JH/4Oy+gA==} + /@storybook/source-loader@7.5.1(react-dom@16.14.0)(react@17.0.2): + resolution: {integrity: sha512-bJLhUxOwnlodZVOkOt/2swW1e0qCvJxrPdPNHj/81jh0kSfJnLWH+QnwOgdIwPG4qW73nlH5BuSUAlGMVPpS8w==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 17 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: '@storybook/csf': 0.1.1 - '@storybook/types': 7.0.27 + '@storybook/types': 7.5.1 estraverse: 5.3.0 lodash: 4.17.21 prettier: 2.8.8 @@ -13191,14 +13211,14 @@ packages: react-dom: 16.14.0(react@17.0.2) dev: true - /@storybook/source-loader@7.0.27(react-dom@17.0.2)(react@17.0.2): - resolution: {integrity: sha512-2qDH5WxumUGPia/q9pX1hsiGtoDXSQYFeLISJPsIe2Dd8WCiLOxIARXOkZxnzOL+pvFNaD2Y3Mas1JH/4Oy+gA==} + /@storybook/source-loader@7.5.1(react-dom@17.0.2)(react@17.0.2): + resolution: {integrity: sha512-bJLhUxOwnlodZVOkOt/2swW1e0qCvJxrPdPNHj/81jh0kSfJnLWH+QnwOgdIwPG4qW73nlH5BuSUAlGMVPpS8w==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 17 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: '@storybook/csf': 0.1.1 - '@storybook/types': 7.0.27 + '@storybook/types': 7.5.1 estraverse: 5.3.0 lodash: 4.17.21 prettier: 2.8.8 @@ -13215,7 +13235,7 @@ packages: '@emotion/core': 10.3.1(react@16.14.0) '@emotion/styled': 10.3.0(@emotion/core@10.3.1)(react@16.14.0) '@storybook/client-logger': 5.3.21 - core-js: 3.31.1 + core-js: 3.33.1 deep-object-diff: 1.1.9 emotion-theming: 10.3.0(@emotion/core@10.3.1)(react@16.14.0) global: 4.4.0 @@ -13237,7 +13257,7 @@ packages: '@emotion/core': 10.3.1(react@17.0.2) '@emotion/styled': 10.3.0(@emotion/core@10.3.1)(react@17.0.2) '@storybook/client-logger': 5.3.21 - core-js: 3.31.1 + core-js: 3.33.1 deep-object-diff: 1.1.9 emotion-theming: 10.3.0(@emotion/core@10.3.1)(react@17.0.2) global: 4.4.0 @@ -13259,7 +13279,7 @@ packages: '@emotion/core': 10.3.1(react@16.14.0) '@emotion/styled': 10.3.0(@emotion/core@10.3.1)(react@16.14.0) '@storybook/client-logger': 5.3.21 - core-js: 3.31.1 + core-js: 3.33.1 deep-object-diff: 1.1.9 emotion-theming: 10.3.0(@emotion/core@10.3.1)(react@16.14.0) global: 4.4.0 @@ -13281,7 +13301,7 @@ packages: '@emotion/core': 10.3.1(react@17.0.2) '@emotion/styled': 10.3.0(@emotion/core@10.3.1)(react@17.0.2) '@storybook/client-logger': 5.3.21 - core-js: 3.31.1 + core-js: 3.33.1 deep-object-diff: 1.1.9 emotion-theming: 10.3.0(@emotion/core@10.3.1)(react@17.0.2) global: 4.4.0 @@ -13303,7 +13323,7 @@ packages: '@emotion/core': 10.3.1(react@16.14.0) '@emotion/styled': 10.3.0(@emotion/core@10.3.1)(react@16.14.0) '@storybook/client-logger': 5.3.22 - core-js: 3.31.1 + core-js: 3.33.1 deep-object-diff: 1.1.9 emotion-theming: 10.3.0(@emotion/core@10.3.1)(react@16.14.0) global: 4.4.0 @@ -13325,7 +13345,7 @@ packages: '@emotion/core': 10.3.1(react@17.0.2) '@emotion/styled': 10.3.0(@emotion/core@10.3.1)(react@17.0.2) '@storybook/client-logger': 5.3.22 - core-js: 3.31.1 + core-js: 3.33.1 deep-object-diff: 1.1.9 emotion-theming: 10.3.0(@emotion/core@10.3.1)(react@17.0.2) global: 4.4.0 @@ -13347,7 +13367,7 @@ packages: '@emotion/core': 10.3.1(react@16.14.0) '@emotion/styled': 10.3.0(@emotion/core@10.3.1)(react@16.14.0) '@storybook/client-logger': 5.3.22 - core-js: 3.31.1 + core-js: 3.33.1 deep-object-diff: 1.1.9 emotion-theming: 10.3.0(@emotion/core@10.3.1)(react@16.14.0) global: 4.4.0 @@ -13369,7 +13389,7 @@ packages: '@emotion/core': 10.3.1(react@17.0.2) '@emotion/styled': 10.3.0(@emotion/core@10.3.1)(react@17.0.2) '@storybook/client-logger': 5.3.22 - core-js: 3.31.1 + core-js: 3.33.1 deep-object-diff: 1.1.9 emotion-theming: 10.3.0(@emotion/core@10.3.1)(react@17.0.2) global: 4.4.0 @@ -13382,12 +13402,12 @@ packages: ts-dedent: 1.2.0 dev: true - /@storybook/types@7.0.27: - resolution: {integrity: sha512-pmJuIm+kGaZiDMyl2i5KFS9iGWrpW1jVcp9OMtHeK20LBzY5Hxq/JMc3E+fbVNkAX2hVlVGbbVUNPTvd9AjbrA==} + /@storybook/types@7.5.1: + resolution: {integrity: sha512-ZcMSaqFNx1E+G00nRDUi8kKL7gxJVlnCvbKLNj3V85guy4DkIYAZr31yDqze07gDWbjvKoHIp3tKpgE+2i8upQ==} dependencies: - '@storybook/channels': 7.0.27 - '@types/babel__core': 7.20.1 - '@types/express': 4.17.17 + '@storybook/channels': 7.5.1 + '@types/babel__core': 7.20.3 + '@types/express': 4.17.20 file-system-cache: 2.3.0 dev: true @@ -13404,8 +13424,8 @@ packages: '@storybook/router': 5.3.21(react-dom@16.14.0)(react@16.14.0) '@storybook/theming': 5.3.21(react-dom@16.14.0)(react@16.14.0) copy-to-clipboard: 3.3.2 - core-js: 3.31.1 - core-js-pure: 3.31.1 + core-js: 3.33.1 + core-js-pure: 3.33.1 emotion-theming: 10.3.0(@emotion/core@10.3.1)(react@16.14.0) fast-deep-equal: 2.0.1 fuse.js: 3.6.1 @@ -13439,7 +13459,7 @@ packages: postcss: '>=7.0.0' postcss-syntax: '>=0.36.2' dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 postcss: 7.0.39 postcss-syntax: 0.36.2(postcss-html@0.36.0)(postcss-less@3.1.4)(postcss-scss@2.1.1)(postcss@7.0.39) transitivePeerDependencies: @@ -13471,13 +13491,13 @@ packages: engines: {node: '>=10'} dev: true - /@svgr/babel-plugin-add-jsx-attribute@6.5.1(@babel/core@7.22.9): + /@svgr/babel-plugin-add-jsx-attribute@6.5.1(@babel/core@7.23.2): resolution: {integrity: sha512-9PYGcXrAxitycIjRmZB+Q0JaN07GZIWaTBIGQzfaZv+qr1n8X1XUEJ5rZ/vx6OVD9RRYlrNnXWExQXcmZeD/BQ==} engines: {node: '>=10'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 dev: true /@svgr/babel-plugin-remove-jsx-attribute@4.2.0: @@ -13490,13 +13510,13 @@ packages: engines: {node: '>=10'} dev: true - /@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.22.9): + /@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.23.2): resolution: {integrity: sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==} engines: {node: '>=14'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 dev: true /@svgr/babel-plugin-remove-jsx-empty-expression@4.2.0: @@ -13509,13 +13529,13 @@ packages: engines: {node: '>=10'} dev: true - /@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.22.9): + /@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.23.2): resolution: {integrity: sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==} engines: {node: '>=14'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 dev: true /@svgr/babel-plugin-replace-jsx-attribute-value@4.2.0: @@ -13528,13 +13548,13 @@ packages: engines: {node: '>=10'} dev: true - /@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1(@babel/core@7.22.9): + /@svgr/babel-plugin-replace-jsx-attribute-value@6.5.1(@babel/core@7.23.2): resolution: {integrity: sha512-8DPaVVE3fd5JKuIC29dqyMB54sA6mfgki2H2+swh+zNJoynC8pMPzOkidqHOSc6Wj032fhl8Z0TVn1GiPpAiJg==} engines: {node: '>=10'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 dev: true /@svgr/babel-plugin-svg-dynamic-title@4.3.3: @@ -13547,13 +13567,13 @@ packages: engines: {node: '>=10'} dev: true - /@svgr/babel-plugin-svg-dynamic-title@6.5.1(@babel/core@7.22.9): + /@svgr/babel-plugin-svg-dynamic-title@6.5.1(@babel/core@7.23.2): resolution: {integrity: sha512-FwOEi0Il72iAzlkaHrlemVurgSQRDFbk0OC8dSvD5fSBPHltNh7JtLsxmZUhjYBZo2PpcU/RJvvi6Q0l7O7ogw==} engines: {node: '>=10'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 dev: true /@svgr/babel-plugin-svg-em-dimensions@4.2.0: @@ -13566,13 +13586,13 @@ packages: engines: {node: '>=10'} dev: true - /@svgr/babel-plugin-svg-em-dimensions@6.5.1(@babel/core@7.22.9): + /@svgr/babel-plugin-svg-em-dimensions@6.5.1(@babel/core@7.23.2): resolution: {integrity: sha512-gWGsiwjb4tw+ITOJ86ndY/DZZ6cuXMNE/SjcDRg+HLuCmwpcjOktwRF9WgAiycTqJD/QXqL2f8IzE2Rzh7aVXA==} engines: {node: '>=10'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 dev: true /@svgr/babel-plugin-transform-react-native-svg@4.2.0: @@ -13585,13 +13605,13 @@ packages: engines: {node: '>=10'} dev: true - /@svgr/babel-plugin-transform-react-native-svg@6.5.1(@babel/core@7.22.9): + /@svgr/babel-plugin-transform-react-native-svg@6.5.1(@babel/core@7.23.2): resolution: {integrity: sha512-2jT3nTayyYP7kI6aGutkyfJ7UMGtuguD72OjeGLwVNyfPRBD8zQthlvL+fAbAKk5n9ZNcvFkp/b1lZ7VsYqVJg==} engines: {node: '>=10'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 dev: true /@svgr/babel-plugin-transform-svg-component@4.2.0: @@ -13604,13 +13624,13 @@ packages: engines: {node: '>=10'} dev: true - /@svgr/babel-plugin-transform-svg-component@6.5.1(@babel/core@7.22.9): + /@svgr/babel-plugin-transform-svg-component@6.5.1(@babel/core@7.23.2): resolution: {integrity: sha512-a1p6LF5Jt33O3rZoVRBqdxL350oge54iZWHNI6LJB5tQ7EelvD/Mb1mfBiZNAan0dt4i3VArkFRjA4iObuNykQ==} engines: {node: '>=12'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 dev: true /@svgr/babel-preset@4.3.3: @@ -13641,21 +13661,21 @@ packages: '@svgr/babel-plugin-transform-svg-component': 5.5.0 dev: true - /@svgr/babel-preset@6.5.1(@babel/core@7.22.9): + /@svgr/babel-preset@6.5.1(@babel/core@7.23.2): resolution: {integrity: sha512-6127fvO/FF2oi5EzSQOAjo1LE3OtNVh11R+/8FXa+mHx1ptAaS4cknIjnUA7e6j6fwGGJ17NzaTJFUwOV2zwCw==} engines: {node: '>=10'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 - '@svgr/babel-plugin-add-jsx-attribute': 6.5.1(@babel/core@7.22.9) - '@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.22.9) - '@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.22.9) - '@svgr/babel-plugin-replace-jsx-attribute-value': 6.5.1(@babel/core@7.22.9) - '@svgr/babel-plugin-svg-dynamic-title': 6.5.1(@babel/core@7.22.9) - '@svgr/babel-plugin-svg-em-dimensions': 6.5.1(@babel/core@7.22.9) - '@svgr/babel-plugin-transform-react-native-svg': 6.5.1(@babel/core@7.22.9) - '@svgr/babel-plugin-transform-svg-component': 6.5.1(@babel/core@7.22.9) + '@babel/core': 7.23.2 + '@svgr/babel-plugin-add-jsx-attribute': 6.5.1(@babel/core@7.23.2) + '@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.23.2) + '@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.23.2) + '@svgr/babel-plugin-replace-jsx-attribute-value': 6.5.1(@babel/core@7.23.2) + '@svgr/babel-plugin-svg-dynamic-title': 6.5.1(@babel/core@7.23.2) + '@svgr/babel-plugin-svg-em-dimensions': 6.5.1(@babel/core@7.23.2) + '@svgr/babel-plugin-transform-react-native-svg': 6.5.1(@babel/core@7.23.2) + '@svgr/babel-plugin-transform-svg-component': 6.5.1(@babel/core@7.23.2) dev: true /@svgr/core@4.3.3: @@ -13684,8 +13704,8 @@ packages: resolution: {integrity: sha512-/xdLSWxK5QkqG524ONSjvg3V/FkNyCv538OIBdQqPNaAta3AsXj/Bd2FbvR87yMbXO2hFSWiAe/Q6IkVPDw+mw==} engines: {node: '>=10'} dependencies: - '@babel/core': 7.22.9 - '@svgr/babel-preset': 6.5.1(@babel/core@7.22.9) + '@babel/core': 7.23.2 + '@svgr/babel-preset': 6.5.1(@babel/core@7.23.2) '@svgr/plugin-jsx': 6.5.1(@svgr/core@6.5.1) camelcase: 6.3.0 cosmiconfig: 7.1.0 @@ -13697,21 +13717,21 @@ packages: resolution: {integrity: sha512-JioXclZGhFIDL3ddn4Kiq8qEqYM2PyDKV0aYno8+IXTLuYt6TOgHUbUAAFvqtb0Xn37NwP0BTHglejFoYr8RZg==} engines: {node: '>=8'} dependencies: - '@babel/types': 7.22.5 + '@babel/types': 7.23.0 dev: true /@svgr/hast-util-to-babel-ast@5.5.0: resolution: {integrity: sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==} engines: {node: '>=10'} dependencies: - '@babel/types': 7.22.5 + '@babel/types': 7.23.0 dev: true /@svgr/hast-util-to-babel-ast@6.5.1: resolution: {integrity: sha512-1hnUxxjd83EAxbL4a0JDJoD3Dao3hmjvyvyEV8PzWmLK3B9m9NPlW7GKjFyoWE8nM7HnXzPcmmSyOW8yOddSXw==} engines: {node: '>=10'} dependencies: - '@babel/types': 7.22.5 + '@babel/types': 7.23.0 entities: 4.5.0 dev: true @@ -13719,7 +13739,7 @@ packages: resolution: {integrity: sha512-cLOCSpNWQnDB1/v+SUENHH7a0XY09bfuMKdq9+gYvtuwzC2rU4I0wKGFEp1i24holdQdwodCtDQdFtJiTCWc+w==} engines: {node: '>=8'} dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 '@svgr/babel-preset': 4.3.3 '@svgr/hast-util-to-babel-ast': 4.3.2 svg-parser: 2.0.4 @@ -13745,8 +13765,8 @@ packages: peerDependencies: '@svgr/core': ^6.0.0 dependencies: - '@babel/core': 7.22.9 - '@svgr/babel-preset': 6.5.1(@babel/core@7.22.9) + '@babel/core': 7.23.2 + '@svgr/babel-preset': 6.5.1(@babel/core@7.23.2) '@svgr/core': 6.5.1 '@svgr/hast-util-to-babel-ast': 6.5.1 svg-parser: 2.0.4 @@ -13791,7 +13811,7 @@ packages: '@babel/core': 7.18.2 '@babel/plugin-transform-react-constant-elements': 7.22.5(@babel/core@7.18.2) '@babel/preset-env': 7.12.1(@babel/core@7.18.2) - '@babel/preset-react': 7.22.5(@babel/core@7.18.2) + '@babel/preset-react': 7.22.15(@babel/core@7.18.2) '@svgr/core': 5.5.0 '@svgr/plugin-jsx': 5.5.0 '@svgr/plugin-svgo': 5.5.0 @@ -13804,10 +13824,10 @@ packages: resolution: {integrity: sha512-bjnWolZ6KVsHhgyCoYRFmbd26p8XVbulCzSG53BDQqAr+JOAderYK7CuYrB3bDjHJuF6LJ7Wrr42+goLRV9qIg==} engines: {node: '>=8'} dependencies: - '@babel/core': 7.22.9 - '@babel/plugin-transform-react-constant-elements': 7.22.5(@babel/core@7.22.9) - '@babel/preset-env': 7.22.9(@babel/core@7.22.9) - '@babel/preset-react': 7.22.5(@babel/core@7.22.9) + '@babel/core': 7.23.2 + '@babel/plugin-transform-react-constant-elements': 7.22.5(@babel/core@7.23.2) + '@babel/preset-env': 7.23.2(@babel/core@7.23.2) + '@babel/preset-react': 7.22.15(@babel/core@7.23.2) '@svgr/core': 4.3.3 '@svgr/plugin-jsx': 4.3.3 '@svgr/plugin-svgo': 4.3.1 @@ -13830,7 +13850,7 @@ packages: react: '>=16.8 || 17' react-dom: '>=16.8' dependencies: - prop-types: 15.8.1 + prop-types: 15.7.2 react: 17.0.2 react-dom: 16.14.0(react@17.0.2) tippy.js: 4.3.5 @@ -13843,7 +13863,7 @@ packages: react: '>=16.8 || 17' react-dom: '>=16.8' dependencies: - prop-types: 15.8.1 + prop-types: 15.7.2 react: 17.0.2 react-dom: 17.0.2(react@17.0.2) tippy.js: 4.3.5 @@ -15899,168 +15919,160 @@ packages: resolution: {integrity: sha512-qVfOiFh0U8ZSkLgA6tf7kj2MciqRbSCWaJZRwftVO7UbtVDNsZAXpWXqvCDtIefvjC83UJB+vHTDOGm5ibXjEA==} dev: false - /@types/accepts@1.3.5: - resolution: {integrity: sha512-jOdnI/3qTpHABjM5cx1Hc0sKsPoYCp+DP/GJRGtDlPd7fiV9oXGGIcjW/ZOxLIvjGz8MA+uMZI9metHlgqbgwQ==} + /@types/accepts@1.3.6: + resolution: {integrity: sha512-6+qlUg57yfE9OO63wnsJXLeq9cG3gSHBBIxNMOjNrbDRlDnm/NaR7RctfYcVCPq+j7d+MwOxqVEludH5+FKrlg==} dependencies: '@types/node': 7.0.12 dev: false - /@types/acorn@4.0.6: - resolution: {integrity: sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==} - dependencies: - '@types/estree': 1.0.1 - dev: false - - /@types/amap-js-api@1.4.11: - resolution: {integrity: sha512-UUyq7nDIPbp2DGcbaShROu8oB9lksiNc2FqxrC6+bKLJOlo03lTtQnoeQFxhhfcBNAYfUPAblRt3LCQFesbyEw==} + /@types/amap-js-api@1.4.14: + resolution: {integrity: sha512-0JNr89BJO6eqw8o9KMXqy+3KtpqNvyhIyobiWQ2uM0E27jRWmEvE1b6GKyQr38imkYBWhjaMt/p9W+w+/uoaow==} dev: false - /@types/antlr4@4.11.2: - resolution: {integrity: sha512-WVDiUppozGAKAL76KbXX63A4U4a0HfHM/5X7+GWzen7OaS/7eJEMdd61B+Hhl52Kedcmr80/jNeeWrM3Z/icig==} + /@types/antlr4@4.11.5: + resolution: {integrity: sha512-fMe+kM+6ccLkUbCYQ7tNHlWNX4dVmTdRykib5S8sdWGHBxFFKN9/srtpXpILBY08RJYld5bOe3+tB2Qz6WmHZw==} dev: false /@types/argparse@1.0.38: resolution: {integrity: sha512-ebDJ9b0e702Yr7pWgB0jzm+CX4Srzz8RcXtLJDJB+BSccqMa36uyH/zUsSYao5+BD1ytv3k3rPYCq4mAE1hsXA==} dev: true - /@types/babel__core@7.20.1: - resolution: {integrity: sha512-aACu/U/omhdk15O4Nfb+fHgH/z3QsfQzpnvRZhYhThms83ZnAOZz7zZAWO7mn2yyNQaA4xTO8GLK3uqFU4bYYw==} + /@types/babel__core@7.20.3: + resolution: {integrity: sha512-54fjTSeSHwfan8AyHWrKbfBWiEUrNTZsUwPTDSNaaP1QDQIZbeNUg3a59E9D+375MzUw/x1vx2/0F5LBz+AeYA==} dependencies: - '@babel/parser': 7.22.7 - '@babel/types': 7.22.5 - '@types/babel__generator': 7.6.4 - '@types/babel__template': 7.4.1 - '@types/babel__traverse': 7.20.1 + '@babel/parser': 7.23.0 + '@babel/types': 7.23.0 + '@types/babel__generator': 7.6.6 + '@types/babel__template': 7.4.3 + '@types/babel__traverse': 7.20.3 - /@types/babel__generator@7.6.4: - resolution: {integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==} + /@types/babel__generator@7.6.6: + resolution: {integrity: sha512-66BXMKb/sUWbMdBNdMvajU7i/44RkrA3z/Yt1c7R5xejt8qh84iU54yUWCtm0QwGJlDcf/gg4zd/x4mpLAlb/w==} dependencies: - '@babel/types': 7.22.5 + '@babel/types': 7.23.0 - /@types/babel__template@7.4.1: - resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==} + /@types/babel__template@7.4.3: + resolution: {integrity: sha512-ciwyCLeuRfxboZ4isgdNZi/tkt06m8Tw6uGbBSBgWrnnZGNXiEyM27xc/PjXGQLqlZ6ylbgHMnm7ccF9tCkOeQ==} dependencies: - '@babel/parser': 7.22.7 - '@babel/types': 7.22.5 + '@babel/parser': 7.23.0 + '@babel/types': 7.23.0 - /@types/babel__traverse@7.20.1: - resolution: {integrity: sha512-MitHFXnhtgwsGZWtT68URpOvLN4EREih1u3QtQiN4VdAxWKRVvGCSvw/Qth0M0Qq3pJpnGOu5JaM/ydK7OGbqg==} + /@types/babel__traverse@7.20.3: + resolution: {integrity: sha512-Lsh766rGEFbaxMIDH7Qa+Yha8cMVI3qAK6CHt3OR0YfxOIn5Z54iHiyDRycHrBqeIiqGa20Kpsv1cavfBKkRSw==} dependencies: - '@babel/types': 7.22.5 + '@babel/types': 7.23.0 - /@types/body-parser@1.19.2: - resolution: {integrity: sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==} + /@types/body-parser@1.19.4: + resolution: {integrity: sha512-N7UDG0/xiPQa2D/XrVJXjkWbpqHCd2sBaB32ggRF2l83RhPfamgKGF8gwwqyksS95qUS5ZYF9aF+lLPRlwI2UA==} dependencies: - '@types/connect': 3.4.35 + '@types/connect': 3.4.37 '@types/node': 7.0.12 /@types/classnames@2.2.9: resolution: {integrity: sha512-MNl+rT5UmZeilaPxAVs6YaPC2m6aA8rofviZbhbxpPpl61uKodfdQVsBtgJGTqGizEf02oW3tsVe7FYB8kK14A==} dev: false - /@types/connect@3.4.35: - resolution: {integrity: sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==} + /@types/connect@3.4.37: + resolution: {integrity: sha512-zBUSRqkfZ59OcwXon4HVxhx5oWCJmc0OtBTK05M+p0dYjgN6iTwIL2T/WbsQZrEsdnwaF9cWQ+azOnpPvIqY3Q==} dependencies: '@types/node': 7.0.12 - /@types/content-disposition@0.5.5: - resolution: {integrity: sha512-v6LCdKfK6BwcqMo+wYW05rLS12S0ZO0Fl4w1h4aaZMD7bqT3gVUns6FvLJKGZHQmYn3SX55JWGpziwJRwVgutA==} + /@types/content-disposition@0.5.7: + resolution: {integrity: sha512-V9/5u21RHFR1zfdm3rQ6pJUKV+zSSVQt+yq16i1YhdivVzWgPEoKedc3GdT8aFjsqQbakdxuy3FnEdePUQOamQ==} dev: false - /@types/cookiejar@2.1.2: - resolution: {integrity: sha512-t73xJJrvdTjXrn4jLS9VSGRbz0nUY3cl2DMGDU48lKl+HR9dbbjW2A9r3g40VA++mQpy6uuHg33gy7du2BKpog==} + /@types/cookiejar@2.1.3: + resolution: {integrity: sha512-LZ8SD3LpNmLMDLkG2oCBjZg+ETnx6XdCjydUE0HwojDmnDfDUnhMKKbtth1TZh+hzcqb03azrYWoXLS8sMXdqg==} dev: true - /@types/cookies@0.7.7: - resolution: {integrity: sha512-h7BcvPUogWbKCzBR2lY4oqaZbO3jXZksexYJVFvkrFeLgbZjQkU4x8pRq6eg2MHXQhY0McQdqmmsxRWlVAHooA==} + /@types/cookies@0.7.9: + resolution: {integrity: sha512-SrGYvhKohd/WSOII0WpflC73RgdJhQoqpwq9q+n/qugNGiDSGYXfHy3QvB4+X+J/gYe27j2fSRnK4B+1A3nvsw==} dependencies: - '@types/connect': 3.4.35 - '@types/express': 4.17.17 - '@types/keygrip': 1.0.2 + '@types/connect': 3.4.37 + '@types/express': 4.17.20 + '@types/keygrip': 1.0.4 '@types/node': 7.0.12 dev: false - /@types/d3-timer@1.0.10: - resolution: {integrity: sha512-ZnAbquVqy+4ZjdW0cY6URp+qF/AzTVNda2jYyOzpR2cPT35FTXl78s15Bomph9+ckOiI1TtkljnWkwbIGAb6rg==} + /@types/d3-timer@1.0.11: + resolution: {integrity: sha512-kk4wKhOVhmyStAH7pkyEBY1NdbO1dIemo8NF3wgJN6ekwRU/GszC1HyAO04/ZUY0QvRZ+k9rLzsmjBw5yxxM7w==} dev: false - /@types/d3-timer@2.0.1: - resolution: {integrity: sha512-TF8aoF5cHcLO7W7403blM7L1T+6NF3XMyN3fxyUolq2uOcFeicG/khQg/dGxiCJWoAcmYulYN7LYSRKO54IXaA==} + /@types/d3-timer@2.0.2: + resolution: {integrity: sha512-Dz39VLKZhWWeqSqbgYKF5BDJDUiPITo9M2cev/+HQBvXs+biES2d3LndnopuJ5YwaKK1h56CPWqDB+ghUXhm9A==} /@types/dargs@5.1.0: resolution: {integrity: sha512-2cXlO8pz13kVYMp6Zgr8Z5DACbaGfoBp7svqZqPGcO+qG3LQLWdB5BzPPASj+UI447XxGmFHi6KjLgUB0fzucQ==} - /@types/debug@4.1.8: - resolution: {integrity: sha512-/vPO1EPOs306Cvhwv7KfVfYvOJqA/S/AXjaHQiJboCZzcNDb+TIJFN9/2C9DZ//ijSKWioNyUxD792QmDJ+HKQ==} + /@types/debug@4.1.10: + resolution: {integrity: sha512-tOSCru6s732pofZ+sMv9o4o3Zc+Sa8l3bxd/tweTQudFn06vAzb13ZX46Zi6m6EJ+RUbRTHvgQJ1gBtSgkaUYA==} dependencies: - '@types/ms': 0.7.31 + '@types/ms': 0.7.33 dev: false - /@types/depd@1.1.32: - resolution: {integrity: sha512-kB2cpXs3A0TGWl4a4h74yIwvclYZUTW6Irpee/3Dc1s4Cr5rGPHtpGPpBBpEV1MaKH5z/oul+57oDkEkeRXRnw==} + /@types/depd@1.1.34: + resolution: {integrity: sha512-mtnVpBYtLdP5B3IBp4ZKQ5mRXynvuKq/qWxKeK3FNuA6Wv7H59MHw7VuNquS2wIH4GKEo7mt/f0xVeH/sd2z2A==} dependencies: '@types/node': 7.0.12 dev: false - /@types/empower-core@1.2.1: - resolution: {integrity: sha512-Xil5SHiyOa/kgpw5iWwzCn1L5cL1r9eBOGeMVp7MNK21ibzewPF8UK71t5Sew3MhBYysR46jrD+sSxFw6/0BUA==} + /@types/empower-core@1.2.3: + resolution: {integrity: sha512-JRWdOUawQi0AwriXLfxStxbuiUCz5dRz3G3mlBjvCiiLTvNpD19i+24L9B3CwCI/uyYb8XFWv5/gcUOTznPwcw==} + dependencies: + '@types/node': 7.0.12 dev: true - /@types/empower@1.2.32: - resolution: {integrity: sha512-eOVhBTyotB+I6VXdS8gE4J9eqdRzuohpxrV1X1v4WRWhUnmlB2sBKerqAAjw4WTQdQGcUOebRSeL3X991OiFiA==} + /@types/empower@1.2.34: + resolution: {integrity: sha512-Tu8GhP2Orttcn8GRFuThF/kFzwVxqENzgx/PRmmubEpYd6NKRgMYOSmpTLJRVfBtlcSyFB6eiW/3pw4oBIO/1Q==} dependencies: - '@types/empower-core': 1.2.1 - '@types/power-assert-formatter': 1.4.30 + '@types/empower-core': 1.2.3 + '@types/power-assert-formatter': 1.4.32 dev: true - /@types/eslint-scope@3.7.4: - resolution: {integrity: sha512-9K4zoImiZc3HlIp6AVUDE4CWYx22a+lhSZMYNpbjW04+YF0KWj4pJXnEMjdnFTiQibFFmElcsasJXDbdI/EPhA==} + /@types/eslint-scope@3.7.6: + resolution: {integrity: sha512-zfM4ipmxVKWdxtDaJ3MP3pBurDXOCoyjvlpE3u6Qzrmw4BPbfm4/ambIeTk/r/J0iq/+2/xp0Fmt+gFvXJY2PQ==} dependencies: - '@types/eslint': 8.44.0 - '@types/estree': 1.0.1 + '@types/eslint': 8.44.6 + '@types/estree': 1.0.3 /@types/eslint@7.29.0: resolution: {integrity: sha512-VNcvioYDH8/FxaeTKkM4/TiTwt6pBV9E3OfGmvaw8tPl0rrHCJ4Ll15HRT+pMiFAf/MLQvAzC+6RzUMEL9Ceng==} dependencies: - '@types/estree': 1.0.1 - '@types/json-schema': 7.0.12 + '@types/estree': 1.0.3 + '@types/json-schema': 7.0.14 dev: true - /@types/eslint@8.44.0: - resolution: {integrity: sha512-gsF+c/0XOguWgaOgvFs+xnnRqt9GwgTvIks36WpE6ueeI4KCEHHd8K/CKHqhOqrJKsYH8m27kRzQEvWXAwXUTw==} + /@types/eslint@8.44.6: + resolution: {integrity: sha512-P6bY56TVmX8y9J87jHNgQh43h6VVU+6H7oN7hgvivV81K2XY8qJZ5vqPy/HdUoVIelii2kChYVzQanlswPWVFw==} dependencies: - '@types/estree': 1.0.1 - '@types/json-schema': 7.0.12 + '@types/estree': 1.0.3 + '@types/json-schema': 7.0.14 /@types/estree@0.0.39: resolution: {integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==} dev: true - /@types/estree@0.0.41: - resolution: {integrity: sha512-rIAmXyJlqw4KEBO7+u9gxZZSQHaCNnIzYrnNmYVpgfJhxTqO0brCX0SYpqUTkVI5mwwUwzmtspLBGBKroMeynA==} - dev: false - - /@types/estree@1.0.1: - resolution: {integrity: sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA==} + /@types/estree@1.0.3: + resolution: {integrity: sha512-CS2rOaoQ/eAgAfcTfq6amKG7bsN+EMcgGY4FAFQdvSj2y1ixvOZTUA9mOtCai7E1SYu283XNw7urKK30nP3wkQ==} - /@types/express-serve-static-core@4.17.35: - resolution: {integrity: sha512-wALWQwrgiB2AWTT91CB62b6Yt0sNHpznUXeZEcnPU3DRdlDIz74x8Qg1UUYKSVFi+va5vKOLYRBI1bRKiLLKIg==} + /@types/express-serve-static-core@4.17.39: + resolution: {integrity: sha512-BiEUfAiGCOllomsRAZOiMFP7LAnrifHpt56pc4Z7l9K6ACyN06Ns1JLMBxwkfLOjJRlSf06NwWsT7yzfpaVpyQ==} dependencies: '@types/node': 7.0.12 - '@types/qs': 6.9.7 - '@types/range-parser': 1.2.4 - '@types/send': 0.17.1 + '@types/qs': 6.9.9 + '@types/range-parser': 1.2.6 + '@types/send': 0.17.3 - /@types/express@4.17.17: - resolution: {integrity: sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q==} + /@types/express@4.17.20: + resolution: {integrity: sha512-rOaqlkgEvOW495xErXMsmyX3WKBInbhG5eqojXYi3cGUaLoRDlXa5d52fkfWZT963AZ3v2eZ4MbKE6WpDAGVsw==} dependencies: - '@types/body-parser': 1.19.2 - '@types/express-serve-static-core': 4.17.35 - '@types/qs': 6.9.7 - '@types/serve-static': 1.15.2 + '@types/body-parser': 1.19.4 + '@types/express-serve-static-core': 4.17.39 + '@types/qs': 6.9.9 + '@types/serve-static': 1.15.4 - /@types/geojson@7946.0.10: - resolution: {integrity: sha512-Nmh0K3iWQJzniTuPRcJn5hxXkfB1T1pgB89SBig5PlJQU5yocazeu4jATJlaA0GYFKWMqDdvYemoSnF2pXgLVA==} + /@types/geojson@7946.0.12: + resolution: {integrity: sha512-uK2z1ZHJyC0nQRbuovXFt4mzXDwf27vQeUWNhfKGwRcWW429GOhP8HxUHlM6TLH4bzmlv/HlEjpvJh3JfmGsAA==} dev: false /@types/geojson@7946.0.8: @@ -16073,8 +16085,8 @@ packages: '@types/minimatch': 5.1.2 '@types/node': 7.0.12 - /@types/graceful-fs@4.1.6: - resolution: {integrity: sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==} + /@types/graceful-fs@4.1.8: + resolution: {integrity: sha512-NhRH7YzWq8WiNKVavKPBmtLYZHxNY19Hh+az28O/phfp68CF45pMFud+ZzJ8ewnxnC5smIdF3dqFeiSUQ5I+pw==} dependencies: '@types/node': 7.0.12 @@ -16086,10 +16098,10 @@ packages: resolution: {integrity: sha512-oOMFT8vmCTFncsF1engrs04jatz8/Anwx3De9uxnOK4chgSEgWBvFtpSoJo8u3784JNO+ql5tzRR6phHoRnscQ==} dev: true - /@types/hast@2.3.5: - resolution: {integrity: sha512-SvQi0L/lNpThgPoleH53cdjB3y9zpLlVjRbqB3rH8hx1jiRSBGAhyjV3H+URFjNVRqt2EdYNrbZE5IsGlNfpRg==} + /@types/hast@2.3.7: + resolution: {integrity: sha512-EVLigw5zInURhzfXUM65eixfadfsHKomGKUakToXo84t8gGIJuTcD2xooM2See7GyQ7DRtYjhCHnSUQez8JaLw==} dependencies: - '@types/unist': 2.0.7 + '@types/unist': 2.0.9 /@types/history@4.7.11: resolution: {integrity: sha512-qjDJRrmvBMiTx+jyLxvLfJU7UznFuokDv4f3WRuriHKERccVpFU+8XMQUAbDzoiJCsmexxRExQeMwwCdamSKDA==} @@ -16100,8 +16112,8 @@ packages: dependencies: history: 5.3.0 - /@types/hoist-non-react-statics@3.3.1: - resolution: {integrity: sha512-iMIqiko6ooLrTh1joXodJK5X9xeEALT1kM5G3ZLhD3hszxBdIEd5C75U834D9mLcINgD4OyZf5uQXjkuYydWvA==} + /@types/hoist-non-react-statics@3.3.4: + resolution: {integrity: sha512-ZchYkbieA+7tnxwX/SCBySx9WwvWR8TaP5tb2jRAzwvLb/rWchGw3v0w3pqUbUvj0GCwW2Xz/AVPSk6kUGctXQ==} dependencies: '@types/react': 17.0.0 hoist-non-react-statics: 3.3.2 @@ -16110,64 +16122,64 @@ packages: resolution: {integrity: sha512-h4lTMgMJctJybDp8CQrxTUiiYmedihHWkjnF/8Pxseu2S6Nlfcy8kwboQ8yejh456rP2yWoEVm1sS/FVsfM48w==} dev: true - /@types/http-assert@1.5.3: - resolution: {integrity: sha512-FyAOrDuQmBi8/or3ns4rwPno7/9tJTijVW6aQQjK02+kOQ8zmoNg2XJtAuQhvQcy1ASJq38wirX5//9J1EqoUA==} + /@types/http-assert@1.5.4: + resolution: {integrity: sha512-/6M9aaVk+avzCsrv1lt39AlFw4faCNI6aGll91Rxj38ZE5JI8AxApyQIRy+i1McjiJiuQ0sfuoMLxqq374ZIbA==} dev: false - /@types/http-errors@2.0.1: - resolution: {integrity: sha512-/K3ds8TRAfBvi5vfjuz8y6+GiAYBZ0x4tXv1Av6CWBWn0IlADc+ZX9pMq7oU0fNQPnBwIZl3rmeLp6SBApbxSQ==} + /@types/http-errors@2.0.3: + resolution: {integrity: sha512-pP0P/9BnCj1OVvQR2lF41EkDG/lWWnDyA203b/4Fmi2eTyORnBtcDoKDwjWQthELrBvWkMOrvSOnZ8OVlW6tXA==} - /@types/invariant@2.2.35: - resolution: {integrity: sha512-DxX1V9P8zdJPYQat1gHyY0xj3efl8gnMVjiM9iCY6y27lj+PoQWkgjt8jDqmovPqULkKVpKRg8J36iQiA+EtEg==} + /@types/invariant@2.2.36: + resolution: {integrity: sha512-WdRjvN2y1PiXCmCIEBbe+eoHGylBQa2oIBGEQsfKMJzqff7fwv2OhyXcGQn70+dWII6a5W8Y3ipYwVnhf+IXig==} dev: false - /@types/is-ci@3.0.0: - resolution: {integrity: sha512-Q0Op0hdWbYd1iahB+IFNQcWXFq4O0Q5MwQP7uN0souuQ4rPg1vEYcnIOfr1gY+M+6rc8FGoRaBO1mOOvL29sEQ==} + /@types/is-ci@3.0.3: + resolution: {integrity: sha512-FdHbjLiN2e8fk9QYQyVYZrK8svUDJpxSaSWLUga8EZS1RGAvvrqM9zbVARBtQuYPeLgnJxM2xloOswPwj1o2cQ==} dependencies: - ci-info: 3.8.0 + ci-info: 3.9.0 dev: true - /@types/is-function@1.0.1: - resolution: {integrity: sha512-A79HEEiwXTFtfY+Bcbo58M2GRYzCr9itHWzbzHVFNEYCcoU/MMGwYYf721gBrnhpj1s6RGVVha/IgNFnR0Iw/Q==} + /@types/is-function@1.0.2: + resolution: {integrity: sha512-Je5TaQzK7H06pt4e88WsjXwRC64EkmxsdqirUI+4GPVMjhs68Dmm8hr+yqf8tmpYlfR6zPlsJC5xs14dlVUehw==} dev: true /@types/isomorphic-fetch@0.0.35: resolution: {integrity: sha512-DaZNUvLDCAnCTjgwxgiL1eQdxIKEpNLOlTNtAgnZc50bG2copGhRrFN9/PxPBuJe+tZVLCbQ7ls0xveXVRPkvw==} dev: false - /@types/istanbul-lib-coverage@2.0.4: - resolution: {integrity: sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==} + /@types/istanbul-lib-coverage@2.0.5: + resolution: {integrity: sha512-zONci81DZYCZjiLe0r6equvZut0b+dBRPBN5kBDjsONnutYNtJMoWQ9uR2RkL1gLG9NMTzvf+29e5RFfPbeKhQ==} - /@types/istanbul-lib-report@3.0.0: - resolution: {integrity: sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==} + /@types/istanbul-lib-report@3.0.2: + resolution: {integrity: sha512-8toY6FgdltSdONav1XtUHl4LN1yTmLza+EuDazb/fEmRNCwjyqNVIQWs2IfC74IqjHkREs/nQ2FWq5kZU9IC0w==} dependencies: - '@types/istanbul-lib-coverage': 2.0.4 + '@types/istanbul-lib-coverage': 2.0.5 /@types/istanbul-reports@1.1.2: resolution: {integrity: sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw==} dependencies: - '@types/istanbul-lib-coverage': 2.0.4 - '@types/istanbul-lib-report': 3.0.0 + '@types/istanbul-lib-coverage': 2.0.5 + '@types/istanbul-lib-report': 3.0.2 dev: true - /@types/istanbul-reports@3.0.1: - resolution: {integrity: sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==} + /@types/istanbul-reports@3.0.3: + resolution: {integrity: sha512-1nESsePMBlf0RPRffLZi5ujYh7IH1BWL4y9pr+Bn3cJBdxz+RTP8bUFljLz9HvzhhOSWKdyBZ4DIivdL6rvgZg==} dependencies: - '@types/istanbul-lib-report': 3.0.0 + '@types/istanbul-lib-report': 3.0.2 /@types/js-cookie@2.2.7: resolution: {integrity: sha512-aLkWa0C0vO5b4Sr798E26QgOkss68Un0bLjs7u9qxzPT5CG+8DuNTffWES58YzJs3hrVAOs1wonycqEBqNJubA==} dev: false - /@types/json-schema@7.0.12: - resolution: {integrity: sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==} + /@types/json-schema@7.0.14: + resolution: {integrity: sha512-U3PUjAudAdJBeC2pgN8uTIKgxrb4nlDF3SF0++EldXQvQBGkpFZMSnwQiIoDU77tv45VgNkl/L4ouD+rEomujw==} /@types/json5@0.0.29: resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} dev: true - /@types/keygrip@1.0.2: - resolution: {integrity: sha512-GJhpTepz2udxGexqos8wgaBx4I/zWIDPh/KOGEwAqtuGDkOUJu5eFvwmdBX4AmB8Odsr+9pHCQqiAqDL/yKMKw==} + /@types/keygrip@1.0.4: + resolution: {integrity: sha512-/tjWYD8StMrINelsrHNmpXceo9s3/Y22AzePH1qCvXIgmz/aQp2YFFr6HqhNQVIOdcvaVyp5GS+yjHGuF7Rwsg==} dev: false /@types/keyv@3.1.4: @@ -16175,28 +16187,28 @@ packages: dependencies: '@types/node': 7.0.12 - /@types/koa-compose@3.2.5: - resolution: {integrity: sha512-B8nG/OoE1ORZqCkBVsup/AKcvjdgoHnfi4pZMn5UwAPCbhk/96xyv284eBYW8JlQbQ7zDmnpFr68I/40mFoIBQ==} + /@types/koa-compose@3.2.7: + resolution: {integrity: sha512-smtvSL/oLICPuenxy73OmxKGh42VVfn2o2eutReH1yjij0LmxADBpGcAJbp4N+yJjPapPN7jAX9p7Ue0JMQ/Ag==} dependencies: - '@types/koa': 2.13.6 + '@types/koa': 2.13.10 dev: false - /@types/koa-router@7.4.4: - resolution: {integrity: sha512-3dHlZ6CkhgcWeF6wafEUvyyqjWYfKmev3vy1PtOmr0mBc3wpXPU5E8fBBd4YQo5bRpHPfmwC5yDaX7s4jhIN6A==} + /@types/koa-router@7.4.6: + resolution: {integrity: sha512-elqZpjdH8bsi4HNSKwjY4nRVi65dd7kJoVEYXHMyI84R3wStzGnFSpYbilzqcUzPeZHiEhL0chfM593NeojqzQ==} dependencies: - '@types/koa': 2.13.6 + '@types/koa': 2.13.10 dev: false - /@types/koa@2.13.6: - resolution: {integrity: sha512-diYUfp/GqfWBAiwxHtYJ/FQYIXhlEhlyaU7lB/bWQrx4Il9lCET5UwpFy3StOAohfsxxvEQ11qIJgT1j2tfBvw==} + /@types/koa@2.13.10: + resolution: {integrity: sha512-weKc5IBeORLDGwD1FMgPjaZIg0/mtP7KxXAXEzPRCN78k274D9U2acmccDNPL1MwyV40Jj+hQQ5N2eaV6O0z8g==} dependencies: - '@types/accepts': 1.3.5 - '@types/content-disposition': 0.5.5 - '@types/cookies': 0.7.7 - '@types/http-assert': 1.5.3 - '@types/http-errors': 2.0.1 - '@types/keygrip': 1.0.2 - '@types/koa-compose': 3.2.5 + '@types/accepts': 1.3.6 + '@types/content-disposition': 0.5.7 + '@types/cookies': 0.7.9 + '@types/http-assert': 1.5.4 + '@types/http-errors': 2.0.3 + '@types/keygrip': 1.0.4 + '@types/koa-compose': 3.2.7 '@types/node': 7.0.12 dev: false @@ -16204,25 +16216,25 @@ packages: resolution: {integrity: sha512-MqTGEo5bj5t157U6fA/BiDynNkn0YknVdh48CMPkTSpFTVmvao5UQmm7uEF6xBEo7qIMAlY/JSleYaE6VOdpaA==} dev: false - /@types/mapbox-gl@1.13.6: - resolution: {integrity: sha512-CONmQCVgzLOseiDa0s8EXwgc3z9FQcc8U/KsIBiaNBY1sIxPen14k9z3eMeYgpx1vo7k0cq9xxxk3/xSZkW0TQ==} + /@types/mapbox-gl@1.13.8: + resolution: {integrity: sha512-B9VphASlHvBe1wIUtjTGRW9yPJUlRpWIOHnMyWxz+N7GwrKcAU93PK5VG3ERL9Jbzveh1C/+jeOLaAmULVaXzQ==} dependencies: - '@types/geojson': 7946.0.10 + '@types/geojson': 7946.0.12 dev: false /@types/mathjax@0.0.36: resolution: {integrity: sha512-TqDJc2GWuTqd/m+G/FbNkN+/TF2OCCHvcawmhIrUaZkdVquMdNZmNiNUkupNg9qctorXXkVLVSogZv1DhmgLmg==} - /@types/mdast@3.0.12: - resolution: {integrity: sha512-DT+iNIRNX884cx0/Q1ja7NyUPpZuv0KPyL5rGNxm1WC1OtHstl7n4Jb7nk+xacNShQMbczJjt8uFzznpp6kYBg==} + /@types/mdast@3.0.14: + resolution: {integrity: sha512-gVZ04PGgw1qLZKsnWnyFv4ORnaJ+DXLdHTVSFbU8yX6xZ34Bjg4Q32yPkmveUP1yItXReKfB0Aknlh/3zxTKAw==} dependencies: - '@types/unist': 2.0.7 + '@types/unist': 2.0.9 - /@types/mime@1.3.2: - resolution: {integrity: sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==} + /@types/mime@1.3.4: + resolution: {integrity: sha512-1Gjee59G25MrQGk8bsNvC6fxNiRgUlGn2wlhGf95a59DrprnnHk80FIMMFG9XHMdrfsuA119ht06QPDXA1Z7tw==} - /@types/mime@3.0.1: - resolution: {integrity: sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==} + /@types/mime@3.0.3: + resolution: {integrity: sha512-i8MBln35l856k5iOhKk2XJ4SeAWg75mLIpZB4v6imOagKL6twsukBZGDMNhdOVk7yRFTMPpfILocMos59Q1otQ==} /@types/minimatch@3.0.5: resolution: {integrity: sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==} @@ -16231,8 +16243,8 @@ packages: /@types/minimatch@5.1.2: resolution: {integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==} - /@types/minimist@1.2.2: - resolution: {integrity: sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==} + /@types/minimist@1.2.4: + resolution: {integrity: sha512-Kfe/D3hxHTusnPNRbycJE1N77WHDsdS4AjUYIzlDzhDrS47NrwuL3YW4VITxwR7KCVpzwgy4Rbj829KSSQmwXQ==} dev: true /@types/mocha@2.2.40: @@ -16243,8 +16255,8 @@ packages: resolution: {integrity: sha512-F0oAily9Q9QQpv9JKxKn0zMKfOo36KHCW7myYsmUyf2t0g+sBTbG3UleTPoguHdE1z3GLFr3p7/wiOio52QFjQ==} dev: true - /@types/ms@0.7.31: - resolution: {integrity: sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==} + /@types/ms@0.7.33: + resolution: {integrity: sha512-AuHIyzR5Hea7ij0P9q7vx7xu4z0C28ucwjAZC0ja7JhINyCnOw8/DnvAPQQ9TfOlCtZAmCERKQX9+o1mgQhuOQ==} dev: false /@types/node@10.17.60: @@ -16254,21 +16266,23 @@ packages: resolution: {integrity: sha512-yxDeaQIAJlMav7fH5AQqPH1u8YIuhYJXYBzxaQ4PifsU0GDO38MSdmEDeRlIxrKbC6NbEaaEHDanWb+y30U8SQ==} dev: true - /@types/node@14.18.53: - resolution: {integrity: sha512-soGmOpVBUq+gaBMwom1M+krC/NNbWlosh4AtGA03SyWNDiqSKtwp7OulO1M6+mg8YkHMvJ/y0AkCeO8d1hNb7A==} + /@types/node@14.18.63: + resolution: {integrity: sha512-fAtCfv4jJg+ExtXhvCkCqUKZ+4ok/JQk01qDKhL5BDDoS3AxKXhV5/MAVUZyQnSEd2GT92fkgZl0pz0Q0AzcIQ==} /@types/node@7.0.12: resolution: {integrity: sha512-Ymz7fBfNblqpPgaLKZhlb4rRmlEL5sU1QmuWHl1wkV8ZUIBo0ilinvFuMhZrjTurfN4kHDbB0JujhDjoRPDfEg==} - /@types/normalize-package-data@2.4.1: - resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==} + /@types/normalize-package-data@2.4.3: + resolution: {integrity: sha512-ehPtgRgaULsFG8x0NeYJvmyH1hmlfsNLujHe9dQEia/7MAJYdzMSi19JtchUHjmBA6XC/75dK55mzZH+RyieSg==} - /@types/npmlog@4.1.4: - resolution: {integrity: sha512-WKG4gTr8przEZBiJ5r3s8ZIAoMXNbOgQ+j/d5O4X3x6kZJRLNvyUJuUK/KoG3+8BaOHPhp2m7WC6JKKeovDSzQ==} + /@types/npmlog@4.1.5: + resolution: {integrity: sha512-Fl3TEbwPoR7V1z6CMJ18whXOUkOYqF5eCkGKTir2VuevdLYUmcwj9mQdvXzuY0oagZBbsy0J7df41jn+ZcwGRA==} + dependencies: + '@types/node': 7.0.12 dev: true - /@types/parse-json@4.0.0: - resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==} + /@types/parse-json@4.0.1: + resolution: {integrity: sha512-3YmXzzPAdOTVljVMkTMBdBEvlOLg2cDQaDhnnhT3nT9uDbnJzjWhKlzb+desT12Y7tGqaN6d+AbozcKzyL36Ng==} dev: true /@types/parse5@5.0.3: @@ -16278,68 +16292,69 @@ packages: resolution: {integrity: sha512-SuT16Q1K51EAVPz1K29DJ/sXjhSQ0zjvsypYJ6tlwVsRV9jwW5Adq2ch8Dq8kDBCkYnELS7N7VNCSB5nC56t/g==} dev: false - /@types/power-assert-formatter@1.4.30: - resolution: {integrity: sha512-QpLIRAdxW9dgGanSJc18RL1J8IYYHRarrkC2fuXxtBFC37PPcfquJiVzj12j5WR3LbVyK4n2FcRBZ11JckjXyA==} + /@types/power-assert-formatter@1.4.32: + resolution: {integrity: sha512-0vmvVB9tzgUjtuQPTuKuFJqgYRxRTZJATRtqch5pR3qQ/dMxlWacZnfpwZAYBhMXS0Mx7gFqEkMi6XG1iP09DQ==} dev: true - /@types/power-assert@1.5.8: - resolution: {integrity: sha512-WL6zeV1mKirC3bngOC1Nv0psFz0BMPJaLORCHH21LrQ2ZjiY5RZnF0GWVle3cZyfgJijZpqNDF6mpkm51hRDBw==} + /@types/power-assert@1.5.10: + resolution: {integrity: sha512-aiH/Rd7xrBZFVdTQY8mzphhRRerP1Nun9x6IHW3pBQdFWzRluYXPMArwAtR9Y5uD/nXbZpEBeokdoddwFo1a/Q==} dependencies: - '@types/empower': 1.2.32 - '@types/power-assert-formatter': 1.4.30 + '@types/empower': 1.2.34 + '@types/power-assert-formatter': 1.4.32 dev: true /@types/prettier@2.7.3: resolution: {integrity: sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==} + dev: false - /@types/prismjs@1.26.0: - resolution: {integrity: sha512-ZTaqn/qSqUuAq1YwvOFQfVW1AR/oQJlLSZVustdjwI+GZ8kr0MSHBj0tsXPW1EqHubx50gtBEjbPGsdZwQwCjQ==} + /@types/prismjs@1.26.2: + resolution: {integrity: sha512-/r7Cp7iUIk7gts26mHXD66geUC+2Fo26TZYjQK6Nr4LDfi6lmdRmMqM0oPwfiMhUwoBAOFe8GstKi2pf6hZvwA==} dev: false - /@types/prop-types@15.7.5: - resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==} + /@types/prop-types@15.7.9: + resolution: {integrity: sha512-n1yyPsugYNSmHgxDFjicaI2+gCNjsBck8UX9kuofAKlc0h1bL+20oSF72KeNaW2DUlesbEVCFgyV2dPGTiY42g==} - /@types/q@1.5.5: - resolution: {integrity: sha512-L28j2FcJfSZOnL1WBjDYp2vUHCeIFlyYI/53EwD/rKUBQ7MtUUfbQWiyKJGpcnv4/WgrhWsFKrcPstcAt/J0tQ==} + /@types/q@1.5.7: + resolution: {integrity: sha512-HBPgtzp44867rkL+IzQ3560/E/BlobwCjeXsuKqogrcE99SKgZR4tvBBCuNJZMhUFMz26M7cjKWZg785lllwpA==} dev: true - /@types/qs@6.9.7: - resolution: {integrity: sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==} + /@types/qs@6.9.9: + resolution: {integrity: sha512-wYLxw35euwqGvTDx6zfY1vokBFnsK0HNrzc6xNHchxfO2hpuRg74GbkEW7e3sSmPvj0TjCDT1VCa6OtHXnubsg==} - /@types/range-parser@1.2.4: - resolution: {integrity: sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==} + /@types/range-parser@1.2.6: + resolution: {integrity: sha512-+0autS93xyXizIYiyL02FCY8N+KkKPhILhcUSA276HxzreZ16kl+cmwvV2qAM/PuCCwPXzOXOWhiPcw20uSFcA==} - /@types/reach__router@1.3.11: - resolution: {integrity: sha512-j23ChnIEiW8aAP4KT8OVyTXOFr+Ri65BDnwzmfHFO9WHypXYevHFjeil1Cj7YH3emfCE924BwAmgW4hOv7Wg3g==} + /@types/reach__router@1.3.13: + resolution: {integrity: sha512-1vbCXT/emPNCd7Pywr9mPp/FsdTwUfxHeMx0k3Rpz4ghPr/k5W1rejbg724BbkC8LkehS6y6mf3wOfrApA4NrA==} dependencies: '@types/react': 17.0.0 dev: true - /@types/react-color@3.0.6: - resolution: {integrity: sha512-OzPIO5AyRmLA7PlOyISlgabpYUa3En74LP8mTMa0veCA719SvYQov4WLMsHvCgXP+L+KI9yGhYnqZafVGG0P4w==} + /@types/react-color@3.0.9: + resolution: {integrity: sha512-Ojyc6jySSKvM6UYQrZxaYe0JZXtgHHXwR2q9H4MhcNCswFdeZH1owYZCvPtdHtMOfh7t8h1fY0Gd0nvU1JGDkQ==} dependencies: '@types/react': 17.0.0 - '@types/reactcss': 1.2.6 + '@types/reactcss': 1.2.8 dev: true - /@types/react-dom@16.9.19: - resolution: {integrity: sha512-xC8D280Bf6p0zguJ8g62jcEOKZiUbx9sIe6O3tT/lKfR87A7A6g65q13z6D5QUMIa/6yFPkNhqjF5z/VVZEYqQ==} + /@types/react-dom@16.9.21: + resolution: {integrity: sha512-QdKxI502bJXRfFR8/pH0iCyt51EcPf1+hgCIZKJ9SBunj0NZpKK5j1FDoCGeGj/6ROK8gUesj41V3C64Rz2kHw==} dependencies: - '@types/react': 16.14.43 + '@types/react': 16.14.50 /@types/react-dom@17.0.0: resolution: {integrity: sha512-lUqY7OlkF/RbNtD5nIq7ot8NquXrdFrjSOR6+w9a9RFQevGi1oZO1dcJbXMeONAPKtZ2UrZOEJ5UOCVsxbLk/g==} dependencies: '@types/react': 17.0.0 - /@types/react-dom@17.0.20: - resolution: {integrity: sha512-4pzIjSxDueZZ90F52mU3aPoogkHIoSIDG+oQ+wQK7Cy2B9S+MvOqY0uEA/qawKz381qrEDkvpwyt8Bm31I8sbA==} + /@types/react-dom@17.0.22: + resolution: {integrity: sha512-wHt4gkdSMb4jPp1vc30MLJxoWGsZs88URfmt3FRXoOEYrrqK3I8IuZLE/uFBb4UT6MRfI0wXFu4DS7LS0kUC7Q==} dependencies: '@types/react': 17.0.0 dev: false - /@types/react-helmet@6.1.6: - resolution: {integrity: sha512-ZKcoOdW/Tg+kiUbkFCBtvDw0k3nD4HJ/h/B9yWxN4uDO8OkRksWTO+EL+z/Qu3aHTeTll3Ro0Cc/8UhwBCMG5A==} + /@types/react-helmet@6.1.8: + resolution: {integrity: sha512-UyJFvbGWO8xKvfCPFTt/DG/vsgkMqyXbUQAa1pSPco1Whw85Z3ypMEqoHtCDfoW4Qu8XgJp63jyXEhOa4te5Kw==} dependencies: '@types/react': 17.0.0 dev: false @@ -16350,16 +16365,16 @@ packages: '@types/react': 17.0.0 dev: false - /@types/react-reconciler@0.28.2: - resolution: {integrity: sha512-8tu6lHzEgYPlfDf/J6GOQdIc+gs+S2yAqlby3zTsB3SP2svlqTYe5fwZNtZyfactP74ShooP2vvi1BOp9ZemWw==} + /@types/react-reconciler@0.28.6: + resolution: {integrity: sha512-NlilRDg7yjtFX568NA046OiHWbz5EKM1q5FSXi2GP7WKyU+Vem4NJQcG+ZaMiWotyPiYqkIb6NKJkFuplbchAA==} dependencies: '@types/react': 17.0.0 dev: false - /@types/react-redux@7.1.25: - resolution: {integrity: sha512-bAGh4e+w5D8dajd6InASVIyCo4pZLJ66oLb80F9OBLO1gKESbZcRCJpTT6uLXX+HAB57zw1WTdwJdAsewuTweg==} + /@types/react-redux@7.1.28: + resolution: {integrity: sha512-EQr7cChVzVUuqbA+J8ArWK1H0hLAHKOs21SIMrskKZ3nHNeE+LFYA+IsoZGhVOT8Ktjn3M20v4rnZKN3fLbypw==} dependencies: - '@types/hoist-non-react-statics': 3.3.1 + '@types/hoist-non-react-statics': 3.3.4 '@types/react': 17.0.0 hoist-non-react-statics: 3.3.2 redux: 4.2.1 @@ -16371,6 +16386,13 @@ packages: '@types/react': 17.0.0 '@types/react-router': 5.1.20 + /@types/react-router-config@5.0.9: + resolution: {integrity: sha512-a7zOj9yVUtM3Ns5stoseQAAsmppNxZpXDv6tZiFV5qlRmV4W96u53on1vApBX1eRSc8mrFOiB54Hc0Pk1J8GFg==} + dependencies: + '@types/history': 4.7.11 + '@types/react': 17.0.0 + '@types/react-router': 5.1.20 + /@types/react-router-dom@5.1.7: resolution: {integrity: sha512-D5mHD6TbdV/DNHYsnwBTv+y73ei+mMjrkGrla86HthE4/PVvL1J94Bu3qABU+COXzpL23T1EZapVVpwHuBXiUg==} dependencies: @@ -16410,21 +16432,21 @@ packages: '@types/react': 17.0.0 dev: true - /@types/react@16.14.43: - resolution: {integrity: sha512-7zdjv7jvoLLQg1tTvpQsm+hyNUMT2mPlNV1+d0I8fbGhkJl82spopMyBlu4wb1dviZAxpGdk5eHu/muacknnfw==} + /@types/react@16.14.50: + resolution: {integrity: sha512-7TWZ/HjhXsRK3BbhSFxTinbSft3sUXJAU3ONngT0rpcKJaIOlxkRke4bidqQTopUbEv1ApC5nlSEkIpX43MkTg==} dependencies: - '@types/prop-types': 15.7.5 - '@types/scheduler': 0.16.3 + '@types/prop-types': 15.7.9 + '@types/scheduler': 0.16.5 csstype: 3.1.2 /@types/react@17.0.0: resolution: {integrity: sha512-aj/L7RIMsRlWML3YB6KZiXB3fV2t41+5RBGYF8z+tAKU43Px8C3cYUZsDvf1/+Bm4FK21QWBrDutu8ZJ/70qOw==} dependencies: - '@types/prop-types': 15.7.5 + '@types/prop-types': 15.7.9 csstype: 3.1.2 - /@types/reactcss@1.2.6: - resolution: {integrity: sha512-qaIzpCuXNWomGR1Xq8SCFTtF4v8V27Y6f+b9+bzHiv087MylI/nTCqqdChNeWS7tslgROmYB7yeiruWX7WnqNg==} + /@types/reactcss@1.2.8: + resolution: {integrity: sha512-IzxChTOxOFWZb1RhXoNZ7oEi3BtUdLQIFheoOurvu6iu0X9kwhoFe73DW9EVFxVFTKnd8bb8b1dKtO0tokM3eA==} dependencies: '@types/react': 17.0.0 dev: true @@ -16435,95 +16457,96 @@ packages: '@types/node': 7.0.12 dev: true - /@types/responselike@1.0.0: - resolution: {integrity: sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==} + /@types/responselike@1.0.2: + resolution: {integrity: sha512-/4YQT5Kp6HxUDb4yhRkm0bJ7TbjvTddqX7PZ5hz6qV3pxSo72f/6YPRo+Mu2DU307tm9IioO69l7uAwn5XNcFA==} dependencies: '@types/node': 7.0.12 - /@types/sax@1.2.4: - resolution: {integrity: sha512-pSAff4IAxJjfAXUG6tFkO7dsSbTmf8CtUpfhhZ5VhkRpC4628tJhh3+V6H1E+/Gs9piSzYKT5yzHO5M4GG9jkw==} + /@types/sax@1.2.6: + resolution: {integrity: sha512-A1mpYCYu1aHFayy8XKN57ebXeAbh9oQIZ1wXcno6b1ESUAfMBDMx7mf/QGlYwcMRaFryh9YBuH03i/3FlPGDkQ==} dependencies: '@types/node': 7.0.12 - /@types/scheduler@0.16.3: - resolution: {integrity: sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==} + /@types/scheduler@0.16.5: + resolution: {integrity: sha512-s/FPdYRmZR8SjLWGMCuax7r3qCWQw9QKHzXVukAuuIJkXkDRwp+Pu5LMIVFi0Fxbav35WURicYr8u1QsoybnQw==} - /@types/semver@6.2.3: - resolution: {integrity: sha512-KQf+QAMWKMrtBMsB8/24w53tEsxllMj6TuA80TT/5igJalLI/zm0L3oXRbIAl4Ohfc85gyHX/jhMwsVkmhLU4A==} + /@types/semver@6.2.5: + resolution: {integrity: sha512-NAxro9/RqWXTqdSjccDZAjA4nXK+6zRun+HvibYJfGy8TQhpOC7Vv6v2rlHYKrT0Q8jGGoNRd/xVdHRIQRNlFQ==} dev: true - /@types/semver@7.5.0: - resolution: {integrity: sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw==} + /@types/semver@7.5.4: + resolution: {integrity: sha512-MMzuxN3GdFwskAnb6fz0orFvhfqi752yjaXylr0Rp4oDg5H0Zn1IuyRhDVvYOwAXoJirx2xuS16I3WjxnAIHiQ==} dev: true - /@types/send@0.17.1: - resolution: {integrity: sha512-Cwo8LE/0rnvX7kIIa3QHCkcuF21c05Ayb0ZfxPiv0W8VRiZiNW/WuRupHKpqqGVGf7SUA44QSOUKaEd9lIrd/Q==} + /@types/send@0.17.3: + resolution: {integrity: sha512-/7fKxvKUoETxjFUsuFlPB9YndePpxxRAOfGC/yJdc9kTjTeP5kRCTzfnE8kPUKCeyiyIZu0YQ76s50hCedI1ug==} dependencies: - '@types/mime': 1.3.2 + '@types/mime': 1.3.4 '@types/node': 7.0.12 - /@types/serve-static@1.15.2: - resolution: {integrity: sha512-J2LqtvFYCzaj8pVYKw8klQXrLLk7TBZmQ4ShlcdkELFKGwGMfevMLneMMRkMgZxotOD9wg497LpC7O8PcvAmfw==} + /@types/serve-static@1.15.4: + resolution: {integrity: sha512-aqqNfs1XTF0HDrFdlY//+SGUxmdSUbjeRXb5iaZc3x0/vMbYmdw9qvOgHWOyyLFxSSRnUuP5+724zBgfw8/WAw==} dependencies: - '@types/http-errors': 2.0.1 - '@types/mime': 3.0.1 + '@types/http-errors': 2.0.3 + '@types/mime': 3.0.3 '@types/node': 7.0.12 - /@types/source-list-map@0.1.2: - resolution: {integrity: sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA==} + /@types/source-list-map@0.1.4: + resolution: {integrity: sha512-Kdfm7Sk5VX8dFW7Vbp18+fmAatBewzBILa1raHYxrGEFXT0jNl9x3LWfuW7bTbjEKFNey9Dfkj/UzT6z/NvRlg==} dev: true /@types/stack-utils@1.0.1: resolution: {integrity: sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw==} dev: true - /@types/stack-utils@2.0.1: - resolution: {integrity: sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==} + /@types/stack-utils@2.0.2: + resolution: {integrity: sha512-g7CK9nHdwjK2n0ymT2CW698FuWJRIx+RP6embAzZ2Qi8/ilIrA1Imt2LVSeHUzKvpoi7BhmmQcXz95eS0f2JXw==} - /@types/stylis@4.2.0: - resolution: {integrity: sha512-n4sx2bqL0mW1tvDf/loQ+aMX7GQD3lc3fkCMC55VFNDu/vBOabO+LTIeXKM14xK0ppk5TUGcWRjiSpIlUpghKw==} + /@types/stylis@4.2.2: + resolution: {integrity: sha512-Rm17MsTpQQP5Jq4BF7CdrxJsDufoiL/q5IbJZYZmOZAJALyijgF7BzLgobXUqraNcQdqFYLYGeglDp6QzaxPpg==} dev: true - /@types/superagent@4.1.18: - resolution: {integrity: sha512-LOWgpacIV8GHhrsQU+QMZuomfqXiqzz3ILLkCtKx3Us6AmomFViuzKT9D693QTKgyut2oCytMG8/efOop+DB+w==} + /@types/superagent@4.1.20: + resolution: {integrity: sha512-GfpwJgYSr3yO+nArFkmyqv3i0vZavyEG5xPd/o95RwpKYpsOKJYI5XLdxLpdRbZI3YiGKKdIOFIf/jlP7A0Jxg==} dependencies: - '@types/cookiejar': 2.1.2 + '@types/cookiejar': 2.1.3 '@types/node': 7.0.12 dev: true /@types/supertest@2.0.0: resolution: {integrity: sha512-DBPHh1OZbfI7JYIrUlQ8t6waD5IcuYe9YXiycaFOgJn/ta+578qIyFEK+N8ChQwtKCJ6S9IXD6LsjbzgX5F63w==} dependencies: - '@types/superagent': 4.1.18 + '@types/superagent': 4.1.20 dev: true - /@types/systemjs@6.13.1: - resolution: {integrity: sha512-Jxo2/uif1WpkabfyvWpFmPWFPDdwKUmyL7xWzjtxNALEu2pgce+eISjbf0Vr+SsK/D9savO5kTRcf+COLK5eiQ==} + /@types/systemjs@6.13.4: + resolution: {integrity: sha512-uLz8Hx16m5/RfnSXhGwchcjN/V3hI2PW3PCTuTWT0zlp8pS0ZJ5bF/3b4eGlQKUmR/2KfHSNK0CSH7UwqJ89CA==} dev: false - /@types/tapable@1.0.8: - resolution: {integrity: sha512-ipixuVrh2OdNmauvtT51o3d8z12p6LtFW9in7U79der/kwejjdNchQC5UMn5u/KxNoM7VHHOs/l8KS8uHxhODQ==} + /@types/tapable@1.0.10: + resolution: {integrity: sha512-q8F20SdXG5fdVJQ5yxsVlH+f+oekP42QeHv4s5KlrxTMT0eopXn7ol1rhxMcksf8ph7XNv811iVDE2hOpUvEPg==} dev: true - /@types/uglify-js@3.17.1: - resolution: {integrity: sha512-GkewRA4i5oXacU/n4MA9+bLgt5/L3F1mKrYvFGm7r2ouLXhRKjuWwo9XHNnbx6WF3vlGW21S3fCvgqxvxXXc5g==} + /@types/uglify-js@3.17.3: + resolution: {integrity: sha512-ToldSfJ6wxO21cakcz63oFD1GjqQbKzhZCD57eH7zWuYT5UEZvfUoqvrjX5d+jB9g4a/sFO0n6QSVzzn5sMsjg==} dependencies: source-map: 0.6.1 dev: true - /@types/unist@2.0.7: - resolution: {integrity: sha512-cputDpIbFgLUaGQn6Vqg3/YsJwxUwHLO13v3i5ouxT4lat0khip9AEWxtERujXV9wxIB1EyF97BSJFt6vpdI8g==} + /@types/unist@2.0.9: + resolution: {integrity: sha512-zC0iXxAv1C1ERURduJueYzkzZ2zaGyc+P2c95hgkikHPr3z8EdUZOlgEQ5X0DRmwDZn+hekycQnoeiiRVrmilQ==} - /@types/unist@3.0.0: - resolution: {integrity: sha512-MFETx3tbTjE7Uk6vvnWINA/1iJ7LuMdO4fcq8UfF0pRbj01aGLduVvQcRyswuACJdpnHgg8E3rQLhaRdNEJS0w==} + /@types/unist@3.0.1: + resolution: {integrity: sha512-ue/hDUpPjC85m+PM9OQDMZr3LywT+CT6mPsQq8OJtCLiERkGRcQUFvu9XASF5XWqyZFXbf15lvb3JFJ4dRLWPg==} dev: true /@types/urllib@2.33.0: resolution: {integrity: sha512-SHieWD8zGaDq+ryh1/ZcqVAV5a5PZYm/LkcYJPJ02KQi1l+j927eyz/Yx7XQRGmQxmeuOqrZC4kn5J+SAwjH/w==} deprecated: This is a stub types definition. urllib provides its own type definitions, so you do not need this installed. dependencies: - urllib: 2.40.0 + urllib: 2.41.0 transitivePeerDependencies: + - proxy-agent - supports-color dev: false @@ -16538,35 +16561,39 @@ packages: resolution: {integrity: sha512-b3nLFGaGkJ9rzOcuXRfHkZMdjsawuDD0ENL9fzTophtBg8FJHSGbH7daXkEpcwy3v7Xol3pAvsmlYyFhR4pqJw==} dependencies: '@types/node': 7.0.12 - '@types/unist': 2.0.7 + '@types/unist': 2.0.9 '@types/vfile-message': 2.0.0 dev: true - /@types/webpack-env@1.18.1: - resolution: {integrity: sha512-D0HJET2/UY6k9L6y3f5BL+IDxZmPkYmPT4+qBrRdmRLYRuV0qNKizMgTvYxXZYn+36zjPeoDZAEYBCM6XB+gww==} + /@types/webpack-env@1.18.3: + resolution: {integrity: sha512-v4CH6FLBCftYGFAswDhzFLjKgucXsOkIf5Mzl8ZZhEtC6oye9whFInNPKszNB9AvX7JEZMtpXxWctih6addP+Q==} dev: true - /@types/webpack-sources@3.2.0: - resolution: {integrity: sha512-Ft7YH3lEVRQ6ls8k4Ff1oB4jN6oy/XmU6tQISKdhfh+1mR+viZFphS6WL0IrtDOzvefmJg5a0s7ZQoRXwqTEFg==} + /@types/webpack-sources@3.2.2: + resolution: {integrity: sha512-acCzhuVe+UJy8abiSFQWXELhhNMZjQjQKpLNEi1pKGgKXZj0ul614ATcx4kkhunPost6Xw+aCq8y8cn1/WwAiA==} dependencies: '@types/node': 7.0.12 - '@types/source-list-map': 0.1.2 + '@types/source-list-map': 0.1.4 source-map: 0.7.4 dev: true - /@types/webpack@4.41.33: - resolution: {integrity: sha512-PPajH64Ft2vWevkerISMtnZ8rTs4YmRbs+23c402J0INmxDKCrhZNvwZYtzx96gY2wAtXdrK1BS2fiC8MlLr3g==} + /@types/webpack@4.41.35: + resolution: {integrity: sha512-XRC6HLGHtNfN8/xWeu1YUQV1GSE+28q8lSqvcJ+0xt/zW9Wmn4j9pCSvaXPyRlCKrl5OuqECQNEJUy2vo8oWqg==} dependencies: '@types/node': 7.0.12 - '@types/tapable': 1.0.8 - '@types/uglify-js': 3.17.1 - '@types/webpack-sources': 3.2.0 + '@types/tapable': 1.0.10 + '@types/uglify-js': 3.17.3 + '@types/webpack-sources': 3.2.2 anymatch: 3.1.3 source-map: 0.6.1 dev: true - /@types/yargs-parser@21.0.0: - resolution: {integrity: sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==} + /@types/webxr@0.5.7: + resolution: {integrity: sha512-Rcgs5c2eNFnHp53YOjgtKfl/zWX1Y+uFGUwlSXrWcZWu3yhANRezmph4MninmqybUYT6g9ZE0aQ9QIdPkLR3Kg==} + dev: false + + /@types/yargs-parser@21.0.2: + resolution: {integrity: sha512-5qcvofLPbfjmBfKaLfj/+f+Sbd6pN4zl7w7VSVI5uz7m9QZTuB2aZAa2uo1wHFBNN2x6g/SoTkXmd8mQnQF2Cw==} /@types/yargs@12.0.20: resolution: {integrity: sha512-MjOKUoDmNattFOBJvAZng7X9KXIKSGy6XHoXY9mASkKwCn35X4Ckh+Ugv1DewXZXrWYXMNtLiXhlCfWlpcAV+Q==} @@ -16574,25 +16601,25 @@ packages: /@types/yargs@13.0.12: resolution: {integrity: sha512-qCxJE1qgz2y0hA4pIxjBR+PelCH0U5CK1XJXFwCNqfmliatKp47UCXXE9Dyk1OXBDLvsCF57TqQEJaeLfDYEOQ==} dependencies: - '@types/yargs-parser': 21.0.0 + '@types/yargs-parser': 21.0.2 dev: true - /@types/yargs@15.0.15: - resolution: {integrity: sha512-IziEYMU9XoVj8hWg7k+UJrXALkGFjWJhn5QFEv9q4p+v40oZhSuC135M38st8XPjICL7Ey4TV64ferBGUoJhBg==} + /@types/yargs@15.0.17: + resolution: {integrity: sha512-cj53I8GUcWJIgWVTSVe2L7NJAB5XWGdsoMosVvUgv1jEnMbAcsbaCzt1coUcyi8Sda5PgTWAooG8jNyDTD+CWA==} dependencies: - '@types/yargs-parser': 21.0.0 + '@types/yargs-parser': 21.0.2 dev: false - /@types/yargs@16.0.5: - resolution: {integrity: sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==} + /@types/yargs@16.0.7: + resolution: {integrity: sha512-lQcYmxWuOfJq4IncK88/nwud9rwr1F04CFc5xzk0k4oKVyz/AI35TfsXmhjf6t8zp8mpCOi17BfvuNWx+zrYkg==} dependencies: - '@types/yargs-parser': 21.0.0 + '@types/yargs-parser': 21.0.2 dev: false - /@types/yargs@17.0.24: - resolution: {integrity: sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==} + /@types/yargs@17.0.29: + resolution: {integrity: sha512-nacjqA3ee9zRF/++a3FUY1suHTFKZeHba2n8WeDw9cCVdmzmHpIxyzOJBcpHvvEmS8E9KqWlSnWHUkOrkhWcvA==} dependencies: - '@types/yargs-parser': 21.0.0 + '@types/yargs-parser': 21.0.2 /@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0)(eslint@7.32.0)(typescript@4.7.4): resolution: {integrity: sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==} @@ -16605,7 +16632,7 @@ packages: typescript: optional: true dependencies: - '@eslint-community/regexpp': 4.5.1 + '@eslint-community/regexpp': 4.10.0 '@typescript-eslint/parser': 5.62.0(eslint@7.32.0)(typescript@5.1.6) '@typescript-eslint/scope-manager': 5.62.0 '@typescript-eslint/type-utils': 5.62.0(eslint@7.32.0)(typescript@4.7.4) @@ -16633,7 +16660,7 @@ packages: typescript: optional: true dependencies: - '@eslint-community/regexpp': 4.5.1 + '@eslint-community/regexpp': 4.10.0 '@typescript-eslint/parser': 5.62.0(eslint@8.0.0)(typescript@5.1.6) '@typescript-eslint/scope-manager': 5.62.0 '@typescript-eslint/type-utils': 5.62.0(eslint@8.0.0)(typescript@5.1.6) @@ -16656,7 +16683,7 @@ packages: peerDependencies: eslint: '*' dependencies: - '@types/json-schema': 7.0.12 + '@types/json-schema': 7.0.14 '@typescript-eslint/scope-manager': 4.33.0 '@typescript-eslint/types': 4.33.0 '@typescript-eslint/typescript-estree': 4.33.0(typescript@4.7.4) @@ -16844,8 +16871,8 @@ packages: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@7.32.0) - '@types/json-schema': 7.0.12 - '@types/semver': 7.5.0 + '@types/json-schema': 7.0.14 + '@types/semver': 7.5.4 '@typescript-eslint/scope-manager': 5.62.0 '@typescript-eslint/types': 5.62.0 '@typescript-eslint/typescript-estree': 5.62.0(typescript@4.7.4) @@ -16864,8 +16891,8 @@ packages: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@8.0.0) - '@types/json-schema': 7.0.12 - '@types/semver': 7.5.0 + '@types/json-schema': 7.0.14 + '@types/semver': 7.5.4 '@typescript-eslint/scope-manager': 5.62.0 '@typescript-eslint/types': 5.62.0 '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.1.6) @@ -16890,11 +16917,11 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: '@typescript-eslint/types': 5.62.0 - eslint-visitor-keys: 3.4.1 + eslint-visitor-keys: 3.4.3 dev: true - /@uiw/copy-to-clipboard@1.0.15: - resolution: {integrity: sha512-1bbGZ3T+SGmA07BoVPK4UCUDcowDN/moctviJGQexfOc9qL8TMLDQPr7mTPvDKhgJkgnlKkAQNFU8PiarIi9sQ==} + /@uiw/copy-to-clipboard@1.0.16: + resolution: {integrity: sha512-IXR+N363nLTR3ilklmM+B0nk774jVE/muOrBYt4Rdww/Pf3uP9XHyv2x6YZrbDh29F7w9BkzQyB8QF6WDShmJA==} dev: false /@uiw/react-markdown-preview@4.1.13(@types/react@17.0.0)(react-dom@17.0.2)(react@17.0.2): @@ -16903,8 +16930,8 @@ packages: react: '>=16.8.0 || 17' react-dom: '>=16.8.0' dependencies: - '@babel/runtime': 7.22.6 - '@uiw/copy-to-clipboard': 1.0.15 + '@babel/runtime': 7.23.2 + '@uiw/copy-to-clipboard': 1.0.16 react: 17.0.2 react-dom: 17.0.2(react@17.0.2) react-markdown: 8.0.7(@types/react@17.0.0)(react@17.0.2) @@ -16959,30 +16986,30 @@ packages: '@umijs/deps': 3.5.41 '@umijs/utils': 3.5.41 - /@umijs/babel-preset-umi@4.0.72(styled-components@6.0.4): - resolution: {integrity: sha512-9L2zwcux8iMOD9ji6YK1kiFbA9ZI1o0O/9NJo69QdCv3N41ENXWeNfXVu72GD6+mytmKZEWNCtD0qAzBTXj5jQ==} + /@umijs/babel-preset-umi@4.0.87(styled-components@6.1.0): + resolution: {integrity: sha512-7Zh/n0uiBhF+IgRzx1lmDGa1STZUgjy4GtW5M3yfl6vewjDilnQWEQAZP24nS9PllNaVNT7umu52hOCJTEGyIA==} dependencies: - '@babel/runtime': 7.21.0 + '@babel/runtime': 7.23.2 '@bloomberg/record-tuple-polyfill': 0.0.4 - '@umijs/bundler-utils': 4.0.72 - '@umijs/utils': 4.0.72 - babel-plugin-styled-components: 2.1.1(styled-components@6.0.4) + '@umijs/bundler-utils': 4.0.87 + '@umijs/utils': 4.0.87 + babel-plugin-styled-components: 2.1.1(styled-components@6.1.0) core-js: 3.28.0 transitivePeerDependencies: - styled-components - supports-color dev: true - /@umijs/bundler-esbuild@4.0.72: - resolution: {integrity: sha512-T7nonD78F6RG94xATF5n/KkdJCOVYukokGFDAd4nPTNhbdYVakgNqwpRVwLEFofYMAN9uJ7rIUKFEt3qMpFR7w==} + /@umijs/bundler-esbuild@4.0.87: + resolution: {integrity: sha512-vw7A7FF97c/mIrYcHfP4Ql+tpHLyYDLmwxiHIMQCTqE6AI6ut6D4NDXyrXjWWWSJYsAG0AuFzchFplBGHOSe8w==} hasBin: true dependencies: - '@umijs/bundler-utils': 4.0.72 - '@umijs/utils': 4.0.72 + '@umijs/bundler-utils': 4.0.87 + '@umijs/utils': 4.0.87 enhanced-resolve: 5.9.3 - postcss: 8.4.25 - postcss-flexbugs-fixes: 5.0.2(postcss@8.4.25) - postcss-preset-env: 7.5.0(postcss@8.4.25) + postcss: 8.4.31 + postcss-flexbugs-fixes: 5.0.2(postcss@8.4.31) + postcss-preset-env: 7.5.0(postcss@8.4.31) transitivePeerDependencies: - supports-color dev: true @@ -17010,24 +17037,24 @@ packages: - react-router dev: false - /@umijs/bundler-utils@3.5.41(react-dom@16.14.0)(react-router@6.14.1)(react@16.14.0): + /@umijs/bundler-utils@3.5.41(react-dom@16.14.0)(react-router@6.17.0)(react@16.14.0): resolution: {integrity: sha512-irJUU/eWa2GG6JCkz172lMi+jiq7ZXatE2N7Tq/lokZUYu9R9BRaRN7dphgBlAUfOP3aBtjx51/5yZdYAeW0yQ==} dependencies: '@umijs/babel-preset-umi': 3.5.41 - '@umijs/types': 3.5.41(react-dom@16.14.0)(react-router@6.14.1)(react@16.14.0) + '@umijs/types': 3.5.41(react-dom@16.14.0)(react-router@6.17.0)(react@16.14.0) '@umijs/utils': 3.5.41 transitivePeerDependencies: - react - react-dom - react-router - /@umijs/bundler-utils@4.0.72: - resolution: {integrity: sha512-ROGNx6dy3tiMwhC29F6xvWC9O3F4CXnND2raupljTk+QDuvc1hmwUiB/gmCWrts/98cKN2959js03ivIPn9NNw==} + /@umijs/bundler-utils@4.0.87: + resolution: {integrity: sha512-srn/u1K8ZQGp30k+lbkJWw7KCCOFdYwxC8Kkdq1T8t4a3MqC6motFxsbbHzGLUSKMBzFhcOSV/RGLSyHQ/WJuQ==} dependencies: - '@umijs/utils': 4.0.72 + '@umijs/utils': 4.0.87 esbuild: 0.17.19 regenerate: 1.4.2 - regenerate-unicode-properties: 10.1.0 + regenerate-unicode-properties: 10.1.1 spdy: 4.0.2 transitivePeerDependencies: - supports-color @@ -17082,14 +17109,14 @@ packages: - react-router dev: false - /@umijs/bundler-webpack@3.5.41(react-dom@16.14.0)(react-router@6.14.1)(react@16.14.0): + /@umijs/bundler-webpack@3.5.41(react-dom@16.14.0)(react-router@6.17.0)(react@16.14.0): resolution: {integrity: sha512-n4HIrDUE3QfN5xSTWJlRz5wzsnWggzRJhEDJZ6l23BWiwWasFW6QMGCnFWLwO93ei273LovylD5vZhI221tBtQ==} hasBin: true dependencies: - '@umijs/bundler-utils': 3.5.41(react-dom@16.14.0)(react-router@6.14.1)(react@16.14.0) + '@umijs/bundler-utils': 3.5.41(react-dom@16.14.0)(react-router@6.17.0)(react@16.14.0) '@umijs/case-sensitive-paths-webpack-plugin': 1.0.1 '@umijs/deps': 3.5.41 - '@umijs/types': 3.5.41(react-dom@16.14.0)(react-router@6.14.1)(react@16.14.0) + '@umijs/types': 3.5.41(react-dom@16.14.0)(react-router@6.17.0)(react@16.14.0) '@umijs/utils': 3.5.41 jest-worker: 26.6.2 node-libs-browser: 2.2.1 @@ -17106,29 +17133,29 @@ packages: - react-dom - react-router - /@umijs/bundler-webpack@4.0.72(styled-components@6.0.4)(typescript@4.7.4)(webpack@5.88.0): - resolution: {integrity: sha512-0oTvna4AdMoSvRWeF0E8u8/aKASwll226DkLKvjYDs5FE9nhbxIHevsoSRX7TnlEDPNfV/a3kVRnRG1dR2oJnQ==} + /@umijs/bundler-webpack@4.0.87(styled-components@6.1.0)(typescript@4.7.4)(webpack@5.88.0): + resolution: {integrity: sha512-s2dzSiGbN4ws+MtpGIm3/I2w4/WIhIIDitWncjjBRarwpVraDJdPflWVIlVAsYkRlq1brJMoa4mdLPkVWyw65w==} hasBin: true dependencies: - '@pmmmwh/react-refresh-webpack-plugin': 0.5.10(react-refresh@0.14.0)(webpack@5.88.0) '@svgr/core': 6.5.1 '@svgr/plugin-jsx': 6.5.1(@svgr/core@6.5.1) '@svgr/plugin-svgo': 6.5.1(@svgr/core@6.5.1) '@types/hapi__joi': 17.1.9 - '@umijs/babel-preset-umi': 4.0.72(styled-components@6.0.4) - '@umijs/bundler-utils': 4.0.72 + '@umijs/babel-preset-umi': 4.0.87(styled-components@6.1.0) + '@umijs/bundler-utils': 4.0.87 '@umijs/case-sensitive-paths-webpack-plugin': 1.0.1 - '@umijs/mfsu': 4.0.72 - '@umijs/utils': 4.0.72 + '@umijs/mfsu': 4.0.87 + '@umijs/react-refresh-webpack-plugin': 0.5.11(react-refresh@0.14.0)(webpack@5.88.0) + '@umijs/utils': 4.0.87 cors: 2.8.5 css-loader: 6.7.1(webpack@5.88.0) - es5-imcompatible-versions: 0.1.86 + es5-imcompatible-versions: 0.1.88 fork-ts-checker-webpack-plugin: 8.0.0(typescript@4.7.4)(webpack@5.88.0) jest-worker: 29.4.3 lightningcss: 1.19.0 node-libs-browser: 2.2.1 - postcss: 8.4.25 - postcss-preset-env: 7.5.0(postcss@8.4.25) + postcss: 8.4.31 + postcss-preset-env: 7.5.0(postcss@8.4.31) react-error-overlay: 6.0.9 react-refresh: 0.14.0 transitivePeerDependencies: @@ -17155,11 +17182,11 @@ packages: '@umijs/deps': 3.5.41 '@umijs/utils': 3.5.41 - /@umijs/core@4.0.72: - resolution: {integrity: sha512-E4+V/SuM8hcnmX/B+phU24LtNvV5Y7DY2ggtkQbJXtEGVFIImeC2ZEEWvGCFzq3soRCCTYG3Iwun4/TpInWIdg==} + /@umijs/core@4.0.87: + resolution: {integrity: sha512-LEVnrurQOiICMHwxDxyW8+ANTx841bXj2tYUI2tEv+yenrgeZnkUa7790B+UBhUuhImTXpihUAr3QhmIz63nqA==} dependencies: - '@umijs/bundler-utils': 4.0.72 - '@umijs/utils': 4.0.72 + '@umijs/bundler-utils': 4.0.87 + '@umijs/utils': 4.0.87 transitivePeerDependencies: - supports-color dev: true @@ -17180,26 +17207,26 @@ packages: resolution: {integrity: sha512-fOyXcbViOB+/jW+g2rCiK9XjSZVn4OzFuMZpSCriCdR/KxhxLTokvJWFm3CzBEmg9vXfrBFQ4c/ykmqoVacHtw==} hasBin: true dependencies: - '@babel/core': 7.22.9 - '@babel/eslint-parser': 7.22.9(@babel/core@7.22.9)(eslint@7.32.0) - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.9) - '@babel/plugin-proposal-decorators': 7.22.7(@babel/core@7.22.9) - '@babel/preset-env': 7.22.9(@babel/core@7.22.9) - '@babel/preset-react': 7.22.5(@babel/core@7.22.9) - '@babel/preset-typescript': 7.22.5(@babel/core@7.22.9) + '@babel/core': 7.23.2 + '@babel/eslint-parser': 7.22.15(@babel/core@7.23.2)(eslint@7.32.0) + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.23.2) + '@babel/plugin-proposal-decorators': 7.23.2(@babel/core@7.23.2) + '@babel/preset-env': 7.23.2(@babel/core@7.23.2) + '@babel/preset-react': 7.22.15(@babel/core@7.23.2) + '@babel/preset-typescript': 7.23.2(@babel/core@7.23.2) '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@7.32.0)(typescript@4.7.4) '@typescript-eslint/parser': 5.62.0(eslint@7.32.0)(typescript@5.1.6) chalk: 4.1.2 eslint: 7.32.0 - eslint-config-prettier: 8.8.0(eslint@7.32.0) + eslint-config-prettier: 8.10.0(eslint@7.32.0) eslint-formatter-pretty: 4.1.0 eslint-plugin-babel: 5.3.1(eslint@7.32.0) eslint-plugin-jest: 24.7.0(@typescript-eslint/eslint-plugin@5.62.0)(eslint@7.32.0)(typescript@4.7.4) eslint-plugin-promise: 6.1.1(eslint@7.32.0) - eslint-plugin-react: 7.32.2(eslint@7.32.0) + eslint-plugin-react: 7.33.2(eslint@7.32.0) eslint-plugin-react-hooks: 4.6.0(eslint@7.32.0) eslint-plugin-unicorn: 20.1.0(eslint@7.32.0) - fast-glob: 3.3.0 + fast-glob: 3.3.1 os-locale: 5.0.0 prettier: 2.8.8 prettier-plugin-packagejson: 2.3.0(prettier@2.8.8) @@ -17216,14 +17243,14 @@ packages: - supports-color dev: true - /@umijs/mfsu@4.0.72: - resolution: {integrity: sha512-oyWNIRVK6/FCewMZ8jjn5ICTWWZ7VWP7javN1/zLczvPy2s3cMp5lZuN2Ca39v2Px/DfkCBKSiB/EI6Kts0G8A==} + /@umijs/mfsu@4.0.87: + resolution: {integrity: sha512-ROSY/WdjZX0/1jmUwW25mlIXlPt1XTWO3u0cORK4Cq/mAQTd4X66qH2tyvndKlYgMkn02XddGoXhMF2S+MaahA==} dependencies: - '@umijs/bundler-esbuild': 4.0.72 - '@umijs/bundler-utils': 4.0.72 - '@umijs/utils': 4.0.72 + '@umijs/bundler-esbuild': 4.0.87 + '@umijs/bundler-utils': 4.0.87 + '@umijs/utils': 4.0.87 enhanced-resolve: 5.9.3 - is-equal: 1.6.4 + is-equal: 1.7.0 transitivePeerDependencies: - supports-color dev: true @@ -17248,8 +17275,8 @@ packages: umi: 3.5.41(react-router@5.3.4) dev: false - /@umijs/plugin-analytics@0.2.3(umi@3.5.41): - resolution: {integrity: sha512-6Fj+EOzd2vXe1YHjK1aqhHlITWBXcnhPd6pxAEjeGu3vAxDcfp1yM3PoRr//baBXk8CYF2krWDQGYy+OlRXM4A==} + /@umijs/plugin-analytics@0.2.4(umi@3.5.41): + resolution: {integrity: sha512-aIHc/okDmCae/6iJS3lRV2b9/cuFUoGQhioeoZzC2mBYy43o0Z6KWSY5TlzraY4bDdGurWsFQC6dB1TVUCMGbg==} peerDependencies: umi: 3.x dependencies: @@ -17300,7 +17327,7 @@ packages: peerDependencies: umi: 3.x dependencies: - '@types/react-helmet': 6.1.6 + '@types/react-helmet': 6.1.8 react-helmet: 6.1.0(react@17.0.2) umi: 3.5.41(react-router@5.3.4) transitivePeerDependencies: @@ -17412,10 +17439,10 @@ packages: '@umijs/utils': 3.5.41 ansi-html: 0.0.9 core-js: 3.6.5 - core-js-pure: 3.31.1 + core-js-pure: 3.33.1 error-stack-parser: 2.1.4 es-module-lexer: 0.7.1 - es5-imcompatible-versions: 0.1.86 + es5-imcompatible-versions: 0.1.88 history-with-query: 4.10.4 html-entities: 2.4.0 mime: 1.4.1 @@ -17434,15 +17461,15 @@ packages: peerDependencies: umi: ^3.0.0 dependencies: - '@babel/core': 7.22.9 - '@babel/generator': 7.22.9 - '@babel/plugin-transform-modules-commonjs': 7.22.5(@babel/core@7.22.9) - '@babel/traverse': 7.22.8(supports-color@5.5.0) - '@babel/types': 7.22.5 + '@babel/core': 7.23.2 + '@babel/generator': 7.23.0 + '@babel/plugin-transform-modules-commonjs': 7.23.0(@babel/core@7.23.2) + '@babel/traverse': 7.23.2(supports-color@5.5.0) + '@babel/types': 7.23.0 '@mapbox/hast-util-to-jsx': 1.0.0 '@umijs/babel-preset-umi': 3.5.41 '@umijs/core': 3.5.41 - '@umijs/plugin-analytics': 0.2.3(umi@3.5.41) + '@umijs/plugin-analytics': 0.2.4(umi@3.5.41) '@umijs/runtime': 3.5.41(react@17.0.2) '@umijs/types': 3.5.41(react-dom@16.14.0)(react-router@5.2.0)(react@17.0.2) '@umijs/utils': 3.5.41 @@ -17476,7 +17503,7 @@ packages: remark-stringify: 9.0.1 sitemap: 6.4.0 slash2: 2.0.0 - terser: 5.19.0 + terser: 5.22.0 umi: 3.5.41(react-router@5.2.0) unified: 8.4.2 unist-util-visit: 2.0.3 @@ -17492,22 +17519,22 @@ packages: - utf-8-validate dev: true - /@umijs/preset-dumi@1.1.50(react-dom@16.14.0)(react-router@6.14.1)(react@17.0.2)(typescript@5.1.6)(umi@3.5.41): + /@umijs/preset-dumi@1.1.50(react-dom@16.14.0)(react-router@6.17.0)(react@17.0.2)(typescript@5.1.6)(umi@3.5.41): resolution: {integrity: sha512-HhKMGct5DEd+ZZxBLbCUvXxnMh4MYlMeFIQXf2Ei9tVaKCeNri4I+BYb93swAmEl2v+2PxrKHCCzXNv07C+9Uw==} peerDependencies: umi: ^3.0.0 dependencies: - '@babel/core': 7.22.9 - '@babel/generator': 7.22.9 - '@babel/plugin-transform-modules-commonjs': 7.22.5(@babel/core@7.22.9) - '@babel/traverse': 7.22.8(supports-color@5.5.0) - '@babel/types': 7.22.5 + '@babel/core': 7.23.2 + '@babel/generator': 7.23.0 + '@babel/plugin-transform-modules-commonjs': 7.23.0(@babel/core@7.23.2) + '@babel/traverse': 7.23.2(supports-color@5.5.0) + '@babel/types': 7.23.0 '@mapbox/hast-util-to-jsx': 1.0.0 '@umijs/babel-preset-umi': 3.5.41 '@umijs/core': 3.5.41 - '@umijs/plugin-analytics': 0.2.3(umi@3.5.41) + '@umijs/plugin-analytics': 0.2.4(umi@3.5.41) '@umijs/runtime': 3.5.41(react@17.0.2) - '@umijs/types': 3.5.41(react-dom@16.14.0)(react-router@6.14.1)(react@17.0.2) + '@umijs/types': 3.5.41(react-dom@16.14.0)(react-router@6.17.0)(react@17.0.2) '@umijs/utils': 3.5.41 codesandbox: 2.2.3 copy-text-to-clipboard: 2.2.0 @@ -17539,8 +17566,8 @@ packages: remark-stringify: 9.0.1 sitemap: 6.4.0 slash2: 2.0.0 - terser: 5.19.0 - umi: 3.5.41(react-router@6.14.1) + terser: 5.22.0 + umi: 3.5.41(react-router@6.17.0) unified: 8.4.2 unist-util-visit: 2.0.3 unist-util-visit-parents: 3.1.1 @@ -17555,22 +17582,22 @@ packages: - utf-8-validate dev: true - /@umijs/preset-dumi@1.1.50(react-dom@17.0.2)(react-router@6.14.1)(react@17.0.2)(typescript@4.7.4)(umi@3.5.41): + /@umijs/preset-dumi@1.1.50(react-dom@17.0.2)(react-router@6.17.0)(react@17.0.2)(typescript@4.7.4)(umi@3.5.41): resolution: {integrity: sha512-HhKMGct5DEd+ZZxBLbCUvXxnMh4MYlMeFIQXf2Ei9tVaKCeNri4I+BYb93swAmEl2v+2PxrKHCCzXNv07C+9Uw==} peerDependencies: umi: ^3.0.0 dependencies: - '@babel/core': 7.22.9 - '@babel/generator': 7.22.9 - '@babel/plugin-transform-modules-commonjs': 7.22.5(@babel/core@7.22.9) - '@babel/traverse': 7.22.8(supports-color@5.5.0) - '@babel/types': 7.22.5 + '@babel/core': 7.23.2 + '@babel/generator': 7.23.0 + '@babel/plugin-transform-modules-commonjs': 7.23.0(@babel/core@7.23.2) + '@babel/traverse': 7.23.2(supports-color@5.5.0) + '@babel/types': 7.23.0 '@mapbox/hast-util-to-jsx': 1.0.0 '@umijs/babel-preset-umi': 3.5.41 '@umijs/core': 3.5.41 - '@umijs/plugin-analytics': 0.2.3(umi@3.5.41) + '@umijs/plugin-analytics': 0.2.4(umi@3.5.41) '@umijs/runtime': 3.5.41(react@17.0.2) - '@umijs/types': 3.5.41(react-dom@17.0.2)(react-router@6.14.1)(react@17.0.2) + '@umijs/types': 3.5.41(react-dom@17.0.2)(react-router@6.17.0)(react@17.0.2) '@umijs/utils': 3.5.41 codesandbox: 2.2.3 copy-text-to-clipboard: 2.2.0 @@ -17602,8 +17629,8 @@ packages: remark-stringify: 9.0.1 sitemap: 6.4.0 slash2: 2.0.0 - terser: 5.19.0 - umi: 3.5.41(react-router@6.14.1) + terser: 5.22.0 + umi: 3.5.41(react-router@6.17.0) unified: 8.4.2 unist-util-visit: 2.0.3 unist-util-visit-parents: 3.1.1 @@ -17652,14 +17679,53 @@ packages: - utf-8-validate dev: false + /@umijs/react-refresh-webpack-plugin@0.5.11(react-refresh@0.14.0)(webpack@5.88.0): + resolution: {integrity: sha512-RtFvB+/GmjRhpHcqNgnw8iWZpTlxOnmNxi8eDcecxMmxmSgeDj25LV0jr4Q6rOhv3GTIfVGBhkwz+khGT5tfmg==} + engines: {node: '>= 10.13'} + peerDependencies: + '@types/webpack': 4.x || 5.x + react-refresh: '>=0.10.0 <1.0.0' + sockjs-client: ^1.4.0 + type-fest: '>=0.17.0 <5.0.0' + webpack: '>=4.43.0 <6.0.0' + webpack-dev-server: 3.x || 4.x + webpack-hot-middleware: 2.x + webpack-plugin-serve: 0.x || 1.x + peerDependenciesMeta: + '@types/webpack': + optional: true + sockjs-client: + optional: true + type-fest: + optional: true + webpack-dev-server: + optional: true + webpack-hot-middleware: + optional: true + webpack-plugin-serve: + optional: true + dependencies: + ansi-html-community: 0.0.8 + common-path-prefix: 3.0.0 + core-js-pure: 3.33.1 + error-stack-parser: 2.1.4 + find-up: 5.0.0 + html-entities: 2.4.0 + loader-utils: 2.0.4 + react-refresh: 0.14.0 + schema-utils: 3.3.0 + source-map: 0.7.4 + webpack: 5.88.0(webpack-cli@5.0.0) + dev: true + /@umijs/renderer-mpa@3.5.41(react-dom@16.14.0)(react@16.14.0): resolution: {integrity: sha512-SUAlBZwUXVJdj5lBQ0Kf2nH3/mkyqZEkgZw0laLn2sNeVfe0bpSKjTvYv3sGMZ9Jg+L61g8TNwGO4Y1j8x5rkw==} peerDependencies: react: 16.x || 17.x || 17 react-dom: 16.x || 17.x dependencies: - '@types/react': 16.14.43 - '@types/react-dom': 16.9.19 + '@types/react': 16.14.50 + '@types/react-dom': 16.9.21 '@umijs/runtime': 3.5.41(react@16.14.0) react: 16.14.0 react-dom: 16.14.0(react@16.14.0) @@ -17670,9 +17736,9 @@ packages: react: 16.x || 17.x || 17 react-dom: 16.x || 17.x dependencies: - '@types/react': 16.14.43 - '@types/react-dom': 16.9.19 - '@types/react-router-config': 5.0.2 + '@types/react': 16.14.50 + '@types/react-dom': 16.9.21 + '@types/react-router-config': 5.0.9 '@umijs/runtime': 3.5.41(react@16.14.0) react: 16.14.0 react-dom: 16.14.0(react@16.14.0) @@ -17686,9 +17752,9 @@ packages: react: 16.x || 17.x || 17 react-dom: 16.x || 17.x dependencies: - '@types/react': 16.14.43 - '@types/react-dom': 16.9.19 - '@types/react-router-config': 5.0.2 + '@types/react': 16.14.50 + '@types/react-dom': 16.9.21 + '@types/react-router-config': 5.0.9 '@umijs/runtime': 3.5.41(react@17.0.2) react: 17.0.2 react-dom: 16.14.0(react@17.0.2) @@ -17703,9 +17769,9 @@ packages: react: 16.x || 17.x || 17 react-dom: 16.x || 17.x dependencies: - '@types/react': 16.14.43 - '@types/react-dom': 16.9.19 - '@types/react-router-config': 5.0.2 + '@types/react': 16.14.50 + '@types/react-dom': 16.9.21 + '@types/react-router-config': 5.0.9 '@umijs/runtime': 3.5.41(react@16.14.0) react: 16.14.0 react-dom: 16.14.0(react@16.14.0) @@ -17714,52 +17780,52 @@ packages: - react-router dev: false - /@umijs/renderer-react@3.5.41(react-dom@16.14.0)(react-router@6.14.1)(react@16.14.0): + /@umijs/renderer-react@3.5.41(react-dom@16.14.0)(react-router@6.17.0)(react@16.14.0): resolution: {integrity: sha512-DmExaziU84uFXv09gYXpFk/tHB+mjINUD8YmYULjbQ+QQA9so2zkxNSv9gYy5hXNepheUMd+uriV/qUB6HNBVg==} peerDependencies: react: 16.x || 17.x || 17 react-dom: 16.x || 17.x dependencies: - '@types/react': 16.14.43 - '@types/react-dom': 16.9.19 - '@types/react-router-config': 5.0.2 + '@types/react': 16.14.50 + '@types/react-dom': 16.9.21 + '@types/react-router-config': 5.0.9 '@umijs/runtime': 3.5.41(react@16.14.0) react: 16.14.0 react-dom: 16.14.0(react@16.14.0) - react-router-config: 5.1.1(react-router@6.14.1)(react@16.14.0) + react-router-config: 5.1.1(react-router@6.17.0)(react@16.14.0) transitivePeerDependencies: - react-router - /@umijs/renderer-react@3.5.41(react-dom@16.14.0)(react-router@6.14.1)(react@17.0.2): + /@umijs/renderer-react@3.5.41(react-dom@16.14.0)(react-router@6.17.0)(react@17.0.2): resolution: {integrity: sha512-DmExaziU84uFXv09gYXpFk/tHB+mjINUD8YmYULjbQ+QQA9so2zkxNSv9gYy5hXNepheUMd+uriV/qUB6HNBVg==} peerDependencies: react: 16.x || 17.x || 17 react-dom: 16.x || 17.x dependencies: - '@types/react': 16.14.43 - '@types/react-dom': 16.9.19 - '@types/react-router-config': 5.0.2 + '@types/react': 16.14.50 + '@types/react-dom': 16.9.21 + '@types/react-router-config': 5.0.9 '@umijs/runtime': 3.5.41(react@17.0.2) react: 17.0.2 react-dom: 16.14.0(react@17.0.2) - react-router-config: 5.1.1(react-router@6.14.1)(react@17.0.2) + react-router-config: 5.1.1(react-router@6.17.0)(react@17.0.2) transitivePeerDependencies: - react-router dev: true - /@umijs/renderer-react@3.5.41(react-dom@17.0.2)(react-router@6.14.1)(react@17.0.2): + /@umijs/renderer-react@3.5.41(react-dom@17.0.2)(react-router@6.17.0)(react@17.0.2): resolution: {integrity: sha512-DmExaziU84uFXv09gYXpFk/tHB+mjINUD8YmYULjbQ+QQA9so2zkxNSv9gYy5hXNepheUMd+uriV/qUB6HNBVg==} peerDependencies: react: 16.x || 17.x || 17 react-dom: 16.x || 17.x dependencies: - '@types/react': 16.14.43 - '@types/react-dom': 16.9.19 - '@types/react-router-config': 5.0.2 + '@types/react': 16.14.50 + '@types/react-dom': 16.9.21 + '@types/react-router-config': 5.0.9 '@umijs/runtime': 3.5.41(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) - react-router-config: 5.1.1(react-router@6.14.1)(react@17.0.2) + react-router-config: 5.1.1(react-router@6.17.0)(react@17.0.2) transitivePeerDependencies: - react-router dev: false @@ -17836,7 +17902,7 @@ packages: jest: 26.6.3 jest-cli: 26.6.3 regenerator-runtime: 0.13.11 - whatwg-fetch: 3.6.2 + whatwg-fetch: 3.6.19 transitivePeerDependencies: - bufferutil - canvas @@ -17892,13 +17958,13 @@ packages: - react-router dev: false - /@umijs/types@3.5.41(react-dom@16.14.0)(react-router@6.14.1)(react@16.14.0): + /@umijs/types@3.5.41(react-dom@16.14.0)(react-router@6.17.0)(react@16.14.0): resolution: {integrity: sha512-pxvLiQ99EL8Yu98F/ZMojG9ukDptC315cnxSnRYOdS34F57oiIgW0Zoi0TrKlA0pVIQxC2MXzyQwy+HfDmB23Q==} dependencies: '@umijs/babel-preset-umi': 3.5.41 '@umijs/core': 3.5.41 '@umijs/deps': 3.5.41 - '@umijs/renderer-react': 3.5.41(react-dom@16.14.0)(react-router@6.14.1)(react@16.14.0) + '@umijs/renderer-react': 3.5.41(react-dom@16.14.0)(react-router@6.17.0)(react@16.14.0) '@umijs/server': 3.5.41 '@umijs/utils': 3.5.41 webpack-chain: 6.5.1 @@ -17907,13 +17973,13 @@ packages: - react-dom - react-router - /@umijs/types@3.5.41(react-dom@16.14.0)(react-router@6.14.1)(react@17.0.2): + /@umijs/types@3.5.41(react-dom@16.14.0)(react-router@6.17.0)(react@17.0.2): resolution: {integrity: sha512-pxvLiQ99EL8Yu98F/ZMojG9ukDptC315cnxSnRYOdS34F57oiIgW0Zoi0TrKlA0pVIQxC2MXzyQwy+HfDmB23Q==} dependencies: '@umijs/babel-preset-umi': 3.5.41 '@umijs/core': 3.5.41 '@umijs/deps': 3.5.41 - '@umijs/renderer-react': 3.5.41(react-dom@16.14.0)(react-router@6.14.1)(react@17.0.2) + '@umijs/renderer-react': 3.5.41(react-dom@16.14.0)(react-router@6.17.0)(react@17.0.2) '@umijs/server': 3.5.41 '@umijs/utils': 3.5.41 webpack-chain: 6.5.1 @@ -17923,13 +17989,13 @@ packages: - react-router dev: true - /@umijs/types@3.5.41(react-dom@17.0.2)(react-router@6.14.1)(react@17.0.2): + /@umijs/types@3.5.41(react-dom@17.0.2)(react-router@6.17.0)(react@17.0.2): resolution: {integrity: sha512-pxvLiQ99EL8Yu98F/ZMojG9ukDptC315cnxSnRYOdS34F57oiIgW0Zoi0TrKlA0pVIQxC2MXzyQwy+HfDmB23Q==} dependencies: '@umijs/babel-preset-umi': 3.5.41 '@umijs/core': 3.5.41 '@umijs/deps': 3.5.41 - '@umijs/renderer-react': 3.5.41(react-dom@17.0.2)(react-router@6.14.1)(react@17.0.2) + '@umijs/renderer-react': 3.5.41(react-dom@17.0.2)(react-router@6.17.0)(react@17.0.2) '@umijs/server': 3.5.41 '@umijs/utils': 3.5.41 webpack-chain: 6.5.1 @@ -17953,8 +18019,8 @@ packages: '@umijs/babel-preset-umi': 3.5.41 '@umijs/deps': 3.5.41 - /@umijs/utils@4.0.72: - resolution: {integrity: sha512-+BOOGCipnr3iEzAliYrfFQeyQd3DrT1vMMXlsBqyD3Qh1owrSb/FsTvFTUYU0jrVgBc3MR5UneEBcPbqxq36Pw==} + /@umijs/utils@4.0.87: + resolution: {integrity: sha512-0gQetd/LIYzny/T10RhgbiHnHwFvscv9okbhAUepi0qZg0/LNsOAPWwCwODeK/HMXNlknPEU+nc4EvkuowZmlQ==} dependencies: chokidar: 3.5.3 pino: 7.11.0 @@ -18248,7 +18314,7 @@ packages: webpack: 5.88.0(webpack-cli@5.0.0) webpack-cli: 5.0.0(webpack@5.88.0) - /@webpack-contrib/schema-utils@1.0.0-beta.0(webpack@4.46.0): + /@webpack-contrib/schema-utils@1.0.0-beta.0(webpack@4.47.0): resolution: {integrity: sha512-LonryJP+FxQQHsjGBi6W786TQB1Oym+agTpY0c+Kj8alnIw+DLUJb6SI8Y1GHGhLCH1yPRrucjObUmxNICQ1pg==} engines: {node: '>= 6.9.0 || >= 8.9.0'} peerDependencies: @@ -18259,7 +18325,7 @@ packages: chalk: 2.4.2 strip-ansi: 4.0.0 text-table: 0.2.0 - webpack: 4.46.0(webpack-cli@5.0.0) + webpack: 4.47.0(webpack-cli@5.0.0) webpack-log: 1.2.0 dev: true @@ -18322,7 +18388,7 @@ packages: lodash.partialright: 4.2.1 lodash.pick: 4.4.0 lodash.uniq: 4.5.0 - resolve: 1.22.2 + resolve: 1.22.8 semver: 5.7.2 uglify-js: 2.8.29 when: 3.7.8 @@ -18509,7 +18575,7 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 17 dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 '@types/js-cookie': 2.2.7 ahooks-v3-count: 1.0.0 dayjs: 1.10.5 @@ -18519,28 +18585,28 @@ packages: react: 17.0.2 resize-observer-polyfill: 1.5.1 screenfull: 5.2.0 - tslib: 2.6.0 + tslib: 2.6.2 dev: false /airbnb-js-shims@2.2.1: resolution: {integrity: sha512-wJNXPH66U2xjgo1Zwyjf9EydvJ2Si94+vSdk6EERcBfB2VZkeltpqIats0cqIZMLCXP3zcyaUKGYQeIBT6XjsQ==} dependencies: - array-includes: 3.1.6 - array.prototype.flat: 1.3.1 - array.prototype.flatmap: 1.3.1 + array-includes: 3.1.7 + array.prototype.flat: 1.3.2 + array.prototype.flatmap: 1.3.2 es5-shim: 4.6.7 es6-shim: 0.35.8 - function.prototype.name: 1.1.5 + function.prototype.name: 1.1.6 globalthis: 1.0.3 - object.entries: 1.1.6 - object.fromentries: 2.0.6 - object.getownpropertydescriptors: 2.1.6 - object.values: 1.1.6 - promise.allsettled: 1.0.6 - promise.prototype.finally: 3.1.4 - string.prototype.matchall: 4.0.8 - string.prototype.padend: 3.1.4 - string.prototype.padstart: 3.1.4 + object.entries: 1.1.7 + object.fromentries: 2.0.7 + object.getownpropertydescriptors: 2.1.7 + object.values: 1.1.7 + promise.allsettled: 1.0.7 + promise.prototype.finally: 3.1.7 + string.prototype.matchall: 4.0.10 + string.prototype.padend: 3.1.5 + string.prototype.padstart: 3.1.5 symbol.prototype.description: 1.0.5 dev: true @@ -18549,12 +18615,12 @@ packages: peerDependencies: react: ^0.14 || ^15.0.0 || ^16.0.0-alpha || 17 dependencies: - array.prototype.find: 2.2.1 - function.prototype.name: 1.1.5 + array.prototype.find: 2.2.2 + function.prototype.name: 1.1.6 is-regex: 1.1.4 object-is: 1.1.5 object.assign: 4.1.4 - object.entries: 1.1.6 + object.entries: 1.1.7 prop-types: 15.8.1 prop-types-exact: 1.2.0 react: 16.14.0 @@ -18808,8 +18874,8 @@ packages: '@ant-design/colors': 6.0.0 '@ant-design/icons': 4.7.0(react-dom@16.14.0)(react@17.0.2) '@ant-design/react-slick': 0.29.2(react@17.0.2) - '@babel/runtime': 7.22.6 - '@ctrl/tinycolor': 3.6.0 + '@babel/runtime': 7.23.2 + '@ctrl/tinycolor': 3.6.1 classnames: 2.2.6 copy-to-clipboard: 3.3.2 lodash: 4.17.21 @@ -18826,15 +18892,15 @@ packages: rc-input-number: 7.3.11(react-dom@16.14.0)(react@17.0.2) rc-mentions: 1.13.1(react-dom@16.14.0)(react@17.0.2) rc-menu: 9.8.4(react-dom@16.14.0)(react@17.0.2) - rc-motion: 2.7.3(react-dom@16.14.0)(react@17.0.2) + rc-motion: 2.9.0(react-dom@16.14.0)(react@17.0.2) rc-notification: 4.6.1(react-dom@16.14.0)(react@17.0.2) rc-pagination: 3.2.0(react-dom@16.14.0)(react@17.0.2) - rc-picker: 2.7.2(react-dom@16.14.0)(react@17.0.2) + rc-picker: 2.7.6(react-dom@16.14.0)(react@17.0.2) rc-progress: 3.4.2(react-dom@16.14.0)(react@17.0.2) - rc-rate: 2.9.2(react-dom@16.14.0)(react@17.0.2) - rc-resize-observer: 1.3.1(react-dom@16.14.0)(react@17.0.2) + rc-rate: 2.9.3(react-dom@16.14.0)(react@17.0.2) + rc-resize-observer: 1.4.0(react-dom@16.14.0)(react@17.0.2) rc-segmented: 2.1.2(react-dom@16.14.0)(react@17.0.2) - rc-select: 14.1.17(react-dom@16.14.0)(react@17.0.2) + rc-select: 14.1.18(react-dom@16.14.0)(react@17.0.2) rc-slider: 10.0.1(react-dom@16.14.0)(react@17.0.2) rc-steps: 5.0.0(react-dom@16.14.0)(react@17.0.2) rc-switch: 3.2.2(react-dom@16.14.0)(react@17.0.2) @@ -18842,11 +18908,11 @@ packages: rc-tabs: 12.5.10(react-dom@16.14.0)(react@17.0.2) rc-textarea: 0.4.7(react-dom@16.14.0)(react@17.0.2) rc-tooltip: 5.2.2(react-dom@16.14.0)(react@17.0.2) - rc-tree: 5.7.9(react-dom@16.14.0)(react@17.0.2) + rc-tree: 5.7.12(react-dom@16.14.0)(react@17.0.2) rc-tree-select: 5.5.5(react-dom@16.14.0)(react@17.0.2) rc-trigger: 5.3.4(react-dom@16.14.0)(react@17.0.2) - rc-upload: 4.3.4(react-dom@16.14.0)(react@17.0.2) - rc-util: 5.34.1(react-dom@16.14.0)(react@17.0.2) + rc-upload: 4.3.5(react-dom@16.14.0)(react@17.0.2) + rc-util: 5.38.0(react-dom@16.14.0)(react@17.0.2) react: 17.0.2 react-dom: 16.14.0(react@17.0.2) scroll-into-view-if-needed: 2.2.31 @@ -18860,8 +18926,8 @@ packages: '@ant-design/colors': 6.0.0 '@ant-design/icons': 4.7.0(react-dom@17.0.2)(react@17.0.2) '@ant-design/react-slick': 0.29.2(react@17.0.2) - '@babel/runtime': 7.22.6 - '@ctrl/tinycolor': 3.6.0 + '@babel/runtime': 7.23.2 + '@ctrl/tinycolor': 3.6.1 classnames: 2.2.6 copy-to-clipboard: 3.3.2 lodash: 4.17.21 @@ -18878,15 +18944,15 @@ packages: rc-input-number: 7.3.11(react-dom@17.0.2)(react@17.0.2) rc-mentions: 1.13.1(react-dom@17.0.2)(react@17.0.2) rc-menu: 9.8.4(react-dom@17.0.2)(react@17.0.2) - rc-motion: 2.7.3(react-dom@17.0.2)(react@17.0.2) + rc-motion: 2.9.0(react-dom@17.0.2)(react@17.0.2) rc-notification: 4.6.1(react-dom@17.0.2)(react@17.0.2) rc-pagination: 3.2.0(react-dom@17.0.2)(react@17.0.2) - rc-picker: 2.7.2(react-dom@17.0.2)(react@17.0.2) + rc-picker: 2.7.6(react-dom@17.0.2)(react@17.0.2) rc-progress: 3.4.2(react-dom@17.0.2)(react@17.0.2) - rc-rate: 2.9.2(react-dom@17.0.2)(react@17.0.2) - rc-resize-observer: 1.3.1(react-dom@17.0.2)(react@17.0.2) + rc-rate: 2.9.3(react-dom@17.0.2)(react@17.0.2) + rc-resize-observer: 1.4.0(react-dom@17.0.2)(react@17.0.2) rc-segmented: 2.1.2(react-dom@17.0.2)(react@17.0.2) - rc-select: 14.1.17(react-dom@17.0.2)(react@17.0.2) + rc-select: 14.1.18(react-dom@17.0.2)(react@17.0.2) rc-slider: 10.0.1(react-dom@17.0.2)(react@17.0.2) rc-steps: 5.0.0(react-dom@17.0.2)(react@17.0.2) rc-switch: 3.2.2(react-dom@17.0.2)(react@17.0.2) @@ -18894,11 +18960,11 @@ packages: rc-tabs: 12.5.10(react-dom@17.0.2)(react@17.0.2) rc-textarea: 0.4.7(react-dom@17.0.2)(react@17.0.2) rc-tooltip: 5.2.2(react-dom@17.0.2)(react@17.0.2) - rc-tree: 5.7.9(react-dom@17.0.2)(react@17.0.2) + rc-tree: 5.7.12(react-dom@17.0.2)(react@17.0.2) rc-tree-select: 5.5.5(react-dom@17.0.2)(react@17.0.2) rc-trigger: 5.3.4(react-dom@17.0.2)(react@17.0.2) - rc-upload: 4.3.4(react-dom@17.0.2)(react@17.0.2) - rc-util: 5.34.1(react-dom@17.0.2)(react@17.0.2) + rc-upload: 4.3.5(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.38.0(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) scroll-into-view-if-needed: 2.2.31 @@ -18940,13 +19006,6 @@ packages: buffer-equal: 1.0.1 dev: true - /append-transform@1.0.0: - resolution: {integrity: sha512-P009oYkeHyU742iSZJzZZywj4QRJdnTWffaKuJQLablCZ1uz6/cW4yaRgcDaoQ+uwOxxnt0gRUcwfsNP2ri0gw==} - engines: {node: '>=4'} - dependencies: - default-require-extensions: 2.0.0 - dev: true - /aproba@1.2.0: resolution: {integrity: sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==} @@ -18957,10 +19016,6 @@ packages: /arch@2.2.0: resolution: {integrity: sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==} - /archy@1.0.0: - resolution: {integrity: sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw==} - dev: true - /are-we-there-yet@1.1.7: resolution: {integrity: sha512-nxwy40TuMiUGqMyRHgCSWZ9FM4VAoRP4xUYSTv5ImRog+h9yISPbVH7H8fASCIzYn9wlEv4zvFL7uKDMCFQm3g==} dependencies: @@ -19022,7 +19077,7 @@ packages: /array-buffer-byte-length@1.0.0: resolution: {integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==} dependencies: - call-bind: 1.0.2 + call-bind: 1.0.5 is-array-buffer: 3.0.2 /array-differ@1.0.0: @@ -19064,14 +19119,14 @@ packages: resolution: {integrity: sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==} dev: true - /array-includes@3.1.6: - resolution: {integrity: sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==} + /array-includes@3.1.7: + resolution: {integrity: sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.3 - get-intrinsic: 1.2.1 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + get-intrinsic: 1.2.2 is-string: 1.0.7 dev: true @@ -19118,78 +19173,101 @@ packages: resolution: {integrity: sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==} engines: {node: '>=0.10.0'} - /array.prototype.filter@1.0.2: - resolution: {integrity: sha512-us+UrmGOilqttSOgoWZTpOvHu68vZT2YCjc/H4vhu56vzZpaDFBhB+Se2UwqWzMKbDv7Myq5M5pcZLAtUvTQdQ==} + /array.prototype.filter@1.0.3: + resolution: {integrity: sha512-VizNcj/RGJiUyQBgzwxzE5oHdeuXY5hSbbmKMlphj1cy1Vl7Pn2asCGbSrru6hSQjmCzqTBPVWAF/whmEOVHbw==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.3 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 es-array-method-boxes-properly: 1.0.0 is-string: 1.0.7 dev: true - /array.prototype.find@2.2.1: - resolution: {integrity: sha512-I2ri5Z9uMpMvnsNrHre9l3PaX+z9D0/z6F7Yt2u15q7wt0I62g5kX6xUKR1SJiefgG+u2/gJUmM8B47XRvQR6w==} + /array.prototype.find@2.2.2: + resolution: {integrity: sha512-DRumkfW97iZGOfn+lIXbkVrXL04sfYKX+EfOodo8XboR5sxPDVvOjZTF/rysusa9lmhmSOeD6Vp6RKQP+eP4Tg==} + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + es-shim-unscopables: 1.0.2 + dev: true + + /array.prototype.findlastindex@1.2.3: + resolution: {integrity: sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==} + engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.3 - es-shim-unscopables: 1.0.0 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + es-shim-unscopables: 1.0.2 + get-intrinsic: 1.2.2 dev: true - /array.prototype.flat@1.3.1: - resolution: {integrity: sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==} + /array.prototype.flat@1.3.2: + resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.3 - es-shim-unscopables: 1.0.0 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + es-shim-unscopables: 1.0.2 dev: true - /array.prototype.flatmap@1.3.1: - resolution: {integrity: sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==} + /array.prototype.flatmap@1.3.2: + resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.3 - es-shim-unscopables: 1.0.0 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + es-shim-unscopables: 1.0.2 dev: true - /array.prototype.map@1.0.5: - resolution: {integrity: sha512-gfaKntvwqYIuC7mLLyv2wzZIJqrRhn5PZ9EfFejSx6a78sV7iDsGpG9P+3oUPtm1Rerqm6nrKS4FYuTIvWfo3g==} + /array.prototype.map@1.0.6: + resolution: {integrity: sha512-nK1psgF2cXqP3wSyCSq0Hc7zwNq3sfljQqaG27r/7a7ooNUnn5nGq6yYWyks9jMO5EoFQ0ax80hSg6oXSRNXaw==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.3 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 es-array-method-boxes-properly: 1.0.0 is-string: 1.0.7 dev: true - /array.prototype.reduce@1.0.5: - resolution: {integrity: sha512-kDdugMl7id9COE8R7MHF5jWk7Dqt/fs4Pv+JXoICnYwqpjjjbUurz6w5fT5IG6brLdJhv6/VoHB0H7oyIBXd+Q==} + /array.prototype.reduce@1.0.6: + resolution: {integrity: sha512-UW+Mz8LG/sPSU8jRDCjVr6J/ZKAGpHfwrZ6kWTG5qCxIEiXdVshqGnu5vEZA8S1y6X4aCSbQZ0/EEsfvEvBiSg==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.3 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 es-array-method-boxes-properly: 1.0.0 is-string: 1.0.7 dev: true - /array.prototype.tosorted@1.1.1: - resolution: {integrity: sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==} + /array.prototype.tosorted@1.1.2: + resolution: {integrity: sha512-HuQCHOlk1Weat5jzStICBCd83NxiIMwqDg/dHEsoefabn/hJRj5pVdWcPUSpRrwhwxZOsQassMpgN/xRYFBMIg==} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.3 - es-shim-unscopables: 1.0.0 - get-intrinsic: 1.2.1 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + es-shim-unscopables: 1.0.2 + get-intrinsic: 1.2.2 dev: true + /arraybuffer.prototype.slice@1.0.2: + resolution: {integrity: sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==} + engines: {node: '>= 0.4'} + dependencies: + array-buffer-byte-length: 1.0.0 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + get-intrinsic: 1.2.2 + is-array-buffer: 3.0.2 + is-shared-array-buffer: 1.0.2 + /arrify@1.0.1: resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==} engines: {node: '>=0.10.0'} @@ -19238,11 +19316,11 @@ packages: engines: {node: '>=0.8'} dev: true - /assert@1.5.0: - resolution: {integrity: sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==} + /assert@1.5.1: + resolution: {integrity: sha512-zzw1uCAgLbsKwBfFc8CX78DDg+xZeBksSO3vwVIDDN5i94eOrPsSSyiVhmsSABFDM/OcpE2aagCat9dnWQLG1A==} dependencies: - object-assign: 4.1.1 - util: 0.10.3 + object.assign: 4.1.4 + util: 0.10.4 /assign-symbols@1.0.0: resolution: {integrity: sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==} @@ -19272,24 +19350,18 @@ packages: engines: {node: '>=4'} dev: true - /ast-types@0.13.4: - resolution: {integrity: sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==} - engines: {node: '>=4'} - dependencies: - tslib: 2.6.0 - /ast-types@0.14.2: resolution: {integrity: sha512-O0yuUDnZeQDL+ncNGlJ78BiO4jnYI3bvMsD5prT0/nsgijG/LpNBIr63gTjVTNsiGkgQhiyCShTgxt8oXOrklA==} engines: {node: '>=4'} dependencies: - tslib: 2.6.0 + tslib: 2.6.2 dev: true /ast-types@0.15.2: resolution: {integrity: sha512-c27loCv9QkZinsa5ProX751khO9DJl/AcB5c2KNtA6NRvHKS0PgLfcftz72KVq504vB0Gku5s2kUZzDBvQWvHg==} engines: {node: '>=4'} dependencies: - tslib: 2.6.0 + tslib: 2.6.2 dev: false /astral-regex@1.0.0: @@ -19328,6 +19400,12 @@ packages: /async@3.2.4: resolution: {integrity: sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==} + /asynciterator.prototype@1.0.0: + resolution: {integrity: sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg==} + dependencies: + has-symbols: 1.0.3 + dev: true + /asynckit@0.4.0: resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} @@ -19363,24 +19441,25 @@ packages: glob: 7.2.3 minimatch: 3.1.2 printable: 0.0.3 - urllib: 2.40.0 + urllib: 2.41.0 transitivePeerDependencies: + - proxy-agent - supports-color dev: true - /autoprefixer@10.4.14(postcss@8.4.25): - resolution: {integrity: sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==} + /autoprefixer@10.4.16(postcss@8.4.31): + resolution: {integrity: sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==} engines: {node: ^10 || ^12 || >=14} hasBin: true peerDependencies: postcss: ^8.1.0 dependencies: - browserslist: 4.21.9 - caniuse-lite: 1.0.30001515 - fraction.js: 4.2.0 + browserslist: 4.22.1 + caniuse-lite: 1.0.30001554 + fraction.js: 4.3.7 normalize-range: 0.1.2 picocolors: 1.0.0 - postcss: 8.4.25 + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: true @@ -19389,8 +19468,8 @@ packages: engines: {node: '>=6.0.0'} hasBin: true dependencies: - browserslist: 4.21.9 - caniuse-lite: 1.0.30001515 + browserslist: 4.22.1 + caniuse-lite: 1.0.30001554 chalk: 2.4.2 normalize-range: 0.1.2 num2fraction: 1.2.2 @@ -19402,8 +19481,8 @@ packages: resolution: {integrity: sha512-eM9d/swFopRt5gdJ7jrpCwgvEMIayITpojhkkSMRsFHYuH5bkSQ4p/9qTEHtmNudUZh22Tehu7I6CxAW0IXTKA==} hasBin: true dependencies: - browserslist: 4.21.9 - caniuse-lite: 1.0.30001515 + browserslist: 4.22.1 + caniuse-lite: 1.0.30001554 normalize-range: 0.1.2 num2fraction: 1.2.2 picocolors: 0.2.1 @@ -19437,8 +19516,8 @@ packages: engines: {node: '>=4'} dev: true - /axe-core@4.7.2: - resolution: {integrity: sha512-zIURGIS1E1Q4pcrMjp+nnEh+16G56eG/MUllJH8yEvw7asDo7Ac9uhC9KIH5jzpITueEZolfYglnCGIuSBz39g==} + /axe-core@4.8.2: + resolution: {integrity: sha512-/dlp0fxyM3R8YW7MFzaHWXrf4zzbr0vaYb23VBFCl83R7nWNPg/yaQw2Dc8jzCMmDVLhSdzH8MjrsuIUuvX+6g==} engines: {node: '>=4'} dev: true @@ -19491,12 +19570,12 @@ packages: - supports-color dev: true - /babel-core@7.0.0-bridge.0(@babel/core@7.22.9): + /babel-core@7.0.0-bridge.0(@babel/core@7.23.2): resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 /babel-core@7.0.0-bridge.0(@babel/core@7.4.4): resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==} @@ -19710,7 +19789,7 @@ packages: '@babel/core': 7.4.5 '@jest/transform': 24.9.0 '@jest/types': 24.9.0 - '@types/babel__core': 7.20.1 + '@types/babel__core': 7.20.3 babel-plugin-istanbul: 5.2.0 babel-preset-jest: 24.9.0(@babel/core@7.4.5) chalk: 2.4.2 @@ -19728,7 +19807,7 @@ packages: '@babel/core': 7.18.6 '@jest/transform': 26.6.2 '@jest/types': 26.6.2 - '@types/babel__core': 7.20.1 + '@types/babel__core': 7.20.3 babel-plugin-istanbul: 6.1.1 babel-preset-jest: 26.6.2(@babel/core@7.18.6) chalk: 4.1.2 @@ -19738,17 +19817,17 @@ packages: - supports-color dev: false - /babel-jest@29.6.1(@babel/core@7.22.9): - resolution: {integrity: sha512-qu+3bdPEQC6KZSPz+4Fyjbga5OODNcp49j6GKzG1EKbkfyJBxEYGVUmVGpwCSeGouG52R4EgYMLb6p9YeEEQ4A==} + /babel-jest@29.7.0(@babel/core@7.23.2): + resolution: {integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: '@babel/core': ^7.8.0 dependencies: - '@babel/core': 7.22.9 - '@jest/transform': 29.6.1 - '@types/babel__core': 7.20.1 + '@babel/core': 7.23.2 + '@jest/transform': 29.7.0 + '@types/babel__core': 7.20.3 babel-plugin-istanbul: 6.1.1 - babel-preset-jest: 29.5.0(@babel/core@7.22.9) + babel-preset-jest: 29.6.3(@babel/core@7.23.2) chalk: 4.1.2 graceful-fs: 4.2.11 slash: 3.0.0 @@ -19756,7 +19835,7 @@ packages: - supports-color dev: true - /babel-loader@8.2.5(@babel/core@7.2.2)(webpack@4.46.0): + /babel-loader@8.2.5(@babel/core@7.2.2)(webpack@4.47.0): resolution: {integrity: sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ==} engines: {node: '>= 8.9'} peerDependencies: @@ -19768,17 +19847,17 @@ packages: loader-utils: 2.0.4 make-dir: 3.1.0 schema-utils: 2.7.1 - webpack: 4.46.0(webpack-cli@5.0.0) + webpack: 4.47.0(webpack-cli@5.0.0) dev: true - /babel-loader@8.2.5(@babel/core@7.22.9)(webpack@5.88.0): + /babel-loader@8.2.5(@babel/core@7.23.2)(webpack@5.88.0): resolution: {integrity: sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ==} engines: {node: '>= 8.9'} peerDependencies: '@babel/core': ^7.0.0 webpack: '>=2' dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 find-cache-dir: 3.3.2 loader-utils: 2.0.4 make-dir: 3.1.0 @@ -19786,7 +19865,7 @@ packages: webpack: 5.88.0(webpack-cli@5.0.0) dev: true - /babel-loader@8.2.5(@babel/core@7.4.4)(webpack@4.46.0): + /babel-loader@8.2.5(@babel/core@7.4.4)(webpack@4.47.0): resolution: {integrity: sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ==} engines: {node: '>= 8.9'} peerDependencies: @@ -19798,7 +19877,7 @@ packages: loader-utils: 2.0.4 make-dir: 3.1.0 schema-utils: 2.7.1 - webpack: 4.46.0(webpack-cli@5.0.0) + webpack: 4.47.0(webpack-cli@5.0.0) dev: true /babel-messages@6.23.0: @@ -19844,7 +19923,7 @@ packages: /babel-plugin-emotion@10.2.2: resolution: {integrity: sha512-SMSkGoqTbTyUTDeuVuPIWifPdUGkTk1Kf9BWRiXIOIcuyMfsdp2EjeiiFvOzX8NOBvEh/ypKYvUh2rkgAJMCLA==} dependencies: - '@babel/helper-module-imports': 7.22.5 + '@babel/helper-module-imports': 7.22.15 '@emotion/hash': 0.8.0 '@emotion/memoize': 0.7.4 '@emotion/serialize': 0.11.16 @@ -19859,10 +19938,10 @@ packages: /babel-plugin-export-metadata@1.2.0: resolution: {integrity: sha512-rOTzhs/rXbuYMm4e8uTgAvTUw8H7QdU8maFy1ClArp/j8cpgzB80/oixQFiT/KAlLB+6ygLxr3befj97k2WppA==} dependencies: - '@babel/cli': 7.22.9(@babel/core@7.4.4) + '@babel/cli': 7.23.0(@babel/core@7.4.4) '@babel/core': 7.4.4 - '@babel/preset-env': 7.22.9(@babel/core@7.4.4) - '@babel/template': 7.22.5 + '@babel/preset-env': 7.23.2(@babel/core@7.4.4) + '@babel/template': 7.22.15 babel-core: 7.0.0-bridge.0(@babel/core@7.4.4) lodash: 4.17.21 transitivePeerDependencies: @@ -19903,43 +19982,43 @@ packages: resolution: {integrity: sha512-2EMA2P8Vp7lG0RAzr4HXqtYwacfMErOuv1U3wrvxHX6rD1sV6xS3WXG3r8TRQ2r6w8OhvSdWt+z41hQNwNm3Xw==} engines: {node: '>= 6'} dependencies: - '@types/babel__traverse': 7.20.1 + '@types/babel__traverse': 7.20.3 dev: true /babel-plugin-jest-hoist@26.6.2: resolution: {integrity: sha512-PO9t0697lNTmcEHH69mdtYiOIkkOlj9fySqfO3K1eCcdISevLAE0xY59VLLUj0SoiPiTX/JU2CYFpILydUa5Lw==} engines: {node: '>= 10.14.2'} dependencies: - '@babel/template': 7.22.5 - '@babel/types': 7.22.5 - '@types/babel__core': 7.20.1 - '@types/babel__traverse': 7.20.1 + '@babel/template': 7.22.15 + '@babel/types': 7.23.0 + '@types/babel__core': 7.20.3 + '@types/babel__traverse': 7.20.3 dev: false - /babel-plugin-jest-hoist@29.5.0: - resolution: {integrity: sha512-zSuuuAlTMT4mzLj2nPnUm6fsE6270vdOfnpbJ+RmruU75UhLFvL0N2NgI7xpeS7NaB6hGqmd5pVpGTDYvi4Q3w==} + /babel-plugin-jest-hoist@29.6.3: + resolution: {integrity: sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@babel/template': 7.22.5 - '@babel/types': 7.22.5 - '@types/babel__core': 7.20.1 - '@types/babel__traverse': 7.20.1 + '@babel/template': 7.22.15 + '@babel/types': 7.23.0 + '@types/babel__core': 7.20.3 + '@types/babel__traverse': 7.20.3 dev: true /babel-plugin-macros@2.6.1: resolution: {integrity: sha512-6W2nwiXme6j1n2erPOnmRiWfObUhWH7Qw1LMi9XZy8cj+KtESu3T6asZvtk5bMQQjX8te35o7CFueiSdL/2NmQ==} dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.4.5 cosmiconfig: 5.2.1 - resolve: 1.22.2 + resolve: 1.22.8 dev: true /babel-plugin-macros@2.8.0: resolution: {integrity: sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==} dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 cosmiconfig: 6.0.0 - resolve: 1.22.2 + resolve: 1.22.8 dev: true /babel-plugin-minify-builtins@0.5.0: @@ -20015,7 +20094,7 @@ packages: glob: 7.2.3 pkg-up: 2.0.0 reselect: 3.0.1 - resolve: 1.22.2 + resolve: 1.22.8 dev: true /babel-plugin-module-resolver@4.1.0: @@ -20026,15 +20105,15 @@ packages: glob: 7.2.3 pkg-up: 3.1.0 reselect: 4.1.8 - resolve: 1.22.2 + resolve: 1.22.8 dev: true - /babel-plugin-named-asset-import@0.3.8(@babel/core@7.22.9): + /babel-plugin-named-asset-import@0.3.8(@babel/core@7.23.2): resolution: {integrity: sha512-WXiAc++qo7XcJ1ZnTYGtLxmBCVbddAml3CEXgWaBzNzLNoxtQ8AiGEFDMOhot9XjTCQbvP5E77Fj9Gk924f00Q==} peerDependencies: '@babel/core': ^7.1.0 dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 dev: true /babel-plugin-named-asset-import@0.3.8(@babel/core@7.4.4): @@ -20050,7 +20129,7 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/compat-data': 7.22.9 + '@babel/compat-data': 7.23.2 '@babel/core': 7.18.2 '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.18.2) semver: 6.3.1 @@ -20058,27 +20137,27 @@ packages: - supports-color dev: true - /babel-plugin-polyfill-corejs2@0.4.4(@babel/core@7.22.9): - resolution: {integrity: sha512-9WeK9snM1BfxB38goUEv2FLnA6ja07UMfazFHzCXUb3NyDZAwfXvQiURQ6guTTMeHcOsdknULm1PDhs4uWtKyA==} + /babel-plugin-polyfill-corejs2@0.4.6(@babel/core@7.23.2): + resolution: {integrity: sha512-jhHiWVZIlnPbEUKSSNb9YoWcQGdlTLq7z1GHL4AjFxaoOUMuuEVJ+Y4pAaQUGOGk93YsVCKPbqbfw3m0SM6H8Q==} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: - '@babel/compat-data': 7.22.9 - '@babel/core': 7.22.9 - '@babel/helper-define-polyfill-provider': 0.4.1(@babel/core@7.22.9) - '@nicolo-ribaudo/semver-v6': 6.3.3 + '@babel/compat-data': 7.23.2 + '@babel/core': 7.23.2 + '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.2) + semver: 6.3.1 transitivePeerDependencies: - supports-color - /babel-plugin-polyfill-corejs2@0.4.4(@babel/core@7.4.4): - resolution: {integrity: sha512-9WeK9snM1BfxB38goUEv2FLnA6ja07UMfazFHzCXUb3NyDZAwfXvQiURQ6guTTMeHcOsdknULm1PDhs4uWtKyA==} + /babel-plugin-polyfill-corejs2@0.4.6(@babel/core@7.4.4): + resolution: {integrity: sha512-jhHiWVZIlnPbEUKSSNb9YoWcQGdlTLq7z1GHL4AjFxaoOUMuuEVJ+Y4pAaQUGOGk93YsVCKPbqbfw3m0SM6H8Q==} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: - '@babel/compat-data': 7.22.9 + '@babel/compat-data': 7.23.2 '@babel/core': 7.4.4 - '@babel/helper-define-polyfill-provider': 0.4.1(@babel/core@7.4.4) - '@nicolo-ribaudo/semver-v6': 6.3.3 + '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.4.4) + semver: 6.3.1 transitivePeerDependencies: - supports-color dev: true @@ -20090,30 +20169,30 @@ packages: dependencies: '@babel/core': 7.18.2 '@babel/helper-define-polyfill-provider': 0.3.3(@babel/core@7.18.2) - core-js-compat: 3.31.1 + core-js-compat: 3.33.1 transitivePeerDependencies: - supports-color dev: true - /babel-plugin-polyfill-corejs3@0.8.2(@babel/core@7.22.9): - resolution: {integrity: sha512-Cid+Jv1BrY9ReW9lIfNlNpsI53N+FN7gE+f73zLAUbr9C52W4gKLWSByx47pfDJsEysojKArqOtOKZSVIIUTuQ==} + /babel-plugin-polyfill-corejs3@0.8.6(@babel/core@7.23.2): + resolution: {integrity: sha512-leDIc4l4tUgU7str5BWLS2h8q2N4Nf6lGZP6UrNDxdtfF2g69eJ5L0H7S8A5Ln/arfFAfHor5InAdZuIOwZdgQ==} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: - '@babel/core': 7.22.9 - '@babel/helper-define-polyfill-provider': 0.4.1(@babel/core@7.22.9) - core-js-compat: 3.31.1 + '@babel/core': 7.23.2 + '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.2) + core-js-compat: 3.33.1 transitivePeerDependencies: - supports-color - /babel-plugin-polyfill-corejs3@0.8.2(@babel/core@7.4.4): - resolution: {integrity: sha512-Cid+Jv1BrY9ReW9lIfNlNpsI53N+FN7gE+f73zLAUbr9C52W4gKLWSByx47pfDJsEysojKArqOtOKZSVIIUTuQ==} + /babel-plugin-polyfill-corejs3@0.8.6(@babel/core@7.4.4): + resolution: {integrity: sha512-leDIc4l4tUgU7str5BWLS2h8q2N4Nf6lGZP6UrNDxdtfF2g69eJ5L0H7S8A5Ln/arfFAfHor5InAdZuIOwZdgQ==} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: '@babel/core': 7.4.4 - '@babel/helper-define-polyfill-provider': 0.4.1(@babel/core@7.4.4) - core-js-compat: 3.31.1 + '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.4.4) + core-js-compat: 3.33.1 transitivePeerDependencies: - supports-color dev: true @@ -20129,23 +20208,23 @@ packages: - supports-color dev: true - /babel-plugin-polyfill-regenerator@0.5.1(@babel/core@7.22.9): - resolution: {integrity: sha512-L8OyySuI6OSQ5hFy9O+7zFjyr4WhAfRjLIOkhQGYl+emwJkd/S4XXT1JpfrgR1jrQ1NcGiOh+yAdGlF8pnC3Jw==} + /babel-plugin-polyfill-regenerator@0.5.3(@babel/core@7.23.2): + resolution: {integrity: sha512-8sHeDOmXC8csczMrYEOf0UTNa4yE2SxV5JGeT/LP1n0OYVDUUFPxG9vdk2AlDlIit4t+Kf0xCtpgXPBwnn/9pw==} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: - '@babel/core': 7.22.9 - '@babel/helper-define-polyfill-provider': 0.4.1(@babel/core@7.22.9) + '@babel/core': 7.23.2 + '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.2) transitivePeerDependencies: - supports-color - /babel-plugin-polyfill-regenerator@0.5.1(@babel/core@7.4.4): - resolution: {integrity: sha512-L8OyySuI6OSQ5hFy9O+7zFjyr4WhAfRjLIOkhQGYl+emwJkd/S4XXT1JpfrgR1jrQ1NcGiOh+yAdGlF8pnC3Jw==} + /babel-plugin-polyfill-regenerator@0.5.3(@babel/core@7.4.4): + resolution: {integrity: sha512-8sHeDOmXC8csczMrYEOf0UTNa4yE2SxV5JGeT/LP1n0OYVDUUFPxG9vdk2AlDlIit4t+Kf0xCtpgXPBwnn/9pw==} peerDependencies: - '@babel/core': ^7.0.0-0 + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 dependencies: '@babel/core': 7.4.4 - '@babel/helper-define-polyfill-provider': 0.4.1(@babel/core@7.4.4) + '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.4.4) transitivePeerDependencies: - supports-color dev: true @@ -20180,30 +20259,30 @@ packages: resolution: {integrity: sha512-kDXhW2iPTL81x4Ye2aUMdEXQ56JP0sBJmRQRXJPH5FsNB7fOc/YCsHTqHv8IovPyw9Rk07gdd7MVUz8tUmRBCA==} dev: true - /babel-plugin-styled-components@2.1.1(styled-components@6.0.4): + /babel-plugin-styled-components@2.1.1(styled-components@6.1.0): resolution: {integrity: sha512-c8lJlszObVQPguHkI+akXv8+Jgb9Ccujx0EetL7oIvwU100LxO6XAGe45qry37wUL40a5U9f23SYrivro2XKhA==} peerDependencies: styled-components: '>= 2' dependencies: '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-module-imports': 7.22.5 + '@babel/helper-module-imports': 7.22.15 babel-plugin-syntax-jsx: 6.18.0 lodash: 4.17.21 picomatch: 2.3.1 - styled-components: 6.0.4(react-dom@17.0.2)(react@17.0.2) + styled-components: 6.1.0(react-dom@17.0.2)(react@17.0.2) dev: true - /babel-plugin-styled-components@2.1.4(@babel/core@7.22.9)(styled-components@4.4.1): + /babel-plugin-styled-components@2.1.4(@babel/core@7.23.2)(styled-components@4.4.1): resolution: {integrity: sha512-Xgp9g+A/cG47sUyRwwYxGM4bR/jDRg5N6it/8+HxCnbT5XNKSKDT9xm4oag/osgqjC2It/vH0yXsomOG6k558g==} peerDependencies: styled-components: '>= 2' dependencies: '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-module-imports': 7.22.5 - '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.9) + '@babel/helper-module-imports': 7.22.15 + '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.2) lodash: 4.17.21 picomatch: 2.3.1 - styled-components: 4.4.1(@babel/core@7.22.9)(react-dom@16.14.0)(react@17.0.2) + styled-components: 4.4.1(@babel/core@7.23.2)(react-dom@16.14.0)(react@17.0.2) transitivePeerDependencies: - '@babel/core' dev: true @@ -20549,10 +20628,10 @@ packages: babel-runtime: 6.26.0 dev: true - /babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.22.9): + /babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.23.2): resolution: {integrity: sha512-g4aaCrDDOsWjbm0PUUeVnkcVd6AKJsVc/MbnPhEotEpkeJQP6b8nzewohQi7+QS8UyPehOhGWn0nOwjvWpmMvQ==} dependencies: - '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.22.9) + '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.23.2) transitivePeerDependencies: - '@babel/core' dev: false @@ -20699,24 +20778,24 @@ packages: '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.18.6) dev: false - /babel-preset-current-node-syntax@1.0.1(@babel/core@7.22.9): + /babel-preset-current-node-syntax@1.0.1(@babel/core@7.23.2): resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.9 - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.9) - '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.22.9) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.22.9) - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.22.9) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.9) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.9) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.9) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.9) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.9) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.9) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.9) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.22.9) + '@babel/core': 7.23.2 + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.2) + '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.2) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.2) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.2) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.2) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.2) dev: true /babel-preset-docz@0.13.6: @@ -20779,38 +20858,38 @@ packages: - supports-color dev: true - /babel-preset-fbjs@3.4.0(@babel/core@7.22.9): + /babel-preset-fbjs@3.4.0(@babel/core@7.23.2): resolution: {integrity: sha512-9ywCsCvo1ojrw0b+XYk7aFvTH6D9064t0RIL1rtMf3nsa02Xw41MS7sZw216Im35xj/UY0PDBQsa1brUDDF1Ow==} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.9 - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.9) - '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.22.9) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.22.9) - '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.9) - '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-block-scoped-functions': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-block-scoping': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-classes': 7.22.6(@babel/core@7.22.9) - '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-destructuring': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-for-of': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-member-expression-literals': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-modules-commonjs': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-object-super': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-property-literals': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-react-jsx': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.22.9) + '@babel/core': 7.23.2 + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.23.2) + '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.23.2) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.2) + '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-block-scoped-functions': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-block-scoping': 7.23.0(@babel/core@7.23.2) + '@babel/plugin-transform-classes': 7.22.15(@babel/core@7.23.2) + '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-destructuring': 7.23.0(@babel/core@7.23.2) + '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-for-of': 7.22.15(@babel/core@7.23.2) + '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-member-expression-literals': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-modules-commonjs': 7.23.0(@babel/core@7.23.2) + '@babel/plugin-transform-object-super': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-parameters': 7.22.15(@babel/core@7.23.2) + '@babel/plugin-transform-property-literals': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.23.2) + '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.23.2) babel-plugin-syntax-trailing-function-commas: 7.0.0-beta.0 dev: false @@ -20842,15 +20921,15 @@ packages: babel-preset-current-node-syntax: 1.0.1(@babel/core@7.18.6) dev: false - /babel-preset-jest@29.5.0(@babel/core@7.22.9): - resolution: {integrity: sha512-JOMloxOqdiBSxMAzjRaH023/vvcaSaec49zvg+2LmNsktC7ei39LTJGw02J+9uUtTZUq6xbLyJ4dxe9sSmIuAg==} + /babel-preset-jest@29.6.3(@babel/core@7.23.2): + resolution: {integrity: sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.22.9 - babel-plugin-jest-hoist: 29.5.0 - babel-preset-current-node-syntax: 1.0.1(@babel/core@7.22.9) + '@babel/core': 7.23.2 + babel-plugin-jest-hoist: 29.6.3 + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.2) dev: true /babel-preset-minify@0.5.2: @@ -21134,8 +21213,8 @@ packages: /big.js@5.2.2: resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==} - /bignumber.js@9.1.1: - resolution: {integrity: sha512-pHm4LsMJ6lzgNGVfZHjMoO8sdoRhOzOH4MLmY65Jg70bpxCKu5iOHNJyfF6OyvYw7t8Fpf35RuzUyqnQsj8Vig==} + /bignumber.js@9.1.2: + resolution: {integrity: sha512-2/mKyZH9K85bzOEfhXDBFZTGd1CTs+5IHpeFQo9luiBG7hghdC851Pj2WAhb6E3R6b9tZj/XKhbg4fum+Kepug==} dev: false /bin-links@1.1.8: @@ -21353,8 +21432,9 @@ packages: bn.js: 5.2.1 randombytes: 2.1.0 - /browserify-sign@4.2.1: - resolution: {integrity: sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==} + /browserify-sign@4.2.2: + resolution: {integrity: sha512-1rudGyeYY42Dk6texmv7c4VcQ0EsvVbLwZkA+AQB7SxvXxmcD93jcHie8bzecJ+ChDlmAm2Qyu0+Ccg5uhZXCg==} + engines: {node: '>= 4'} dependencies: bn.js: 5.2.1 browserify-rsa: 4.1.0 @@ -21375,26 +21455,26 @@ packages: resolution: {integrity: sha512-WHVocJYavUwVgVViC0ORikPHQquXwVh939TaelZ4WDqpWgTX/FsGhl/+P4qBUAGcRvtOgDgC+xftNWWp2RUTAQ==} hasBin: true dependencies: - caniuse-lite: 1.0.30001515 - electron-to-chromium: 1.4.459 + caniuse-lite: 1.0.30001554 + electron-to-chromium: 1.4.567 dev: true - /browserslist@4.21.9: - resolution: {integrity: sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg==} + /browserslist@4.22.1: + resolution: {integrity: sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==} engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true dependencies: - caniuse-lite: 1.0.30001515 - electron-to-chromium: 1.4.459 + caniuse-lite: 1.0.30001554 + electron-to-chromium: 1.4.567 node-releases: 2.0.13 - update-browserslist-db: 1.0.11(browserslist@4.21.9) + update-browserslist-db: 1.0.13(browserslist@4.22.1) /browserslist@4.4.1: resolution: {integrity: sha512-pEBxEXg7JwaakBXjATYw/D1YZh4QUSCX/Mnd/wnqSRPPSi1U39iDhDoKGoBUcraKdxDlrYqJxSI5nNvD+dWP2A==} hasBin: true dependencies: - caniuse-lite: 1.0.30001515 - electron-to-chromium: 1.4.459 + caniuse-lite: 1.0.30001554 + electron-to-chromium: 1.4.567 node-releases: 1.1.77 dev: true @@ -21402,8 +21482,8 @@ packages: resolution: {integrity: sha512-9rGNDtnj+HaahxiVV38Gn8n8Lr8REKsel68v1sPFfIGEK6uSXTY3h9acgiT1dZVtOOUtifo/Dn8daDQ5dUgVsA==} hasBin: true dependencies: - caniuse-lite: 1.0.30001515 - electron-to-chromium: 1.4.459 + caniuse-lite: 1.0.30001554 + electron-to-chromium: 1.4.567 node-releases: 1.1.77 dev: true @@ -21542,11 +21622,11 @@ packages: find-up: 5.0.0 foreground-child: 2.0.0 istanbul-lib-coverage: 3.2.0 - istanbul-lib-report: 3.0.0 - istanbul-reports: 3.1.5 + istanbul-lib-report: 3.0.1 + istanbul-reports: 3.1.6 rimraf: 3.0.2 test-exclude: 6.0.0 - v8-to-istanbul: 9.1.0 + v8-to-istanbul: 9.1.3 yargs: 16.2.0 yargs-parser: 20.2.9 dev: true @@ -21672,7 +21752,7 @@ packages: ylru: 1.3.2 dev: false - /cache-loader@2.0.1(webpack@4.46.0): + /cache-loader@2.0.1(webpack@4.47.0): resolution: {integrity: sha512-V99T3FOynmGx26Zom+JrVBytLBsmUCzVG2/4NnUKgvXN4bEV42R1ERl1IyiH/cvFIDA1Ytq2lPZ9tXDSahcQpQ==} engines: {node: '>= 6.9.0'} peerDependencies: @@ -21683,10 +21763,10 @@ packages: neo-async: 2.6.2 normalize-path: 3.0.0 schema-utils: 1.0.0 - webpack: 4.46.0(webpack-cli@5.0.0) + webpack: 4.47.0(webpack-cli@5.0.0) dev: true - /cache-loader@3.0.1(webpack@4.46.0): + /cache-loader@3.0.1(webpack@4.47.0): resolution: {integrity: sha512-HzJIvGiGqYsFUrMjAJNDbVZoG7qQA+vy9AIoKs7s9DscNfki0I589mf2w6/tW+kkFH3zyiknoWV5Jdynu6b/zw==} engines: {node: '>= 6.9.0'} peerDependencies: @@ -21698,7 +21778,7 @@ packages: mkdirp: 0.5.6 neo-async: 2.6.2 schema-utils: 1.0.0 - webpack: 4.46.0(webpack-cli@5.0.0) + webpack: 4.47.0(webpack-cli@5.0.0) dev: true /cacheable-request@6.1.0: @@ -21714,21 +21794,12 @@ packages: responselike: 1.0.2 dev: true - /caching-transform@3.0.2: - resolution: {integrity: sha512-Mtgcv3lh3U0zRii/6qVgQODdPA4G3zhG+jtbCWj39RXuUFTMzH0vcdMtaJS1jPowd+It2Pqr6y3NJMQqOqCE2w==} - engines: {node: '>=6'} + /call-bind@1.0.5: + resolution: {integrity: sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==} dependencies: - hasha: 3.0.0 - make-dir: 2.1.0 - package-hash: 3.0.0 - write-file-atomic: 2.4.3 - dev: true - - /call-bind@1.0.2: - resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==} - dependencies: - function-bind: 1.1.1 - get-intrinsic: 1.2.1 + function-bind: 1.1.2 + get-intrinsic: 1.2.2 + set-function-length: 1.1.1 /call-matcher@1.1.0: resolution: {integrity: sha512-IoQLeNwwf9KTNbtSA7aEBb1yfDbdnzwjCetjkC8io5oGeOmK2CBNdg0xr+tadRYKO0p7uQyZzvon0kXlZbvGrw==} @@ -21778,7 +21849,7 @@ packages: resolution: {integrity: sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==} dependencies: pascal-case: 3.1.2 - tslib: 2.6.0 + tslib: 2.6.2 /camelcase-css@2.0.1: resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} @@ -21834,14 +21905,14 @@ packages: /caniuse-api@3.0.0: resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==} dependencies: - browserslist: 4.21.9 - caniuse-lite: 1.0.30001515 + browserslist: 4.22.1 + caniuse-lite: 1.0.30001554 lodash.memoize: 4.1.2 lodash.uniq: 4.5.0 dev: true - /caniuse-lite@1.0.30001515: - resolution: {integrity: sha512-eEFDwUOZbE24sb+Ecsx3+OvNETqjWIdabMy52oOkIgcUtAsQifjUG9q4U9dgTHJM2mfk4uEPxc0+xuFdJ629QA==} + /caniuse-lite@1.0.30001554: + resolution: {integrity: sha512-A2E3U//MBwbJVzebddm1YfNp7Nud5Ip+IPn4BozBmn4KqVX7AvluoIDFWjsv5OkGnKUXQVmMSoMKLa3ScCblcQ==} /capitalize@2.0.4: resolution: {integrity: sha512-wcSyiFqXRYyCoqu0o0ekXzJAKCLMkqWS5QWGlgTJFJKwRmI6pzcN2hBl5VPq9RzLW5Uf4FF/V/lcFfjCtVak2w==} @@ -22054,7 +22125,7 @@ packages: normalize-path: 3.0.0 readdirp: 3.5.0 optionalDependencies: - fsevents: 2.3.2 + fsevents: 2.3.3 /chokidar@3.5.3: resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==} @@ -22068,7 +22139,7 @@ packages: normalize-path: 3.0.0 readdirp: 3.6.0 optionalDependencies: - fsevents: 2.3.2 + fsevents: 2.3.3 dev: true /chownr@1.1.4: @@ -22084,8 +22155,8 @@ packages: /ci-info@2.0.0: resolution: {integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==} - /ci-info@3.8.0: - resolution: {integrity: sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==} + /ci-info@3.9.0: + resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==} engines: {node: '>=8'} /cipher-base@1.0.4: @@ -22170,8 +22241,8 @@ packages: resolution: {integrity: sha512-1QL4544moEsDVH9T/l6Cemov/37iv1RtoKf7NJ04A60+4MREXNfx/QvavbH6QoGdsD4N4Mwy49cmaINR/o2mdg==} engines: {node: '>=4'} - /cli-spinners@2.9.0: - resolution: {integrity: sha512-4/aL9X3Wh0yiMQlE+eeRhWP6vclO3QRtw1JHKIT0FFUs5FjpFmESqtMvYZ0+lbzBw900b95mS0hohy+qn2VK/g==} + /cli-spinners@2.9.1: + resolution: {integrity: sha512-jHgecW0pxkonBJdrKsqxgRX9AcG+u/5k0Q7WPDfi8AogLAdwxEkyYYNWwZ5GvVFoFx2uiY1eNcSK00fh+1+FyQ==} engines: {node: '>=6'} dev: false @@ -22193,6 +22264,10 @@ packages: engines: {node: '>= 10'} dev: true + /client-only@0.0.1: + resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==} + dev: false + /clipboard@1.7.1: resolution: {integrity: sha512-smkaRaIQsrnKN1F3wd1/vY9Q+DeR4L8ZCXKeHCFC2j8RZuSBbuImcLdnIO4GTxmzJxQuDGNKkyfpGoPW7Ua5bQ==} requiresBuild: true @@ -22358,7 +22433,7 @@ packages: mz-modules: 2.1.0 sdk-base: 3.6.0 serialize-json: 1.0.3 - tcp-base: 3.1.1 + tcp-base: 3.2.0 utility: 1.18.0 transitivePeerDependencies: - supports-color @@ -22379,7 +22454,7 @@ packages: /co-body@6.1.0: resolution: {integrity: sha512-m7pOT6CdLN7FuXUcpuz/8lfQ/L77x8SchHCF4G0RBTJO20Wzmhn5Sp4/5WsKy8OSpifBSUrmg83qEqaDHdyFuQ==} dependencies: - inflation: 2.0.0 + inflation: 2.1.0 qs: 6.5.3 raw-body: 2.5.2 type-is: 1.6.18 @@ -22391,7 +22466,7 @@ packages: black-hole-stream: 0.0.1 busboy: 0.2.14 chan: 0.6.1 - inflation: 2.0.0 + inflation: 2.1.0 dev: false /co-mocha@1.2.2(mocha@5.2.0): @@ -22412,7 +22487,7 @@ packages: resolution: {integrity: sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==} engines: {node: '>= 4.0'} dependencies: - '@types/q': 1.5.5 + '@types/q': 1.5.7 chalk: 2.4.2 q: 1.5.1 dev: true @@ -22431,8 +22506,8 @@ packages: resolution: {integrity: sha512-pxzYiTxwOa3R+ApqdfSZSe6c87GTTp0ljy9y3120HnnsSOaaAyRp/eOnvD/F7FwhG2FoPRDcZgTwfNtOAnyJIg==} dev: false - /codemirror@5.65.13: - resolution: {integrity: sha512-SVWEzKXmbHmTQQWaz03Shrh4nybG0wXx2MEu3FO4ezbPW8IbnZEd5iGHGEffSUaitKYa3i+pHpBsSvw8sPHtzg==} + /codemirror@5.65.15: + resolution: {integrity: sha512-YC4EHbbwQeubZzxLl5G4nlbLc1T21QTrKGaOal/Pkm9dVDMZXMH7+ieSPEOZCtO9I68i8/oteJKOxzHC2zR+0g==} dev: true /codepage@1.14.0: @@ -22489,7 +22564,7 @@ packages: codesandboxer: 0.7.2 meow: 5.0.0 pkg-dir: 2.0.0 - resolve: 1.22.2 + resolve: 1.22.8 transitivePeerDependencies: - encoding dev: true @@ -22501,7 +22576,7 @@ packages: codesandboxer: 1.0.3 meow: 5.0.0 pkg-dir: 2.0.0 - resolve: 1.22.2 + resolve: 1.22.8 transitivePeerDependencies: - encoding dev: true @@ -22622,6 +22697,11 @@ packages: resolution: {integrity: sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w==} dev: false + /commander@11.1.0: + resolution: {integrity: sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==} + engines: {node: '>=16'} + dev: true + /commander@2.13.0: resolution: {integrity: sha512-MVuS359B+YzaWqjCL/c+22gfryv+mCBPHAv3zyVI2GN8EY6IRP8VwtasXn8jyyhvvq84R4ImN1OKRtcbIasjYA==} dev: false @@ -22902,7 +22982,6 @@ packages: /convert-source-map@2.0.0: resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} - dev: true /cookie-signature@1.0.6: resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==} @@ -22961,13 +23040,13 @@ packages: /copy-to@2.0.1: resolution: {integrity: sha512-3DdaFaU/Zf1AnpLiFDeNCD4TOWe3Zl2RZaTzUvWiIk5ERzcCodOE20Vqq4fzCbNoHURFHT4/us/Lfq+S2zyY4w==} - /core-js-compat@3.31.1: - resolution: {integrity: sha512-wIDWd2s5/5aJSdpOJHfSibxNODxoGoWOBHt8JSPB41NOE94M7kuTPZCYLOlTtuoXTsBPKobpJ6T+y0SSy5L9SA==} + /core-js-compat@3.33.1: + resolution: {integrity: sha512-6pYKNOgD/j/bkC5xS5IIg6bncid3rfrI42oBH1SQJbsmYPKF7rhzcFzYCcxYMmNQQ0rCEB8WqpW7QHndOggaeQ==} dependencies: - browserslist: 4.21.9 + browserslist: 4.22.1 - /core-js-pure@3.31.1: - resolution: {integrity: sha512-w+C62kvWti0EPs4KPMCMVv9DriHSXfQOCQ94bGGBiEW5rrbtt/Rz8n5Krhfw9cpFyzXBjf3DB3QnPdEzGDY4Fw==} + /core-js-pure@3.33.1: + resolution: {integrity: sha512-wCXGbLjnsP10PlK/thHSQlOLlLKNEkaWbTzVvHHZ79fZNeN1gUmw2gBlpItxPv/pvqldevEXFh/d5stdNvl6EQ==} requiresBuild: true /core-js@1.2.7: @@ -22990,8 +23069,8 @@ packages: requiresBuild: true dev: true - /core-js@3.31.1: - resolution: {integrity: sha512-2sKLtfq1eFST7l7v62zaqXacPc7uG8ZAya8ogijLhTtaKNcpzpB4TMoTw2Si+8GYKRwFPMMtUT0263QFWFfqyQ==} + /core-js@3.33.1: + resolution: {integrity: sha512-qVSq3s+d4+GsqN0teRCJtM6tdEEXyWxjzbhVrCHmBS5ZTM0FS2MOS0D13dUXAWDUN6a+lHI/N1hF9Ytz6iLl9Q==} requiresBuild: true dev: true @@ -23017,7 +23096,7 @@ packages: resolution: {integrity: sha512-J0QMp9GNoiw91Kj/dkIQFZeiCXgXoja/Wlht1SPybxerBWh4NCmb0pOgCv61lrlQZETwvVVfAFAA3IqoEO9aqQ==} dependencies: resolve-from: 5.0.0 - webpack: 4.46.0(webpack-cli@5.0.0) + webpack: 4.47.0(webpack-cli@5.0.0) transitivePeerDependencies: - supports-color - webpack-cli @@ -23050,7 +23129,7 @@ packages: resolution: {integrity: sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==} engines: {node: '>=8'} dependencies: - '@types/parse-json': 4.0.0 + '@types/parse-json': 4.0.1 import-fresh: 3.3.0 parse-json: 5.2.0 path-type: 4.0.0 @@ -23061,7 +23140,7 @@ packages: resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==} engines: {node: '>=10'} dependencies: - '@types/parse-json': 4.0.0 + '@types/parse-json': 4.0.1 import-fresh: 3.3.0 parse-json: 5.2.0 path-type: 4.0.0 @@ -23134,6 +23213,25 @@ packages: safe-buffer: 5.2.1 sha.js: 2.4.11 + /create-jest@29.7.0: + resolution: {integrity: sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==} + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + hasBin: true + dependencies: + '@jest/types': 29.6.3 + chalk: 4.1.2 + exit: 0.1.2 + graceful-fs: 4.2.11 + jest-config: 29.7.0(@types/node@7.0.12) + jest-util: 29.7.0 + prompts: 2.4.2 + transitivePeerDependencies: + - '@types/node' + - babel-plugin-macros + - supports-color + - ts-node + dev: true + /create-react-class@15.7.0: resolution: {integrity: sha512-QZv4sFWG9S5RUvkTYWbflxeZX+JG7Cz0Tn33rQBJ+WFQTqTfUTjMjiv9tnfXazjsO5r0KhPs+AqCjyrQX6h2ng==} dependencies: @@ -23141,7 +23239,7 @@ packages: object-assign: 4.1.1 dev: false - /create-react-context@0.2.3(prop-types@15.8.1)(react@17.0.2): + /create-react-context@0.2.3(prop-types@15.7.2)(react@17.0.2): resolution: {integrity: sha512-CQBmD0+QGgTaxDL3OX1IDXYqjkp2It4RIbcb99jS6AEg27Ga+a9G3JtK6SIu0HBwPLZlmwt9F7UwWA4Bn92Rag==} peerDependencies: prop-types: ^15.0.0 @@ -23149,7 +23247,7 @@ packages: dependencies: fbjs: 0.8.18 gud: 1.0.0 - prop-types: 15.8.1 + prop-types: 15.7.2 react: 17.0.2 dev: true @@ -23205,18 +23303,11 @@ packages: /cross-fetch@3.1.8: resolution: {integrity: sha512-cvA+JwZoU0Xq+h6WkMvAUqPEYy92Obet6UdKLfW60qn99ftItKjB5T+BkyWOFWe2pUyfQ+IJHmpOTznqk1M6Kg==} dependencies: - node-fetch: 2.6.12 + node-fetch: 2.7.0 transitivePeerDependencies: - encoding dev: false - /cross-spawn@4.0.2: - resolution: {integrity: sha512-yAXz/pA1tD8Gtg2S98Ekf/sewp3Lcp3YoFKJ4Hkp5h5yLWnKVTDU0kwjKJ8NDCYcfTLfyGkzTikst+jWypT1iA==} - dependencies: - lru-cache: 4.1.5 - which: 1.3.1 - dev: true - /cross-spawn@5.1.0: resolution: {integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==} dependencies: @@ -23246,7 +23337,7 @@ packages: resolution: {integrity: sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==} dependencies: browserify-cipher: 1.0.1 - browserify-sign: 4.2.1 + browserify-sign: 4.2.2 create-ecdh: 4.0.4 create-hash: 1.2.0 create-hmac: 1.1.7 @@ -23284,14 +23375,14 @@ packages: dependencies: postcss: 7.0.32 - /css-blank-pseudo@3.0.3(postcss@8.4.25): + /css-blank-pseudo@3.0.3(postcss@8.4.31): resolution: {integrity: sha512-VS90XWtsHGqoM0t4KpH053c4ehxZ2E6HtGI7x68YFV0pTo/QmkV/YFA+NnlvK8guxZVNWGQhVNJGC39Q8XF4OQ==} engines: {node: ^12 || ^14 || >=16} hasBin: true peerDependencies: postcss: ^8.4 dependencies: - postcss: 8.4.25 + postcss: 8.4.31 postcss-selector-parser: 6.0.13 dev: true @@ -23326,18 +23417,18 @@ packages: postcss: 7.0.32 postcss-selector-parser: 5.0.0 - /css-has-pseudo@3.0.4(postcss@8.4.25): + /css-has-pseudo@3.0.4(postcss@8.4.31): resolution: {integrity: sha512-Vse0xpR1K9MNlp2j5w1pgWIJtm1a8qS0JwS9goFYcImjlHEmywP9VUF05aGBXzGpDJF86QXk4L0ypBmwPhGArw==} engines: {node: ^12 || ^14 || >=16} hasBin: true peerDependencies: postcss: ^8.4 dependencies: - postcss: 8.4.25 + postcss: 8.4.31 postcss-selector-parser: 6.0.13 dev: true - /css-loader@1.0.1(webpack@4.46.0): + /css-loader@1.0.1(webpack@4.47.0): resolution: {integrity: sha512-+ZHAZm/yqvJ2kDtPne3uX0C+Vr3Zn5jFn2N4HywtS5ujwvsVkyg0VArEXpl3BgczDA8anieki1FIzhchX4yrDw==} engines: {node: '>= 6.9.0 <7.0.0 || >= 8.9.0'} peerDependencies: @@ -23355,10 +23446,10 @@ packages: postcss-modules-values: 1.3.0 postcss-value-parser: 3.3.1 source-list-map: 2.0.1 - webpack: 4.46.0(webpack-cli@5.0.0) + webpack: 4.47.0(webpack-cli@5.0.0) dev: true - /css-loader@3.6.0(webpack@4.46.0): + /css-loader@3.6.0(webpack@4.47.0): resolution: {integrity: sha512-M5lSukoWi1If8dhQAUCvj4H8vUt3vOnwbQBH9DdTm/s4Ym2B/3dPMtYZeJmq7Q3S3Pa+I94DcZ7pc9bP14cWIQ==} engines: {node: '>= 8.9.0'} peerDependencies: @@ -23377,7 +23468,7 @@ packages: postcss-value-parser: 4.2.0 schema-utils: 2.7.1 semver: 6.3.1 - webpack: 4.46.0(webpack-cli@5.0.0) + webpack: 4.47.0(webpack-cli@5.0.0) dev: true /css-loader@6.7.1(webpack@5.88.0): @@ -23386,12 +23477,12 @@ packages: peerDependencies: webpack: ^5.0.0 dependencies: - icss-utils: 5.1.0(postcss@8.4.25) - postcss: 8.4.25 - postcss-modules-extract-imports: 3.0.0(postcss@8.4.25) - postcss-modules-local-by-default: 4.0.3(postcss@8.4.25) - postcss-modules-scope: 3.0.0(postcss@8.4.25) - postcss-modules-values: 4.0.0(postcss@8.4.25) + icss-utils: 5.1.0(postcss@8.4.31) + postcss: 8.4.31 + postcss-modules-extract-imports: 3.0.0(postcss@8.4.31) + postcss-modules-local-by-default: 4.0.3(postcss@8.4.31) + postcss-modules-scope: 3.0.0(postcss@8.4.31) + postcss-modules-values: 4.0.0(postcss@8.4.31) postcss-value-parser: 4.2.0 semver: 7.5.4 webpack: 5.88.0(webpack-cli@5.0.0) @@ -23403,12 +23494,12 @@ packages: peerDependencies: webpack: ^5.0.0 dependencies: - icss-utils: 5.1.0(postcss@8.4.25) - postcss: 8.4.25 - postcss-modules-extract-imports: 3.0.0(postcss@8.4.25) - postcss-modules-local-by-default: 4.0.3(postcss@8.4.25) - postcss-modules-scope: 3.0.0(postcss@8.4.25) - postcss-modules-values: 4.0.0(postcss@8.4.25) + icss-utils: 5.1.0(postcss@8.4.31) + postcss: 8.4.31 + postcss-modules-extract-imports: 3.0.0(postcss@8.4.31) + postcss-modules-local-by-default: 4.0.3(postcss@8.4.31) + postcss-modules-scope: 3.0.0(postcss@8.4.31) + postcss-modules-values: 4.0.0(postcss@8.4.31) postcss-value-parser: 4.2.0 semver: 7.5.4 webpack: 5.88.0(webpack-cli@5.0.0) @@ -23438,14 +23529,14 @@ packages: dependencies: postcss: 7.0.32 - /css-prefers-color-scheme@6.0.3(postcss@8.4.25): + /css-prefers-color-scheme@6.0.3(postcss@8.4.31): resolution: {integrity: sha512-4BqMbZksRkJQx2zAjrokiGMd07RqOa2IxIrrN10lyBe9xhn9DEvjUK79J6jkeiv9D9hQFXKb6g1jwU62jziJZA==} engines: {node: ^12 || ^14 || >=16} hasBin: true peerDependencies: postcss: ^8.4 dependencies: - postcss: 8.4.25 + postcss: 8.4.31 dev: true /css-select-base-adapter@0.1.1: @@ -23711,7 +23802,7 @@ packages: engines: {node: '>=8.2.0'} deprecated: This package has been deprecated, use @neo4j-cypher/editor-support instead. See https://github.com/neo4j/cypher-editor for more info. dependencies: - '@types/antlr4': 4.11.2 + '@types/antlr4': 4.11.5 antlr4: 4.7.0 fuzzaldrin: 2.1.0 lodash: 4.17.15 @@ -24184,10 +24275,6 @@ packages: index-array-by: 1.4.1 dev: false - /data-uri-to-buffer@3.0.1: - resolution: {integrity: sha512-WboRycPNsVw3B3TL559F7kuBUM4d8CgMEvk6xEJlOp7OBPjt6G7z8WMWlD2rOFZLk6OYfFIUGsCOWzcQH9K2og==} - engines: {node: '>= 6'} - /data-uri-to-buffer@4.0.1: resolution: {integrity: sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==} engines: {node: '>= 12'} @@ -24220,13 +24307,13 @@ packages: resolution: {integrity: sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==} engines: {node: '>=0.11'} dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 /dayjs@1.10.5: resolution: {integrity: sha512-BUFis41ikLz+65iH6LHQCDm4YPMj5r1YFLdupPIyM4SGcXMmtiLQ7U37i+hGS8urIuqe7I/ou3IS1jVc4nbN4g==} - /dayjs@1.11.9: - resolution: {integrity: sha512-QvzAURSbQ0pKdIye2txOzNaHmxtUBXerpY0FJsFXUMKbIZeFm5ht1LS/jFsrncjnmtv8HsG0W2g6c0zUjZWmpA==} + /dayjs@1.11.10: + resolution: {integrity: sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ==} dev: false /debounce@1.2.1: @@ -24346,6 +24433,15 @@ packages: resolution: {integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==} dev: true + /dedent@1.5.1: + resolution: {integrity: sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg==} + peerDependencies: + babel-plugin-macros: ^3.1.0 + peerDependenciesMeta: + babel-plugin-macros: + optional: true + dev: true + /deep-equal@1.0.1: resolution: {integrity: sha512-bHtC0iYvWhyaTzvV3CZgPeZQqCOBGyGsVV7v4eevpdkLHfiSrXUdBG+qAuSz4RI70sszvjQ1QSZ98An1yNwpSw==} dev: false @@ -24358,7 +24454,7 @@ packages: is-regex: 1.1.4 object-is: 1.1.5 object-keys: 1.1.1 - regexp.prototype.flags: 1.5.0 + regexp.prototype.flags: 1.5.1 /deep-extend@0.6.0: resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} @@ -24366,6 +24462,7 @@ packages: /deep-is@0.1.4: resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} + dev: true /deep-object-diff@1.1.9: resolution: {integrity: sha512-Rn+RuwkmkDwCi2/oXOFS9Gsr5lJZu/yTGpK7wAaAIE75CC+LCGEZHpY6VQJa/RoJcrmaA/docWJZvYohlNkWPA==} @@ -24392,6 +24489,7 @@ packages: /deepmerge@4.3.1: resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} engines: {node: '>=0.10.0'} + dev: false /default-compare@1.0.0: resolution: {integrity: sha512-QWfXlM0EkAbqOCbD/6HjdwT19j7WCkMyiRhWilc4H9/5h/RzTF9gv5LYh1+CmDV5d1rki6KAWLtQale0xt20eQ==} @@ -24408,13 +24506,6 @@ packages: ip-regex: 2.1.0 dev: true - /default-require-extensions@2.0.0: - resolution: {integrity: sha512-B0n2zDIXpzLzKeoEozorDSa1cHc1t0NjmxP0zuAxbizNU2MBqYJJKYXrrFdKuQliojXynrxgd7l4ahfg/+aA5g==} - engines: {node: '>=4'} - dependencies: - strip-bom: 3.0.0 - dev: true - /default-user-agent@1.0.0: resolution: {integrity: sha512-bDF7bg6OSNcSwFWPu4zYKpVkJZQYVrAANMYB8bc9Szem1D0yKdm4sa/rOCs2aC9+2GMqQ7KnwtZRvDhmLF0dXw==} engines: {node: '>= 0.10.0'} @@ -24430,11 +24521,20 @@ packages: resolution: {integrity: sha512-0ISdNousHvZT2EiFlZeZAHBUvSxmKswVCEf8hW7KWgG4a8MVEu/3Vb6uWYozkjylyCxe0JBIiRB1jV45S70WVQ==} dev: true - /define-properties@1.2.0: - resolution: {integrity: sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==} + /define-data-property@1.1.1: + resolution: {integrity: sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==} engines: {node: '>= 0.4'} dependencies: - has-property-descriptors: 1.0.0 + get-intrinsic: 1.2.2 + gopd: 1.0.1 + has-property-descriptors: 1.0.1 + + /define-properties@1.2.1: + resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} + engines: {node: '>= 0.4'} + dependencies: + define-data-property: 1.1.1 + has-property-descriptors: 1.0.1 object-keys: 1.1.1 /define-property@0.2.5: @@ -24460,15 +24560,6 @@ packages: resolution: {integrity: sha512-hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q==} dev: false - /degenerator@3.0.4: - resolution: {integrity: sha512-Z66uPeBfHZAHVmue3HPfyKu2Q0rC2cRxbTOsvmU/po5fvvcx27W4mIu9n0PUlQih4oUYvcG1BsbtVv8x7KDOSw==} - engines: {node: '>= 6'} - dependencies: - ast-types: 0.13.4 - escodegen: 1.14.3 - esprima: 4.0.1 - vm2: 3.9.19 - /del@4.1.1: resolution: {integrity: sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==} engines: {node: '>=6'} @@ -24631,8 +24722,8 @@ packages: engines: {node: '>= 10.14.2'} dev: false - /diff-sequences@29.4.3: - resolution: {integrity: sha512-ofrBgwpPhCD85kMKtE9RYFFq6OC1A89oW2vvgWZNCwxrUpRUILopY7lsYyMDSjc8g6U6aiO0Qubg6r4Wgt5ZnA==} + /diff-sequences@29.6.3: + resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dev: true @@ -24728,17 +24819,17 @@ packages: dependencies: '@babel/core': 7.2.2 '@babel/polyfill': 7.2.5 - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 '@mdx-js/loader': 0.16.8(react@17.0.2) '@mdx-js/mdx': 0.16.8 '@mdx-js/mdxast': 0.16.8 '@sindresorhus/slugify': 0.6.0 '@svgr/webpack': 4.3.3 art-template: 4.13.2 - babel-loader: 8.2.5(@babel/core@7.2.2)(webpack@4.46.0) + babel-loader: 8.2.5(@babel/core@7.2.2)(webpack@4.47.0) babel-preset-docz: 0.13.6 babylon: 6.18.0 - cache-loader: 2.0.1(webpack@4.46.0) + cache-loader: 2.0.1(webpack@4.47.0) chalk: 2.4.2 chokidar: 2.1.8(supports-color@6.1.0) common-tags: 1.8.2 @@ -24751,9 +24842,9 @@ packages: express: 4.18.2(supports-color@6.1.0) fast-deep-equal: 2.0.1 fast-glob: 2.2.7 - file-loader: 3.0.1(webpack@4.46.0) + file-loader: 3.0.1(webpack@4.47.0) find-up: 3.0.0 - friendly-errors-webpack-plugin: 1.7.0(webpack@4.46.0) + friendly-errors-webpack-plugin: 1.7.0(webpack@4.47.0) fs-extra: 7.0.1 get-pkg-repo: 4.2.1 happypack: 5.0.1 @@ -24765,27 +24856,27 @@ packages: mini-html-webpack-plugin: 0.2.3 p-reduce: 1.0.0 progress-estimator: 0.2.2 - react-dev-utils: 7.0.5(typescript@5.1.6)(webpack@4.46.0) - react-docgen-typescript-loader: 3.7.2(typescript@5.1.6)(webpack@4.46.0) + react-dev-utils: 7.0.5(typescript@5.1.6)(webpack@4.47.0) + react-docgen-typescript-loader: 3.7.2(typescript@5.1.6)(webpack@4.47.0) react-hot-loader: 4.13.1(@types/react@17.0.0)(react-dom@16.14.0)(react@17.0.2) rehype-docz: 0.13.6 rehype-slug: 2.0.3 remark-docz: 0.13.3 remark-frontmatter: 1.3.3 remark-parse: 6.0.3 - resolve: 1.22.2 + resolve: 1.22.8 signale: 1.4.0 source-map-loader: 0.2.4 - terser-webpack-plugin: 1.4.5(webpack@4.46.0) + terser-webpack-plugin: 1.4.5(webpack@4.47.0) titleize: 1.0.1 - url-loader: 1.1.2(webpack@4.46.0) - webpack: 4.46.0(webpack-cli@5.0.0) + url-loader: 1.1.2(webpack@4.47.0) + webpack: 4.47.0(webpack-cli@5.0.0) webpack-bundle-analyzer: 3.9.0 webpack-chain: 5.2.4 - webpack-dev-server: 3.11.3(webpack-cli@5.0.0)(webpack@4.46.0) - webpack-hot-client: 4.2.0(webpack@4.46.0) - webpack-manifest-plugin: 2.2.0(webpack@4.46.0) - webpackbar: 3.2.0(webpack@4.46.0) + webpack-dev-server: 3.11.3(webpack-cli@5.0.0)(webpack@4.47.0) + webpack-hot-client: 4.2.0(webpack@4.47.0) + webpack-manifest-plugin: 2.2.0(webpack@4.47.0) + webpackbar: 3.2.0(webpack@4.47.0) ws: 6.2.2 yargs: 12.0.5 transitivePeerDependencies: @@ -24806,17 +24897,17 @@ packages: dependencies: '@babel/core': 7.2.2 '@babel/polyfill': 7.2.5 - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 '@mdx-js/loader': 0.16.8(react@17.0.2) '@mdx-js/mdx': 0.16.8 '@mdx-js/mdxast': 0.16.8 '@sindresorhus/slugify': 0.6.0 '@svgr/webpack': 4.3.3 art-template: 4.13.2 - babel-loader: 8.2.5(@babel/core@7.2.2)(webpack@4.46.0) + babel-loader: 8.2.5(@babel/core@7.2.2)(webpack@4.47.0) babel-preset-docz: 0.13.6 babylon: 6.18.0 - cache-loader: 2.0.1(webpack@4.46.0) + cache-loader: 2.0.1(webpack@4.47.0) chalk: 2.4.2 chokidar: 2.1.8(supports-color@6.1.0) common-tags: 1.8.2 @@ -24829,9 +24920,9 @@ packages: express: 4.18.2(supports-color@6.1.0) fast-deep-equal: 2.0.1 fast-glob: 2.2.7 - file-loader: 3.0.1(webpack@4.46.0) + file-loader: 3.0.1(webpack@4.47.0) find-up: 3.0.0 - friendly-errors-webpack-plugin: 1.7.0(webpack@4.46.0) + friendly-errors-webpack-plugin: 1.7.0(webpack@4.47.0) fs-extra: 7.0.1 get-pkg-repo: 4.2.1 happypack: 5.0.1 @@ -24843,27 +24934,27 @@ packages: mini-html-webpack-plugin: 0.2.3 p-reduce: 1.0.0 progress-estimator: 0.2.2 - react-dev-utils: 7.0.5(typescript@5.1.6)(webpack@4.46.0) - react-docgen-typescript-loader: 3.7.2(typescript@5.1.6)(webpack@4.46.0) + react-dev-utils: 7.0.5(typescript@5.1.6)(webpack@4.47.0) + react-docgen-typescript-loader: 3.7.2(typescript@5.1.6)(webpack@4.47.0) react-hot-loader: 4.13.1(@types/react@17.0.0)(react-dom@17.0.2)(react@17.0.2) rehype-docz: 0.13.6 rehype-slug: 2.0.3 remark-docz: 0.13.3 remark-frontmatter: 1.3.3 remark-parse: 6.0.3 - resolve: 1.22.2 + resolve: 1.22.8 signale: 1.4.0 source-map-loader: 0.2.4 - terser-webpack-plugin: 1.4.5(webpack@4.46.0) + terser-webpack-plugin: 1.4.5(webpack@4.47.0) titleize: 1.0.1 - url-loader: 1.1.2(webpack@4.46.0) - webpack: 4.46.0(webpack-cli@5.0.0) + url-loader: 1.1.2(webpack@4.47.0) + webpack: 4.47.0(webpack-cli@5.0.0) webpack-bundle-analyzer: 3.9.0 webpack-chain: 5.2.4 - webpack-dev-server: 3.11.3(webpack-cli@5.0.0)(webpack@4.46.0) - webpack-hot-client: 4.2.0(webpack@4.46.0) - webpack-manifest-plugin: 2.2.0(webpack@4.46.0) - webpackbar: 3.2.0(webpack@4.46.0) + webpack-dev-server: 3.11.3(webpack-cli@5.0.0)(webpack@4.47.0) + webpack-hot-client: 4.2.0(webpack@4.47.0) + webpack-manifest-plugin: 2.2.0(webpack@4.47.0) + webpackbar: 3.2.0(webpack@4.47.0) ws: 6.2.2 yargs: 12.0.5 transitivePeerDependencies: @@ -24884,16 +24975,16 @@ packages: dependencies: '@babel/core': 7.4.4 '@babel/polyfill': 7.4.4 - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 '@mdx-js/loader': 1.6.22(react@17.0.2) '@sindresorhus/slugify': 0.9.1 '@svgr/webpack': 4.3.3 acorn: 6.0.5 - babel-loader: 8.2.5(@babel/core@7.4.4)(webpack@4.46.0) + babel-loader: 8.2.5(@babel/core@7.4.4)(webpack@4.47.0) babel-plugin-export-metadata: 1.2.0 babel-plugin-named-asset-import: 0.3.8(@babel/core@7.4.4) babel-preset-react-app: 9.1.2 - cache-loader: 3.0.1(webpack@4.46.0) + cache-loader: 3.0.1(webpack@4.47.0) chalk: 2.4.2 chokidar: 3.5.3 common-tags: 1.8.2 @@ -24904,7 +24995,7 @@ packages: express: 4.18.2(supports-color@6.1.0) fast-deep-equal: 2.0.1 fast-glob: 2.2.7 - file-loader: 3.0.1(webpack@4.46.0) + file-loader: 3.0.1(webpack@4.47.0) find-up: 3.0.0 fs-extra: 7.0.1 get-pkg-repo: 4.2.1 @@ -24914,7 +25005,7 @@ packages: lodash: 4.17.21 mini-html-webpack-plugin: 0.2.3 p-reduce: 2.1.0 - react-dev-utils: 9.1.0(eslint@7.32.0)(typescript@3.3.4000)(webpack@4.46.0) + react-dev-utils: 9.1.0(eslint@7.32.0)(typescript@3.3.4000)(webpack@4.47.0) react-docgen: 4.1.1 react-docgen-actual-name-handler: 1.2.0 react-docgen-external-proptypes-handler: 1.0.3 @@ -24926,22 +25017,22 @@ packages: remark-docz: 1.2.0 remark-frontmatter: 1.3.3 remark-parse: 6.0.3 - resolve: 1.22.2 + resolve: 1.22.8 serve: 11.3.2 signale: 1.4.0 source-map-loader: 0.2.4 - terser-webpack-plugin: 1.4.5(webpack@4.46.0) - thread-loader: 2.1.3(webpack@4.46.0) + terser-webpack-plugin: 1.4.5(webpack@4.47.0) + thread-loader: 2.1.3(webpack@4.47.0) titleize: 2.1.0 typescript: 3.3.4000 - url-loader: 1.1.2(webpack@4.46.0) - webpack: 4.46.0(webpack-cli@5.0.0) + url-loader: 1.1.2(webpack@4.47.0) + webpack: 4.47.0(webpack-cli@5.0.0) webpack-bundle-analyzer: 3.9.0 webpack-chain: 6.5.1 - webpack-dev-server: 3.11.3(webpack-cli@5.0.0)(webpack@4.46.0) - webpack-hot-client: 4.2.0(webpack@4.46.0) - webpack-manifest-plugin: 2.2.0(webpack@4.46.0) - webpackbar: 3.2.0(webpack@4.46.0) + webpack-dev-server: 3.11.3(webpack-cli@5.0.0)(webpack@4.47.0) + webpack-hot-client: 4.2.0(webpack@4.47.0) + webpack-manifest-plugin: 2.2.0(webpack@4.47.0) + webpackbar: 3.2.0(webpack@4.47.0) ws: 7.5.9 yargs: 13.3.2 transitivePeerDependencies: @@ -24963,16 +25054,16 @@ packages: dependencies: '@babel/core': 7.4.4 '@babel/polyfill': 7.4.4 - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 '@mdx-js/loader': 1.6.22(react@17.0.2) '@sindresorhus/slugify': 0.9.1 '@svgr/webpack': 4.3.3 acorn: 6.0.5 - babel-loader: 8.2.5(@babel/core@7.4.4)(webpack@4.46.0) + babel-loader: 8.2.5(@babel/core@7.4.4)(webpack@4.47.0) babel-plugin-export-metadata: 1.2.0 babel-plugin-named-asset-import: 0.3.8(@babel/core@7.4.4) babel-preset-react-app: 9.1.2 - cache-loader: 3.0.1(webpack@4.46.0) + cache-loader: 3.0.1(webpack@4.47.0) chalk: 2.4.2 chokidar: 3.5.3 common-tags: 1.8.2 @@ -24983,7 +25074,7 @@ packages: express: 4.18.2(supports-color@6.1.0) fast-deep-equal: 2.0.1 fast-glob: 2.2.7 - file-loader: 3.0.1(webpack@4.46.0) + file-loader: 3.0.1(webpack@4.47.0) find-up: 3.0.0 fs-extra: 7.0.1 get-pkg-repo: 4.2.1 @@ -24993,7 +25084,7 @@ packages: lodash: 4.17.21 mini-html-webpack-plugin: 0.2.3 p-reduce: 2.1.0 - react-dev-utils: 9.1.0(eslint@7.32.0)(typescript@3.3.4000)(webpack@4.46.0) + react-dev-utils: 9.1.0(eslint@7.32.0)(typescript@3.3.4000)(webpack@4.47.0) react-docgen: 4.1.1 react-docgen-actual-name-handler: 1.2.0 react-docgen-external-proptypes-handler: 1.0.3 @@ -25005,22 +25096,22 @@ packages: remark-docz: 1.2.0 remark-frontmatter: 1.3.3 remark-parse: 6.0.3 - resolve: 1.22.2 + resolve: 1.22.8 serve: 11.3.2 signale: 1.4.0 source-map-loader: 0.2.4 - terser-webpack-plugin: 1.4.5(webpack@4.46.0) - thread-loader: 2.1.3(webpack@4.46.0) + terser-webpack-plugin: 1.4.5(webpack@4.47.0) + thread-loader: 2.1.3(webpack@4.47.0) titleize: 2.1.0 typescript: 3.3.4000 - url-loader: 1.1.2(webpack@4.46.0) - webpack: 4.46.0(webpack-cli@5.0.0) + url-loader: 1.1.2(webpack@4.47.0) + webpack: 4.47.0(webpack-cli@5.0.0) webpack-bundle-analyzer: 3.9.0 webpack-chain: 6.5.1 - webpack-dev-server: 3.11.3(webpack-cli@5.0.0)(webpack@4.46.0) - webpack-hot-client: 4.2.0(webpack@4.46.0) - webpack-manifest-plugin: 2.2.0(webpack@4.46.0) - webpackbar: 3.2.0(webpack@4.46.0) + webpack-dev-server: 3.11.3(webpack-cli@5.0.0)(webpack@4.47.0) + webpack-hot-client: 4.2.0(webpack@4.47.0) + webpack-manifest-plugin: 2.2.0(webpack@4.47.0) + webpackbar: 3.2.0(webpack@4.47.0) ws: 7.5.9 yargs: 13.3.2 transitivePeerDependencies: @@ -25041,21 +25132,21 @@ packages: resolution: {integrity: sha512-LvwEMz2a5I7OLDrgW9T8arJes5uMAVvaUCXesN9sP65OOl021Wu6B4a+BL+xJQXd1HpYXxrRl5dHdn0hFeAKCA==} dependencies: autoprefixer: 9.8.8 - css-loader: 1.0.1(webpack@4.46.0) + css-loader: 1.0.1(webpack@4.47.0) deepmerge: 2.2.1 docz-core: 0.13.7(@types/react@17.0.0)(react-dom@16.14.0)(react@17.0.2)(typescript@5.1.6)(webpack-cli@5.0.0) less: 3.13.1 - less-loader: 4.1.0(less@3.13.1)(webpack@4.46.0) + less-loader: 4.1.0(less@3.13.1)(webpack@4.47.0) loader-utils: 1.4.2 - mini-css-extract-plugin: 0.4.5(webpack@4.46.0) - optimize-css-assets-webpack-plugin: 5.0.8(webpack@4.46.0) + mini-css-extract-plugin: 0.4.5(webpack@4.47.0) + optimize-css-assets-webpack-plugin: 5.0.8(webpack@4.47.0) postcss: 7.0.39 postcss-flexbugs-fixes: 4.2.1 postcss-loader: 3.0.0 style-loader: 0.23.1 stylus: 0.54.8 stylus-loader: 3.0.2(stylus@0.54.8) - webpack: 4.46.0(webpack-cli@5.0.0) + webpack: 4.47.0(webpack-cli@5.0.0) webpack-chain: 4.12.1 transitivePeerDependencies: - '@types/react' @@ -25074,21 +25165,21 @@ packages: resolution: {integrity: sha512-LvwEMz2a5I7OLDrgW9T8arJes5uMAVvaUCXesN9sP65OOl021Wu6B4a+BL+xJQXd1HpYXxrRl5dHdn0hFeAKCA==} dependencies: autoprefixer: 9.8.8 - css-loader: 1.0.1(webpack@4.46.0) + css-loader: 1.0.1(webpack@4.47.0) deepmerge: 2.2.1 docz-core: 0.13.7(@types/react@17.0.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6)(webpack-cli@5.0.0) less: 3.13.1 - less-loader: 4.1.0(less@3.13.1)(webpack@4.46.0) + less-loader: 4.1.0(less@3.13.1)(webpack@4.47.0) loader-utils: 1.4.2 - mini-css-extract-plugin: 0.4.5(webpack@4.46.0) - optimize-css-assets-webpack-plugin: 5.0.8(webpack@4.46.0) + mini-css-extract-plugin: 0.4.5(webpack@4.47.0) + optimize-css-assets-webpack-plugin: 5.0.8(webpack@4.47.0) postcss: 7.0.39 postcss-flexbugs-fixes: 4.2.1 postcss-loader: 3.0.0 style-loader: 0.23.1 stylus: 0.54.8 stylus-loader: 3.0.2(stylus@0.54.8) - webpack: 4.46.0(webpack-cli@5.0.0) + webpack: 4.47.0(webpack-cli@5.0.0) webpack-chain: 4.12.1 transitivePeerDependencies: - '@types/react' @@ -25103,7 +25194,7 @@ packages: - webpack-command dev: true - /docz-theme-umi@2.1.1(@babel/core@7.22.9)(@types/react@17.0.0)(eslint@7.32.0)(react-dom@16.14.0)(react@17.0.2)(webpack-cli@5.0.0): + /docz-theme-umi@2.1.1(@babel/core@7.23.2)(@types/react@17.0.0)(eslint@7.32.0)(react-dom@16.14.0)(react@17.0.2)(webpack-cli@5.0.0): resolution: {integrity: sha512-fzW3yLfeM3dp+OOHHba0NRh10uxv750XXUf4YhGoL22RCDdrfK6HWLgcHsw4M6elGvvvKWr51DGNCpkLd1Focg==} peerDependencies: react: ^16.8.0 || 17 @@ -25113,24 +25204,24 @@ packages: '@rehooks/local-storage': 1.7.0(react@17.0.2) '@tippy.js/react': 2.2.3(react-dom@16.14.0)(react@17.0.2) antd: 4.24.10(react-dom@16.14.0)(react@17.0.2) - codemirror: 5.65.13 + codemirror: 5.65.15 copy-text-to-clipboard: 2.2.0 docz: 1.2.0(@types/react@17.0.0)(eslint@7.32.0)(react-dom@16.14.0)(react@17.0.2)(webpack-cli@5.0.0) facepaint: 1.2.1 - hotkeys-js: 3.11.2 + hotkeys-js: 3.12.0 intersection-observer: 0.7.0 lodash: 4.17.21 polished: 3.7.2 prop-types: 15.7.2 re-resizable: 4.11.0 react: 17.0.2 - react-codemirror2: 5.1.0(codemirror@5.65.13)(react@17.0.2) + react-codemirror2: 5.1.0(codemirror@5.65.15)(react@17.0.2) react-dom: 16.14.0(react@17.0.2) react-feather: 1.1.6(prop-types@15.7.2)(react@17.0.2) react-live: 1.12.0(react-dom@16.14.0)(react@17.0.2) react-perfect-scrollbar: 1.5.8(react-dom@16.14.0)(react@17.0.2) scrollama: 2.2.3 - styled-components: 4.4.1(@babel/core@7.22.9)(react-dom@16.14.0)(react@17.0.2) + styled-components: 4.4.1(@babel/core@7.23.2)(react-dom@16.14.0)(react@17.0.2) transitivePeerDependencies: - '@babel/core' - '@types/react' @@ -25144,7 +25235,7 @@ packages: - webpack-command dev: true - /docz-theme-umi@2.1.1(@babel/core@7.22.9)(@types/react@17.0.0)(eslint@7.32.0)(react-dom@17.0.2)(react@17.0.2)(webpack-cli@5.0.0): + /docz-theme-umi@2.1.1(@babel/core@7.23.2)(@types/react@17.0.0)(eslint@7.32.0)(react-dom@17.0.2)(react@17.0.2)(webpack-cli@5.0.0): resolution: {integrity: sha512-fzW3yLfeM3dp+OOHHba0NRh10uxv750XXUf4YhGoL22RCDdrfK6HWLgcHsw4M6elGvvvKWr51DGNCpkLd1Focg==} peerDependencies: react: ^16.8.0 || 17 @@ -25154,24 +25245,24 @@ packages: '@rehooks/local-storage': 1.7.0(react@17.0.2) '@tippy.js/react': 2.2.3(react-dom@17.0.2)(react@17.0.2) antd: 4.24.10(react-dom@17.0.2)(react@17.0.2) - codemirror: 5.65.13 + codemirror: 5.65.15 copy-text-to-clipboard: 2.2.0 docz: 1.2.0(@types/react@17.0.0)(eslint@7.32.0)(react-dom@17.0.2)(react@17.0.2)(webpack-cli@5.0.0) facepaint: 1.2.1 - hotkeys-js: 3.11.2 + hotkeys-js: 3.12.0 intersection-observer: 0.7.0 lodash: 4.17.21 polished: 3.7.2 prop-types: 15.7.2 re-resizable: 4.11.0 react: 17.0.2 - react-codemirror2: 5.1.0(codemirror@5.65.13)(react@17.0.2) + react-codemirror2: 5.1.0(codemirror@5.65.15)(react@17.0.2) react-dom: 17.0.2(react@17.0.2) react-feather: 1.1.6(prop-types@15.7.2)(react@17.0.2) react-live: 1.12.0(react-dom@17.0.2)(react@17.0.2) react-perfect-scrollbar: 1.5.8(react-dom@17.0.2)(react@17.0.2) scrollama: 2.2.3 - styled-components: 4.4.1(@babel/core@7.22.9)(react-dom@17.0.2)(react@17.0.2) + styled-components: 4.4.1(@babel/core@7.23.2)(react-dom@17.0.2)(react@17.0.2) transitivePeerDependencies: - '@babel/core' - '@types/react' @@ -25188,9 +25279,9 @@ packages: /docz-utils@0.13.6: resolution: {integrity: sha512-nUrenLbuY/qlbKwJrIp133OGmxgzCgQJ4bJc1BerJrjAbr27Fqgarmqzwlmoa02yMsF3kHp5F9dxTTOnA2C5UA==} dependencies: - '@babel/generator': 7.22.9 - '@babel/parser': 7.22.7 - '@babel/traverse': 7.22.8(supports-color@5.5.0) + '@babel/generator': 7.23.0 + '@babel/parser': 7.23.0 + '@babel/traverse': 7.23.2(supports-color@5.5.0) codesandboxer-fs: 0.4.7 fs-extra: 7.0.1 humanize-string: 1.0.2 @@ -25219,9 +25310,9 @@ packages: /docz-utils@1.2.0: resolution: {integrity: sha512-1iuvNJr1PXevzi1hIYyAnytyeITgHzJNBQ1gcbFRWA4+4jf6sU4YLOazyiOFk5Kb1dpppaMvmygKvt+eGy4p0Q==} dependencies: - '@babel/generator': 7.22.9 - '@babel/parser': 7.22.7 - '@babel/traverse': 7.22.8(supports-color@5.5.0) + '@babel/generator': 7.23.0 + '@babel/parser': 7.23.0 + '@babel/traverse': 7.23.2(supports-color@5.5.0) art-template: 4.13.2 codesandboxer-fs: 1.0.3 fs-extra: 7.0.1 @@ -25325,7 +25416,7 @@ packages: /dom-helpers@5.2.1: resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==} dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 csstype: 3.1.2 /dom-iterator@1.0.0: @@ -25441,7 +25532,7 @@ packages: resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==} dependencies: no-case: 3.0.4 - tslib: 2.6.0 + tslib: 2.6.2 /dot-prop@4.2.1: resolution: {integrity: sha512-l0p4+mIuJIua0mhxGoh4a+iNL9bmeK5DvnSVQa6T0OhrVmaEa1XScX5Etc673FePCJOArq/4Pa2cLGODUWTPOQ==} @@ -25473,13 +25564,13 @@ packages: resolution: {integrity: sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==} dev: true - /dotenv-webpack@1.8.0(webpack@4.46.0): + /dotenv-webpack@1.8.0(webpack@4.47.0): resolution: {integrity: sha512-o8pq6NLBehtrqA8Jv8jFQNtG9nhRtVqmoD4yWbgUyoU3+9WBlPe+c2EAiaJok9RB28QvrWvdWLZGeTT5aATDMg==} peerDependencies: webpack: ^1 || ^2 || ^3 || ^4 dependencies: dotenv-defaults: 1.1.1 - webpack: 4.46.0(webpack-cli@5.0.0) + webpack: 4.47.0(webpack-cli@5.0.0) dev: true /dotenv@6.2.0: @@ -25525,9 +25616,9 @@ packages: lodash.throttle: 4.1.1 prism-react-renderer: 1.3.5(react@17.0.2) prismjs: 1.29.0 - rc-motion: 2.7.3(react-dom@16.14.0)(react@17.0.2) + rc-motion: 2.9.0(react-dom@16.14.0)(react@17.0.2) rc-tabs: 11.16.1(react-dom@16.14.0)(react@17.0.2) - rc-tree: 5.7.9(react-dom@16.14.0)(react@17.0.2) + rc-tree: 5.8.2(react-dom@16.14.0)(react@17.0.2) react: 17.0.2 react-error-boundary: 3.1.4(react@17.0.2) transitivePeerDependencies: @@ -25540,13 +25631,13 @@ packages: '@umijs/preset-dumi': 1.x react: ^16.13.1 || ^17.0.0 || 17 dependencies: - '@umijs/preset-dumi': 1.1.50(react-dom@17.0.2)(react-router@6.14.1)(react@17.0.2)(typescript@4.7.4)(umi@3.5.41) + '@umijs/preset-dumi': 1.1.50(react-dom@17.0.2)(react-router@6.17.0)(react@17.0.2)(typescript@4.7.4)(umi@3.5.41) lodash.throttle: 4.1.1 prism-react-renderer: 1.3.5(react@17.0.2) prismjs: 1.29.0 - rc-motion: 2.7.3(react-dom@17.0.2)(react@17.0.2) + rc-motion: 2.9.0(react-dom@17.0.2)(react@17.0.2) rc-tabs: 11.16.1(react-dom@17.0.2)(react@17.0.2) - rc-tree: 5.7.9(react-dom@17.0.2)(react@17.0.2) + rc-tree: 5.8.2(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 react-error-boundary: 3.1.4(react@17.0.2) transitivePeerDependencies: @@ -25570,12 +25661,12 @@ packages: - utf-8-validate dev: true - /dumi@1.1.50(react-dom@16.14.0)(react-router@6.14.1)(react@17.0.2)(typescript@5.1.6): + /dumi@1.1.50(react-dom@16.14.0)(react-router@6.17.0)(react@17.0.2)(typescript@5.1.6): resolution: {integrity: sha512-8kc+VL62JlVj1zoAaqWN2uE/feSYhzCuFFnWUll+aQgpKKM103DvnkmczqruMqV33gOsy3lWHf01uFu5RUagGg==} hasBin: true dependencies: - '@umijs/preset-dumi': 1.1.50(react-dom@16.14.0)(react-router@6.14.1)(react@17.0.2)(typescript@5.1.6)(umi@3.5.41) - umi: 3.5.41(react-router@6.14.1) + '@umijs/preset-dumi': 1.1.50(react-dom@16.14.0)(react-router@6.17.0)(react@17.0.2)(typescript@5.1.6)(umi@3.5.41) + umi: 3.5.41(react-router@6.17.0) transitivePeerDependencies: - bufferutil - canvas @@ -25587,12 +25678,12 @@ packages: - utf-8-validate dev: true - /dumi@1.1.50(react-dom@17.0.2)(react-router@6.14.1)(react@17.0.2)(typescript@4.7.4): + /dumi@1.1.50(react-dom@17.0.2)(react-router@6.17.0)(react@17.0.2)(typescript@4.7.4): resolution: {integrity: sha512-8kc+VL62JlVj1zoAaqWN2uE/feSYhzCuFFnWUll+aQgpKKM103DvnkmczqruMqV33gOsy3lWHf01uFu5RUagGg==} hasBin: true dependencies: - '@umijs/preset-dumi': 1.1.50(react-dom@17.0.2)(react-router@6.14.1)(react@17.0.2)(typescript@4.7.4)(umi@3.5.41) - umi: 3.5.41(react-router@6.14.1) + '@umijs/preset-dumi': 1.1.50(react-dom@17.0.2)(react-router@6.17.0)(react@17.0.2)(typescript@4.7.4)(umi@3.5.41) + umi: 3.5.41(react-router@6.17.0) transitivePeerDependencies: - bufferutil - canvas @@ -25632,7 +25723,7 @@ packages: peerDependencies: redux: 4.x dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 flatten: 1.0.3 global: 4.4.0 invariant: 2.2.4 @@ -25647,7 +25738,7 @@ packages: peerDependencies: redux: 4.x dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 flatten: 1.0.3 global: 4.4.0 invariant: 2.2.4 @@ -25662,7 +25753,7 @@ packages: peerDependencies: dva: ^2.5.0-0 dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 dva: 2.6.0-beta.23(react-dom@17.0.2)(react-router@5.3.4)(react@17.0.2) immer: 7.0.15 dev: false @@ -25672,7 +25763,7 @@ packages: peerDependencies: dva-core: ^1.1.0 || ^1.5.0-0 || ^1.6.0-0 dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 dva-core: 1.6.0-beta.7(redux@4.2.1) dev: false @@ -25682,9 +25773,9 @@ packages: react: ^16.8.4 || 17 react-dom: ^16.8.4 dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 '@types/isomorphic-fetch': 0.0.35 - '@types/react-redux': 7.1.25 + '@types/react-redux': 7.1.28 '@types/react-router-dom': 5.3.3 connected-react-router: 6.5.2(history@4.10.1)(react-redux@7.2.9)(react-router@5.3.4)(react@17.0.2)(redux@4.2.1) dva-core: 2.0.4(redux@4.2.1) @@ -25748,7 +25839,7 @@ packages: common-bin: 2.9.2 debug: 3.2.7(supports-color@6.1.0) detect-port: 1.5.1 - egg-ts-helper: 1.34.7(@types/node@7.0.12) + egg-ts-helper: 1.35.1(@types/node@7.0.12) egg-utils: 2.5.0 espower-typescript: 9.0.2(typescript@5.1.6) globby: 8.0.2 @@ -25768,6 +25859,7 @@ packages: - '@swc/core' - '@swc/wasm' - '@types/node' + - proxy-agent - supports-color - typescript dev: true @@ -25806,16 +25898,13 @@ packages: - supports-color dev: false - /egg-cookies@2.6.1: - resolution: {integrity: sha512-gdioZDMEVOBzzKKsBdt5gHjNEf7jJ9wmBvWkjjNHBSLpRm54lHu4Ba9EsNef8uBEr4KD6jsIB/K0rplYyxk10w==} + /egg-cookies@2.7.1: + resolution: {integrity: sha512-VgqMhr1yf5nD/5a/LIwqg9L1XY9oG7iGHuKC0TxJvUXOj8UqdRnETnWYT3pFFp2cC0CTEqyodirwH1h1K8eU3w==} engines: {node: '>= 10.0.0'} dependencies: - debug: 3.2.7(supports-color@6.1.0) scmp: 2.1.0 should-send-same-site-none: 2.0.5 utility: 1.18.0 - transitivePeerDependencies: - - supports-color dev: false /egg-core@4.30.2: @@ -25823,8 +25912,8 @@ packages: engines: {node: '>= 8.9.0'} dependencies: '@eggjs/router': 2.0.1 - '@types/depd': 1.1.32 - '@types/koa': 2.13.6 + '@types/depd': 1.1.34 + '@types/koa': 2.13.10 co: 4.6.0 debug: 4.3.4(supports-color@5.5.0) depd: 2.0.0 @@ -25931,7 +26020,7 @@ packages: resolution: {integrity: sha512-g8y6vbVSpciNbdwbqFdY2wI3GpZvWj1S/OfGTpdEzQmaxPP3LePnDhPGPGk5zlOArZlul4nBK+DVkZ8Kp1tv+g==} engines: {node: '>= 6.0.0'} dependencies: - '@types/power-assert': 1.5.8 + '@types/power-assert': 1.5.10 await-event: 2.1.0 co: 4.6.0 coffee: 4.2.1 @@ -25949,8 +26038,9 @@ packages: power-assert: 1.6.1 rimraf: 2.7.1 supertest: 3.4.2 - urllib: 2.40.0 + urllib: 2.41.0 transitivePeerDependencies: + - proxy-agent - supports-color dev: true @@ -26059,8 +26149,8 @@ packages: - supports-color dev: false - /egg-ts-helper@1.34.7(@types/node@7.0.12): - resolution: {integrity: sha512-gbWJAwPhvTJL2iqpK4kNpTiGR+vKfAGhsBpFF9U4GotzZPJj8M6/2pqqIqvicz24BijxxtqalsNIux1u6HFTUA==} + /egg-ts-helper@1.35.1(@types/node@7.0.12): + resolution: {integrity: sha512-jUQqwne/HcfXPhphOadpJK8S9IsPm9yPdu3wFV7jHnLxXfbPWQDBYV/b+3wIxtx8L9pMBv3u94BAue91cLwlrw==} engines: {node: '>= 14.0.0'} hasBin: true dependencies: @@ -26068,11 +26158,11 @@ packages: chokidar: 3.5.3 commander: 2.20.3 dot-prop: 4.2.1 - enquirer: 2.3.6 + enquirer: 2.4.1 globby: 11.1.0 json5: 2.2.3 ts-node: 10.9.1(@types/node@7.0.12)(typescript@4.7.4) - tslib: 2.6.0 + tslib: 2.6.2 typescript: 4.7.4 yn: 3.1.1 transitivePeerDependencies: @@ -26118,9 +26208,9 @@ packages: resolution: {integrity: sha512-gEb3UhnfmJR0t6di1UKQV2x+LbLw0NomI+ypWQjPquNgMA2eQX9GLSuMq+RcptOBrYRQNICLn6O3dGFPUYrq1g==} engines: {node: '>= 8.0.0'} dependencies: - '@types/accepts': 1.3.5 - '@types/koa': 2.13.6 - '@types/koa-router': 7.4.4 + '@types/accepts': 1.3.6 + '@types/koa': 2.13.10 + '@types/koa-router': 7.4.6 '@types/urllib': 2.33.0 accepts: 1.3.8 agentkeepalive: 3.5.2 @@ -26128,7 +26218,7 @@ packages: debug: 3.2.7(supports-color@6.1.0) delegates: 1.0.0 egg-cluster: 1.27.1 - egg-cookies: 2.6.1 + egg-cookies: 2.7.1 egg-core: 4.30.2 egg-development: 2.7.0 egg-i18n: 2.1.1 @@ -26153,10 +26243,11 @@ packages: mime-types: 2.1.35 on-finished: 2.4.1 sendmessage: 1.1.0 - urllib: 2.40.0 + urllib: 2.41.0 utility: 1.18.0 ylru: 1.3.2 transitivePeerDependencies: + - proxy-agent - supports-color dev: false @@ -26166,8 +26257,8 @@ packages: requiresBuild: true dev: true - /electron-to-chromium@1.4.459: - resolution: {integrity: sha512-XXRS5NFv8nCrBL74Rm3qhJjA2VCsRFx0OjHKBMPI0otij56aun8UWiKTDABmd5/7GTR021pA4wivs+Ri6XCElg==} + /electron-to-chromium@1.4.567: + resolution: {integrity: sha512-8KR114CAYQ4/r5EIEsOmOMqQ9j0MRbJZR3aXD/KFA8RuKzyoUB4XrUCg+l8RUGqTVQgKNIgTpjaG8YHRPAbX2w==} /element-resize-detector@1.2.4: resolution: {integrity: sha512-Fl5Ftk6WwXE0wqCgNoseKWndjzZlDCwuPTcoVZfCP9R3EHQF8qUtr3YUPNETegRBOKqQKPW3n4kiIWngGi8tKg==} @@ -26232,7 +26323,7 @@ packages: '@emotion/core': ^10.0.27 react: '>=16.3.0 || 17' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 '@emotion/core': 10.3.1(react@16.14.0) '@emotion/weak-memoize': 0.2.5 hoist-non-react-statics: 3.3.2 @@ -26245,7 +26336,7 @@ packages: '@emotion/core': ^10.0.27 react: '>=16.3.0 || 17' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 '@emotion/core': 10.3.1(react@17.0.2) '@emotion/weak-memoize': 0.2.5 hoist-non-react-statics: 3.3.2 @@ -26309,11 +26400,12 @@ packages: tapable: 2.2.1 dev: true - /enquirer@2.3.6: - resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==} + /enquirer@2.4.1: + resolution: {integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==} engines: {node: '>=8.6'} dependencies: ansi-colors: 4.1.3 + strip-ansi: 6.0.1 dev: true /entities@1.1.2: @@ -26351,9 +26443,9 @@ packages: enzyme: 3.11.0 enzyme-adapter-utils: 1.14.1(react@16.14.0) enzyme-shallow-equal: 1.0.5 - has: 1.0.3 + has: 1.0.4 object.assign: 4.1.4 - object.values: 1.1.6 + object.values: 1.1.7 prop-types: 15.8.1 react: 16.14.0 react-dom: 16.14.0(react@16.14.0) @@ -26368,10 +26460,10 @@ packages: react: 0.13.x || 0.14.x || ^15.0.0-0 || ^16.0.0-0 || 17 dependencies: airbnb-prop-types: 2.16.0(react@16.14.0) - function.prototype.name: 1.1.5 - has: 1.0.3 + function.prototype.name: 1.1.6 + has: 1.0.4 object.assign: 4.1.4 - object.fromentries: 2.0.6 + object.fromentries: 2.0.7 prop-types: 15.8.1 react: 16.14.0 semver: 5.7.2 @@ -26380,18 +26472,18 @@ packages: /enzyme-shallow-equal@1.0.5: resolution: {integrity: sha512-i6cwm7hN630JXenxxJFBKzgLC3hMTafFQXflvzHgPmDhOBhxUWDe8AeRv1qp2/uWJ2Y8z5yLWMzmAfkTOiOCZg==} dependencies: - has: 1.0.3 + has: 1.0.4 object-is: 1.1.5 dev: true /enzyme@3.11.0: resolution: {integrity: sha512-Dw8/Gs4vRjxY6/6i9wU0V+utmQO9kvh9XLnz3LIudviOnVYDEe2ec+0k+NQoMamn1VrjKgCUOWj5jG/5M5M0Qw==} dependencies: - array.prototype.flat: 1.3.1 + array.prototype.flat: 1.3.2 cheerio: 1.0.0-rc.12 enzyme-shallow-equal: 1.0.5 - function.prototype.name: 1.1.5 - has: 1.0.3 + function.prototype.name: 1.1.6 + has: 1.0.4 html-element-map: 1.3.1 is-boolean-object: 1.1.2 is-callable: 1.2.7 @@ -26401,14 +26493,14 @@ packages: is-subset: 0.1.1 lodash.escape: 4.0.1 lodash.isequal: 4.5.0 - object-inspect: 1.12.3 + object-inspect: 1.13.1 object-is: 1.1.5 object.assign: 4.1.4 - object.entries: 1.1.6 - object.values: 1.1.6 + object.entries: 1.1.7 + object.values: 1.1.7 raf: 3.4.1 rst-selector-parser: 2.2.3 - string.prototype.trim: 1.2.7 + string.prototype.trim: 1.2.8 dev: true /err-code@1.1.2: @@ -26448,45 +26540,49 @@ packages: escape-html: 1.0.3 dev: false - /es-abstract@1.21.3: - resolution: {integrity: sha512-ZU4miiY1j3sGPFLJ34VJXEqhpmL+HGByCinGHv4HC+Fxl2fI2Z4yR6tl0mORnDr6PA8eihWo4LmSWDbvhALckg==} + /es-abstract@1.22.3: + resolution: {integrity: sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==} engines: {node: '>= 0.4'} dependencies: array-buffer-byte-length: 1.0.0 + arraybuffer.prototype.slice: 1.0.2 available-typed-arrays: 1.0.5 - call-bind: 1.0.2 - es-set-tostringtag: 2.0.1 + call-bind: 1.0.5 + es-set-tostringtag: 2.0.2 es-to-primitive: 1.2.1 - function.prototype.name: 1.1.5 - get-intrinsic: 1.2.1 + function.prototype.name: 1.1.6 + get-intrinsic: 1.2.2 get-symbol-description: 1.0.0 globalthis: 1.0.3 gopd: 1.0.1 - has: 1.0.3 - has-property-descriptors: 1.0.0 + has-property-descriptors: 1.0.1 has-proto: 1.0.1 has-symbols: 1.0.3 - internal-slot: 1.0.5 + hasown: 2.0.0 + internal-slot: 1.0.6 is-array-buffer: 3.0.2 is-callable: 1.2.7 is-negative-zero: 2.0.2 is-regex: 1.1.4 is-shared-array-buffer: 1.0.2 is-string: 1.0.7 - is-typed-array: 1.1.10 + is-typed-array: 1.1.12 is-weakref: 1.0.2 - object-inspect: 1.12.3 + object-inspect: 1.13.1 object-keys: 1.1.1 object.assign: 4.1.4 - regexp.prototype.flags: 1.5.0 + regexp.prototype.flags: 1.5.1 + safe-array-concat: 1.0.1 safe-regex-test: 1.0.0 - string.prototype.trim: 1.2.7 - string.prototype.trimend: 1.0.6 - string.prototype.trimstart: 1.0.6 + string.prototype.trim: 1.2.8 + string.prototype.trimend: 1.0.7 + string.prototype.trimstart: 1.0.7 + typed-array-buffer: 1.0.0 + typed-array-byte-length: 1.0.0 typed-array-byte-offset: 1.0.0 typed-array-length: 1.0.4 unbox-primitive: 1.0.2 - which-typed-array: 1.1.10 + which-typed-array: 1.1.13 /es-array-method-boxes-properly@1.0.0: resolution: {integrity: sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==} @@ -26495,8 +26591,8 @@ packages: /es-get-iterator@1.1.3: resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==} dependencies: - call-bind: 1.0.2 - get-intrinsic: 1.2.1 + call-bind: 1.0.5 + get-intrinsic: 1.2.2 has-symbols: 1.0.3 is-arguments: 1.1.1 is-map: 2.0.2 @@ -26506,24 +26602,43 @@ packages: stop-iteration-iterator: 1.0.0 dev: true + /es-iterator-helpers@1.0.15: + resolution: {integrity: sha512-GhoY8uYqd6iwUl2kgjTm4CZAf6oo5mHK7BPqx3rKgx893YSsy0LGHV6gfqqQvZt/8xM8xeOnfXBCfqclMKkJ5g==} + dependencies: + asynciterator.prototype: 1.0.0 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + es-set-tostringtag: 2.0.2 + function-bind: 1.1.2 + get-intrinsic: 1.2.2 + globalthis: 1.0.3 + has-property-descriptors: 1.0.1 + has-proto: 1.0.1 + has-symbols: 1.0.3 + internal-slot: 1.0.6 + iterator.prototype: 1.1.2 + safe-array-concat: 1.0.1 + dev: true + /es-module-lexer@0.7.1: resolution: {integrity: sha512-MgtWFl5No+4S3TmhDmCz2ObFGm6lEpTnzbQi+Dd+pw4mlTIZTmM2iAs5gRlmx5zS9luzobCSBSI90JM/1/JgOw==} - /es-module-lexer@1.3.0: - resolution: {integrity: sha512-vZK7T0N2CBmBOixhmjdqx2gWVbFZ4DXZ/NyRMZVlJXPa7CyFS+/a4QQsDGDQy9ZfEzxFuNEsMLeQJnKP2p5/JA==} + /es-module-lexer@1.3.1: + resolution: {integrity: sha512-JUFAyicQV9mXc3YRxPnDlrfBKpqt6hUYzz9/boprUJHs4e4KVr3XwOF70doO6gwXUor6EWZJAyWAfKki84t20Q==} - /es-set-tostringtag@2.0.1: - resolution: {integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==} + /es-set-tostringtag@2.0.2: + resolution: {integrity: sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==} engines: {node: '>= 0.4'} dependencies: - get-intrinsic: 1.2.1 - has: 1.0.3 + get-intrinsic: 1.2.2 has-tostringtag: 1.0.0 + hasown: 2.0.0 - /es-shim-unscopables@1.0.0: - resolution: {integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==} + /es-shim-unscopables@1.0.2: + resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==} dependencies: - has: 1.0.3 + hasown: 2.0.0 dev: true /es-to-primitive@1.2.1: @@ -26544,18 +26659,14 @@ packages: next-tick: 1.1.0 dev: true - /es5-imcompatible-versions@0.1.86: - resolution: {integrity: sha512-Lbrsn5bCL4iVMBdundiFVNIKlnnoBiIMrjtLRe1Snt92s60WHotw83S2ijp5ioqe6pDil3iBPY634VDwBcb1rg==} + /es5-imcompatible-versions@0.1.88: + resolution: {integrity: sha512-GDJTmDGd65qyDk9fGClO+MOUgHuBuGMCL6EawvLH8Ob+HN8ui1OJwa4fEK0qh3fg2ieT2/pdZj41yrxnmOrK8w==} /es5-shim@4.6.7: resolution: {integrity: sha512-jg21/dmlrNQI7JyyA2w7n+yifSxBng0ZralnSfVZjoCawgNTCnS+yBCyVM9DL5itm7SUnDGgv7hcq2XCZX4iRQ==} engines: {node: '>=0.4.0'} dev: true - /es6-error@4.1.1: - resolution: {integrity: sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==} - dev: true - /es6-iterator@2.0.3: resolution: {integrity: sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==} dependencies: @@ -26692,6 +26803,7 @@ packages: optionator: 0.8.3 optionalDependencies: source-map: 0.6.1 + dev: true /escodegen@2.1.0: resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==} @@ -26726,16 +26838,16 @@ packages: resolution: {integrity: sha512-GKtysK6RoXR/ZtjvsbMz0OSyivhmxfFbkgz1e5udEWS/oa9HEhKo0OeE0pwC1VAXpYhsCkSH3elqT7wh1YZOyw==} engines: {node: '>= 14.17.0'} dependencies: - '@babel/core': 7.22.9 - '@babel/eslint-parser': 7.22.9(@babel/core@7.22.9)(eslint@8.0.0) + '@babel/core': 7.23.2 + '@babel/eslint-parser': 7.22.15(@babel/core@7.23.2)(eslint@8.0.0) '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.0.0)(typescript@5.1.6) '@typescript-eslint/parser': 5.62.0(eslint@8.0.0)(typescript@5.1.6) eslint-plugin-eggache: 1.0.0 - eslint-plugin-import: 2.27.5(@typescript-eslint/parser@5.62.0)(eslint@8.0.0) + eslint-plugin-import: 2.29.0(@typescript-eslint/parser@5.62.0)(eslint@8.0.0) eslint-plugin-jsdoc: 39.9.1(eslint@8.0.0) eslint-plugin-jsx-a11y: 6.7.1(eslint@8.0.0) eslint-plugin-node: 11.1.0(eslint@8.0.0) - eslint-plugin-react: 7.32.2(eslint@8.0.0) + eslint-plugin-react: 7.33.2(eslint@8.0.0) transitivePeerDependencies: - eslint - eslint-import-resolver-typescript @@ -26744,8 +26856,8 @@ packages: - typescript dev: true - /eslint-config-prettier@8.8.0(eslint@7.32.0): - resolution: {integrity: sha512-wLbQiFre3tdGgpDv67NQKnJuTlcUVYHas3k+DZCc2U2BadthoEY4B7hLPvAxaqdyOGCzuLfii2fqGph10va7oA==} + /eslint-config-prettier@8.10.0(eslint@7.32.0): + resolution: {integrity: sha512-SM8AMJdeQqRYT9O9zguiruQZaN7+z+E4eAP9oiLNGKMtomwaB1E9dcgUD6ZAn/eQAb52USbvezbiljfZUhbJcg==} hasBin: true peerDependencies: eslint: '>=7.0.0' @@ -26767,17 +26879,17 @@ packages: supports-hyperlinks: 2.3.0 dev: true - /eslint-import-resolver-node@0.3.7: - resolution: {integrity: sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==} + /eslint-import-resolver-node@0.3.9: + resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} dependencies: debug: 3.2.7(supports-color@6.1.0) - is-core-module: 2.12.1 - resolve: 1.22.2 + is-core-module: 2.13.1 + resolve: 1.22.8 transitivePeerDependencies: - supports-color dev: true - /eslint-module-utils@2.8.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.7)(eslint@8.0.0): + /eslint-module-utils@2.8.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint@8.0.0): resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==} engines: {node: '>=4'} peerDependencies: @@ -26801,7 +26913,7 @@ packages: '@typescript-eslint/parser': 5.62.0(eslint@8.0.0)(typescript@5.1.6) debug: 3.2.7(supports-color@6.1.0) eslint: 8.0.0 - eslint-import-resolver-node: 0.3.7 + eslint-import-resolver-node: 0.3.9 transitivePeerDependencies: - supports-color dev: true @@ -26832,8 +26944,8 @@ packages: regexpp: 3.2.0 dev: true - /eslint-plugin-import@2.27.5(@typescript-eslint/parser@5.62.0)(eslint@8.0.0): - resolution: {integrity: sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==} + /eslint-plugin-import@2.29.0(@typescript-eslint/parser@5.62.0)(eslint@8.0.0): + resolution: {integrity: sha512-QPOO5NO6Odv5lpoTkddtutccQjysJuFxoPS7fAHO+9m9udNHvTCPSAMW9zGAYj8lAIdr40I8yPCdUYrncXtrwg==} engines: {node: '>=4'} peerDependencies: '@typescript-eslint/parser': '*' @@ -26843,20 +26955,22 @@ packages: optional: true dependencies: '@typescript-eslint/parser': 5.62.0(eslint@8.0.0)(typescript@5.1.6) - array-includes: 3.1.6 - array.prototype.flat: 1.3.1 - array.prototype.flatmap: 1.3.1 + array-includes: 3.1.7 + array.prototype.findlastindex: 1.2.3 + array.prototype.flat: 1.3.2 + array.prototype.flatmap: 1.3.2 debug: 3.2.7(supports-color@6.1.0) doctrine: 2.1.0 eslint: 8.0.0 - eslint-import-resolver-node: 0.3.7 - eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.7)(eslint@8.0.0) - has: 1.0.3 - is-core-module: 2.12.1 + eslint-import-resolver-node: 0.3.9 + eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint@8.0.0) + hasown: 2.0.0 + is-core-module: 2.13.1 is-glob: 4.0.3 minimatch: 3.1.2 - object.values: 1.1.6 - resolve: 1.22.2 + object.fromentries: 2.0.7 + object.groupby: 1.0.1 + object.values: 1.1.7 semver: 6.3.1 tsconfig-paths: 3.14.2 transitivePeerDependencies: @@ -26907,22 +27021,22 @@ packages: peerDependencies: eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 aria-query: 5.3.0 - array-includes: 3.1.6 - array.prototype.flatmap: 1.3.1 + array-includes: 3.1.7 + array.prototype.flatmap: 1.3.2 ast-types-flow: 0.0.7 - axe-core: 4.7.2 + axe-core: 4.8.2 axobject-query: 3.2.1 damerau-levenshtein: 1.0.8 emoji-regex: 9.2.2 eslint: 8.0.0 - has: 1.0.3 - jsx-ast-utils: 3.3.4 + has: 1.0.4 + jsx-ast-utils: 3.3.5 language-tags: 1.0.5 minimatch: 3.1.2 - object.entries: 1.1.6 - object.fromentries: 2.0.6 + object.entries: 1.1.7 + object.fromentries: 2.0.7 semver: 6.3.1 dev: true @@ -26937,7 +27051,7 @@ packages: eslint-utils: 2.1.0 ignore: 5.2.4 minimatch: 3.1.2 - resolve: 1.22.2 + resolve: 1.22.8 semver: 6.3.1 dev: true @@ -26959,52 +27073,54 @@ packages: eslint: 7.32.0 dev: true - /eslint-plugin-react@7.32.2(eslint@7.32.0): - resolution: {integrity: sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==} + /eslint-plugin-react@7.33.2(eslint@7.32.0): + resolution: {integrity: sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==} engines: {node: '>=4'} peerDependencies: eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 dependencies: - array-includes: 3.1.6 - array.prototype.flatmap: 1.3.1 - array.prototype.tosorted: 1.1.1 + array-includes: 3.1.7 + array.prototype.flatmap: 1.3.2 + array.prototype.tosorted: 1.1.2 doctrine: 2.1.0 + es-iterator-helpers: 1.0.15 eslint: 7.32.0 estraverse: 5.3.0 - jsx-ast-utils: 3.3.4 + jsx-ast-utils: 3.3.5 minimatch: 3.1.2 - object.entries: 1.1.6 - object.fromentries: 2.0.6 - object.hasown: 1.1.2 - object.values: 1.1.6 + object.entries: 1.1.7 + object.fromentries: 2.0.7 + object.hasown: 1.1.3 + object.values: 1.1.7 prop-types: 15.8.1 - resolve: 2.0.0-next.4 + resolve: 2.0.0-next.5 semver: 6.3.1 - string.prototype.matchall: 4.0.8 + string.prototype.matchall: 4.0.10 dev: true - /eslint-plugin-react@7.32.2(eslint@8.0.0): - resolution: {integrity: sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==} + /eslint-plugin-react@7.33.2(eslint@8.0.0): + resolution: {integrity: sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==} engines: {node: '>=4'} peerDependencies: eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 dependencies: - array-includes: 3.1.6 - array.prototype.flatmap: 1.3.1 - array.prototype.tosorted: 1.1.1 + array-includes: 3.1.7 + array.prototype.flatmap: 1.3.2 + array.prototype.tosorted: 1.1.2 doctrine: 2.1.0 + es-iterator-helpers: 1.0.15 eslint: 8.0.0 estraverse: 5.3.0 - jsx-ast-utils: 3.3.4 + jsx-ast-utils: 3.3.5 minimatch: 3.1.2 - object.entries: 1.1.6 - object.fromentries: 2.0.6 - object.hasown: 1.1.2 - object.values: 1.1.6 + object.entries: 1.1.7 + object.fromentries: 2.0.7 + object.hasown: 1.1.3 + object.values: 1.1.7 prop-types: 15.8.1 - resolve: 2.0.0-next.4 + resolve: 2.0.0-next.5 semver: 6.3.1 - string.prototype.matchall: 4.0.8 + string.prototype.matchall: 4.0.10 dev: true /eslint-plugin-unicorn@20.1.0(eslint@7.32.0): @@ -27068,8 +27184,8 @@ packages: peerDependencies: eslint: '>=7.0.0' dependencies: - '@babel/core': 7.22.9 - '@babel/eslint-parser': 7.22.9(@babel/core@7.22.9)(eslint@7.32.0) + '@babel/core': 7.23.2 + '@babel/eslint-parser': 7.22.15(@babel/core@7.23.2)(eslint@7.32.0) eslint: 7.32.0 eslint-visitor-keys: 2.1.0 esquery: 1.5.0 @@ -27115,8 +27231,8 @@ packages: engines: {node: '>=10'} dev: true - /eslint-visitor-keys@3.4.1: - resolution: {integrity: sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==} + /eslint-visitor-keys@3.4.3: + resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true @@ -27133,7 +27249,7 @@ packages: cross-spawn: 7.0.3 debug: 4.3.4(supports-color@5.5.0) doctrine: 3.0.0 - enquirer: 2.3.6 + enquirer: 2.4.1 escape-string-regexp: 4.0.0 eslint-scope: 5.1.1 eslint-utils: 2.1.0 @@ -27145,7 +27261,7 @@ packages: file-entry-cache: 6.0.1 functional-red-black-tree: 1.0.1 glob-parent: 5.1.2 - globals: 13.20.0 + globals: 13.23.0 ignore: 4.0.6 import-fresh: 3.3.0 imurmurhash: 0.1.4 @@ -27164,7 +27280,7 @@ packages: strip-json-comments: 3.1.1 table: 6.8.1 text-table: 0.2.0 - v8-compile-cache: 2.3.0 + v8-compile-cache: 2.4.0 transitivePeerDependencies: - supports-color dev: true @@ -27181,19 +27297,19 @@ packages: cross-spawn: 7.0.3 debug: 4.3.4(supports-color@5.5.0) doctrine: 3.0.0 - enquirer: 2.3.6 + enquirer: 2.4.1 escape-string-regexp: 4.0.0 eslint-scope: 6.0.0 eslint-utils: 3.0.0(eslint@8.0.0) - eslint-visitor-keys: 3.4.1 - espree: 9.6.0 + eslint-visitor-keys: 3.4.3 + espree: 9.6.1 esquery: 1.5.0 esutils: 2.0.3 fast-deep-equal: 3.1.3 file-entry-cache: 6.0.1 functional-red-black-tree: 1.0.1 glob-parent: 6.0.2 - globals: 13.20.0 + globals: 13.23.0 ignore: 4.0.6 import-fresh: 3.3.0 imurmurhash: 0.1.4 @@ -27211,7 +27327,7 @@ packages: strip-ansi: 6.0.1 strip-json-comments: 3.1.1 text-table: 0.2.0 - v8-compile-cache: 2.3.0 + v8-compile-cache: 2.4.0 transitivePeerDependencies: - supports-color dev: true @@ -27293,13 +27409,13 @@ packages: eslint-visitor-keys: 1.3.0 dev: true - /espree@9.6.0: - resolution: {integrity: sha512-1FH/IiruXZ84tpUlm0aCUEwMl2Ho5ilqVh0VvQXw+byAz/4SAciyHLlfmL5WYqsvD38oymdUwBss0LtK8m4s/A==} + /espree@9.6.1: + resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: acorn: 8.10.0 acorn-jsx: 5.3.2(acorn@8.10.0) - eslint-visitor-keys: 3.4.1 + eslint-visitor-keys: 3.4.3 dev: true /esprima@2.7.3: @@ -27344,8 +27460,8 @@ packages: resolution: {integrity: sha512-YNF+mZ/Wu2FU/gvmzuWtYc8rloubL7wfXCTgouFrnjGVXPA/EeYYA7pupXWrb3Iv1cTBeSSxxJIbK23l4MRNqg==} engines: {node: '>=8.3.0'} dependencies: - '@babel/traverse': 7.22.8(supports-color@5.5.0) - '@babel/types': 7.22.5 + '@babel/traverse': 7.23.2(supports-color@5.5.0) + '@babel/types': 7.23.0 c8: 7.14.0 transitivePeerDependencies: - supports-color @@ -27374,9 +27490,9 @@ packages: /etcd3@1.1.0: resolution: {integrity: sha512-9SnJvaPyW5IYdJHJWX91CYo1QZCAev2B7PxrQWIe2tGbutZOmsXHfjNDKwEltFWoG5h++K3/JfWPjJdOGX90hg==} dependencies: - '@grpc/grpc-js': 1.8.17 + '@grpc/grpc-js': 1.9.7 '@grpc/proto-loader': 0.5.6 - bignumber.js: 9.1.1 + bignumber.js: 9.1.2 cockatiel: 1.1.1 dev: false @@ -27565,16 +27681,15 @@ packages: jest-regex-util: 26.0.0 dev: false - /expect@29.6.1: - resolution: {integrity: sha512-XEdDLonERCU1n9uR56/Stx9OqojaLAQtZf9PrCHH9Hl8YXiEIka3H4NXJ3NOIBmQJTg7+j7buh34PMHfJujc8g==} + /expect@29.7.0: + resolution: {integrity: sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/expect-utils': 29.6.1 - '@types/node': 7.0.12 - jest-get-type: 29.4.3 - jest-matcher-utils: 29.6.1 - jest-message-util: 29.6.1 - jest-util: 29.6.1 + '@jest/expect-utils': 29.7.0 + jest-get-type: 29.6.3 + jest-matcher-utils: 29.7.0 + jest-message-util: 29.7.0 + jest-util: 29.7.0 dev: true /express@4.18.2(supports-color@6.1.0): @@ -27692,14 +27807,6 @@ packages: resolution: {integrity: sha512-oNvBekbhsm/0PNSOWca5raHNAi6dG960Bx6LJgxDPNF59WpuspgQ17bN5MKwOr7JcFdQYc7StW3VZ28DBZLavQ==} dev: true - /falafel@2.2.5: - resolution: {integrity: sha512-HuC1qF9iTnHDnML9YZAdCDQwT0yKl/U55K4XSUXqGAA2GLoafFgWRqdAbhWJxXaYD4pyoVxAJ8wH670jMpI9DQ==} - engines: {node: '>=0.4.0'} - dependencies: - acorn: 7.4.1 - isarray: 2.0.5 - dev: false - /fancy-log@1.3.3: resolution: {integrity: sha512-k9oEhlyc0FrVh25qYuSELjr8oxsCoc4/LEZfg2iJJrfEk/tZL9bCoJE47gqAvI2m/AUjluCS4+3I0eTx8n3AEw==} engines: {node: '>= 0.10'} @@ -27746,8 +27853,8 @@ packages: micromatch: 4.0.5 dev: true - /fast-glob@3.3.0: - resolution: {integrity: sha512-ChDuvbOypPuNjO8yIDf36x7BlZX1smcUMTTcyoIjycexOxd6DFsKsg21qVBzEmr3G7fUKIRy2/psii+CIUt7FA==} + /fast-glob@3.3.1: + resolution: {integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==} engines: {node: '>=8.6.0'} dependencies: '@nodelib/fs.stat': 2.0.5 @@ -27761,9 +27868,10 @@ packages: /fast-levenshtein@2.0.6: resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} + dev: true - /fast-redact@3.2.0: - resolution: {integrity: sha512-zaTadChr+NekyzallAMXATXLOR8MNx3zqpZ0MUF2aGf4EathnG0f32VLODNlY8IuGY3HoRO2L6/6fSzNsLaHIw==} + /fast-redact@3.3.0: + resolution: {integrity: sha512-6T5V1QK1u4oF+ATxs1lWUmlEk6P2T9HqJG3e2DnHOdVgZy2rFJBoEnrIedcTXlkAHU/zKC+7KETJ+KGGKwxgMQ==} engines: {node: '>=6'} dev: true @@ -27773,8 +27881,8 @@ packages: punycode: 1.4.1 dev: true - /fast-xml-parser@4.2.5: - resolution: {integrity: sha512-B9/wizE4WngqQftFPmdaMYlXoJlJOYxGQOanC77fq9k8+Z0v5dDSVh+3glErdIROP//s/jgb7ZuxKfB8nVyo0g==} + /fast-xml-parser@4.3.2: + resolution: {integrity: sha512-rmrXUXwbJedoXkStenj1kkljNF7ugn5ZjR9FJcwmCfcCbtOMDghPajbc+Tck6vE6F5XsDmx+Pr2le9fw8+pXBg==} hasBin: true dependencies: strnum: 1.0.5 @@ -27829,7 +27937,7 @@ packages: babel-plugin-react-require: 3.1.1 chalk: 2.4.2 chokidar: 3.5.3 - es5-imcompatible-versions: 0.1.86 + es5-imcompatible-versions: 0.1.88 glob: 7.2.3 gulp-if: 2.0.2 gulp-less: 4.0.1 @@ -27860,29 +27968,29 @@ packages: - webpack dev: true - /father@2.30.23(@babel/core@7.22.9)(@storybook/source-loader@7.0.27)(@types/react@17.0.0)(eslint@7.32.0)(jest@29.6.1)(react-dom@16.14.0)(react@17.0.2)(regenerator-runtime@0.13.11)(typescript@5.1.6)(webpack-cli@5.0.0)(webpack@5.88.0): + /father@2.30.23(@babel/core@7.23.2)(@storybook/source-loader@7.5.1)(@types/react@17.0.0)(eslint@7.32.0)(jest@29.7.0)(react-dom@16.14.0)(react@17.0.2)(regenerator-runtime@0.14.0)(typescript@5.1.6)(webpack-cli@5.0.0)(webpack@5.88.0): resolution: {integrity: sha512-6VX1UL2urtmM4b4Wh9xAulSsC9a4G4pOpPR7bqfpCqFxw4zflrrskktg398jqag2HFFbu0uvFq4z78vVqO46Gg==} hasBin: true dependencies: - '@babel/plugin-proposal-decorators': 7.4.4(@babel/core@7.22.9) - '@storybook/addon-a11y': 5.3.22(@types/react@17.0.0)(react-dom@16.14.0)(regenerator-runtime@0.13.11) - '@storybook/addon-actions': 5.3.21(@types/react@17.0.0)(react-dom@16.14.0)(regenerator-runtime@0.13.11) + '@babel/plugin-proposal-decorators': 7.4.4(@babel/core@7.23.2) + '@storybook/addon-a11y': 5.3.22(@types/react@17.0.0)(react-dom@16.14.0)(regenerator-runtime@0.14.0) + '@storybook/addon-actions': 5.3.21(@types/react@17.0.0)(react-dom@16.14.0)(regenerator-runtime@0.14.0) '@storybook/addon-console': 1.2.3(@storybook/addon-actions@5.3.21) - '@storybook/addon-knobs': 5.3.21(@types/react@17.0.0)(react-dom@16.14.0)(react@17.0.2)(regenerator-runtime@0.13.11) - '@storybook/addon-links': 5.3.21(react-dom@16.14.0)(react@17.0.2)(regenerator-runtime@0.13.11) - '@storybook/addon-notes': 5.3.21(@types/react@17.0.0)(react-dom@16.14.0)(react@17.0.2)(regenerator-runtime@0.13.11) - '@storybook/addon-options': 5.3.21(react-dom@16.14.0)(react@17.0.2)(regenerator-runtime@0.13.11) - '@storybook/addon-storysource': 5.3.21(@storybook/source-loader@7.0.27)(@types/react@17.0.0)(react-dom@16.14.0)(react@17.0.2) - '@storybook/addons': 5.3.22(react-dom@16.14.0)(regenerator-runtime@0.13.11) - '@storybook/cli': 5.3.22(jest@29.6.1) - '@storybook/react': 5.3.21(@babel/core@7.22.9)(@types/react@17.0.0)(babel-loader@8.2.5)(eslint@7.32.0)(react-dom@16.14.0)(react@17.0.2)(typescript@5.1.6)(webpack-cli@5.0.0) + '@storybook/addon-knobs': 5.3.21(@types/react@17.0.0)(react-dom@16.14.0)(react@17.0.2)(regenerator-runtime@0.14.0) + '@storybook/addon-links': 5.3.21(react-dom@16.14.0)(react@17.0.2)(regenerator-runtime@0.14.0) + '@storybook/addon-notes': 5.3.21(@types/react@17.0.0)(react-dom@16.14.0)(react@17.0.2)(regenerator-runtime@0.14.0) + '@storybook/addon-options': 5.3.21(react-dom@16.14.0)(react@17.0.2)(regenerator-runtime@0.14.0) + '@storybook/addon-storysource': 5.3.21(@storybook/source-loader@7.5.1)(@types/react@17.0.0)(react-dom@16.14.0)(react@17.0.2) + '@storybook/addons': 5.3.22(react-dom@16.14.0)(regenerator-runtime@0.14.0) + '@storybook/cli': 5.3.22(jest@29.7.0) + '@storybook/react': 5.3.21(@babel/core@7.23.2)(@types/react@17.0.0)(babel-loader@8.2.5)(eslint@7.32.0)(react-dom@16.14.0)(react@17.0.2)(typescript@5.1.6)(webpack-cli@5.0.0) '@storybook/theming': 5.3.22(react-dom@16.14.0)(react@17.0.2) '@umijs/fabric': 2.14.1 - babel-loader: 8.2.5(@babel/core@7.22.9)(webpack@5.88.0) + babel-loader: 8.2.5(@babel/core@7.23.2)(webpack@5.88.0) docz: 1.2.0(@types/react@17.0.0)(eslint@7.32.0)(react-dom@16.14.0)(react@17.0.2)(webpack-cli@5.0.0) docz-core: 1.2.0(@types/react@17.0.0)(eslint@7.32.0)(react-dom@16.14.0)(react@17.0.2)(webpack-cli@5.0.0) docz-plugin-umi-css: 0.14.1(@types/react@17.0.0)(react-dom@16.14.0)(react@17.0.2)(typescript@5.1.6)(webpack-cli@5.0.0) - docz-theme-umi: 2.1.1(@babel/core@7.22.9)(@types/react@17.0.0)(eslint@7.32.0)(react-dom@16.14.0)(react@17.0.2)(webpack-cli@5.0.0) + docz-theme-umi: 2.1.1(@babel/core@7.23.2)(@types/react@17.0.0)(eslint@7.32.0)(react-dom@16.14.0)(react@17.0.2)(webpack-cli@5.0.0) father-build: 1.22.5(webpack@5.88.0) fs-extra: 8.1.0 gh-pages: 2.0.1 @@ -27894,7 +28002,7 @@ packages: signale: 1.4.0 slash2: 2.0.0 staged-git-files: 1.3.0 - storybook-addon-source: 2.0.11(@types/react@17.0.0)(react-dom@16.14.0)(regenerator-runtime@0.13.11)(webpack@5.88.0) + storybook-addon-source: 2.0.11(@types/react@17.0.0)(react-dom@16.14.0)(regenerator-runtime@0.14.0)(webpack@5.88.0) umi-test: 1.9.7 update-notifier: 3.0.0 yargs-parser: 13.1.2 @@ -27926,29 +28034,29 @@ packages: - webpack-command dev: true - /father@2.30.23(@babel/core@7.22.9)(@storybook/source-loader@7.0.27)(@types/react@17.0.0)(eslint@7.32.0)(jest@29.6.1)(react-dom@17.0.2)(react@17.0.2)(regenerator-runtime@0.13.11)(typescript@5.1.6)(webpack-cli@5.0.0)(webpack@5.88.0): + /father@2.30.23(@babel/core@7.23.2)(@storybook/source-loader@7.5.1)(@types/react@17.0.0)(eslint@7.32.0)(jest@29.7.0)(react-dom@17.0.2)(react@17.0.2)(regenerator-runtime@0.14.0)(typescript@5.1.6)(webpack-cli@5.0.0)(webpack@5.88.0): resolution: {integrity: sha512-6VX1UL2urtmM4b4Wh9xAulSsC9a4G4pOpPR7bqfpCqFxw4zflrrskktg398jqag2HFFbu0uvFq4z78vVqO46Gg==} hasBin: true dependencies: - '@babel/plugin-proposal-decorators': 7.4.4(@babel/core@7.22.9) - '@storybook/addon-a11y': 5.3.22(@types/react@17.0.0)(react-dom@17.0.2)(regenerator-runtime@0.13.11) - '@storybook/addon-actions': 5.3.21(@types/react@17.0.0)(react-dom@17.0.2)(regenerator-runtime@0.13.11) + '@babel/plugin-proposal-decorators': 7.4.4(@babel/core@7.23.2) + '@storybook/addon-a11y': 5.3.22(@types/react@17.0.0)(react-dom@17.0.2)(regenerator-runtime@0.14.0) + '@storybook/addon-actions': 5.3.21(@types/react@17.0.0)(react-dom@17.0.2)(regenerator-runtime@0.14.0) '@storybook/addon-console': 1.2.3(@storybook/addon-actions@5.3.21) - '@storybook/addon-knobs': 5.3.21(@types/react@17.0.0)(react-dom@17.0.2)(react@17.0.2)(regenerator-runtime@0.13.11) - '@storybook/addon-links': 5.3.21(react-dom@17.0.2)(react@17.0.2)(regenerator-runtime@0.13.11) - '@storybook/addon-notes': 5.3.21(@types/react@17.0.0)(react-dom@17.0.2)(react@17.0.2)(regenerator-runtime@0.13.11) - '@storybook/addon-options': 5.3.21(react-dom@17.0.2)(react@17.0.2)(regenerator-runtime@0.13.11) - '@storybook/addon-storysource': 5.3.21(@storybook/source-loader@7.0.27)(@types/react@17.0.0)(react-dom@17.0.2)(react@17.0.2) - '@storybook/addons': 5.3.22(react-dom@17.0.2)(regenerator-runtime@0.13.11) - '@storybook/cli': 5.3.22(jest@29.6.1) - '@storybook/react': 5.3.21(@babel/core@7.22.9)(@types/react@17.0.0)(babel-loader@8.2.5)(eslint@7.32.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6)(webpack-cli@5.0.0) + '@storybook/addon-knobs': 5.3.21(@types/react@17.0.0)(react-dom@17.0.2)(react@17.0.2)(regenerator-runtime@0.14.0) + '@storybook/addon-links': 5.3.21(react-dom@17.0.2)(react@17.0.2)(regenerator-runtime@0.14.0) + '@storybook/addon-notes': 5.3.21(@types/react@17.0.0)(react-dom@17.0.2)(react@17.0.2)(regenerator-runtime@0.14.0) + '@storybook/addon-options': 5.3.21(react-dom@17.0.2)(react@17.0.2)(regenerator-runtime@0.14.0) + '@storybook/addon-storysource': 5.3.21(@storybook/source-loader@7.5.1)(@types/react@17.0.0)(react-dom@17.0.2)(react@17.0.2) + '@storybook/addons': 5.3.22(react-dom@17.0.2)(regenerator-runtime@0.14.0) + '@storybook/cli': 5.3.22(jest@29.7.0) + '@storybook/react': 5.3.21(@babel/core@7.23.2)(@types/react@17.0.0)(babel-loader@8.2.5)(eslint@7.32.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6)(webpack-cli@5.0.0) '@storybook/theming': 5.3.22(react-dom@17.0.2)(react@17.0.2) '@umijs/fabric': 2.14.1 - babel-loader: 8.2.5(@babel/core@7.22.9)(webpack@5.88.0) + babel-loader: 8.2.5(@babel/core@7.23.2)(webpack@5.88.0) docz: 1.2.0(@types/react@17.0.0)(eslint@7.32.0)(react-dom@17.0.2)(react@17.0.2)(webpack-cli@5.0.0) docz-core: 1.2.0(@types/react@17.0.0)(eslint@7.32.0)(react-dom@17.0.2)(react@17.0.2)(webpack-cli@5.0.0) docz-plugin-umi-css: 0.14.1(@types/react@17.0.0)(react-dom@17.0.2)(react@17.0.2)(typescript@5.1.6)(webpack-cli@5.0.0) - docz-theme-umi: 2.1.1(@babel/core@7.22.9)(@types/react@17.0.0)(eslint@7.32.0)(react-dom@17.0.2)(react@17.0.2)(webpack-cli@5.0.0) + docz-theme-umi: 2.1.1(@babel/core@7.23.2)(@types/react@17.0.0)(eslint@7.32.0)(react-dom@17.0.2)(react@17.0.2)(webpack-cli@5.0.0) father-build: 1.22.5(webpack@5.88.0) fs-extra: 8.1.0 gh-pages: 2.0.1 @@ -27960,7 +28068,7 @@ packages: signale: 1.4.0 slash2: 2.0.0 staged-git-files: 1.3.0 - storybook-addon-source: 2.0.11(@types/react@17.0.0)(react-dom@17.0.2)(regenerator-runtime@0.13.11)(webpack@5.88.0) + storybook-addon-source: 2.0.11(@types/react@17.0.0)(react-dom@17.0.2)(regenerator-runtime@0.14.0)(webpack@5.88.0) umi-test: 1.9.7 update-notifier: 3.0.0 yargs-parser: 13.1.2 @@ -27992,16 +28100,16 @@ packages: - webpack-command dev: true - /father@4.0.7(styled-components@6.0.4)(webpack@5.88.0): + /father@4.0.7(styled-components@6.1.0)(webpack@5.88.0): resolution: {integrity: sha512-w7wFekTCoxlpeuDK3Vjl5JKaIeYy8rHhD7K7636tjGSo0lKRkyWPeUpSxcPEFiJrWKh1RaqIhhX05HkXxQ9D5Q==} hasBin: true dependencies: '@microsoft/api-extractor': 7.29.5 - '@umijs/babel-preset-umi': 4.0.72(styled-components@6.0.4) - '@umijs/bundler-utils': 4.0.72 - '@umijs/bundler-webpack': 4.0.72(styled-components@6.0.4)(typescript@4.7.4)(webpack@5.88.0) - '@umijs/core': 4.0.72 - '@umijs/utils': 4.0.72 + '@umijs/babel-preset-umi': 4.0.87(styled-components@6.1.0) + '@umijs/bundler-utils': 4.0.87 + '@umijs/bundler-webpack': 4.0.87(styled-components@6.1.0)(typescript@4.7.4)(webpack@5.88.0) + '@umijs/core': 4.0.87 + '@umijs/utils': 4.0.87 '@vercel/ncc': 0.33.3 babel-plugin-dynamic-import-node: 2.3.3 babel-plugin-module-resolver: 4.1.0 @@ -28064,7 +28172,7 @@ packages: object-assign: 4.1.1 promise: 7.3.1 setimmediate: 1.0.5 - ua-parser-js: 0.7.35 + ua-parser-js: 0.7.36 /fbjs@3.0.5: resolution: {integrity: sha512-ztsSx77JBtkuMrEypfhgc3cI0+0h+svqeie7xHbh1k/IKdcydnvadp/mUaGgjAOXQmQSxsqgaRhS3q9fy+1kxg==} @@ -28075,7 +28183,7 @@ packages: object-assign: 4.1.1 promise: 7.3.1 setimmediate: 1.0.5 - ua-parser-js: 1.0.35 + ua-parser-js: 1.0.36 transitivePeerDependencies: - encoding dev: false @@ -28112,10 +28220,10 @@ packages: resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} engines: {node: ^10.12.0 || >=12.0.0} dependencies: - flat-cache: 3.0.4 + flat-cache: 3.1.1 dev: true - /file-loader@3.0.1(webpack@4.46.0): + /file-loader@3.0.1(webpack@4.47.0): resolution: {integrity: sha512-4sNIOXgtH/9WZq4NvlfU3Opn5ynUsqBwSLyM+I7UOwdGigTBYfVVQEwe/msZNX/j4pCJTIM14Fsw66Svo1oVrw==} engines: {node: '>= 6.9.0'} peerDependencies: @@ -28123,10 +28231,10 @@ packages: dependencies: loader-utils: 1.4.2 schema-utils: 1.0.0 - webpack: 4.46.0(webpack-cli@5.0.0) + webpack: 4.47.0(webpack-cli@5.0.0) dev: true - /file-loader@4.3.0(webpack@4.46.0): + /file-loader@4.3.0(webpack@4.47.0): resolution: {integrity: sha512-aKrYPYjF1yG3oX0kWRrqrSMfgftm7oJW5M+m4owoldH5C51C0RkIwB++JbRvEW3IU6/ZG5n8UvEcdgwOt2UOWA==} engines: {node: '>= 8.9.0'} peerDependencies: @@ -28134,7 +28242,7 @@ packages: dependencies: loader-utils: 1.4.2 schema-utils: 2.7.1 - webpack: 4.46.0(webpack-cli@5.0.0) + webpack: 4.47.0(webpack-cli@5.0.0) dev: true /file-name@0.1.0: @@ -28167,10 +28275,6 @@ packages: dev: true optional: true - /file-uri-to-path@2.0.0: - resolution: {integrity: sha512-hjPFI8oE/2iQPVe4gbrJ73Pp+Xfub2+WI2LlXDbsaJBwT5wuMh35WNWVYYTpnz895shtwfyutMFLFywpQAFdLg==} - engines: {node: '>= 6'} - /filename-reserved-regex@1.0.0: resolution: {integrity: sha512-UZArj7+U+2reBBVCvVmRlyq9D7EYQdUtuNN+1iz7pF1jGcJ2L0TjiRCxsTZfj2xFbM4c25uGCUDpKTHA7L2TKg==} engines: {node: '>=0.10.0'} @@ -28348,16 +28452,21 @@ packages: pkg-dir: 4.2.0 dev: true - /flat-cache@3.0.4: - resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==} - engines: {node: ^10.12.0 || >=12.0.0} + /flat-cache@3.1.1: + resolution: {integrity: sha512-/qM2b3LUIaIgviBQovTLvijfyOQXPtSRnRK26ksj2J7rzPIecePUIpJsZ4T02Qg+xiAEKIs5K8dsHEd+VaKa/Q==} + engines: {node: '>=12.0.0'} dependencies: - flatted: 3.2.7 + flatted: 3.2.9 + keyv: 4.5.4 rimraf: 3.0.2 dev: true - /flatted@3.2.7: - resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==} + /flat@5.0.2: + resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==} + hasBin: true + + /flatted@3.2.9: + resolution: {integrity: sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==} dev: true /flatten@1.0.3: @@ -28373,14 +28482,14 @@ packages: engines: {node: '>=0.4.0'} dev: false - /flow-parser@0.212.0: - resolution: {integrity: sha512-45eNySEs7n692jLN+eHQ6zvC9e1cqu9Dq1PpDHTcWRri2HFEs8is8Anmp1RcIhYxA5TZYD6RuESG2jdj6nkDJQ==} + /flow-parser@0.219.5: + resolution: {integrity: sha512-lHx/cl2XjopBx/ma9RYhG7FGj2JLKacoBwtI3leOp8AwRDPGwu6bzJoaCMfIl/sq14KdtY5MGzd5q6nKfGzcuQ==} engines: {node: '>=0.4.0'} + dev: true /flru@1.0.2: resolution: {integrity: sha512-kWyh8ADvHBFz6ua5xYOPnUroZTT/bwWfrCeL0Wj1dzG4/YOmOcfJ99W8dOVyyynJN35rZ9aCOtHChqQovV7yog==} engines: {node: '>=6'} - dev: false /flush-write-stream@1.1.1: resolution: {integrity: sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==} @@ -28406,19 +28515,19 @@ packages: contour_plot: 0.0.1 json2module: 0.0.3 rollup: 0.25.8 - tape: 4.16.2 + tape: 4.17.0 uglify-js: 2.8.29 dev: false - /focus-lock@0.11.6: - resolution: {integrity: sha512-KSuV3ur4gf2KqMNoZx3nXNVhqCkn42GuTYCX4tXPEwf0MjpFQmNMiN6m7dXaUXgIoivL6/65agoUMg4RLS0Vbg==} + /focus-lock@1.0.0: + resolution: {integrity: sha512-a8Ge6cdKh9za/GZR/qtigTAk7SrGore56EFcoMshClsh7FLk1zwszc/ltuMfKhx56qeuyL/jWQ4J4axou0iJ9w==} engines: {node: '>=10'} dependencies: - tslib: 2.6.0 + tslib: 2.6.2 dev: true - /follow-redirects@1.15.2(debug@4.3.4): - resolution: {integrity: sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==} + /follow-redirects@1.15.3(debug@4.3.4): + resolution: {integrity: sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q==} engines: {node: '>=4.0'} peerDependencies: debug: '*' @@ -28458,13 +28567,6 @@ packages: for-in: 1.0.2 dev: true - /foreground-child@1.5.6: - resolution: {integrity: sha512-3TOY+4TKV0Ml83PXJQY+JFQaHNV38lzQDIzzXYg1kWdBLenGgoZhAs0CKgzI31vi2pWEpQMq/Yi4bpKwCPkw7g==} - dependencies: - cross-spawn: 4.0.2 - signal-exit: 3.0.7 - dev: true - /foreground-child@2.0.0: resolution: {integrity: sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==} engines: {node: '>=8.0.0'} @@ -28481,7 +28583,7 @@ packages: resolution: {integrity: sha512-Pqq5NnT78ehvUnAk/We/Jr22vSvanRlFTpAmQ88xBY/M1TlHe+P0ILuEyXS595ysdGfaj22634LBkGMA2GTcpA==} dev: true - /fork-ts-checker-webpack-plugin@1.5.0(eslint@7.32.0)(typescript@3.3.4000)(webpack@4.46.0): + /fork-ts-checker-webpack-plugin@1.5.0(eslint@7.32.0)(typescript@3.3.4000)(webpack@4.47.0): resolution: {integrity: sha512-zEhg7Hz+KhZlBhILYpXy+Beu96gwvkROWJiTXOCyOOMMrdBIRPvsBpBqgTI4jfJGrJXcqGwJR8zsBGDmzY0jsA==} engines: {node: '>=6.11.5', yarn: '>=1.0.0'} peerDependencies: @@ -28504,13 +28606,13 @@ packages: semver: 5.7.2 tapable: 1.1.3 typescript: 3.3.4000 - webpack: 4.46.0(webpack-cli@5.0.0) + webpack: 4.47.0(webpack-cli@5.0.0) worker-rpc: 0.1.1 transitivePeerDependencies: - supports-color dev: true - /fork-ts-checker-webpack-plugin@1.5.0(eslint@7.32.0)(typescript@5.1.6)(webpack@4.46.0): + /fork-ts-checker-webpack-plugin@1.5.0(eslint@7.32.0)(typescript@5.1.6)(webpack@4.47.0): resolution: {integrity: sha512-zEhg7Hz+KhZlBhILYpXy+Beu96gwvkROWJiTXOCyOOMMrdBIRPvsBpBqgTI4jfJGrJXcqGwJR8zsBGDmzY0jsA==} engines: {node: '>=6.11.5', yarn: '>=1.0.0'} peerDependencies: @@ -28533,7 +28635,7 @@ packages: semver: 5.7.2 tapable: 1.1.3 typescript: 5.1.6 - webpack: 4.46.0(webpack-cli@5.0.0) + webpack: 4.47.0(webpack-cli@5.0.0) worker-rpc: 0.1.1 transitivePeerDependencies: - supports-color @@ -28546,7 +28648,7 @@ packages: typescript: '>3.6.0' webpack: ^5.11.0 dependencies: - '@babel/code-frame': 7.22.5 + '@babel/code-frame': 7.22.13 chalk: 4.1.2 chokidar: 3.5.3 cosmiconfig: 7.1.0 @@ -28604,8 +28706,8 @@ packages: deprecated: 'Please upgrade to latest, formidable@v2 or formidable@v3! Check these notes: https://bit.ly/2ZEqIau' dev: true - /formstream@1.2.0: - resolution: {integrity: sha512-ef4F+FQLnQLly1/AZ5OGNgGzzlOmp+T7+L/TaXASJ1GrETrpZb78/Mz7z+1Ra5FX3nLZE0WIOInGOoa81LxWew==} + /formstream@1.3.1: + resolution: {integrity: sha512-FkW++ub+VbE5dpwukJVDizNWhSgp8FhmhI65pF7BZSVStBqe6Wgxe2Z9/Vhsn7l7nXCPwP+G1cyYlX8VwWOf0g==} dependencies: destroy: 1.2.0 mime: 2.6.0 @@ -28621,8 +28723,8 @@ packages: engines: {node: '>=0.8'} dev: false - /fraction.js@4.2.0: - resolution: {integrity: sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==} + /fraction.js@4.3.7: + resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==} dev: true /fragment-cache@0.2.1: @@ -28635,7 +28737,7 @@ packages: resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==} engines: {node: '>= 0.6'} - /friendly-errors-webpack-plugin@1.7.0(webpack@4.46.0): + /friendly-errors-webpack-plugin@1.7.0(webpack@4.47.0): resolution: {integrity: sha512-K27M3VK30wVoOarP651zDmb93R9zF28usW4ocaK3mfQeIEI5BPht/EzZs5E8QLLwbLRJQMwscAjDxYPb1FuNiw==} peerDependencies: webpack: ^2.0.0 || ^3.0.0 || ^4.0.0 @@ -28643,7 +28745,7 @@ packages: chalk: 1.1.3 error-stack-parser: 2.1.4 string-width: 2.1.1 - webpack: 4.46.0(webpack-cli@5.0.0) + webpack: 4.47.0(webpack-cli@5.0.0) dev: true /from2@2.3.0: @@ -28730,8 +28832,8 @@ packages: through2: 2.0.5 dev: true - /fs-monkey@1.0.4: - resolution: {integrity: sha512-INM/fWAxMICjttnD0DX1rBvinKskj5G1w+oy/pnm9u/tSlnBrzFonJMcalKJ30P8RRsPzKcCG7Q8l0jx5Fh9YQ==} + /fs-monkey@1.0.5: + resolution: {integrity: sha512-8uMbBjrhzW76TYgEV27Y5E//W2f/lTFmx78P2w19FZSxarhI/798APGQyuGCwmkNxgwGRhrLfvWyLBvNtuOmew==} dev: true /fs-readdir-recursive@1.1.0: @@ -28765,7 +28867,7 @@ packages: requiresBuild: true dependencies: bindings: 1.5.0 - nan: 2.17.0 + nan: 2.18.0 dev: true optional: true @@ -28778,30 +28880,23 @@ packages: dev: true optional: true - /fsevents@2.3.2: - resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==} + /fsevents@2.3.3: + resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} os: [darwin] requiresBuild: true optional: true - /ftp@0.3.10: - resolution: {integrity: sha512-faFVML1aBx2UoDStmLwv2Wptt4vw5x03xxX172nhA5Y5HBshW5JweqQ2W4xL4dezQTG8inJsuYcpPHHU3X5OTQ==} - engines: {node: '>=0.8.0'} - dependencies: - readable-stream: 1.1.14 - xregexp: 2.0.0 - - /function-bind@1.1.1: - resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==} + /function-bind@1.1.2: + resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} - /function.prototype.name@1.1.5: - resolution: {integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==} + /function.prototype.name@1.1.6: + resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.3 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 functions-have-names: 1.2.3 /functional-red-black-tree@1.0.1: @@ -28907,13 +29002,13 @@ packages: resolution: {integrity: sha512-oMgZYUtnPMZB6XieXiUADpRIc5kfD+RPfpiYe9aIlEYGIcOx2mTGgKmUkctlLof/ANleypqOJRhQypbrh33DkA==} dev: false - /get-intrinsic@1.2.1: - resolution: {integrity: sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==} + /get-intrinsic@1.2.2: + resolution: {integrity: sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==} dependencies: - function-bind: 1.1.1 - has: 1.0.3 + function-bind: 1.1.2 has-proto: 1.0.1 has-symbols: 1.0.3 + hasown: 2.0.0 /get-own-enumerable-property-symbols@3.0.2: resolution: {integrity: sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==} @@ -28972,21 +29067,8 @@ packages: resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 - get-intrinsic: 1.2.1 - - /get-uri@3.0.2: - resolution: {integrity: sha512-+5s0SJbGoyiJTZZ2JTpFPLMPSch72KEqGOTvQsBqg0RBWvwhWUSYZFAtz3TPW0GXJuLBJPts1E241iHg+VRfhg==} - engines: {node: '>= 6'} - dependencies: - '@tootallnate/once': 1.1.2 - data-uri-to-buffer: 3.0.1 - debug: 4.3.4(supports-color@5.5.0) - file-uri-to-path: 2.0.0 - fs-extra: 8.1.0 - ftp: 0.3.10 - transitivePeerDependencies: - - supports-color + call-bind: 1.0.5 + get-intrinsic: 1.2.2 /get-value@2.0.6: resolution: {integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==} @@ -29013,17 +29095,17 @@ packages: rimraf: 2.7.1 dev: true - /gh-pages@5.0.0: - resolution: {integrity: sha512-Nqp1SjkPIB94Xw/3yYNTUL+G2dxlhjvv1zeN/4kMC1jfViTEqhtVz/Ba1zSXHuvXCN9ADNS1dN4r5/J/nZWEQQ==} + /gh-pages@6.0.0: + resolution: {integrity: sha512-FXZWJRsvP/fK2HJGY+Di6FRNHvqFF6gOIELaopDjXXgjeOYSNURcuYwEO/6bwuq6koP5Lnkvnr5GViXzuOB89g==} engines: {node: '>=10'} hasBin: true dependencies: async: 3.2.4 - commander: 2.20.3 + commander: 11.1.0 email-addresses: 5.0.0 filenamify: 4.3.0 find-cache-dir: 3.3.2 - fs-extra: 8.1.0 + fs-extra: 11.1.1 globby: 6.1.0 dev: true @@ -29134,7 +29216,7 @@ packages: fs.realpath: 1.0.0 inflight: 1.0.6 inherits: 2.0.4 - minimatch: 3.1.2 + minimatch: 3.0.4 once: 1.4.0 path-is-absolute: 1.0.1 dev: true @@ -29197,8 +29279,8 @@ packages: resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} engines: {node: '>=4'} - /globals@13.20.0: - resolution: {integrity: sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==} + /globals@13.23.0: + resolution: {integrity: sha512-XAmF0RjlrjY23MA51q3HltdlGxUpXPvg0GioKiD9X6HD28iMjo2dKC8Vqwm7lne4GNr78+RHTfliktR6ZH09wA==} engines: {node: '>=8'} dependencies: type-fest: 0.20.2 @@ -29213,7 +29295,7 @@ packages: resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==} engines: {node: '>= 0.4'} dependencies: - define-properties: 1.2.0 + define-properties: 1.2.1 /globby@10.0.0: resolution: {integrity: sha512-3LifW9M4joGZasyYPz2A1U74zbC/45fvpXUvO/9KbSa+VV0aGZarWkfdgKyR9sExNP0t0x0ss/UMJpNpcaTspw==} @@ -29222,7 +29304,7 @@ packages: '@types/glob': 7.2.0 array-union: 2.1.0 dir-glob: 3.0.1 - fast-glob: 3.3.0 + fast-glob: 3.3.1 glob: 7.2.3 ignore: 5.2.4 merge2: 1.4.1 @@ -29236,7 +29318,7 @@ packages: '@types/glob': 7.2.0 array-union: 2.1.0 dir-glob: 3.0.1 - fast-glob: 3.3.0 + fast-glob: 3.3.1 glob: 7.2.3 ignore: 5.2.4 merge2: 1.4.1 @@ -29249,7 +29331,7 @@ packages: dependencies: array-union: 2.1.0 dir-glob: 3.0.1 - fast-glob: 3.3.0 + fast-glob: 3.3.1 ignore: 5.2.4 merge2: 1.4.1 slash: 3.0.0 @@ -29319,14 +29401,14 @@ packages: /gopd@1.0.1: resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} dependencies: - get-intrinsic: 1.2.1 + get-intrinsic: 1.2.2 /got@6.7.1: resolution: {integrity: sha512-Y/K3EDuiQN9rTZhBvPRWMLXIKdeD1Rj0nzunfoi0Yyn5WBEbzxXKU9Ub2X41oZBagVWOBU3MuDonFMgPWQFnwg==} engines: {node: '>=4'} dependencies: '@types/keyv': 3.1.4 - '@types/responselike': 1.0.0 + '@types/responselike': 1.0.2 create-error-class: 3.0.2 duplexer3: 0.1.5 get-stream: 3.0.0 @@ -29346,7 +29428,7 @@ packages: '@sindresorhus/is': 0.14.0 '@szmarczak/http-timer': 1.1.2 '@types/keyv': 3.1.4 - '@types/responselike': 1.0.0 + '@types/responselike': 1.0.2 cacheable-request: 6.1.0 decompress-response: 3.3.0 duplexer3: 0.1.5 @@ -29382,10 +29464,10 @@ packages: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@types/react-dom': 17.0.20 + '@types/react-dom': 17.0.22 d3: 6.7.0 - less: 4.1.3 - less-loader: 10.2.0(less@4.1.3)(webpack@5.88.0) + less: 4.2.0 + less-loader: 10.2.0(less@4.2.0)(webpack@5.88.0) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) style-loader: 3.3.1(webpack@5.88.0) @@ -29419,7 +29501,7 @@ packages: resolution: {integrity: sha512-eBkcswUL1QD7lWF7bkrHVvrYK6jT5EcvAHlek4UuxSOougwzIFK1SMT/SyA3sbmAY+zVU1J8s2uHl77EDjvYyg==} engines: {node: '>=10'} dependencies: - ws: 8.13.0 + ws: 8.14.2 transitivePeerDependencies: - bufferutil - utf-8-validate @@ -29521,6 +29603,18 @@ packages: pify: 4.0.1 dev: true + /gzip-size@6.0.0: + resolution: {integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==} + engines: {node: '>=10'} + dependencies: + duplexer: 0.1.2 + dev: false + + /hammerjs@2.0.8: + resolution: {integrity: sha512-tSQXBXS/MWQOn/RKckawJ61vvsDpCom87JgxiYdGwHdOa0ht0vzUWDlfioofFCRU0L+6NGDt6XzbgoJvZkMeRQ==} + engines: {node: '>=0.8.0'} + dev: false + /handle-thing@2.0.1: resolution: {integrity: sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==} dev: true @@ -29579,10 +29673,10 @@ packages: resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} engines: {node: '>=8'} - /has-property-descriptors@1.0.0: - resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==} + /has-property-descriptors@1.0.1: + resolution: {integrity: sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==} dependencies: - get-intrinsic: 1.2.1 + get-intrinsic: 1.2.2 /has-proto@1.0.1: resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==} @@ -29634,11 +29728,9 @@ packages: engines: {node: '>=8'} dev: true - /has@1.0.3: - resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==} + /has@1.0.4: + resolution: {integrity: sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==} engines: {node: '>= 0.4.0'} - dependencies: - function-bind: 1.1.1 /hash-base@3.1.0: resolution: {integrity: sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==} @@ -29654,17 +29746,16 @@ packages: inherits: 2.0.4 minimalistic-assert: 1.0.1 - /hasha@3.0.0: - resolution: {integrity: sha512-w0Kz8lJFBoyaurBiNrIvxPqr/gJ6fOfSkpAPOepN3oECqGJag37xPbOv57izi/KP8auHgNYxn5fXtAb+1LsJ6w==} - engines: {node: '>=4'} + /hasown@2.0.0: + resolution: {integrity: sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==} + engines: {node: '>= 0.4'} dependencies: - is-stream: 1.1.0 - dev: true + function-bind: 1.1.2 /hast-to-hyperscript@9.0.1: resolution: {integrity: sha512-zQgLKqF+O2F72S1aa4y2ivxzSlko3MAvxkwG8ehGmNiqd98BIN3JM1rAJPmplEyLmGLO2QZYJtIneOSZ2YbJuA==} dependencies: - '@types/unist': 2.0.7 + '@types/unist': 2.0.9 comma-separated-tokens: 1.0.8 property-information: 5.6.0 space-separated-tokens: 1.1.5 @@ -29691,10 +29782,10 @@ packages: /hast-util-from-parse5@7.1.2: resolution: {integrity: sha512-Nz7FfPBuljzsN3tCQ4kCBKqdNhQE2l0Tn+X1ubgKBPRoiDIu1mL08Cfw4k7q71+Duyaw7DXDN+VTAp4Vh3oCOw==} dependencies: - '@types/hast': 2.3.5 - '@types/unist': 2.0.7 + '@types/hast': 2.3.7 + '@types/unist': 2.0.9 hastscript: 7.2.0 - property-information: 6.2.0 + property-information: 6.3.0 vfile: 5.3.7 vfile-location: 4.1.0 web-namespaces: 2.0.1 @@ -29710,7 +29801,7 @@ packages: /hast-util-heading-rank@2.1.1: resolution: {integrity: sha512-iAuRp+ESgJoRFJbSyaqsfvJDY6zzmFoEnL1gtz1+U8gKtGGj1p0CVlysuUAUjq95qlZESHINLThwJzNGmgGZxA==} dependencies: - '@types/hast': 2.3.5 + '@types/hast': 2.3.7 dev: false /hast-util-is-conditional-comment@1.0.4: @@ -29722,8 +29813,8 @@ packages: /hast-util-is-element@2.1.3: resolution: {integrity: sha512-O1bKah6mhgEq2WtVMk+Ta5K7pPMqsBBlmzysLdcwKVrqzZQ0CHqUPiIVspNhAG1rvxpvJjtGee17XfauZYKqVA==} dependencies: - '@types/hast': 2.3.5 - '@types/unist': 2.0.7 + '@types/hast': 2.3.7 + '@types/unist': 2.0.9 dev: false /hast-util-parse-selector@2.2.5: @@ -29732,13 +29823,13 @@ packages: /hast-util-parse-selector@3.1.1: resolution: {integrity: sha512-jdlwBjEexy1oGz0aJ2f4GKMaVKkA9jwjr4MjAAI22E5fM/TXVZHuS5OpONtdeIkRKqAaryQ2E9xNQxijoThSZA==} dependencies: - '@types/hast': 2.3.5 + '@types/hast': 2.3.7 dev: false /hast-util-raw@6.0.1: resolution: {integrity: sha512-ZMuiYA+UF7BXBtsTBNcLBF5HzXzkyE6MLzJnL605LKE8GJylNjGc4jjxazAHUtcwT5/CEt6afRKViYB4X66dig==} dependencies: - '@types/hast': 2.3.5 + '@types/hast': 2.3.7 hast-util-from-parse5: 6.0.1 hast-util-to-parse5: 6.0.0 html-void-elements: 1.0.5 @@ -29753,7 +29844,7 @@ packages: /hast-util-raw@6.1.0: resolution: {integrity: sha512-5FoZLDHBpka20OlZZ4I/+RBw5piVQ8iI1doEvffQhx5CbCyTtP8UCq8Tw6NmTAMtXgsQxmhW7Ly8OdFre5/YMQ==} dependencies: - '@types/hast': 2.3.5 + '@types/hast': 2.3.7 hast-util-from-parse5: 6.0.1 hast-util-to-parse5: 6.0.0 html-void-elements: 1.0.5 @@ -29768,7 +29859,7 @@ packages: /hast-util-raw@7.2.3: resolution: {integrity: sha512-RujVQfVsOrxzPOPSzZFiwofMArbQke6DJjnFfceiEbFh7S05CbPt0cYN+A5YeD3pso0JQk6O1aHBnx9+Pm2uqg==} dependencies: - '@types/hast': 2.3.5 + '@types/hast': 2.3.7 '@types/parse5': 6.0.3 hast-util-from-parse5: 7.1.2 hast-util-to-parse5: 7.1.0 @@ -29784,8 +29875,8 @@ packages: /hast-util-select@5.0.5: resolution: {integrity: sha512-QQhWMhgTFRhCaQdgTKzZ5g31GLQ9qRb1hZtDPMqQaOhpLBziWcshUS0uCR5IJ0U1jrK/mxg35fmcq+Dp/Cy2Aw==} dependencies: - '@types/hast': 2.3.5 - '@types/unist': 2.0.7 + '@types/hast': 2.3.7 + '@types/unist': 2.0.9 bcp-47-match: 2.0.3 comma-separated-tokens: 2.0.3 css-selector-parser: 1.4.1 @@ -29795,7 +29886,7 @@ packages: hast-util-whitespace: 2.0.1 not: 0.1.0 nth-check: 2.1.1 - property-information: 6.2.0 + property-information: 6.3.0 space-separated-tokens: 2.0.2 unist-util-visit: 4.1.2 zwitch: 2.0.4 @@ -29827,9 +29918,9 @@ packages: /hast-util-to-parse5@7.1.0: resolution: {integrity: sha512-YNRgAJkH2Jky5ySkIqFXTQiaqcAtJyVE+D5lkN6CdtOqrnkLfGYYrEcKuHOJZlp+MwjSwuD3fZuawI+sic/RBw==} dependencies: - '@types/hast': 2.3.5 + '@types/hast': 2.3.7 comma-separated-tokens: 2.0.3 - property-information: 6.2.0 + property-information: 6.3.0 space-separated-tokens: 2.0.2 web-namespaces: 2.0.1 zwitch: 2.0.4 @@ -29841,7 +29932,7 @@ packages: /hast-util-to-string@2.0.0: resolution: {integrity: sha512-02AQ3vLhuH3FisaMM+i/9sm4OXGSq1UhOOCpTLLQtHdL3tZt7qil69r8M8iDkZYyC0HCFylcYoP+8IO7ddta1A==} dependencies: - '@types/hast': 2.3.5 + '@types/hast': 2.3.7 dev: false /hast-util-to-text@2.0.1: @@ -29870,7 +29961,7 @@ packages: /hastscript@6.0.0: resolution: {integrity: sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==} dependencies: - '@types/hast': 2.3.5 + '@types/hast': 2.3.7 comma-separated-tokens: 1.0.8 hast-util-parse-selector: 2.2.5 property-information: 5.6.0 @@ -29879,10 +29970,10 @@ packages: /hastscript@7.2.0: resolution: {integrity: sha512-TtYPq24IldU8iKoJQqvZOuhi5CyCQRAbvDOX0x1eW6rsHSxa/1i2CCiptNTotGHJ3VoHRGmqiv6/D3q113ikkw==} dependencies: - '@types/hast': 2.3.5 + '@types/hast': 2.3.7 comma-separated-tokens: 2.0.3 hast-util-parse-selector: 3.1.1 - property-information: 6.2.0 + property-information: 6.3.0 space-separated-tokens: 2.0.2 dev: false @@ -29937,7 +30028,7 @@ packages: /history-with-query@4.10.4: resolution: {integrity: sha512-JnskQK8X+PbRFHSdDAExhoJyhLnlLZL+UuHQuQhys+Se9/ukRDRBWU4JVTjsiIfbv1fcEmR3oqKW56OYmk5M5w==} dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 loose-envify: 1.4.0 query-string: 6.14.1 resolve-pathname: 3.0.0 @@ -29948,7 +30039,7 @@ packages: /history@4.10.1: resolution: {integrity: sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==} dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 loose-envify: 1.4.0 resolve-pathname: 3.0.0 tiny-invariant: 1.3.1 @@ -29958,7 +30049,7 @@ packages: /history@5.3.0: resolution: {integrity: sha512-ZqaKwjjrAYUYfLG+htGaIIZ4nioX2L70ZUMIFysS3xvBsSG4x/n1V6TXV3N8ZYNuFGlDirFg32T7B6WOUPDYcQ==} dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 /hmac-drbg@1.0.1: resolution: {integrity: sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==} @@ -30007,8 +30098,8 @@ packages: lru-cache: 6.0.0 dev: true - /hotkeys-js@3.11.2: - resolution: {integrity: sha512-hLuR+wtvrVrVFHku5cud44cPXQf5ke+96TonRaGzlNSt22rh2LH65avLYFNsc+QpzMuOEQG/IxJT5mEop99rvg==} + /hotkeys-js@3.12.0: + resolution: {integrity: sha512-Z+N573ycUKIGwFYS3ID1RzMJiGmtWMGKMiaNLyJS8B1ei+MllF4ZYmKS2T0kMWBktOz+WZLVNikftEgnukOrXg==} dev: true /hpack.js@2.1.6: @@ -30031,8 +30122,8 @@ packages: /html-element-map@1.3.1: resolution: {integrity: sha512-6XMlxrAFX4UEEGxctfFnmrFaaZFNf9i5fNuV5wZ3WWQ4FVaNP1aX1LkX9j2mfEx1NpjeE/rL3nmgEn23GdFmrg==} dependencies: - array.prototype.filter: 1.0.2 - call-bind: 1.0.2 + array.prototype.filter: 1.0.3 + call-bind: 1.0.5 dev: true /html-encoding-sniffer@1.0.2: @@ -30111,13 +30202,13 @@ packages: engines: {node: '>=8'} dev: true - /html-to-react@1.6.0(react@17.0.2): - resolution: {integrity: sha512-W7HvCu2fipgz3F7fpEtIt2Ty6XcqFGQXOorR4+HQAk72y9mTtUH3BmJ43BEvXQHO+bt//z1Hbfe6JzojpSC/9w==} + /html-to-react@1.7.0(react@17.0.2): + resolution: {integrity: sha512-b5HTNaTGyOj5GGIMiWVr1k57egAZ/vGy0GGefnCQ1VW5hu9+eku8AXHtf2/DeD95cj/FKBKYa1J7SWBOX41yUQ==} peerDependencies: react: ^0.13.0 || ^0.14.0 || >=15 || 17 dependencies: domhandler: 5.0.3 - htmlparser2: 8.0.2 + htmlparser2: 9.0.0 lodash.camelcase: 4.3.0 react: 17.0.2 dev: true @@ -30129,22 +30220,22 @@ packages: resolution: {integrity: sha512-0quDb7s97CfemeJAnW9wC0hw78MtW7NU3hqtCD75g2vFlDLt36llsYD7uB7SUzojLMP24N5IatXf7ylGXiGG9A==} dev: false - /html-webpack-plugin@4.5.2(webpack@4.46.0): + /html-webpack-plugin@4.5.2(webpack@4.47.0): resolution: {integrity: sha512-q5oYdzjKUIPQVjOosjgvCHQOv9Ett9CYYHlgvJeXG0qQvdSojnBq4vAdQBwn1+yGveAwHCoe/rMR86ozX3+c2A==} engines: {node: '>=6.9'} peerDependencies: webpack: ^4.0.0 || ^5.0.0 dependencies: '@types/html-minifier-terser': 5.1.2 - '@types/tapable': 1.0.8 - '@types/webpack': 4.41.33 + '@types/tapable': 1.0.10 + '@types/webpack': 4.41.35 html-minifier-terser: 5.1.1 loader-utils: 1.4.2 lodash: 4.17.21 pretty-error: 2.1.2 tapable: 1.1.3 util.promisify: 1.0.0 - webpack: 4.46.0(webpack-cli@5.0.0) + webpack: 4.47.0(webpack-cli@5.0.0) dev: true /htmlparser2@3.10.1: @@ -30176,6 +30267,15 @@ packages: entities: 4.5.0 dev: true + /htmlparser2@9.0.0: + resolution: {integrity: sha512-uxbSI98wmFT/G4P2zXx4OVx04qWUmyFPrD2/CNepa2Zo3GPNaCaaxElDgwUrwYWkK1nr9fft0Ya8dws8coDLLQ==} + dependencies: + domelementtype: 2.3.0 + domhandler: 5.0.3 + domutils: 3.1.0 + entities: 4.5.0 + dev: true + /http-assert@1.5.0: resolution: {integrity: sha512-uPpH7OKX4H25hBmU6G1jWNaqJGpTXxey+YOUizJUAgu0AjLUeC8D73hTrhvDS5D+GJN1DN1+hhc/eF/wpxtp0w==} engines: {node: '>= 0.8'} @@ -30267,7 +30367,7 @@ packages: engines: {node: '>=8.0.0'} dependencies: eventemitter3: 4.0.7 - follow-redirects: 1.15.2(debug@4.3.4) + follow-redirects: 1.15.3(debug@4.3.4) requires-port: 1.0.0 transitivePeerDependencies: - debug @@ -30302,7 +30402,7 @@ packages: dependencies: assert-plus: 1.0.0 jsprim: 1.4.2 - sshpk: 1.17.0 + sshpk: 1.18.0 dev: true /https-browserify@1.0.0: @@ -30344,8 +30444,8 @@ packages: bytes: 2.2.0 dev: false - /humanize-duration@3.29.0: - resolution: {integrity: sha512-G5wZGwYTLaQAmYqhfK91aw3xt6wNbJW1RnWDh4qP1PvF4T/jnkjx2RVhG5kzB2PGsYGTn+oSDBQp+dMdILLxcg==} + /humanize-duration@3.30.0: + resolution: {integrity: sha512-NxpT0fhQTFuMTLnuu1Xp+ozNpYirQnbV3NlOjEKBYlE3uvMRu3LDuq8EPc3gVXxVYnchQfqVM4/+T9iwHPLLeA==} dev: true /humanize-ms@1.2.1: @@ -30413,13 +30513,13 @@ packages: postcss: 7.0.39 dev: true - /icss-utils@5.1.0(postcss@8.4.25): + /icss-utils@5.1.0(postcss@8.4.31): resolution: {integrity: sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.25 + postcss: 8.4.31 dev: true /identity-obj-proxy@3.0.0: @@ -30619,8 +30719,8 @@ packages: resolution: {integrity: sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==} dev: true - /inflation@2.0.0: - resolution: {integrity: sha512-m3xv4hJYR2oXw4o4Y5l6P5P16WYmazYof+el6Al3f+YlggGj6qT9kImBAnzDelRALnP5d3h4jGBPKzYCizjZZw==} + /inflation@2.1.0: + resolution: {integrity: sha512-t54PPJHG1Pp7VQvxyVCJ9mBbjG3Hqryges9bXoOO6GExCPa+//i/d5GSuFtpx3ALLd7lgIAur6zrIlBQyJuMlQ==} engines: {node: '>= 0.8.0'} dev: false @@ -30635,9 +30735,6 @@ packages: once: 1.4.0 wrappy: 1.0.2 - /inherits@2.0.1: - resolution: {integrity: sha512-8nWq2nLTAwd02jTqJExUYFSD/fKq6VH9Y/oG2accc/kdI0V98Bag8d5a4gi3XHz73rDWa2PvTtvcWYquKqSENA==} - /inherits@2.0.3: resolution: {integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==} @@ -30665,7 +30762,7 @@ packages: run-async: 2.4.1 rxjs: 6.6.7 string-width: 2.1.1 - strip-ansi: 5.2.0 + strip-ansi: 5.0.0 through: 2.3.8 dev: true @@ -30736,8 +30833,9 @@ packages: cfork: 1.9.0 debug: 3.2.7(supports-color@6.1.0) tcp-proxy.js: 1.5.0 - urllib: 2.40.0 + urllib: 2.41.0 transitivePeerDependencies: + - proxy-agent - supports-color dev: true @@ -30755,12 +30853,12 @@ packages: ipaddr.js: 1.9.1 dev: true - /internal-slot@1.0.5: - resolution: {integrity: sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==} + /internal-slot@1.0.6: + resolution: {integrity: sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==} engines: {node: '>= 0.4'} dependencies: - get-intrinsic: 1.2.1 - has: 1.0.3 + get-intrinsic: 1.2.2 + hasown: 2.0.0 side-channel: 1.0.4 /internmap@1.0.1: @@ -30815,7 +30913,7 @@ packages: '@formatjs/ecma402-abstract': 1.17.0 '@formatjs/fast-memoize': 2.2.0 '@formatjs/icu-messageformat-parser': 2.6.0 - tslib: 2.6.0 + tslib: 2.6.2 dev: false /intl-messageformat@2.2.0: @@ -30875,9 +30973,6 @@ packages: /ip@1.1.8: resolution: {integrity: sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==} - /ip@2.0.0: - resolution: {integrity: sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==} - /ipaddr.js@1.9.1: resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==} engines: {node: '>= 0.10'} @@ -30945,15 +31040,15 @@ packages: resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 + call-bind: 1.0.5 has-tostringtag: 1.0.0 /is-array-buffer@3.0.2: resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==} dependencies: - call-bind: 1.0.2 - get-intrinsic: 1.2.1 - is-typed-array: 1.1.10 + call-bind: 1.0.5 + get-intrinsic: 1.2.2 + is-typed-array: 1.1.12 /is-arrayish@0.2.1: resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} @@ -30997,7 +31092,7 @@ packages: resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 + call-bind: 1.0.5 has-tostringtag: 1.0.0 /is-buffer@1.1.6: @@ -31027,7 +31122,7 @@ packages: resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==} hasBin: true dependencies: - ci-info: 3.8.0 + ci-info: 3.9.0 dev: true /is-class-hotfix@0.0.6: @@ -31044,10 +31139,10 @@ packages: rgba-regex: 1.0.0 dev: true - /is-core-module@2.12.1: - resolution: {integrity: sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==} + /is-core-module@2.13.1: + resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==} dependencies: - has: 1.0.3 + hasown: 2.0.0 /is-data-descriptor@0.1.4: resolution: {integrity: sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==} @@ -31106,15 +31201,16 @@ packages: is-window: 1.0.2 dev: true - /is-equal@1.6.4: - resolution: {integrity: sha512-NiPOTBb5ahmIOYkJ7mVTvvB1bydnTzixvfO+59AjJKBpyjPBIULL3EHGxySyZijlVpewveJyhiLQThcivkkAtw==} + /is-equal@1.7.0: + resolution: {integrity: sha512-hErktGR9jmoYXNWlbrwGjc8eHh09mbY6TWSTTFtnMcKaCuSMN8z+Ni5ma/8mkbVpe4CbB7V6kN1MkCg9bCx5bA==} engines: {node: '>= 0.4'} dependencies: es-get-iterator: 1.1.3 + es-to-primitive: 1.2.1 functions-have-names: 1.2.3 - has: 1.0.3 has-bigints: 1.0.2 has-symbols: 1.0.3 + hasown: 2.0.0 is-arrow-function: 2.0.3 is-bigint: 1.0.4 is-boolean-object: 1.1.2 @@ -31126,9 +31222,9 @@ packages: is-string: 1.0.7 is-symbol: 1.0.4 isarray: 2.0.5 - object-inspect: 1.12.3 - object.entries: 1.1.6 - object.getprototypeof: 1.0.4 + object-inspect: 1.13.1 + object.entries: 1.1.7 + object.getprototypeof: 1.0.5 which-boxed-primitive: 1.0.2 which-collection: 1.0.1 dev: true @@ -31155,7 +31251,7 @@ packages: /is-finalizationregistry@1.0.2: resolution: {integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==} dependencies: - call-bind: 1.0.2 + call-bind: 1.0.5 dev: true /is-finite@1.1.0: @@ -31257,8 +31353,8 @@ packages: resolution: {integrity: sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 + call-bind: 1.0.5 + define-properties: 1.2.1 dev: false /is-negated-glob@1.0.0: @@ -31357,6 +31453,11 @@ packages: engines: {node: '>=0.10.0'} dev: true + /is-plain-object@5.0.0: + resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==} + engines: {node: '>=0.10.0'} + dev: false + /is-potential-custom-element-name@1.0.1: resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==} @@ -31367,14 +31468,14 @@ packages: /is-reference@1.2.1: resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==} dependencies: - '@types/estree': 1.0.1 + '@types/estree': 1.0.3 dev: true /is-regex@1.1.4: resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 + call-bind: 1.0.5 has-tostringtag: 1.0.0 /is-regexp@1.0.0: @@ -31418,7 +31519,7 @@ packages: /is-shared-array-buffer@1.0.2: resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==} dependencies: - call-bind: 1.0.2 + call-bind: 1.0.5 /is-stream@1.1.0: resolution: {integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==} @@ -31458,15 +31559,11 @@ packages: is-class-hotfix: 0.0.6 isstream: 0.1.2 - /is-typed-array@1.1.10: - resolution: {integrity: sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==} + /is-typed-array@1.1.12: + resolution: {integrity: sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==} engines: {node: '>= 0.4'} dependencies: - available-typed-arrays: 1.0.5 - call-bind: 1.0.2 - for-each: 0.3.3 - gopd: 1.0.1 - has-tostringtag: 1.0.0 + which-typed-array: 1.1.13 /is-typedarray@1.0.0: resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==} @@ -31507,13 +31604,13 @@ packages: /is-weakref@1.0.2: resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} dependencies: - call-bind: 1.0.2 + call-bind: 1.0.5 /is-weakset@2.0.2: resolution: {integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==} dependencies: - call-bind: 1.0.2 - get-intrinsic: 1.2.1 + call-bind: 1.0.5 + get-intrinsic: 1.2.2 dev: true /is-what@3.14.1: @@ -31584,12 +31681,12 @@ packages: resolution: {integrity: sha512-9c4TNAKYXM5PRyVcwUZrF3W09nQ+sO7+jydgs4ZGW9dhsLG2VOlISJABombdQqQRXCwuYG3sYV/puGf5rp0qmA==} dependencies: node-fetch: 1.7.3 - whatwg-fetch: 3.6.2 + whatwg-fetch: 3.6.19 /isomorphic-unfetch@2.1.1: resolution: {integrity: sha512-nd8AULy4i2rA8dv0nOBT9xieIegd3xi7NDxTQ9+iNXDTyaG6VbUYW3F+TdMRqxqXhDFWM2k7fttKx9W2Wd8JpQ==} dependencies: - node-fetch: 2.6.12 + node-fetch: 2.7.0 unfetch: 3.1.2 transitivePeerDependencies: - encoding @@ -31607,22 +31704,15 @@ packages: resolution: {integrity: sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==} engines: {node: '>=8'} - /istanbul-lib-hook@2.0.7: - resolution: {integrity: sha512-vrRztU9VRRFDyC+aklfLoeXyNdTfga2EI3udDGn4cZ6fpSXpHLV9X6CHvfoMCPtggg8zvDDmC4b9xfu0z6/llA==} - engines: {node: '>=6'} - dependencies: - append-transform: 1.0.0 - dev: true - /istanbul-lib-instrument@3.3.0: resolution: {integrity: sha512-5nnIN4vo5xQZHdXno/YDXJ0G+I3dAm4XgzfSVTPLQpj/zAV2dV6Juy0yaf10/zrJOJeHoN3fraFe+XRq2bFVZA==} engines: {node: '>=6'} dependencies: - '@babel/generator': 7.22.9 - '@babel/parser': 7.22.7 - '@babel/template': 7.22.5 - '@babel/traverse': 7.22.8(supports-color@5.5.0) - '@babel/types': 7.22.5 + '@babel/generator': 7.23.0 + '@babel/parser': 7.23.0 + '@babel/template': 7.22.15 + '@babel/traverse': 7.23.2(supports-color@5.5.0) + '@babel/types': 7.23.0 istanbul-lib-coverage: 2.0.5 semver: 6.3.1 transitivePeerDependencies: @@ -31646,13 +31736,26 @@ packages: engines: {node: '>=8'} dependencies: '@babel/core': 7.18.6 - '@babel/parser': 7.22.7 + '@babel/parser': 7.23.0 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.0 semver: 6.3.1 transitivePeerDependencies: - supports-color + /istanbul-lib-instrument@6.0.1: + resolution: {integrity: sha512-EAMEJBsYuyyztxMxW3g7ugGPkrZsV57v0Hmv3mm1uQsmB+QnZuepg731CRaIgeUVSdmsTngOkSnauNF8p7FIhA==} + engines: {node: '>=10'} + dependencies: + '@babel/core': 7.23.2 + '@babel/parser': 7.23.0 + '@istanbuljs/schema': 0.1.3 + istanbul-lib-coverage: 3.2.0 + semver: 7.5.4 + transitivePeerDependencies: + - supports-color + dev: true + /istanbul-lib-report@2.0.8: resolution: {integrity: sha512-fHBeG573EIihhAblwgxrSenp0Dby6tJMFR/HvlerBsrCTD5bkUuoNtn3gVh29ZCS824cGGBPn7Sg7cNk+2xUsQ==} engines: {node: '>=6'} @@ -31662,19 +31765,19 @@ packages: supports-color: 6.1.0 dev: true - /istanbul-lib-report@3.0.0: - resolution: {integrity: sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==} - engines: {node: '>=8'} + /istanbul-lib-report@3.0.1: + resolution: {integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==} + engines: {node: '>=10'} dependencies: istanbul-lib-coverage: 3.2.0 - make-dir: 3.1.0 + make-dir: 4.0.0 supports-color: 7.2.0 /istanbul-lib-source-maps@3.0.6: resolution: {integrity: sha512-R47KzMtDJH6X4/YW9XTx+jrLnZnscW4VpNN+1PViSYTejLVPWv7oov+Duf8YQSPyVRUvueQqz1TcsC6mooZTXw==} engines: {node: '>=6'} dependencies: - debug: 4.3.4(supports-color@5.5.0) + debug: 4.1.1 istanbul-lib-coverage: 2.0.5 make-dir: 2.1.0 rimraf: 2.7.1 @@ -31700,12 +31803,12 @@ packages: html-escaper: 2.0.2 dev: true - /istanbul-reports@3.1.5: - resolution: {integrity: sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==} + /istanbul-reports@3.1.6: + resolution: {integrity: sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==} engines: {node: '>=8'} dependencies: html-escaper: 2.0.2 - istanbul-lib-report: 3.0.0 + istanbul-lib-report: 3.0.1 /istextorbinary@2.6.0: resolution: {integrity: sha512-+XRlFseT8B3L9KyjxxLjfXSLMuErKDsd8DBNrsaxoViABMEZlOSCstwmw0qpoFX3+U6yWU1yhLudAe6/lETGGA==} @@ -31726,12 +31829,22 @@ packages: iterate-iterator: 1.0.2 dev: true + /iterator.prototype@1.1.2: + resolution: {integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==} + dependencies: + define-properties: 1.2.1 + get-intrinsic: 1.2.2 + has-symbols: 1.0.3 + reflect.getprototypeof: 1.0.4 + set-function-name: 2.0.1 + dev: true + /its-fine@1.1.1(react@17.0.2): resolution: {integrity: sha512-v1Ia1xl20KbuSGlwoaGsW0oxsw8Be+TrXweidxD9oT/1lAh6O3K3/GIM95Tt6WCiv6W+h2M7RB1TwdoAjQyyKw==} peerDependencies: react: '>=18.0 || 17' dependencies: - '@types/react-reconciler': 0.28.2 + '@types/react-reconciler': 0.28.6 react: 17.0.2 dev: false @@ -31771,39 +31884,41 @@ packages: throat: 5.0.0 dev: false - /jest-changed-files@29.5.0: - resolution: {integrity: sha512-IFG34IUMUaNBIxjQXF/iu7g6EcdMrGRRxaUSw92I/2g2YC6vCdTltl4nHvt7Ci5nSJwXIkCu8Ka1DKF+X7Z1Ag==} + /jest-changed-files@29.7.0: + resolution: {integrity: sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: execa: 5.1.1 + jest-util: 29.7.0 p-limit: 3.1.0 dev: true - /jest-circus@29.6.1: - resolution: {integrity: sha512-tPbYLEiBU4MYAL2XoZme/bgfUeotpDBd81lgHLCbDZZFaGmECk0b+/xejPFtmiBP87GgP/y4jplcRpbH+fgCzQ==} + /jest-circus@29.7.0: + resolution: {integrity: sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/environment': 29.6.1 - '@jest/expect': 29.6.1 - '@jest/test-result': 29.6.1 - '@jest/types': 29.6.1 + '@jest/environment': 29.7.0 + '@jest/expect': 29.7.0 + '@jest/test-result': 29.7.0 + '@jest/types': 29.6.3 '@types/node': 7.0.12 chalk: 4.1.2 co: 4.6.0 - dedent: 0.7.0 + dedent: 1.5.1 is-generator-fn: 2.1.0 - jest-each: 29.6.1 - jest-matcher-utils: 29.6.1 - jest-message-util: 29.6.1 - jest-runtime: 29.6.1 - jest-snapshot: 29.6.1 - jest-util: 29.6.1 + jest-each: 29.7.0 + jest-matcher-utils: 29.7.0 + jest-message-util: 29.7.0 + jest-runtime: 29.7.0 + jest-snapshot: 29.7.0 + jest-util: 29.7.0 p-limit: 3.1.0 - pretty-format: 29.6.1 - pure-rand: 6.0.2 + pretty-format: 29.7.0 + pure-rand: 6.0.4 slash: 3.0.0 stack-utils: 2.0.6 transitivePeerDependencies: + - babel-plugin-macros - supports-color dev: true @@ -31857,8 +31972,8 @@ packages: - utf-8-validate dev: false - /jest-cli@29.6.1: - resolution: {integrity: sha512-607dSgTA4ODIN6go9w6xY3EYkyPFGicx51a69H7yfvt7lN53xNswEVLovq+E77VsTRi5fWprLH0yl4DJgE8Ing==} + /jest-cli@29.7.0: + resolution: {integrity: sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true peerDependencies: @@ -31867,20 +31982,20 @@ packages: node-notifier: optional: true dependencies: - '@jest/core': 29.6.1 - '@jest/test-result': 29.6.1 - '@jest/types': 29.6.1 + '@jest/core': 29.7.0 + '@jest/test-result': 29.7.0 + '@jest/types': 29.6.3 chalk: 4.1.2 + create-jest: 29.7.0 exit: 0.1.2 - graceful-fs: 4.2.11 import-local: 3.1.0 - jest-config: 29.6.1(@types/node@7.0.12) - jest-util: 29.6.1 - jest-validate: 29.6.1 - prompts: 2.4.2 + jest-config: 29.7.0(@types/node@7.0.12) + jest-util: 29.7.0 + jest-validate: 29.7.0 yargs: 17.7.2 transitivePeerDependencies: - '@types/node' + - babel-plugin-macros - supports-color - ts-node dev: true @@ -31946,8 +32061,8 @@ packages: - utf-8-validate dev: false - /jest-config@29.6.1(@types/node@7.0.12): - resolution: {integrity: sha512-XdjYV2fy2xYixUiV2Wc54t3Z4oxYPAELUzWnV6+mcbq0rh742X2p52pii5A3oeRzYjLnQxCsZmp0qpI6klE2cQ==} + /jest-config@29.7.0(@types/node@7.0.12): + resolution: {integrity: sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: '@types/node': '*' @@ -31958,30 +32073,31 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.22.9 - '@jest/test-sequencer': 29.6.1 - '@jest/types': 29.6.1 + '@babel/core': 7.23.2 + '@jest/test-sequencer': 29.7.0 + '@jest/types': 29.6.3 '@types/node': 7.0.12 - babel-jest: 29.6.1(@babel/core@7.22.9) + babel-jest: 29.7.0(@babel/core@7.23.2) chalk: 4.1.2 - ci-info: 3.8.0 - deepmerge: 4.3.1 + ci-info: 3.9.0 + deepmerge: 4.2.2 glob: 7.2.3 graceful-fs: 4.2.11 - jest-circus: 29.6.1 - jest-environment-node: 29.6.1 - jest-get-type: 29.4.3 - jest-regex-util: 29.4.3 - jest-resolve: 29.6.1 - jest-runner: 29.6.1 - jest-util: 29.6.1 - jest-validate: 29.6.1 + jest-circus: 29.7.0 + jest-environment-node: 29.7.0 + jest-get-type: 29.6.3 + jest-regex-util: 29.6.3 + jest-resolve: 29.7.0 + jest-runner: 29.7.0 + jest-util: 29.7.0 + jest-validate: 29.7.0 micromatch: 4.0.5 parse-json: 5.2.0 - pretty-format: 29.6.1 + pretty-format: 29.7.0 slash: 3.0.0 strip-json-comments: 3.1.1 transitivePeerDependencies: + - babel-plugin-macros - supports-color dev: true @@ -32005,14 +32121,14 @@ packages: pretty-format: 26.6.2 dev: false - /jest-diff@29.6.1: - resolution: {integrity: sha512-FsNCvinvl8oVxpNLttNQX7FAq7vR+gMDGj90tiP7siWw1UdakWUGqrylpsYrpvj908IYckm5Y0Q7azNAozU1Kg==} + /jest-diff@29.7.0: + resolution: {integrity: sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: chalk: 4.1.2 - diff-sequences: 29.4.3 - jest-get-type: 29.4.3 - pretty-format: 29.6.1 + diff-sequences: 29.6.3 + jest-get-type: 29.6.3 + pretty-format: 29.7.0 dev: true /jest-docblock@24.9.0: @@ -32029,8 +32145,8 @@ packages: detect-newline: 3.1.0 dev: false - /jest-docblock@29.4.3: - resolution: {integrity: sha512-fzdTftThczeSD9nZ3fzA/4KkHtnmllawWrXO69vtI+L9WjEIuXWs4AmyME7lN5hU7dB0sHhuPfcKofRsUb/2Fg==} + /jest-docblock@29.7.0: + resolution: {integrity: sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: detect-newline: 3.1.0 @@ -32060,15 +32176,15 @@ packages: pretty-format: 26.6.2 dev: false - /jest-each@29.6.1: - resolution: {integrity: sha512-n5eoj5eiTHpKQCAVcNTT7DRqeUmJ01hsAL0Q1SMiBHcBcvTKDELixQOGMCpqhbIuTcfC4kMfSnpmDqRgRJcLNQ==} + /jest-each@29.7.0: + resolution: {integrity: sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/types': 29.6.1 + '@jest/types': 29.6.3 chalk: 4.1.2 - jest-get-type: 29.4.3 - jest-util: 29.6.1 - pretty-format: 29.6.1 + jest-get-type: 29.6.3 + jest-util: 29.7.0 + pretty-format: 29.7.0 dev: true /jest-environment-jsdom@24.9.0: @@ -32130,16 +32246,16 @@ packages: jest-util: 26.6.2 dev: false - /jest-environment-node@29.6.1: - resolution: {integrity: sha512-ZNIfAiE+foBog24W+2caIldl4Irh8Lx1PUhg/GZ0odM1d/h2qORAsejiFc7zb+SEmYPn1yDZzEDSU5PmDkmVLQ==} + /jest-environment-node@29.7.0: + resolution: {integrity: sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/environment': 29.6.1 - '@jest/fake-timers': 29.6.1 - '@jest/types': 29.6.1 + '@jest/environment': 29.7.0 + '@jest/fake-timers': 29.7.0 + '@jest/types': 29.6.3 '@types/node': 7.0.12 - jest-mock: 29.6.1 - jest-util: 29.6.1 + jest-mock: 29.7.0 + jest-util: 29.7.0 /jest-get-type@24.9.0: resolution: {integrity: sha512-lUseMzAley4LhIcpSP9Jf+fTrQ4a1yHQwLNeeVa2cEmbCGeoZAtYPOIv8JaxLD/sUpKxetKGP+gsHl8f8TSj8Q==} @@ -32151,8 +32267,8 @@ packages: engines: {node: '>= 10.14.2'} dev: false - /jest-get-type@29.4.3: - resolution: {integrity: sha512-J5Xez4nRRMjk8emnTpWrlkyb9pfRQQanDrvWHhsR1+VUfbwxi30eVcZFlcdGInRibU4G5LwHXpI7IRHU0CY+gg==} + /jest-get-type@29.6.3: + resolution: {integrity: sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} /jest-haste-map@24.9.0: @@ -32181,7 +32297,7 @@ packages: engines: {node: '>= 10.14.2'} dependencies: '@jest/types': 26.6.2 - '@types/graceful-fs': 4.1.6 + '@types/graceful-fs': 4.1.8 '@types/node': 7.0.12 anymatch: 3.1.3 fb-watchman: 2.0.2 @@ -32194,35 +32310,35 @@ packages: sane: 4.1.0 walker: 1.0.8 optionalDependencies: - fsevents: 2.3.2 + fsevents: 2.3.3 transitivePeerDependencies: - supports-color dev: false - /jest-haste-map@29.6.1: - resolution: {integrity: sha512-0m7f9PZXxOCk1gRACiVgX85knUKPKLPg4oRCjLoqIm9brTHXaorMA0JpmtmVkQiT8nmXyIVoZd/nnH1cfC33ig==} + /jest-haste-map@29.7.0: + resolution: {integrity: sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/types': 29.6.1 - '@types/graceful-fs': 4.1.6 + '@jest/types': 29.6.3 + '@types/graceful-fs': 4.1.8 '@types/node': 7.0.12 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.11 - jest-regex-util: 29.4.3 - jest-util: 29.6.1 - jest-worker: 29.6.1 + jest-regex-util: 29.6.3 + jest-util: 29.7.0 + jest-worker: 29.7.0 micromatch: 4.0.5 walker: 1.0.8 optionalDependencies: - fsevents: 2.3.2 + fsevents: 2.3.3 dev: true /jest-jasmine2@24.9.0: resolution: {integrity: sha512-Cq7vkAgaYKp+PsX+2/JbTarrk0DmNhsEtqBXNwUHkdlbrTBLtMJINADf2mf5FkowNsq8evbPc07/qFO0AdKTzw==} engines: {node: '>= 6'} dependencies: - '@babel/traverse': 7.22.8(supports-color@5.5.0) + '@babel/traverse': 7.23.2(supports-color@5.5.0) '@jest/environment': 24.9.0 '@jest/test-result': 24.9.0 '@jest/types': 24.9.0 @@ -32246,7 +32362,7 @@ packages: resolution: {integrity: sha512-kPKUrQtc8aYwBV7CqBg5pu+tmYXlvFlSFYn18ev4gPFtrRzB15N2gW/Roew3187q2w2eHuu0MU9TJz6w0/nPEg==} engines: {node: '>= 10.14.2'} dependencies: - '@babel/traverse': 7.22.8(supports-color@5.5.0) + '@babel/traverse': 7.23.2(supports-color@5.5.0) '@jest/environment': 26.6.2 '@jest/source-map': 26.6.2 '@jest/test-result': 26.6.2 @@ -32288,12 +32404,12 @@ packages: pretty-format: 26.6.2 dev: false - /jest-leak-detector@29.6.1: - resolution: {integrity: sha512-OrxMNyZirpOEwkF3UHnIkAiZbtkBWiye+hhBweCHkVbCgyEy71Mwbb5zgeTNYWJBi1qgDVfPC1IwO9dVEeTLwQ==} + /jest-leak-detector@29.7.0: + resolution: {integrity: sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - jest-get-type: 29.4.3 - pretty-format: 29.6.1 + jest-get-type: 29.6.3 + pretty-format: 29.7.0 dev: true /jest-matcher-utils@24.9.0: @@ -32316,21 +32432,21 @@ packages: pretty-format: 26.6.2 dev: false - /jest-matcher-utils@29.6.1: - resolution: {integrity: sha512-SLaztw9d2mfQQKHmJXKM0HCbl2PPVld/t9Xa6P9sgiExijviSp7TnZZpw2Fpt+OI3nwUO/slJbOfzfUMKKC5QA==} + /jest-matcher-utils@29.7.0: + resolution: {integrity: sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: chalk: 4.1.2 - jest-diff: 29.6.1 - jest-get-type: 29.4.3 - pretty-format: 29.6.1 + jest-diff: 29.7.0 + jest-get-type: 29.6.3 + pretty-format: 29.7.0 dev: true /jest-message-util@24.9.0: resolution: {integrity: sha512-oCj8FiZ3U0hTP4aSui87P4L4jC37BtQwUMqk+zk/b11FR19BJDeZsZAvIHutWnmtw7r85UmR3CEWZ0HWU2mAlw==} engines: {node: '>= 6'} dependencies: - '@babel/code-frame': 7.22.5 + '@babel/code-frame': 7.22.13 '@jest/test-result': 24.9.0 '@jest/types': 24.9.0 '@types/stack-utils': 1.0.1 @@ -32346,9 +32462,9 @@ packages: resolution: {integrity: sha512-rGiLePzQ3AzwUshu2+Rn+UMFk0pHN58sOG+IaJbk5Jxuqo3NYO1U2/MIR4S1sKgsoYSXSzdtSa0TgrmtUwEbmA==} engines: {node: '>= 10.14.2'} dependencies: - '@babel/code-frame': 7.22.5 + '@babel/code-frame': 7.22.13 '@jest/types': 26.6.2 - '@types/stack-utils': 2.0.1 + '@types/stack-utils': 2.0.2 chalk: 4.1.2 graceful-fs: 4.2.11 micromatch: 4.0.5 @@ -32357,17 +32473,17 @@ packages: stack-utils: 2.0.6 dev: false - /jest-message-util@29.6.1: - resolution: {integrity: sha512-KoAW2zAmNSd3Gk88uJ56qXUWbFk787QKmjjJVOjtGFmmGSZgDBrlIL4AfQw1xyMYPNVD7dNInfIbur9B2rd/wQ==} + /jest-message-util@29.7.0: + resolution: {integrity: sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@babel/code-frame': 7.22.5 - '@jest/types': 29.6.1 - '@types/stack-utils': 2.0.1 + '@babel/code-frame': 7.22.13 + '@jest/types': 29.6.3 + '@types/stack-utils': 2.0.2 chalk: 4.1.2 graceful-fs: 4.2.11 micromatch: 4.0.5 - pretty-format: 29.6.1 + pretty-format: 29.7.0 slash: 3.0.0 stack-utils: 2.0.6 @@ -32386,13 +32502,13 @@ packages: '@types/node': 7.0.12 dev: false - /jest-mock@29.6.1: - resolution: {integrity: sha512-brovyV9HBkjXAEdRooaTQK42n8usKoSRR3gihzUpYeV/vwqgSoNfrksO7UfSACnPmxasO/8TmHM3w9Hp3G1dgw==} + /jest-mock@29.7.0: + resolution: {integrity: sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/types': 29.6.1 + '@jest/types': 29.6.3 '@types/node': 7.0.12 - jest-util: 29.6.1 + jest-util: 29.7.0 /jest-pnp-resolver@1.2.3(jest-resolve@24.9.0): resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==} @@ -32418,7 +32534,7 @@ packages: jest-resolve: 26.6.2 dev: false - /jest-pnp-resolver@1.2.3(jest-resolve@29.6.1): + /jest-pnp-resolver@1.2.3(jest-resolve@29.7.0): resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==} engines: {node: '>=6'} peerDependencies: @@ -32427,7 +32543,7 @@ packages: jest-resolve: optional: true dependencies: - jest-resolve: 29.6.1 + jest-resolve: 29.7.0 dev: true /jest-regex-util@24.9.0: @@ -32445,8 +32561,8 @@ packages: engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dev: false - /jest-regex-util@29.4.3: - resolution: {integrity: sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg==} + /jest-regex-util@29.6.3: + resolution: {integrity: sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dev: true @@ -32472,12 +32588,12 @@ packages: - supports-color dev: false - /jest-resolve-dependencies@29.6.1: - resolution: {integrity: sha512-BbFvxLXtcldaFOhNMXmHRWx1nXQO5LoXiKSGQcA1LxxirYceZT6ch8KTE1bK3X31TNG/JbkI7OkS/ABexVahiw==} + /jest-resolve-dependencies@29.7.0: + resolution: {integrity: sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - jest-regex-util: 29.4.3 - jest-snapshot: 29.6.1 + jest-regex-util: 29.6.3 + jest-snapshot: 29.7.0 transitivePeerDependencies: - supports-color dev: true @@ -32503,21 +32619,21 @@ packages: jest-pnp-resolver: 1.2.3(jest-resolve@26.6.2) jest-util: 26.6.2 read-pkg-up: 7.0.1 - resolve: 1.22.2 + resolve: 1.22.8 slash: 3.0.0 dev: false - /jest-resolve@29.6.1: - resolution: {integrity: sha512-AeRkyS8g37UyJiP9w3mmI/VXU/q8l/IH52vj/cDAyScDcemRbSBhfX/NMYIGilQgSVwsjxrCHf3XJu4f+lxCMg==} + /jest-resolve@29.7.0: + resolution: {integrity: sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: chalk: 4.1.2 graceful-fs: 4.2.11 - jest-haste-map: 29.6.1 - jest-pnp-resolver: 1.2.3(jest-resolve@29.6.1) - jest-util: 29.6.1 - jest-validate: 29.6.1 - resolve: 1.22.2 + jest-haste-map: 29.7.0 + jest-pnp-resolver: 1.2.3(jest-resolve@29.7.0) + jest-util: 29.7.0 + jest-validate: 29.7.0 + resolve: 1.22.8 resolve.exports: 2.0.2 slash: 3.0.0 dev: true @@ -32583,29 +32699,29 @@ packages: - utf-8-validate dev: false - /jest-runner@29.6.1: - resolution: {integrity: sha512-tw0wb2Q9yhjAQ2w8rHRDxteryyIck7gIzQE4Reu3JuOBpGp96xWgF0nY8MDdejzrLCZKDcp8JlZrBN/EtkQvPQ==} + /jest-runner@29.7.0: + resolution: {integrity: sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/console': 29.6.1 - '@jest/environment': 29.6.1 - '@jest/test-result': 29.6.1 - '@jest/transform': 29.6.1 - '@jest/types': 29.6.1 + '@jest/console': 29.7.0 + '@jest/environment': 29.7.0 + '@jest/test-result': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 '@types/node': 7.0.12 chalk: 4.1.2 emittery: 0.13.1 graceful-fs: 4.2.11 - jest-docblock: 29.4.3 - jest-environment-node: 29.6.1 - jest-haste-map: 29.6.1 - jest-leak-detector: 29.6.1 - jest-message-util: 29.6.1 - jest-resolve: 29.6.1 - jest-runtime: 29.6.1 - jest-util: 29.6.1 - jest-watcher: 29.6.1 - jest-worker: 29.6.1 + jest-docblock: 29.7.0 + jest-environment-node: 29.7.0 + jest-haste-map: 29.7.0 + jest-leak-detector: 29.7.0 + jest-message-util: 29.7.0 + jest-resolve: 29.7.0 + jest-runtime: 29.7.0 + jest-util: 29.7.0 + jest-watcher: 29.7.0 + jest-worker: 29.7.0 p-limit: 3.1.0 source-map-support: 0.5.13 transitivePeerDependencies: @@ -32659,7 +32775,7 @@ packages: '@jest/test-result': 26.6.2 '@jest/transform': 26.6.2 '@jest/types': 26.6.2 - '@types/yargs': 15.0.15 + '@types/yargs': 15.0.17 chalk: 4.1.2 cjs-module-lexer: 0.6.0 collect-v8-coverage: 1.0.2 @@ -32686,30 +32802,30 @@ packages: - utf-8-validate dev: false - /jest-runtime@29.6.1: - resolution: {integrity: sha512-D6/AYOA+Lhs5e5il8+5pSLemjtJezUr+8zx+Sn8xlmOux3XOqx4d8l/2udBea8CRPqqrzhsKUsN/gBDE/IcaPQ==} + /jest-runtime@29.7.0: + resolution: {integrity: sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/environment': 29.6.1 - '@jest/fake-timers': 29.6.1 - '@jest/globals': 29.6.1 - '@jest/source-map': 29.6.0 - '@jest/test-result': 29.6.1 - '@jest/transform': 29.6.1 - '@jest/types': 29.6.1 + '@jest/environment': 29.7.0 + '@jest/fake-timers': 29.7.0 + '@jest/globals': 29.7.0 + '@jest/source-map': 29.6.3 + '@jest/test-result': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 '@types/node': 7.0.12 chalk: 4.1.2 cjs-module-lexer: 1.2.3 collect-v8-coverage: 1.0.2 glob: 7.2.3 graceful-fs: 4.2.11 - jest-haste-map: 29.6.1 - jest-message-util: 29.6.1 - jest-mock: 29.6.1 - jest-regex-util: 29.4.3 - jest-resolve: 29.6.1 - jest-snapshot: 29.6.1 - jest-util: 29.6.1 + jest-haste-map: 29.7.0 + jest-message-util: 29.7.0 + jest-mock: 29.7.0 + jest-regex-util: 29.6.3 + jest-resolve: 29.7.0 + jest-snapshot: 29.7.0 + jest-util: 29.7.0 slash: 3.0.0 strip-bom: 4.0.0 transitivePeerDependencies: @@ -32733,7 +32849,7 @@ packages: resolution: {integrity: sha512-uI/rszGSs73xCM0l+up7O7a40o90cnrk429LOiK3aeTvfC0HHmldbd81/B7Ix81KSFe1lwkbl7GnBGG4UfuDew==} engines: {node: '>= 6'} dependencies: - '@babel/types': 7.22.5 + '@babel/types': 7.23.0 '@jest/types': 24.9.0 chalk: 2.4.2 expect: 24.9.0 @@ -32754,9 +32870,9 @@ packages: resolution: {integrity: sha512-OLhxz05EzUtsAmOMzuupt1lHYXCNib0ECyuZ/PZOx9TrZcC8vL0x+DUG3TL+GLX3yHG45e6YGjIm0XwDc3q3og==} engines: {node: '>= 10.14.2'} dependencies: - '@babel/types': 7.22.5 + '@babel/types': 7.23.0 '@jest/types': 26.6.2 - '@types/babel__traverse': 7.20.1 + '@types/babel__traverse': 7.20.3 '@types/prettier': 2.7.3 chalk: 4.1.2 expect: 26.6.2 @@ -32774,41 +32890,40 @@ packages: - supports-color dev: false - /jest-snapshot@29.6.1: - resolution: {integrity: sha512-G4UQE1QQ6OaCgfY+A0uR1W2AY0tGXUPQpoUClhWHq1Xdnx1H6JOrC2nH5lqnOEqaDgbHFgIwZ7bNq24HpB180A==} + /jest-snapshot@29.7.0: + resolution: {integrity: sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@babel/core': 7.22.9 - '@babel/generator': 7.22.9 - '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.22.9) - '@babel/types': 7.22.5 - '@jest/expect-utils': 29.6.1 - '@jest/transform': 29.6.1 - '@jest/types': 29.6.1 - '@types/prettier': 2.7.3 - babel-preset-current-node-syntax: 1.0.1(@babel/core@7.22.9) + '@babel/core': 7.23.2 + '@babel/generator': 7.23.0 + '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.23.2) + '@babel/types': 7.23.0 + '@jest/expect-utils': 29.7.0 + '@jest/transform': 29.7.0 + '@jest/types': 29.6.3 + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.2) chalk: 4.1.2 - expect: 29.6.1 + expect: 29.7.0 graceful-fs: 4.2.11 - jest-diff: 29.6.1 - jest-get-type: 29.4.3 - jest-matcher-utils: 29.6.1 - jest-message-util: 29.6.1 - jest-util: 29.6.1 + jest-diff: 29.7.0 + jest-get-type: 29.6.3 + jest-matcher-utils: 29.7.0 + jest-message-util: 29.7.0 + jest-util: 29.7.0 natural-compare: 1.4.0 - pretty-format: 29.6.1 + pretty-format: 29.7.0 semver: 7.5.4 transitivePeerDependencies: - supports-color dev: true - /jest-specific-snapshot@2.0.0(jest@29.6.1): + /jest-specific-snapshot@2.0.0(jest@29.7.0): resolution: {integrity: sha512-aXaNqBg/svwEpY5iQEzEHc5I85cUBKgfeVka9KmpznxLnatpjiqjr7QLb/BYNYlsrZjZzgRHTjQJ+Svx+dbdvg==} peerDependencies: jest: '*' dependencies: - jest: 29.6.1 + jest: 29.7.0 jest-snapshot: 24.9.0 transitivePeerDependencies: - supports-color @@ -32853,19 +32968,19 @@ packages: '@jest/types': 27.5.1 '@types/node': 7.0.12 chalk: 4.1.2 - ci-info: 3.8.0 + ci-info: 3.9.0 graceful-fs: 4.2.11 picomatch: 2.3.1 dev: false - /jest-util@29.6.1: - resolution: {integrity: sha512-NRFCcjc+/uO3ijUVyNOQJluf8PtGCe/W6cix36+M3cTFgiYqFOOW5MgN4JOOcvbUhcKTYVd1CvHz/LWi8d16Mg==} + /jest-util@29.7.0: + resolution: {integrity: sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/types': 29.6.1 + '@jest/types': 29.6.3 '@types/node': 7.0.12 chalk: 4.1.2 - ci-info: 3.8.0 + ci-info: 3.9.0 graceful-fs: 4.2.11 picomatch: 2.3.1 @@ -32893,16 +33008,16 @@ packages: pretty-format: 26.6.2 dev: false - /jest-validate@29.6.1: - resolution: {integrity: sha512-r3Ds69/0KCN4vx4sYAbGL1EVpZ7MSS0vLmd3gV78O+NAx3PDQQukRU5hNHPXlyqCgFY8XUk7EuTMLugh0KzahA==} + /jest-validate@29.7.0: + resolution: {integrity: sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/types': 29.6.1 + '@jest/types': 29.6.3 camelcase: 6.3.0 chalk: 4.1.2 - jest-get-type: 29.4.3 + jest-get-type: 29.6.3 leven: 3.1.0 - pretty-format: 29.6.1 + pretty-format: 29.7.0 /jest-watcher@24.9.0: resolution: {integrity: sha512-+/fLOfKPXXYJDYlks62/4R4GoT+GU1tYZed99JSCOsmzkkF7727RqKrjNAxtfO4YpGv11wybgRvCjR73lK2GZw==} @@ -32932,17 +33047,17 @@ packages: string-length: 4.0.2 dev: false - /jest-watcher@29.6.1: - resolution: {integrity: sha512-d4wpjWTS7HEZPaaj8m36QiaP856JthRZkrgcIY/7ISoUWPIillrXM23WPboZVLbiwZBt4/qn2Jke84Sla6JhFA==} + /jest-watcher@29.7.0: + resolution: {integrity: sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/test-result': 29.6.1 - '@jest/types': 29.6.1 + '@jest/test-result': 29.7.0 + '@jest/types': 29.6.3 '@types/node': 7.0.12 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.13.1 - jest-util: 29.6.1 + jest-util: 29.7.0 string-length: 4.0.2 dev: true @@ -32982,17 +33097,17 @@ packages: engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@types/node': 7.0.12 - jest-util: 29.6.1 + jest-util: 29.7.0 merge-stream: 2.0.0 supports-color: 8.1.1 dev: true - /jest-worker@29.6.1: - resolution: {integrity: sha512-U+Wrbca7S8ZAxAe9L6nb6g8kPdia5hj32Puu5iOqBCMTMWFHXuK6dOV2IFrpedbTV8fjMFLdWNttQTBL6u2MRA==} + /jest-worker@29.7.0: + resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@types/node': 7.0.12 - jest-util: 29.6.1 + jest-util: 29.7.0 merge-stream: 2.0.0 supports-color: 8.1.1 dev: true @@ -33026,8 +33141,8 @@ packages: - utf-8-validate dev: false - /jest@29.6.1: - resolution: {integrity: sha512-Nirw5B4nn69rVUZtemCQhwxOBhm0nsp3hmtF4rzCeWD7BkjAXRIji7xWQfnTNbz9g0aVsBX6aZK3n+23LM6uDw==} + /jest@29.7.0: + resolution: {integrity: sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true peerDependencies: @@ -33036,12 +33151,13 @@ packages: node-notifier: optional: true dependencies: - '@jest/core': 29.6.1 - '@jest/types': 29.6.1 + '@jest/core': 29.7.0 + '@jest/types': 29.6.3 import-local: 3.1.0 - jest-cli: 29.6.1 + jest-cli: 29.7.0 transitivePeerDependencies: - '@types/node' + - babel-plugin-macros - supports-color - ts-node dev: true @@ -33050,8 +33166,8 @@ packages: resolution: {integrity: sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==} dev: true - /joi@17.9.2: - resolution: {integrity: sha512-Itk/r+V4Dx0V3c7RLFdRh12IOjySm2/WGPMubBT92cQvRfYZhPM2W0hZlctjj72iES8jsRCwp7S/cRmWBnJ4nw==} + /joi@17.11.0: + resolution: {integrity: sha512-NgB+lZLNoqISVy1rZocE9PZI36bL/77ie924Ri43yEvi9GUUMPeyVIr8KdFTMUlby1p0PBYMk9spIxEUQYqrJQ==} dependencies: '@hapi/hoek': 9.3.0 '@hapi/topo': 5.1.0 @@ -33118,25 +33234,25 @@ packages: resolution: {integrity: sha512-0wM3YBWtYePOjfyXQH5MWQ8H7sdk5EXSwZvmSLKk2RboVQ2Bu239jycHDz5J/8Blf3K0Qnoy2b6xD+z10MFB+Q==} dev: false - /jscodeshift@0.14.0(@babel/preset-env@7.22.9): + /jscodeshift@0.14.0(@babel/preset-env@7.23.2): resolution: {integrity: sha512-7eCC1knD7bLUPuSCwXsMZUH51O8jIcoVyKtI6P0XM0IVzlGjckPy3FIwQlorzbN0Sg79oK+RlohN32Mqf/lrYA==} hasBin: true peerDependencies: '@babel/preset-env': ^7.1.6 dependencies: - '@babel/core': 7.22.9 - '@babel/parser': 7.22.7 - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.9) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.22.9) - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.22.9) - '@babel/plugin-transform-modules-commonjs': 7.22.5(@babel/core@7.22.9) - '@babel/preset-env': 7.22.9(@babel/core@7.22.9) - '@babel/preset-flow': 7.22.5(@babel/core@7.22.9) - '@babel/preset-typescript': 7.22.5(@babel/core@7.22.9) - '@babel/register': 7.22.5(@babel/core@7.22.9) - babel-core: 7.0.0-bridge.0(@babel/core@7.22.9) + '@babel/core': 7.23.2 + '@babel/parser': 7.23.0 + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.23.2) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.23.2) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.23.2) + '@babel/plugin-transform-modules-commonjs': 7.23.0(@babel/core@7.23.2) + '@babel/preset-env': 7.23.2(@babel/core@7.23.2) + '@babel/preset-flow': 7.22.15(@babel/core@7.23.2) + '@babel/preset-typescript': 7.23.2(@babel/core@7.23.2) + '@babel/register': 7.22.15(@babel/core@7.23.2) + babel-core: 7.0.0-bridge.0(@babel/core@7.23.2) chalk: 4.1.2 - flow-parser: 0.212.0 + flow-parser: 0.206.0 graceful-fs: 4.2.11 micromatch: 4.0.5 neo-async: 2.6.2 @@ -33152,17 +33268,17 @@ packages: resolution: {integrity: sha512-+NF/tlNbc2WEhXUuc4WEJLsJumF84tnaMUZW2hyJw3jThKKRvsPX4sPJVgO1lPE28z0gNL+gwniLG9d8mYvQCQ==} hasBin: true dependencies: - '@babel/core': 7.22.9 - '@babel/parser': 7.22.7 - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.9) - '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.22.9) - '@babel/preset-env': 7.22.9(@babel/core@7.22.9) - '@babel/preset-flow': 7.22.5(@babel/core@7.22.9) - '@babel/preset-typescript': 7.22.5(@babel/core@7.22.9) - '@babel/register': 7.22.5(@babel/core@7.22.9) - babel-core: 7.0.0-bridge.0(@babel/core@7.22.9) + '@babel/core': 7.23.2 + '@babel/parser': 7.23.0 + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.23.2) + '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.23.2) + '@babel/preset-env': 7.23.2(@babel/core@7.23.2) + '@babel/preset-flow': 7.22.15(@babel/core@7.23.2) + '@babel/preset-typescript': 7.23.2(@babel/core@7.23.2) + '@babel/register': 7.22.15(@babel/core@7.23.2) + babel-core: 7.0.0-bridge.0(@babel/core@7.23.2) colors: 1.4.0 - flow-parser: 0.212.0 + flow-parser: 0.219.5 graceful-fs: 4.2.11 micromatch: 3.1.10(supports-color@6.1.0) neo-async: 2.6.2 @@ -33178,17 +33294,17 @@ packages: resolution: {integrity: sha512-YMkZSyoc8zg5woZL23cmWlnFLPH/mHilonGA7Qbzs7H6M4v4PH0Qsn4jeDyw+CHhVoAnm9UxQyB0Yw1OT+mktA==} hasBin: true dependencies: - '@babel/core': 7.22.9 - '@babel/parser': 7.22.7 - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.9) - '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.22.9) - '@babel/preset-env': 7.22.9(@babel/core@7.22.9) - '@babel/preset-flow': 7.22.5(@babel/core@7.22.9) - '@babel/preset-typescript': 7.22.5(@babel/core@7.22.9) - '@babel/register': 7.22.5(@babel/core@7.22.9) - babel-core: 7.0.0-bridge.0(@babel/core@7.22.9) + '@babel/core': 7.23.2 + '@babel/parser': 7.23.0 + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.23.2) + '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.23.2) + '@babel/preset-env': 7.23.2(@babel/core@7.23.2) + '@babel/preset-flow': 7.22.15(@babel/core@7.23.2) + '@babel/preset-typescript': 7.23.2(@babel/core@7.23.2) + '@babel/register': 7.22.15(@babel/core@7.23.2) + babel-core: 7.0.0-bridge.0(@babel/core@7.23.2) colors: 1.4.0 - flow-parser: 0.212.0 + flow-parser: 0.219.5 graceful-fs: 4.2.11 micromatch: 3.1.10(supports-color@6.1.0) neo-async: 2.6.2 @@ -33224,7 +33340,7 @@ packages: pn: 1.1.0 request: 2.88.2 request-promise-native: 1.0.9(request@2.88.2) - sax: 1.2.4 + sax: 1.3.0 symbol-tree: 3.2.4 tough-cookie: 2.5.0 w3c-hr-time: 1.0.2 @@ -33297,13 +33413,17 @@ packages: /json-bigint@1.0.0: resolution: {integrity: sha512-SiPv/8VpZuWbvLSMtTDU8hEfrZWg/mH/nV/b4o0CYbSxu1UIQPLdwKOCIyLQX+VIPO5vrLX3i8qtqFyhdPSUSQ==} dependencies: - bignumber.js: 9.1.1 + bignumber.js: 9.1.2 dev: false /json-buffer@3.0.0: resolution: {integrity: sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ==} dev: true + /json-buffer@3.0.1: + resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} + dev: true + /json-parse-better-errors@1.0.2: resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==} @@ -33416,22 +33536,22 @@ packages: resolution: {integrity: sha512-z1xSldJ6imESSzOjd3NNkieVJKRlKYSOtMG8SFyCj2FIrvSaSuli/WjpBkEzCBoR9bYYYFgqJw61Xhu7Lcgk+w==} engines: {node: '>=4.0'} dependencies: - array-includes: 3.1.6 + array-includes: 3.1.7 object.assign: 4.1.4 dev: true - /jsx-ast-utils@3.3.4: - resolution: {integrity: sha512-fX2TVdCViod6HwKEtSWGHs57oFhVfCMwieb9PuRDgjDPh5XeqJiHFFFJCHxU5cnTc3Bu/GRL+kPiFmw8XWOfKw==} + /jsx-ast-utils@3.3.5: + resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==} engines: {node: '>=4.0'} dependencies: - array-includes: 3.1.6 - array.prototype.flat: 1.3.1 + array-includes: 3.1.7 + array.prototype.flat: 1.3.2 object.assign: 4.1.4 - object.values: 1.1.6 + object.values: 1.1.7 dev: true - /kapsule@1.14.4: - resolution: {integrity: sha512-Ro1US5B5mtyZMM+NqW/0fqcBf9oEO7fG0gYY9FY+BVGo4KaonVsplFfuYx3pZ/GLCQfYE5cONduILLktsYjUpQ==} + /kapsule@1.14.5: + resolution: {integrity: sha512-H0iSpTynUzZw3tgraDmReprpFRmH5oP5GPmaNsurSwLx2H5iCpOMIkp5q+sfhB4Tz/UJd1E1IbEE9Z6ksnJ6RA==} engines: {node: '>=12'} dependencies: lodash-es: 4.17.21 @@ -33463,6 +33583,12 @@ packages: json-buffer: 3.0.0 dev: true + /keyv@4.5.4: + resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} + dependencies: + json-buffer: 3.0.1 + dev: true + /killable@1.0.1: resolution: {integrity: sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==} dev: true @@ -33648,33 +33774,8 @@ packages: - supports-color dev: false - /konva@9.2.0: - resolution: {integrity: sha512-+woI76Sk+VFVl9z7zPkuTnN2zFpEYg27YWz8BCdQXpt5IS3pdnSPAPQVPPMidcbDi9/G5b/IOIp35/KqMGiYPA==} - dev: false - - /l7-tiny-sdf@0.0.4: - resolution: {integrity: sha512-hMuA5jolQCyhK+QufHMy+qxZQlc9uD/S7jVWFDyVy5TKb3HxMOGc1RcqMwcvlgDXzmVqNWkxAN8LracSEwqYIw==} - dev: false - - /l7eval5@0.0.3: - resolution: {integrity: sha512-xnn9x/T0zawTM1L9DASmRXVMb5fTCib83FtGZQcn5ToM1lAo4dutNOK2JAC+jd3mEMWa9MMq188dyoQcqG2WOg==} - dependencies: - '@babel/runtime': 7.22.6 - '@types/acorn': 4.0.6 - '@types/estree': 0.0.41 - acorn: 7.4.1 - dev: false - - /l7hammerjs@0.0.7: - resolution: {integrity: sha512-IFa3c0sOHBI09uK03GlKnk3Var5LXrCqL1JbnDpy63CQz8urZTk0dynGad+WU2iErVJcumHQokrR5Zt57tePZw==} - engines: {node: '>=0.8.0'} - dev: false - - /l7regl@0.0.20: - resolution: {integrity: sha512-r2vDjsCKp1bbcjTVGtKovpOxn7kdcx6cup9nd47/dIZ4+ujZAXz2C/HPx4yrxzuNig81TeXpHHWslNpLolSg8A==} - dependencies: - falafel: 2.2.5 - l7eval5: 0.0.3 + /konva@9.2.2: + resolution: {integrity: sha512-Gyn5hQa/5+8pJvTn/IVyZWgum2otWXszuVCG/cevkAyKUFcmFv4tGbQhHFGtJPLQkGO+W6xfgRzyYIkNgKnPxA==} dev: false /language-subtag-registry@0.3.22: @@ -33720,9 +33821,9 @@ packages: resolution: {integrity: sha512-prXSYk799h3GY3iOWnC6ZigYzMPjxN2svgjJ9shk7oMadSNX3wXy0B6F32PMJv7qtMnrIbUxoEHzbutvxR2LBQ==} engines: {node: '>=6.0.0', npm: '>=6.0.0', yarn: '>=1.0.0'} dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 app-root-dir: 1.0.2 - core-js: 3.31.1 + core-js: 3.33.1 dotenv: 8.6.0 dotenv-expand: 5.1.0 dev: true @@ -33767,7 +33868,7 @@ packages: deprecated: use String.prototype.padStart() dev: true - /less-loader@10.2.0(less@4.1.3)(webpack@5.88.0): + /less-loader@10.2.0(less@4.2.0)(webpack@5.88.0): resolution: {integrity: sha512-AV5KHWvCezW27GT90WATaDnfXBv99llDbtaj4bshq6DvAihMdNjaPDcUMa6EXKLRF+P2opFenJp89BXg91XLYg==} engines: {node: '>= 12.13.0'} peerDependencies: @@ -33775,7 +33876,7 @@ packages: webpack: ^5.0.0 dependencies: klona: 2.0.6 - less: 4.1.3 + less: 4.2.0 webpack: 5.88.0(webpack-cli@4.10.0) dev: false @@ -33791,7 +33892,7 @@ packages: webpack: 5.88.0(webpack-cli@5.0.0) dev: true - /less-loader@4.1.0(less@3.13.1)(webpack@4.46.0): + /less-loader@4.1.0(less@3.13.1)(webpack@4.47.0): resolution: {integrity: sha512-KNTsgCE9tMOM70+ddxp9yyt9iHqgmSs0yTZc5XH5Wo+g80RWRIYNqE58QJKm/yMud5wZEvz50ugRDuzVIkyahg==} engines: {node: '>= 4.8 < 5.0.0 || >= 5.10'} peerDependencies: @@ -33802,7 +33903,7 @@ packages: less: 3.13.1 loader-utils: 1.4.2 pify: 3.0.0 - webpack: 4.46.0(webpack-cli@5.0.0) + webpack: 4.47.0(webpack-cli@5.0.0) dev: true /less-plugin-npm-import@2.1.0: @@ -33847,14 +33948,14 @@ packages: source-map: 0.6.1 dev: true - /less@4.1.3: - resolution: {integrity: sha512-w16Xk/Ta9Hhyei0Gpz9m7VS8F28nieJaL/VyShID7cYvP6IL5oHeL6p4TXSDJqZE/lNv0oJ2pGVjJsRkfwm5FA==} + /less@4.2.0: + resolution: {integrity: sha512-P3b3HJDBtSzsXUl0im2L7gTO5Ubg8mEN6G8qoTS77iXxXX4Hvu4Qj540PZDvQ8V6DmX6iXo98k7Md0Cm1PrLaA==} engines: {node: '>=6'} hasBin: true dependencies: copy-anything: 2.0.6 parse-node-version: 1.0.1 - tslib: 2.6.0 + tslib: 2.6.2 optionalDependencies: errno: 0.1.8 graceful-fs: 4.2.11 @@ -33884,6 +33985,7 @@ packages: dependencies: prelude-ls: 1.1.2 type-check: 0.3.2 + dev: true /levn@0.4.1: resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} @@ -34116,8 +34218,8 @@ packages: /load-cfg@1.2.0(@babel/core@7.4.4): resolution: {integrity: sha512-6YgJ6G/R+hT3y3OPs55VdQ7FeMYEGuq6KHJ8ZId7NVyTvkI7yUDH7Gclxz9Ggkz5DJirjbvapMORMfk9NAiyMQ==} dependencies: - '@babel/preset-env': 7.22.9(@babel/core@7.4.4) - '@babel/register': 7.22.5(@babel/core@7.4.4) + '@babel/preset-env': 7.23.2(@babel/core@7.4.4) + '@babel/register': 7.22.15(@babel/core@7.4.4) find-up: 3.0.0 fs-extra: 7.0.1 lodash: 4.17.21 @@ -34301,7 +34403,6 @@ packages: /lodash.escape@4.0.1: resolution: {integrity: sha512-nXEOnb/jK9g0DYMr1/Xvq6l5xMD7GDG55+GSYIYmS0G4tBk/hURD4JR9WCavs04t33WmJx9kCyp9vJ+mr4BOUw==} - dev: true /lodash.escaperegexp@4.1.2: resolution: {integrity: sha512-TM9YBvyC84ZxE3rgfefxUWiQKLilstD6k7PTGt6wfbtXF8ixIJLOL3VYyV/z+ZiPLsVxAsKAFVwWlWeb2Y8Yyw==} @@ -34309,7 +34410,6 @@ packages: /lodash.flatten@4.4.0: resolution: {integrity: sha512-C5N2Z3DgnnKr0LOpv/hKCgKdb7ZZwafIrsesve6lmzvZIRZRGaZ/l6Q8+2W7NaT+ZwO3fFlSCzCzrDCFdJfZ4g==} - dev: true /lodash.flattendeep@4.4.0: resolution: {integrity: sha512-uHaJFihxmJcEX3kT4I23ABqKKalJ/zDrDg0lsFtc1h+3uw49SIJ5beyhx5ExVRti3AvKoOJngIj7xz3oylPdWQ==} @@ -34322,6 +34422,10 @@ packages: /lodash.get@4.4.2: resolution: {integrity: sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==} + /lodash.invokemap@4.6.0: + resolution: {integrity: sha512-CfkycNtMqgUlfjfdh2BhKO/ZXrP8ePOX5lEU/g0R3ItJcnuxWDwokMGKx1hWcfOikmyOVx6X9IwWnDGlgKl61w==} + dev: false + /lodash.isboolean@3.0.3: resolution: {integrity: sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==} dev: false @@ -34356,6 +34460,10 @@ packages: resolution: {integrity: sha512-hXt6Ul/5yWjfklSGvLQl8vM//l3FtyHZeuelpzK6mm99pNvN9yTDruNZPEJZD1oWrqo+izBmB7oUfWgcCX7s4Q==} dev: true + /lodash.pullall@4.2.0: + resolution: {integrity: sha512-VhqxBKH0ZxPpLhiu68YD1KnHmbhQJQctcipvmFnqIBDYzcIHzf3Zpu0tpeOKtR4x76p9yohc506eGdOjTmyIBg==} + dev: false + /lodash.sortby@4.7.0: resolution: {integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==} dev: true @@ -34379,6 +34487,10 @@ packages: resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==} dev: true + /lodash.uniqby@4.7.0: + resolution: {integrity: sha512-e/zcLx6CSbmaEgFHCA7BnoQKyCtKMxnuWrJygbwPs/AIn+IMKl66L8/s+wBUn5LRw2pZx3bUHibiV1b6aTWIww==} + dev: false + /lodash.upperfirst@4.3.1: resolution: {integrity: sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==} dev: false @@ -34421,7 +34533,7 @@ packages: hasBin: true dependencies: ansi-fragments: 0.2.1 - dayjs: 1.11.9 + dayjs: 1.10.5 yargs: 15.4.1 dev: false @@ -34482,7 +34594,7 @@ packages: /lower-case@2.0.2: resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} dependencies: - tslib: 2.6.0 + tslib: 2.6.2 /lowercase-keys@1.0.1: resolution: {integrity: sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==} @@ -34545,6 +34657,13 @@ packages: engines: {node: '>=8'} dependencies: semver: 6.3.1 + dev: true + + /make-dir@4.0.0: + resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==} + engines: {node: '>=10'} + dependencies: + semver: 7.5.4 /make-error@1.3.6: resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} @@ -34713,8 +34832,6 @@ packages: /match-sorter@3.1.1: resolution: {integrity: sha512-Qlox3wRM/Q4Ww9rv1cBmYKNJwWVX/WC+eA3+1S3Fv4EOhrqyp812ZEfVFKQk0AP6RfzmPUUOwEZBbJ8IRt8SOw==} - dependencies: - remove-accents: 0.4.2 dev: true bundledDependencies: - remove-accents @@ -34780,8 +34897,8 @@ packages: /mdast-util-definitions@5.1.2: resolution: {integrity: sha512-8SVPMuHqlPME/z3gqVwWY4zVXn8lqKv/pAhC57FuJ40ImXyBpmO5ukh98zB2v7Blql2FiHjHv9LVztSIqjY+MA==} dependencies: - '@types/mdast': 3.0.12 - '@types/unist': 2.0.7 + '@types/mdast': 3.0.14 + '@types/unist': 2.0.9 unist-util-visit: 4.1.2 dev: false @@ -34795,7 +34912,7 @@ packages: /mdast-util-find-and-replace@2.2.2: resolution: {integrity: sha512-MTtdFRz/eMDHXzeK6W3dO7mXUlF82Gom4y0oOgvHhh/HXZAGvIQDUvQ0SuUx+j2tv44b8xTHOm8K/9OoRFnXKw==} dependencies: - '@types/mdast': 3.0.12 + '@types/mdast': 3.0.14 escape-string-regexp: 5.0.0 unist-util-is: 5.2.1 unist-util-visit-parents: 5.1.3 @@ -34804,7 +34921,7 @@ packages: /mdast-util-from-markdown@0.8.5: resolution: {integrity: sha512-2hkTXtYYnr+NubD/g6KGBS/0mFmBcifAsI0yIWRiRo0PjVs6SSOSOdtzbp6kSGnShDN6G5aWZpKQ2lWRy27mWQ==} dependencies: - '@types/mdast': 3.0.12 + '@types/mdast': 3.0.14 mdast-util-to-string: 2.0.0 micromark: 2.11.4 parse-entities: 2.0.0 @@ -34815,8 +34932,8 @@ packages: /mdast-util-from-markdown@1.3.1: resolution: {integrity: sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==} dependencies: - '@types/mdast': 3.0.12 - '@types/unist': 2.0.7 + '@types/mdast': 3.0.14 + '@types/unist': 2.0.9 decode-named-character-reference: 1.0.2 mdast-util-to-string: 3.2.0 micromark: 3.2.0 @@ -34848,7 +34965,7 @@ packages: /mdast-util-gfm-autolink-literal@1.0.3: resolution: {integrity: sha512-My8KJ57FYEy2W2LyNom4n3E7hKTuQk/0SES0u16tjA9Z3oFkF4RrC/hPAPgjlSpezsOvI8ObcXcElo92wn5IGA==} dependencies: - '@types/mdast': 3.0.12 + '@types/mdast': 3.0.14 ccount: 2.0.1 mdast-util-find-and-replace: 2.2.2 micromark-util-character: 1.2.0 @@ -34857,7 +34974,7 @@ packages: /mdast-util-gfm-footnote@1.0.2: resolution: {integrity: sha512-56D19KOGbE00uKVj3sgIykpwKL179QsVFwx/DCW0u/0+URsryacI4MAdNJl0dh+u2PSsD9FtxPFbHCzJ78qJFQ==} dependencies: - '@types/mdast': 3.0.12 + '@types/mdast': 3.0.14 mdast-util-to-markdown: 1.5.0 micromark-util-normalize-identifier: 1.1.0 dev: false @@ -34870,7 +34987,7 @@ packages: /mdast-util-gfm-strikethrough@1.0.3: resolution: {integrity: sha512-DAPhYzTYrRcXdMjUtUjKvW9z/FNAMTdU0ORyMcbmkwYNbKocDpdk+PX1L1dQgOID/+vVs1uBQ7ElrBQfZ0cuiQ==} dependencies: - '@types/mdast': 3.0.12 + '@types/mdast': 3.0.14 mdast-util-to-markdown: 1.5.0 dev: false @@ -34883,7 +35000,7 @@ packages: /mdast-util-gfm-table@1.0.7: resolution: {integrity: sha512-jjcpmNnQvrmN5Vx7y7lEc2iIOEytYv7rTvu+MeyAsSHTASGCCRA79Igg2uKssgOs1i1po8s3plW0sTu1wkkLGg==} dependencies: - '@types/mdast': 3.0.12 + '@types/mdast': 3.0.14 markdown-table: 3.0.3 mdast-util-from-markdown: 1.3.1 mdast-util-to-markdown: 1.5.0 @@ -34899,7 +35016,7 @@ packages: /mdast-util-gfm-task-list-item@1.0.2: resolution: {integrity: sha512-PFTA1gzfp1B1UaiJVyhJZA1rm0+Tzn690frc/L8vNX1Jop4STZgOE6bxUhnzdVSB+vm2GU1tIsuQcA9bxTQpMQ==} dependencies: - '@types/mdast': 3.0.12 + '@types/mdast': 3.0.14 mdast-util-to-markdown: 1.5.0 dev: false @@ -34938,15 +35055,15 @@ packages: /mdast-util-phrasing@3.0.1: resolution: {integrity: sha512-WmI1gTXUBJo4/ZmSk79Wcb2HcjPJBzM1nlI/OUWA8yk2X9ik3ffNbBGsU+09BFmXaL1IBb9fiuvq6/KMiNycSg==} dependencies: - '@types/mdast': 3.0.12 + '@types/mdast': 3.0.14 unist-util-is: 5.2.1 dev: false /mdast-util-to-hast@10.0.1: resolution: {integrity: sha512-BW3LM9SEMnjf4HXXVApZMt8gLQWVNXc3jryK0nJu/rOXPOnlkUjmdkDlmxMirpbU9ILncGFIwLH/ubnWBbcdgA==} dependencies: - '@types/mdast': 3.0.12 - '@types/unist': 2.0.7 + '@types/mdast': 3.0.14 + '@types/unist': 2.0.9 mdast-util-definitions: 4.0.0 mdurl: 1.0.1 unist-builder: 2.0.3 @@ -34958,8 +35075,8 @@ packages: /mdast-util-to-hast@10.2.0: resolution: {integrity: sha512-JoPBfJ3gBnHZ18icCwHR50orC9kNH81tiR1gs01D8Q5YpV6adHNO9nKNuFBCJQ941/32PT1a63UF/DitmS3amQ==} dependencies: - '@types/mdast': 3.0.12 - '@types/unist': 2.0.7 + '@types/mdast': 3.0.14 + '@types/unist': 2.0.9 mdast-util-definitions: 4.0.0 mdurl: 1.0.1 unist-builder: 2.0.3 @@ -34970,8 +35087,8 @@ packages: /mdast-util-to-hast@12.3.0: resolution: {integrity: sha512-pits93r8PhnIoU4Vy9bjW39M2jJ6/tdHyja9rrot9uujkN7UTU9SDnE6WNJz/IGyQk3XHX6yNNtrBH6cQzm8Hw==} dependencies: - '@types/hast': 2.3.5 - '@types/mdast': 3.0.12 + '@types/hast': 2.3.7 + '@types/mdast': 3.0.14 mdast-util-definitions: 5.1.2 micromark-util-sanitize-uri: 1.2.0 trim-lines: 3.0.1 @@ -34999,7 +35116,7 @@ packages: /mdast-util-to-markdown@0.6.5: resolution: {integrity: sha512-XeV9sDE7ZlOQvs45C9UKMtfTcctcaj/pGwH8YLbMHoMOXNNCn2LsqVQOqrF1+/NU8lKDAqozme9SCXWyo9oAcQ==} dependencies: - '@types/unist': 2.0.7 + '@types/unist': 2.0.9 longest-streak: 2.0.4 mdast-util-to-string: 2.0.0 parse-entities: 2.0.0 @@ -35009,8 +35126,8 @@ packages: /mdast-util-to-markdown@1.5.0: resolution: {integrity: sha512-bbv7TPv/WC49thZPg3jXuqzuvI45IL2EVAr/KxF0BSdHsU0ceFHOmwQn6evxAh1GaoK/6GQ1wp4R4oW2+LFL/A==} dependencies: - '@types/mdast': 3.0.12 - '@types/unist': 2.0.7 + '@types/mdast': 3.0.14 + '@types/unist': 2.0.9 longest-streak: 3.1.0 mdast-util-phrasing: 3.0.1 mdast-util-to-string: 3.2.0 @@ -35029,7 +35146,7 @@ packages: /mdast-util-to-string@3.2.0: resolution: {integrity: sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==} dependencies: - '@types/mdast': 3.0.12 + '@types/mdast': 3.0.14 dev: false /mdn-data@2.0.14: @@ -35069,7 +35186,7 @@ packages: resolution: {integrity: sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==} engines: {node: '>= 4.0.0'} dependencies: - fs-monkey: 1.0.4 + fs-monkey: 1.0.5 dev: true /memoize-one@5.2.1: @@ -35119,7 +35236,7 @@ packages: resolution: {integrity: sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg==} engines: {node: '>=8'} dependencies: - '@types/minimist': 1.2.2 + '@types/minimist': 1.2.4 camelcase-keys: 6.2.2 decamelize-keys: 1.1.1 hard-rejection: 2.1.0 @@ -35136,7 +35253,7 @@ packages: resolution: {integrity: sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ==} engines: {node: '>=10'} dependencies: - '@types/minimist': 1.2.2 + '@types/minimist': 1.2.4 camelcase-keys: 6.2.2 decamelize: 1.2.0 decamelize-keys: 1.1.1 @@ -35205,41 +35322,41 @@ packages: resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==} engines: {node: '>= 0.6'} - /metro-babel-transformer@0.76.7: - resolution: {integrity: sha512-bgr2OFn0J4r0qoZcHrwEvccF7g9k3wdgTOgk6gmGHrtlZ1Jn3oCpklW/DfZ9PzHfjY2mQammKTc19g/EFGyOJw==} + /metro-babel-transformer@0.76.8: + resolution: {integrity: sha512-Hh6PW34Ug/nShlBGxkwQJSgPGAzSJ9FwQXhUImkzdsDgVu6zj5bx258J8cJVSandjNoQ8nbaHK6CaHlnbZKbyA==} engines: {node: '>=16'} dependencies: - '@babel/core': 7.22.9 + '@babel/core': 7.23.2 hermes-parser: 0.12.0 nullthrows: 1.1.1 transitivePeerDependencies: - supports-color dev: false - /metro-cache-key@0.76.7: - resolution: {integrity: sha512-0pecoIzwsD/Whn/Qfa+SDMX2YyasV0ndbcgUFx7w1Ct2sLHClujdhQ4ik6mvQmsaOcnGkIyN0zcceMDjC2+BFQ==} + /metro-cache-key@0.76.8: + resolution: {integrity: sha512-buKQ5xentPig9G6T37Ww/R/bC+/V1MA5xU/D8zjnhlelsrPG6w6LtHUS61ID3zZcMZqYaELWk5UIadIdDsaaLw==} engines: {node: '>=16'} dev: false - /metro-cache@0.76.7: - resolution: {integrity: sha512-nWBMztrs5RuSxZRI7hgFgob5PhYDmxICh9FF8anm9/ito0u0vpPvRxt7sRu8fyeD2AHdXqE7kX32rWY0LiXgeg==} + /metro-cache@0.76.8: + resolution: {integrity: sha512-QBJSJIVNH7Hc/Yo6br/U/qQDUpiUdRgZ2ZBJmvAbmAKp2XDzsapnMwK/3BGj8JNWJF7OLrqrYHsRsukSbUBpvQ==} engines: {node: '>=16'} dependencies: - metro-core: 0.76.7 + metro-core: 0.76.8 rimraf: 3.0.2 dev: false - /metro-config@0.76.7: - resolution: {integrity: sha512-CFDyNb9bqxZemiChC/gNdXZ7OQkIwmXzkrEXivcXGbgzlt/b2juCv555GWJHyZSlorwnwJfY3uzAFu4A9iRVfg==} + /metro-config@0.76.8: + resolution: {integrity: sha512-SL1lfKB0qGHALcAk2zBqVgQZpazDYvYFGwCK1ikz0S6Y/CM2i2/HwuZN31kpX6z3mqjv/6KvlzaKoTb1otuSAA==} engines: {node: '>=16'} dependencies: connect: 3.7.0 cosmiconfig: 5.2.1 - jest-validate: 29.6.1 - metro: 0.76.7 - metro-cache: 0.76.7 - metro-core: 0.76.7 - metro-runtime: 0.76.7 + jest-validate: 29.7.0 + metro: 0.76.8 + metro-cache: 0.76.8 + metro-core: 0.76.8 + metro-runtime: 0.76.8 transitivePeerDependencies: - bufferutil - encoding @@ -35247,16 +35364,16 @@ packages: - utf-8-validate dev: false - /metro-core@0.76.7: - resolution: {integrity: sha512-0b8KfrwPmwCMW+1V7ZQPkTy2tsEKZjYG9Pu1PTsu463Z9fxX7WaR0fcHFshv+J1CnQSUTwIGGjbNvj1teKe+pw==} + /metro-core@0.76.8: + resolution: {integrity: sha512-sl2QLFI3d1b1XUUGxwzw/KbaXXU/bvFYrSKz6Sg19AdYGWFyzsgZ1VISRIDf+HWm4R/TJXluhWMEkEtZuqi3qA==} engines: {node: '>=16'} dependencies: lodash.throttle: 4.1.1 - metro-resolver: 0.76.7 + metro-resolver: 0.76.8 dev: false - /metro-file-map@0.76.7: - resolution: {integrity: sha512-s+zEkTcJ4mOJTgEE2ht4jIo1DZfeWreQR3tpT3gDV/Y/0UQ8aJBTv62dE775z0GLsWZApiblAYZsj7ZE8P06nw==} + /metro-file-map@0.76.8: + resolution: {integrity: sha512-A/xP1YNEVwO1SUV9/YYo6/Y1MmzhL4ZnVgcJC3VmHp/BYVOXVStzgVbWv2wILe56IIMkfXU+jpXrGKKYhFyHVw==} engines: {node: '>=16'} dependencies: anymatch: 3.1.3 @@ -35272,19 +35389,19 @@ packages: nullthrows: 1.1.1 walker: 1.0.8 optionalDependencies: - fsevents: 2.3.2 + fsevents: 2.3.3 transitivePeerDependencies: - supports-color dev: false - /metro-inspector-proxy@0.76.7: - resolution: {integrity: sha512-rNZ/6edTl/1qUekAhAbaFjczMphM50/UjtxiKulo6vqvgn/Mjd9hVqDvVYfAMZXqPvlusD88n38UjVYPkruLSg==} + /metro-inspector-proxy@0.76.8: + resolution: {integrity: sha512-Us5o5UEd4Smgn1+TfHX4LvVPoWVo9VsVMn4Ldbk0g5CQx3Gu0ygc/ei2AKPGTwsOZmKxJeACj7yMH2kgxQP/iw==} engines: {node: '>=16'} hasBin: true dependencies: connect: 3.7.0 debug: 2.6.9(supports-color@6.1.0) - node-fetch: 2.6.12 + node-fetch: 2.7.0 ws: 7.5.9 yargs: 17.7.2 transitivePeerDependencies: @@ -35294,120 +35411,120 @@ packages: - utf-8-validate dev: false - /metro-minify-terser@0.76.7: - resolution: {integrity: sha512-FQiZGhIxCzhDwK4LxyPMLlq0Tsmla10X7BfNGlYFK0A5IsaVKNJbETyTzhpIwc+YFRT4GkFFwgo0V2N5vxO5HA==} + /metro-minify-terser@0.76.8: + resolution: {integrity: sha512-Orbvg18qXHCrSj1KbaeSDVYRy/gkro2PC7Fy2tDSH1c9RB4aH8tuMOIXnKJE+1SXxBtjWmQ5Yirwkth2DyyEZA==} engines: {node: '>=16'} dependencies: - terser: 5.19.0 + terser: 5.22.0 dev: false - /metro-minify-uglify@0.76.7: - resolution: {integrity: sha512-FuXIU3j2uNcSvQtPrAJjYWHruPiQ+EpE++J9Z+VznQKEHcIxMMoQZAfIF2IpZSrZYfLOjVFyGMvj41jQMxV1Vw==} + /metro-minify-uglify@0.76.8: + resolution: {integrity: sha512-6l8/bEvtVaTSuhG1FqS0+Mc8lZ3Bl4RI8SeRIifVLC21eeSDp4CEBUWSGjpFyUDfi6R5dXzYaFnSgMNyfxADiQ==} engines: {node: '>=16'} dependencies: uglify-es: 3.3.9 dev: false - /metro-react-native-babel-preset@0.76.7(@babel/core@7.22.9): - resolution: {integrity: sha512-R25wq+VOSorAK3hc07NW0SmN8z9S/IR0Us0oGAsBcMZnsgkbOxu77Mduqf+f4is/wnWHc5+9bfiqdLnaMngiVw==} + /metro-react-native-babel-preset@0.76.8(@babel/core@7.23.2): + resolution: {integrity: sha512-Ptza08GgqzxEdK8apYsjTx2S8WDUlS2ilBlu9DR1CUcHmg4g3kOkFylZroogVAUKtpYQNYwAvdsjmrSdDNtiAg==} engines: {node: '>=16'} peerDependencies: '@babel/core': '*' dependencies: - '@babel/core': 7.22.9 - '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.22.9) - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.9) - '@babel/plugin-proposal-export-default-from': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.22.9) - '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.22.9) - '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.22.9) - '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.22.9) - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.22.9) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.22.9) - '@babel/plugin-syntax-export-default-from': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.9) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.9) - '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-block-scoping': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-classes': 7.22.6(@babel/core@7.22.9) - '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-destructuring': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-modules-commonjs': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-react-jsx': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-react-jsx-self': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-react-jsx-source': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-runtime': 7.22.9(@babel/core@7.22.9) - '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-sticky-regex': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-transform-typescript': 7.22.9(@babel/core@7.22.9) - '@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.22.9) - '@babel/template': 7.22.5 - babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.22.9) + '@babel/core': 7.23.2 + '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.23.2) + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.23.2) + '@babel/plugin-proposal-export-default-from': 7.22.17(@babel/core@7.23.2) + '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.23.2) + '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.23.2) + '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.23.2) + '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.23.2) + '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.23.2) + '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-export-default-from': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-syntax-flow': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.2) + '@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-block-scoping': 7.23.0(@babel/core@7.23.2) + '@babel/plugin-transform-classes': 7.22.15(@babel/core@7.23.2) + '@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-destructuring': 7.23.0(@babel/core@7.23.2) + '@babel/plugin-transform-flow-strip-types': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-literals': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-modules-commonjs': 7.23.0(@babel/core@7.23.2) + '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-parameters': 7.22.15(@babel/core@7.23.2) + '@babel/plugin-transform-react-display-name': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.23.2) + '@babel/plugin-transform-react-jsx-self': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-react-jsx-source': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-runtime': 7.23.2(@babel/core@7.23.2) + '@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-sticky-regex': 7.22.5(@babel/core@7.23.2) + '@babel/plugin-transform-typescript': 7.22.15(@babel/core@7.23.2) + '@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.23.2) + '@babel/template': 7.22.15 + babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.23.2) react-refresh: 0.4.3 transitivePeerDependencies: - supports-color dev: false - /metro-react-native-babel-transformer@0.76.7(@babel/core@7.22.9): - resolution: {integrity: sha512-W6lW3J7y/05ph3c2p3KKJNhH0IdyxdOCbQ5it7aM2MAl0SM4wgKjaV6EYv9b3rHklpV6K3qMH37UKVcjMooWiA==} + /metro-react-native-babel-transformer@0.76.8(@babel/core@7.23.2): + resolution: {integrity: sha512-3h+LfS1WG1PAzhq8QF0kfXjxuXetbY/lgz8vYMQhgrMMp17WM1DNJD0gjx8tOGYbpbBC1qesJ45KMS4o5TA73A==} engines: {node: '>=16'} peerDependencies: '@babel/core': '*' dependencies: - '@babel/core': 7.22.9 - babel-preset-fbjs: 3.4.0(@babel/core@7.22.9) + '@babel/core': 7.23.2 + babel-preset-fbjs: 3.4.0(@babel/core@7.23.2) hermes-parser: 0.12.0 - metro-react-native-babel-preset: 0.76.7(@babel/core@7.22.9) + metro-react-native-babel-preset: 0.76.8(@babel/core@7.23.2) nullthrows: 1.1.1 transitivePeerDependencies: - supports-color dev: false - /metro-resolver@0.76.7: - resolution: {integrity: sha512-pC0Wgq29HHIHrwz23xxiNgylhI8Rq1V01kQaJ9Kz11zWrIdlrH0ZdnJ7GC6qA0ErROG+cXmJ0rJb8/SW1Zp2IA==} + /metro-resolver@0.76.8: + resolution: {integrity: sha512-KccOqc10vrzS7ZhG2NSnL2dh3uVydarB7nOhjreQ7C4zyWuiW9XpLC4h47KtGQv3Rnv/NDLJYeDqaJ4/+140HQ==} engines: {node: '>=16'} dev: false - /metro-runtime@0.76.7: - resolution: {integrity: sha512-MuWHubQHymUWBpZLwuKZQgA/qbb35WnDAKPo83rk7JRLIFPvzXSvFaC18voPuzJBt1V98lKQIonh6MiC9gd8Ug==} + /metro-runtime@0.76.8: + resolution: {integrity: sha512-XKahvB+iuYJSCr3QqCpROli4B4zASAYpkK+j3a0CJmokxCDNbgyI4Fp88uIL6rNaZfN0Mv35S0b99SdFXIfHjg==} engines: {node: '>=16'} dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 react-refresh: 0.4.3 dev: false - /metro-source-map@0.76.7: - resolution: {integrity: sha512-Prhx7PeRV1LuogT0Kn5VjCuFu9fVD68eefntdWabrksmNY6mXK8pRqzvNJOhTojh6nek+RxBzZeD6MIOOyXS6w==} + /metro-source-map@0.76.8: + resolution: {integrity: sha512-Hh0ncPsHPVf6wXQSqJqB3K9Zbudht4aUtNpNXYXSxH+pteWqGAXnjtPsRAnCsCWl38wL0jYF0rJDdMajUI3BDw==} engines: {node: '>=16'} dependencies: - '@babel/traverse': 7.22.8(supports-color@5.5.0) - '@babel/types': 7.22.5 + '@babel/traverse': 7.23.2(supports-color@5.5.0) + '@babel/types': 7.23.0 invariant: 2.2.4 - metro-symbolicate: 0.76.7 + metro-symbolicate: 0.76.8 nullthrows: 1.1.1 - ob1: 0.76.7 + ob1: 0.76.8 source-map: 0.5.7 vlq: 1.0.1 transitivePeerDependencies: - supports-color dev: false - /metro-symbolicate@0.76.7: - resolution: {integrity: sha512-p0zWEME5qLSL1bJb93iq+zt5fz3sfVn9xFYzca1TJIpY5MommEaS64Va87lp56O0sfEIvh4307Oaf/ZzRjuLiQ==} + /metro-symbolicate@0.76.8: + resolution: {integrity: sha512-LrRL3uy2VkzrIXVlxoPtqb40J6Bf1mlPNmUQewipc3qfKKFgtPHBackqDy1YL0njDsWopCKcfGtFYLn0PTUn3w==} engines: {node: '>=16'} hasBin: true dependencies: invariant: 2.2.4 - metro-source-map: 0.76.7 + metro-source-map: 0.76.8 nullthrows: 1.1.1 source-map: 0.5.7 through2: 2.0.5 @@ -35416,34 +35533,34 @@ packages: - supports-color dev: false - /metro-transform-plugins@0.76.7: - resolution: {integrity: sha512-iSmnjVApbdivjuzb88Orb0JHvcEt5veVyFAzxiS5h0QB+zV79w6JCSqZlHCrbNOkOKBED//LqtKbFVakxllnNg==} + /metro-transform-plugins@0.76.8: + resolution: {integrity: sha512-PlkGTQNqS51Bx4vuufSQCdSn2R2rt7korzngo+b5GCkeX5pjinPjnO2kNhQ8l+5bO0iUD/WZ9nsM2PGGKIkWFA==} engines: {node: '>=16'} dependencies: - '@babel/core': 7.22.9 - '@babel/generator': 7.22.9 - '@babel/template': 7.22.5 - '@babel/traverse': 7.22.8(supports-color@5.5.0) + '@babel/core': 7.23.2 + '@babel/generator': 7.23.0 + '@babel/template': 7.22.15 + '@babel/traverse': 7.23.2(supports-color@5.5.0) nullthrows: 1.1.1 transitivePeerDependencies: - supports-color dev: false - /metro-transform-worker@0.76.7: - resolution: {integrity: sha512-cGvELqFMVk9XTC15CMVzrCzcO6sO1lURfcbgjuuPdzaWuD11eEyocvkTX0DPiRjsvgAmicz4XYxVzgYl3MykDw==} + /metro-transform-worker@0.76.8: + resolution: {integrity: sha512-mE1fxVAnJKmwwJyDtThildxxos9+DGs9+vTrx2ktSFMEVTtXS/bIv2W6hux1pqivqAfyJpTeACXHk5u2DgGvIQ==} engines: {node: '>=16'} dependencies: - '@babel/core': 7.22.9 - '@babel/generator': 7.22.9 - '@babel/parser': 7.22.7 - '@babel/types': 7.22.5 - babel-preset-fbjs: 3.4.0(@babel/core@7.22.9) - metro: 0.76.7 - metro-babel-transformer: 0.76.7 - metro-cache: 0.76.7 - metro-cache-key: 0.76.7 - metro-source-map: 0.76.7 - metro-transform-plugins: 0.76.7 + '@babel/core': 7.23.2 + '@babel/generator': 7.23.0 + '@babel/parser': 7.23.0 + '@babel/types': 7.23.0 + babel-preset-fbjs: 3.4.0(@babel/core@7.23.2) + metro: 0.76.8 + metro-babel-transformer: 0.76.8 + metro-cache: 0.76.8 + metro-cache-key: 0.76.8 + metro-source-map: 0.76.8 + metro-transform-plugins: 0.76.8 nullthrows: 1.1.1 transitivePeerDependencies: - bufferutil @@ -35452,18 +35569,18 @@ packages: - utf-8-validate dev: false - /metro@0.76.7: - resolution: {integrity: sha512-67ZGwDeumEPnrHI+pEDSKH2cx+C81Gx8Mn5qOtmGUPm/Up9Y4I1H2dJZ5n17MWzejNo0XAvPh0QL0CrlJEODVQ==} + /metro@0.76.8: + resolution: {integrity: sha512-oQA3gLzrrYv3qKtuWArMgHPbHu8odZOD9AoavrqSFllkPgOtmkBvNNDLCELqv5SjBfqjISNffypg+5UGG3y0pg==} engines: {node: '>=16'} hasBin: true dependencies: - '@babel/code-frame': 7.22.5 - '@babel/core': 7.22.9 - '@babel/generator': 7.22.9 - '@babel/parser': 7.22.7 - '@babel/template': 7.22.5 - '@babel/traverse': 7.22.8(supports-color@5.5.0) - '@babel/types': 7.22.5 + '@babel/code-frame': 7.22.13 + '@babel/core': 7.23.2 + '@babel/generator': 7.23.0 + '@babel/parser': 7.23.0 + '@babel/template': 7.22.15 + '@babel/traverse': 7.23.2(supports-color@5.5.0) + '@babel/types': 7.23.0 accepts: 1.3.8 async: 3.2.4 chalk: 4.1.2 @@ -35479,24 +35596,24 @@ packages: jest-worker: 27.5.1 jsc-safe-url: 0.2.4 lodash.throttle: 4.1.1 - metro-babel-transformer: 0.76.7 - metro-cache: 0.76.7 - metro-cache-key: 0.76.7 - metro-config: 0.76.7 - metro-core: 0.76.7 - metro-file-map: 0.76.7 - metro-inspector-proxy: 0.76.7 - metro-minify-terser: 0.76.7 - metro-minify-uglify: 0.76.7 - metro-react-native-babel-preset: 0.76.7(@babel/core@7.22.9) - metro-resolver: 0.76.7 - metro-runtime: 0.76.7 - metro-source-map: 0.76.7 - metro-symbolicate: 0.76.7 - metro-transform-plugins: 0.76.7 - metro-transform-worker: 0.76.7 + metro-babel-transformer: 0.76.8 + metro-cache: 0.76.8 + metro-cache-key: 0.76.8 + metro-config: 0.76.8 + metro-core: 0.76.8 + metro-file-map: 0.76.8 + metro-inspector-proxy: 0.76.8 + metro-minify-terser: 0.76.8 + metro-minify-uglify: 0.76.8 + metro-react-native-babel-preset: 0.76.8(@babel/core@7.23.2) + metro-resolver: 0.76.8 + metro-runtime: 0.76.8 + metro-source-map: 0.76.8 + metro-symbolicate: 0.76.8 + metro-transform-plugins: 0.76.8 + metro-transform-worker: 0.76.8 mime-types: 2.1.35 - node-fetch: 2.6.12 + node-fetch: 2.7.0 nullthrows: 1.1.1 rimraf: 3.0.2 serialize-error: 2.1.0 @@ -35809,7 +35926,7 @@ packages: /micromark@3.2.0: resolution: {integrity: sha512-uD66tJj54JLYq0De10AhWycZWGQNUvDI55xPgk2sQM5kn1JYlhbCMTtEeT27+vAhW2FBQxLlOmS3pmA7/2z4aA==} dependencies: - '@types/debug': 4.1.8 + '@types/debug': 4.1.10 debug: 4.3.4(supports-color@5.5.0) decode-named-character-reference: 1.0.2 micromark-core-commonmark: 1.1.0 @@ -35935,7 +36052,7 @@ packages: prop-types: ^15.0.0 react: ^0.14.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 || 17 dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 prop-types: 15.8.1 react: 17.0.2 tiny-warning: 1.0.3 @@ -35948,7 +36065,7 @@ packages: prop-types: ^15.0.0 react: ^0.14.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 || 17 dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 prop-types: 15.8.1 react: 16.14.0 tiny-warning: 1.0.3 @@ -35960,12 +36077,12 @@ packages: prop-types: ^15.0.0 react: ^0.14.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 || 17 dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 prop-types: 15.8.1 react: 17.0.2 tiny-warning: 1.0.3 - /mini-css-extract-plugin@0.4.5(webpack@4.46.0): + /mini-css-extract-plugin@0.4.5(webpack@4.47.0): resolution: {integrity: sha512-dqBanNfktnp2hwL2YguV9Jh91PFX7gu7nRLs4TGsbAfAG6WOtlynFRYzwDwmmeSb5uIwHo9nx1ta0f7vAZVp2w==} engines: {node: '>= 6.9.0 <7.0.0 || >= 8.9.0'} peerDependencies: @@ -35973,11 +36090,11 @@ packages: dependencies: loader-utils: 1.4.2 schema-utils: 1.0.0 - webpack: 4.46.0(webpack-cli@5.0.0) + webpack: 4.47.0(webpack-cli@5.0.0) webpack-sources: 1.4.3 dev: true - /mini-css-extract-plugin@0.7.0(webpack@4.46.0): + /mini-css-extract-plugin@0.7.0(webpack@4.47.0): resolution: {integrity: sha512-RQIw6+7utTYn8DBGsf/LpRgZCJMpZt+kuawJ/fju0KiOL6nAaTBNmCJwS7HtwSCXfS47gCkmtBFS7HdsquhdxQ==} engines: {node: '>= 6.9.0'} peerDependencies: @@ -35986,7 +36103,7 @@ packages: loader-utils: 1.4.2 normalize-url: 1.9.1 schema-utils: 1.0.0 - webpack: 4.46.0(webpack-cli@5.0.0) + webpack: 4.47.0(webpack-cli@5.0.0) webpack-sources: 1.4.3 dev: true @@ -36201,8 +36318,8 @@ packages: ml-array-max: 1.2.4 ml-array-min: 1.2.3 - /ml-matrix@6.10.4: - resolution: {integrity: sha512-rUyEhfNPzqFsltYwvjNeYQXlYEaVea3KgzcJKJteQUj2WVAGFx9fLNRjtMR9mg2B6bd5buxlmkZmxM4hmO+SKg==} + /ml-matrix@6.10.7: + resolution: {integrity: sha512-v0AciHOXnCEYz8Dq4r5TeA+BFyIabBwng9y/rFVF43mhh3Ho2jDhJ6UZ0IUPRiedmfNcJDmI1j7YFdY30mHAcQ==} dependencies: is-any-array: 2.0.1 ml-array-rescale: 1.3.7 @@ -36235,6 +36352,18 @@ packages: supports-color: 5.4.0 dev: true + /mock-property@1.0.3: + resolution: {integrity: sha512-2emPTb1reeLLYwHxyVx993iYyCHEiRRO+y8NFXFPL5kl5q14sgTK76cXyEKkeKCHeRw35SfdkUJ10Q1KfHuiIQ==} + engines: {node: '>= 0.4'} + dependencies: + define-data-property: 1.1.1 + functions-have-names: 1.2.3 + gopd: 1.0.1 + has-property-descriptors: 1.0.1 + hasown: 2.0.0 + isarray: 2.0.5 + dev: false + /moment-timezone@0.5.43: resolution: {integrity: sha512-72j3aNyuIsDxdF1i7CEgV2FfxM1r6aaqJyLB2vwb33mXYyoyLly+F1zbWqhA3/bVIoJ4szlUoMbUnVdid32NUQ==} dependencies: @@ -36289,6 +36418,11 @@ packages: engines: {node: '>=4'} dev: false + /mrmime@1.0.1: + resolution: {integrity: sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==} + engines: {node: '>=10'} + dev: false + /ms@2.0.0: resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} @@ -36384,8 +36518,8 @@ packages: object-assign: 4.1.1 thenify-all: 1.6.0 - /nan@2.17.0: - resolution: {integrity: sha512-2ZTgtl0nJsO0KQCjEpxcIr5D+Yv90plTitZt9JBfQvVJDS5seMl3FOvsh3+9CoYWXf/1l5OaZzzF6nDm4cagaQ==} + /nan@2.18.0: + resolution: {integrity: sha512-W7tfG7vMOGtD30sHoZSSc/JVYiyDPEyQVso/Zz+/uQd0B0L46gtC+pHha5FFMRpil6fm/AoEcRWyOVi4+E/f8w==} dev: true optional: true @@ -36457,7 +36591,7 @@ packages: dependencies: debug: 3.2.7(supports-color@6.1.0) iconv-lite: 0.6.3 - sax: 1.2.4 + sax: 1.3.0 transitivePeerDependencies: - supports-color dev: false @@ -36470,24 +36604,24 @@ packages: /neo-async@2.6.2: resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} - /neo4j-driver-bolt-connection@5.10.0: - resolution: {integrity: sha512-TgxaQ1kRtd4hP2iromtun3twx+tLP9I0F7CIhDpYaUix8Z1nHcI6z9y+uJ1+YU/doyzgS+R/ZP8h2C4S75iClw==} + /neo4j-driver-bolt-connection@5.14.0: + resolution: {integrity: sha512-JocVRGGSTLtqcLwSsbodU6ZWVf4OPN5X1ozmy2OfRhmRR7CfhHaImjT9N0MBZ9NcahH9V5XqLroRK7DZdqKJEg==} dependencies: buffer: 6.0.3 - neo4j-driver-core: 5.10.0 + neo4j-driver-core: 5.14.0 string_decoder: 1.3.0 dev: false - /neo4j-driver-core@5.10.0: - resolution: {integrity: sha512-Wf50GRvEqG2R0PWMJg3tF7YxILJb4QjYgpoC7g/2OCjmQQUuSy+wj65aUlV66XB4I9J07FElGWy6Xrm/rDyA5A==} + /neo4j-driver-core@5.14.0: + resolution: {integrity: sha512-IpO2BOazTF2QLGE7kYjwbicBxGdsu/JkDhdSmsziBcqEiRb9TBXRILhvlxiC00p1QyqMi7iVmJtIsbROqi5e/w==} dev: false /neo4j-driver@5.8.0: resolution: {integrity: sha512-SH/YsRl52TYqLnIoT1NkaVg/Wz4AtgN5z+YCr0gyWwxqFcN4eklJG0UtxCZgbKqXSCgQNQDvmpQCnrCe/AYPTQ==} deprecated: Update to 5.8.1 or later dependencies: - neo4j-driver-bolt-connection: 5.10.0 - neo4j-driver-core: 5.10.0 + neo4j-driver-bolt-connection: 5.14.0 + neo4j-driver-core: 5.14.0 rxjs: 7.8.1 dev: false @@ -36495,10 +36629,6 @@ packages: resolution: {integrity: sha512-9iN1ka/9zmX1ZvLV9ewJYEk9h7RyRRtqdK0woXcqohu8EWIerfPUjYJPg0ULy0UqP7cslmdGc8xKDJcojlKiaw==} dev: true - /netmask@2.0.2: - resolution: {integrity: sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==} - engines: {node: '>= 0.4.0'} - /next-tick@1.1.0: resolution: {integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==} dev: true @@ -36541,7 +36671,7 @@ packages: resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} dependencies: lower-case: 2.0.2 - tslib: 2.6.0 + tslib: 2.6.2 /nocache@3.0.4: resolution: {integrity: sha512-WDD0bdg9mbq6F4mRxEYcPWwfA1vxd0mrvKOyxI7Xj/atfRHVeutzuWByG//jfm4uPzp0y4Kj051EORCBSQMycw==} @@ -36582,8 +36712,8 @@ packages: engines: {node: 4.x || >=6.0.0} dev: true - /node-fetch@2.6.12: - resolution: {integrity: sha512-C/fGU2E8ToujUivIO0H+tpQ6HWo4eEmchoPIoXtxCrVghxdKq+QOHqEZW7tuP3KlV3bC8FRMO5nMCC7Zm1VP6g==} + /node-fetch@2.7.0: + resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==} engines: {node: 4.x || >=6.0.0} peerDependencies: encoding: ^0.1.0 @@ -36636,7 +36766,7 @@ packages: /node-libs-browser@2.2.1: resolution: {integrity: sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==} dependencies: - assert: 1.5.0 + assert: 1.5.1 browserify-zlib: 0.2.0 buffer: 4.9.2 console-browserify: 1.2.0 @@ -36656,7 +36786,7 @@ packages: string_decoder: 1.3.0 timers-browserify: 2.0.12 tty-browserify: 0.0.0 - url: 0.11.1 + url: 0.11.3 util: 0.11.1 vm-browserify: 1.1.2 @@ -36720,7 +36850,7 @@ packages: resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} dependencies: hosted-git-info: 2.8.9 - resolve: 1.22.2 + resolve: 1.22.8 semver: 5.7.2 validate-npm-package-license: 3.0.4 @@ -36729,7 +36859,7 @@ packages: engines: {node: '>=10'} dependencies: hosted-git-info: 4.1.0 - is-core-module: 2.12.1 + is-core-module: 2.13.1 semver: 7.5.4 validate-npm-package-license: 3.0.4 dev: true @@ -36911,7 +37041,7 @@ packages: pidtree: 0.3.1 read-pkg: 3.0.0 shell-quote: 1.8.1 - string.prototype.padend: 3.1.4 + string.prototype.padend: 3.1.5 dev: true /npm-run-path@2.0.2: @@ -36980,30 +37110,7 @@ packages: engines: {node: '>=6'} hasBin: true dependencies: - archy: 1.0.0 - arrify: 1.0.1 - caching-transform: 3.0.2 - convert-source-map: 1.9.0 - find-cache-dir: 2.1.0 - find-up: 3.0.0 - foreground-child: 1.5.6 - glob: 7.2.3 - istanbul-lib-coverage: 2.0.5 - istanbul-lib-hook: 2.0.7 istanbul-lib-instrument: 3.3.0 - istanbul-lib-report: 2.0.8 - istanbul-lib-source-maps: 3.0.6 - istanbul-reports: 2.2.7 - make-dir: 1.3.0 - merge-source-map: 1.1.0 - resolve-from: 4.0.0 - rimraf: 2.7.1 - signal-exit: 3.0.7 - spawn-wrap: 1.4.3 - test-exclude: 5.2.3 - uuid: 3.4.0 - yargs: 12.0.5 - yargs-parser: 11.1.1 transitivePeerDependencies: - supports-color dev: true @@ -37036,8 +37143,8 @@ packages: resolution: {integrity: sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==} dev: true - /ob1@0.76.7: - resolution: {integrity: sha512-BQdRtxxoUNfSoZxqeBGOyuT9nEYSn18xZHwGMb0mMVpn2NBcYbnyKY4BK2LIHRgw33CBGlUmE+KMaNvyTpLLtQ==} + /ob1@0.76.8: + resolution: {integrity: sha512-dlBkJJV5M/msj9KYA9upc+nUWVwuOFFTbu28X6kZeGwcuW+JxaHSBZ70SYQnk5M+j5JbNLR6yKHmgW4M5E7X5g==} engines: {node: '>=16'} dev: false @@ -37055,13 +37162,17 @@ packages: /object-inspect@1.12.3: resolution: {integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==} + dev: false + + /object-inspect@1.13.1: + resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==} /object-is@1.1.5: resolution: {integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 + call-bind: 1.0.5 + define-properties: 1.2.1 /object-keys@1.1.1: resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} @@ -37077,55 +37188,64 @@ packages: resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 + call-bind: 1.0.5 + define-properties: 1.2.1 has-symbols: 1.0.3 object-keys: 1.1.1 - /object.entries@1.1.6: - resolution: {integrity: sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==} + /object.entries@1.1.7: + resolution: {integrity: sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.3 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 dev: true - /object.fromentries@2.0.6: - resolution: {integrity: sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==} + /object.fromentries@2.0.7: + resolution: {integrity: sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.3 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 dev: true - /object.getownpropertydescriptors@2.1.6: - resolution: {integrity: sha512-lq+61g26E/BgHv0ZTFgRvi7NMEPuAxLkFU7rukXjc/AlwH4Am5xXVnIXy3un1bg/JPbXHrixRkK1itUzzPiIjQ==} + /object.getownpropertydescriptors@2.1.7: + resolution: {integrity: sha512-PrJz0C2xJ58FNn11XV2lr4Jt5Gzl94qpy9Lu0JlfEj14z88sqbSBJCBEzdlNUCzY2gburhbrwOZ5BHCmuNUy0g==} engines: {node: '>= 0.8'} dependencies: - array.prototype.reduce: 1.0.5 - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.3 - safe-array-concat: 1.0.0 + array.prototype.reduce: 1.0.6 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + safe-array-concat: 1.0.1 dev: true - /object.getprototypeof@1.0.4: - resolution: {integrity: sha512-xV/FkUNM9sHa56AB5deXrlIR+jBtDAHieyfm6XZUuehqlMX+YJPh8CAYtPrXGA/mFLFttasTc9ihhpkPrH7pLw==} + /object.getprototypeof@1.0.5: + resolution: {integrity: sha512-4G0QiXpoIppBUz5efmxTm/HTbVN2ioGjk/PbsaNvwISFX+saj8muGp6vNuzIdsosFxM4V/kpUVNvy/+9+DVBZQ==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.3 - reflect.getprototypeof: 1.0.3 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + reflect.getprototypeof: 1.0.4 + dev: true + + /object.groupby@1.0.1: + resolution: {integrity: sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==} + dependencies: + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + get-intrinsic: 1.2.2 dev: true - /object.hasown@1.1.2: - resolution: {integrity: sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==} + /object.hasown@1.1.3: + resolution: {integrity: sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==} dependencies: - define-properties: 1.2.0 - es-abstract: 1.21.3 + define-properties: 1.2.1 + es-abstract: 1.22.3 dev: true /object.pick@1.3.0: @@ -37134,13 +37254,13 @@ packages: dependencies: isobject: 3.0.1 - /object.values@1.1.6: - resolution: {integrity: sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==} + /object.values@1.1.7: + resolution: {integrity: sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.3 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 dev: true /obuf@1.1.2: @@ -37216,7 +37336,6 @@ packages: /opener@1.5.2: resolution: {integrity: sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==} hasBin: true - dev: true /opn@5.4.0: resolution: {integrity: sha512-YF9MNdVy/0qvJvDtunAOzFw9iasOQHpVthTCvGzxt61Il64AYSGdK+rYwld7NAfk9qJ7dt+hymBNSc9LNYS+Sw==} @@ -37232,14 +37351,14 @@ packages: is-wsl: 1.1.0 dev: true - /optimize-css-assets-webpack-plugin@5.0.8(webpack@4.46.0): + /optimize-css-assets-webpack-plugin@5.0.8(webpack@4.47.0): resolution: {integrity: sha512-mgFS1JdOtEGzD8l+EuISqL57cKO+We9GcoiQEmdCWRqqck+FGNmYJtx9qfAPzEz+lRrlThWMuGDaRkI/yWNx/Q==} peerDependencies: webpack: ^4.0.0 dependencies: cssnano: 4.1.11 last-call-webpack-plugin: 3.0.0 - webpack: 4.46.0(webpack-cli@5.0.0) + webpack: 4.47.0(webpack-cli@5.0.0) dev: true /optionator@0.8.3: @@ -37251,7 +37370,8 @@ packages: levn: 0.3.0 prelude-ls: 1.1.2 type-check: 0.3.2 - word-wrap: 1.2.3 + word-wrap: 1.2.5 + dev: true /optionator@0.9.3: resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==} @@ -37281,7 +37401,7 @@ packages: bl: 4.1.0 chalk: 4.1.2 cli-cursor: 3.1.0 - cli-spinners: 2.9.0 + cli-spinners: 2.9.1 is-interactive: 1.0.0 is-unicode-supported: 0.1.0 log-symbols: 4.1.0 @@ -37504,40 +37624,6 @@ packages: resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} engines: {node: '>=6'} - /pac-proxy-agent@5.0.0: - resolution: {integrity: sha512-CcFG3ZtnxO8McDigozwE3AqAw15zDvGH+OjXO4kzf7IkEKkQ4gxQ+3sdF50WmhQ4P/bVusXcqNE2S3XrNURwzQ==} - engines: {node: '>= 8'} - dependencies: - '@tootallnate/once': 1.1.2 - agent-base: 6.0.2 - debug: 4.3.4(supports-color@5.5.0) - get-uri: 3.0.2 - http-proxy-agent: 4.0.1 - https-proxy-agent: 5.0.1 - pac-resolver: 5.0.1 - raw-body: 2.5.2 - socks-proxy-agent: 5.0.1 - transitivePeerDependencies: - - supports-color - - /pac-resolver@5.0.1: - resolution: {integrity: sha512-cy7u00ko2KVgBAjuhevqpPeHIkCIqPe1v24cydhWjmeuzaBfmUWFCZJ1iAh5TuVzVZoUzXIW7K8sMYOZ84uZ9Q==} - engines: {node: '>= 8'} - dependencies: - degenerator: 3.0.4 - ip: 1.1.8 - netmask: 2.0.2 - - /package-hash@3.0.0: - resolution: {integrity: sha512-lOtmukMDVvtkL84rJHI7dpTYq+0rli8N2wlnqUcBuDWCfVhRUfOmnR9SsoHFMLpACvEV60dX7rd0rFaYDZI+FA==} - engines: {node: '>=6'} - dependencies: - graceful-fs: 4.2.11 - hasha: 3.0.0 - lodash.flattendeep: 4.4.0 - release-zalgo: 1.0.0 - dev: true - /package-json@4.0.1: resolution: {integrity: sha512-q/R5GrMek0vzgoomq6rm9OX+3PQve8sLwTirmK30YB3Cu0Bbt9OX9M/SIUnroN5BGJkzwGsFwDaRGD9EwBOlCA==} engines: {node: '>=4'} @@ -37640,7 +37726,7 @@ packages: resolution: {integrity: sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==} dependencies: dot-case: 3.0.4 - tslib: 2.6.0 + tslib: 2.6.2 /parent-module@1.0.1: resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} @@ -37682,7 +37768,7 @@ packages: /parse-entities@4.0.1: resolution: {integrity: sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w==} dependencies: - '@types/unist': 2.0.7 + '@types/unist': 2.0.9 character-entities: 2.0.2 character-entities-legacy: 3.0.0 character-reference-invalid: 2.0.1 @@ -37725,7 +37811,7 @@ packages: resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} engines: {node: '>=8'} dependencies: - '@babel/code-frame': 7.22.5 + '@babel/code-frame': 7.22.13 error-ex: 1.3.2 json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 @@ -37776,7 +37862,7 @@ packages: resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==} dependencies: no-case: 3.0.4 - tslib: 2.6.0 + tslib: 2.6.2 /pascalcase@0.1.1: resolution: {integrity: sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==} @@ -37968,7 +38054,7 @@ packages: hasBin: true dependencies: atomic-sleep: 1.0.0 - fast-redact: 3.2.0 + fast-redact: 3.3.0 on-exit-leak-free: 0.2.0 pino-abstract-transport: 0.5.0 pino-std-serializers: 4.0.0 @@ -38092,22 +38178,18 @@ packages: resolution: {integrity: sha512-3ojrFwjnnw8Q9242TzgXuTD+eKiutbzyslcq1ydfu82Db2y+Ogbmyrkpv0Hgj31qwT3lbS9+QAAO/pIQM35XRw==} dev: false - /pointer-events-polyfill@0.4.4-pre: - resolution: {integrity: sha512-t7iitVY5jW9mGOFZEHphJOzB8eMhoYaE6I5HqsUX14rjsPa9F6OlMOCj3EpqDzNb/8XtMk2BxMpOyePPyuefHw==} - dev: false - /polished@3.7.2: resolution: {integrity: sha512-pQKtpZGmsZrW8UUpQMAnR7s3ppHeMQVNyMDKtUyKwuvDmklzcEyM5Kllb3JyE/sE/x7arDmyd35i+4vp99H6sQ==} engines: {node: '>=10'} dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 dev: true /polished@4.2.2: resolution: {integrity: sha512-Sz2Lkdxz6F2Pgnpi9U5Ng/WdWAUZxmHrNPoVlm3aAemxoy2Qy7LGjQg4uf8qKelDAUW94F4np3iH2YPf2qefcQ==} engines: {node: '>=10'} dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 dev: false /polygon-clipping@0.15.3: @@ -38148,13 +38230,13 @@ packages: postcss: 7.0.32 postcss-selector-parser: 6.0.13 - /postcss-attribute-case-insensitive@5.0.2(postcss@8.4.25): + /postcss-attribute-case-insensitive@5.0.2(postcss@8.4.31): resolution: {integrity: sha512-XIidXV8fDr0kKt28vqki84fRK8VW8eTuIa4PChv2MqKuT6C9UjmSKzen6KaWhWEoYvwxFCa7n/tC1SZ3tyq4SQ==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.25 + postcss: 8.4.31 postcss-selector-parser: 6.0.13 dev: true @@ -38166,13 +38248,13 @@ packages: postcss-value-parser: 4.2.0 dev: true - /postcss-clamp@4.1.0(postcss@8.4.25): + /postcss-clamp@4.1.0(postcss@8.4.31): resolution: {integrity: sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==} engines: {node: '>=7.6.0'} peerDependencies: postcss: ^8.4.6 dependencies: - postcss: 8.4.25 + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: true @@ -38183,13 +38265,13 @@ packages: postcss: 7.0.32 postcss-values-parser: 2.0.1 - /postcss-color-functional-notation@4.2.4(postcss@8.4.25): + /postcss-color-functional-notation@4.2.4(postcss@8.4.31): resolution: {integrity: sha512-2yrTAUZUab9s6CpxkxC4rVgFEVaR6/2Pipvi6qcgvnYiVqZcbDHEoBDhrXzyb7Efh2CCfHQNtcqWcIruDTIUeg==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.25 + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: true @@ -38208,13 +38290,13 @@ packages: postcss: 7.0.32 postcss-values-parser: 2.0.1 - /postcss-color-hex-alpha@8.0.4(postcss@8.4.25): + /postcss-color-hex-alpha@8.0.4(postcss@8.4.31): resolution: {integrity: sha512-nLo2DCRC9eE4w2JmuKgVA3fGL3d01kGq752pVALF68qpGLmx2Qrk91QTKkdUqqp45T1K1XV8IhQpcu1hoAQflQ==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.4 dependencies: - postcss: 8.4.25 + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: true @@ -38233,13 +38315,13 @@ packages: postcss: 7.0.32 postcss-values-parser: 2.0.1 - /postcss-color-rebeccapurple@7.1.1(postcss@8.4.25): + /postcss-color-rebeccapurple@7.1.1(postcss@8.4.31): resolution: {integrity: sha512-pGxkuVEInwLHgkNxUc4sdg4g3py7zUeCQ9sMfwyHAT+Ezk8a4OaaVZ8lIY5+oNqA/BXXgLyXv0+5wHP68R79hg==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.25 + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: true @@ -38247,9 +38329,9 @@ packages: resolution: {integrity: sha512-WyQFAdDZpExQh32j0U0feWisZ0dmOtPl44qYmJKkq9xFWY3p+4qnRzCHeNrkeRhwPHz9bQ3mo0/yVkaply0MNw==} engines: {node: '>=6.9.0'} dependencies: - browserslist: 4.21.9 + browserslist: 4.22.1 color: 3.2.1 - has: 1.0.3 + has: 1.0.4 postcss: 7.0.39 postcss-value-parser: 3.3.1 dev: true @@ -38268,23 +38350,23 @@ packages: dependencies: postcss: 7.0.32 - /postcss-custom-media@8.0.2(postcss@8.4.25): + /postcss-custom-media@8.0.2(postcss@8.4.31): resolution: {integrity: sha512-7yi25vDAoHAkbhAzX9dHx2yc6ntS4jQvejrNcC+csQJAXjj15e7VcWfMgLqBNAbOvqi5uIa9huOVwdHbf+sKqg==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.3 dependencies: - postcss: 8.4.25 + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: true - /postcss-custom-properties@12.1.11(postcss@8.4.25): + /postcss-custom-properties@12.1.11(postcss@8.4.31): resolution: {integrity: sha512-0IDJYhgU8xDv1KY6+VgUwuQkVtmYzRwu+dMjnmdMafXYv86SWqfxkc7qdDvWS38vsjaEtv8e0vGOUQrAiMBLpQ==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.25 + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: true @@ -38302,13 +38384,13 @@ packages: postcss: 7.0.32 postcss-selector-parser: 5.0.0 - /postcss-custom-selectors@6.0.3(postcss@8.4.25): + /postcss-custom-selectors@6.0.3(postcss@8.4.31): resolution: {integrity: sha512-fgVkmyiWDwmD3JbpCmB45SvvlCD6z9CG6Ie6Iere22W5aHea6oWa7EM2bpnv2Fj3I94L3VbtvX9KqwSi5aFzSg==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.3 dependencies: - postcss: 8.4.25 + postcss: 8.4.31 postcss-selector-parser: 6.0.13 dev: true @@ -38319,13 +38401,13 @@ packages: postcss: 7.0.32 postcss-selector-parser: 5.0.0 - /postcss-dir-pseudo-class@6.0.5(postcss@8.4.25): + /postcss-dir-pseudo-class@6.0.5(postcss@8.4.31): resolution: {integrity: sha512-eqn4m70P031PF7ZQIvSgy9RSJ5uI2171O/OO/zcRNYpJbvaeKFUlar1aJ7rmgiQtbm0FSPsRewjpdS0Oew7MPA==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.25 + postcss: 8.4.31 postcss-selector-parser: 6.0.13 dev: true @@ -38364,14 +38446,14 @@ packages: postcss: 7.0.32 postcss-values-parser: 2.0.1 - /postcss-double-position-gradients@3.1.2(postcss@8.4.25): + /postcss-double-position-gradients@3.1.2(postcss@8.4.31): resolution: {integrity: sha512-GX+FuE/uBR6eskOK+4vkXgT6pDkexLokPaz/AbJna9s5Kzp/yl488pKPjhy0obB475ovfT1Wv8ho7U/cHNaRgQ==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.25) - postcss: 8.4.25 + '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.31) + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: true @@ -38382,13 +38464,13 @@ packages: postcss: 7.0.32 postcss-values-parser: 2.0.1 - /postcss-env-function@4.0.6(postcss@8.4.25): + /postcss-env-function@4.0.6(postcss@8.4.31): resolution: {integrity: sha512-kpA6FsLra+NqcFnL81TnsU+Z7orGtDTxcOhl6pwXeEq1yFPpRMkCDpHhrz8CFQDr/Wfm0jLiNQ1OsGGPjlqPwA==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.4 dependencies: - postcss: 8.4.25 + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: true @@ -38397,12 +38479,12 @@ packages: dependencies: postcss: 7.0.39 - /postcss-flexbugs-fixes@5.0.2(postcss@8.4.25): + /postcss-flexbugs-fixes@5.0.2(postcss@8.4.31): resolution: {integrity: sha512-18f9voByak7bTktR2QgDveglpn9DTbBWPUzSOe9g0N4WR/2eSt6Vrcbf0hmspvMI6YWGywz6B9f7jzpFNJJgnQ==} peerDependencies: postcss: ^8.1.4 dependencies: - postcss: 8.4.25 + postcss: 8.4.31 dev: true /postcss-focus-visible@4.0.0: @@ -38411,13 +38493,13 @@ packages: dependencies: postcss: 7.0.32 - /postcss-focus-visible@6.0.4(postcss@8.4.25): + /postcss-focus-visible@6.0.4(postcss@8.4.31): resolution: {integrity: sha512-QcKuUU/dgNsstIK6HELFRT5Y3lbrMLEOwG+A4s5cA+fx3A3y/JTq3X9LaOj3OC3ALH0XqyrgQIgey/MIZ8Wczw==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.4 dependencies: - postcss: 8.4.25 + postcss: 8.4.31 postcss-selector-parser: 6.0.13 dev: true @@ -38427,13 +38509,13 @@ packages: dependencies: postcss: 7.0.32 - /postcss-focus-within@5.0.4(postcss@8.4.25): + /postcss-focus-within@5.0.4(postcss@8.4.31): resolution: {integrity: sha512-vvjDN++C0mu8jz4af5d52CB184ogg/sSxAFS+oUJQq2SuCe7T5U2iIsVJtsCp2d6R4j0jr5+q3rPkBVZkXD9fQ==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.4 dependencies: - postcss: 8.4.25 + postcss: 8.4.31 postcss-selector-parser: 6.0.13 dev: true @@ -38442,12 +38524,12 @@ packages: dependencies: postcss: 7.0.32 - /postcss-font-variant@5.0.0(postcss@8.4.25): + /postcss-font-variant@5.0.0(postcss@8.4.31): resolution: {integrity: sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==} peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.25 + postcss: 8.4.31 dev: true /postcss-gap-properties@2.0.0: @@ -38456,13 +38538,13 @@ packages: dependencies: postcss: 7.0.32 - /postcss-gap-properties@3.0.5(postcss@8.4.25): + /postcss-gap-properties@3.0.5(postcss@8.4.31): resolution: {integrity: sha512-IuE6gKSdoUNcvkGIqdtjtcMtZIFyXZhmFd5RUlg97iVEvp1BZKV5ngsAjCjrVy+14uhGBQl9tzmi1Qwq4kqVOg==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.25 + postcss: 8.4.31 dev: true /postcss-html@0.36.0(postcss-syntax@0.36.2)(postcss@7.0.39): @@ -38483,13 +38565,13 @@ packages: postcss: 7.0.32 postcss-values-parser: 2.0.1 - /postcss-image-set-function@4.0.7(postcss@8.4.25): + /postcss-image-set-function@4.0.7(postcss@8.4.31): resolution: {integrity: sha512-9T2r9rsvYzm5ndsBE8WgtrMlIT7VbtTfE7b3BQnudUqnBcBo7L758oc+o+pdj/dUV0l5wjwSdjeOH2DZtfv8qw==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.25 + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: true @@ -38498,12 +38580,12 @@ packages: dependencies: postcss: 7.0.32 - /postcss-initial@4.0.1(postcss@8.4.25): + /postcss-initial@4.0.1(postcss@8.4.31): resolution: {integrity: sha512-0ueD7rPqX8Pn1xJIjay0AZeIuDoF+V+VvMt/uOnn+4ezUKhZM/NokDeP6DwMNyIoYByuN/94IQnt5FEkaN59xQ==} peerDependencies: postcss: ^8.0.0 dependencies: - postcss: 8.4.25 + postcss: 8.4.31 dev: true /postcss-js@2.0.3: @@ -38520,14 +38602,14 @@ packages: postcss: 7.0.32 postcss-values-parser: 2.0.1 - /postcss-lab-function@4.2.1(postcss@8.4.25): + /postcss-lab-function@4.2.1(postcss@8.4.31): resolution: {integrity: sha512-xuXll4isR03CrQsmxyz92LJB2xX9n+pZJ5jE9JgcnmsCammLyKdlzrBin+25dy6wIjfhJpKBAN80gsTlCgRk2w==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.25) - postcss: 8.4.25 + '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.31) + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: true @@ -38542,7 +38624,7 @@ packages: resolution: {integrity: sha512-C92S4sHlbDpefJ2QQJjrucCcypq3+KZPstjfuvgOCNnGx0tF9h8hXgAlOIATGAxMXZXaF+nVp+/Mi8pCAWdSmw==} engines: {node: '>=10'} dependencies: - postcss: 8.4.25 + postcss: 8.4.31 dev: true /postcss-load-config@2.1.2: @@ -38557,7 +38639,7 @@ packages: engines: {node: '>= 6'} dependencies: loader-utils: 1.4.2 - postcss: 7.0.39 + postcss: 7.0.32 postcss-load-config: 2.1.2 schema-utils: 1.0.0 @@ -38567,13 +38649,13 @@ packages: dependencies: postcss: 7.0.32 - /postcss-logical@5.0.4(postcss@8.4.25): + /postcss-logical@5.0.4(postcss@8.4.31): resolution: {integrity: sha512-RHXxplCeLh9VjinvMrZONq7im4wjWGlRJAqmAVLXyZaXwfDWP73/oq4NdIp+OZwhQUMj0zjqDfM5Fj7qby+B4g==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.4 dependencies: - postcss: 8.4.25 + postcss: 8.4.31 dev: true /postcss-media-minmax@4.0.0: @@ -38582,13 +38664,13 @@ packages: dependencies: postcss: 7.0.32 - /postcss-media-minmax@5.0.0(postcss@8.4.25): + /postcss-media-minmax@5.0.0(postcss@8.4.31): resolution: {integrity: sha512-yDUvFf9QdFZTuCUg0g0uNSHVlJ5X1lSzDZjPSFaiCWvjgsvu8vEVxtahPrLMinIDEEGnx6cBe6iqdx5YWz08wQ==} engines: {node: '>=10.0.0'} peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.25 + postcss: 8.4.31 dev: true /postcss-media-query-parser@0.2.3: @@ -38609,7 +38691,7 @@ packages: resolution: {integrity: sha512-U7e3r1SbvYzO0Jr3UT/zKBVgYYyhAz0aitvGIYOYK5CPmkNih+WDSsS5tvPrJ8YMQYlEMvsZIiqmn7HdFUaeEQ==} engines: {node: '>=6.9.0'} dependencies: - browserslist: 4.21.9 + browserslist: 4.22.1 caniuse-api: 3.0.0 cssnano-util-same-parent: 4.0.1 postcss: 7.0.39 @@ -38640,7 +38722,7 @@ packages: engines: {node: '>=6.9.0'} dependencies: alphanum-sort: 1.0.2 - browserslist: 4.21.9 + browserslist: 4.22.1 cssnano-util-get-arguments: 4.0.0 postcss: 7.0.39 postcss-value-parser: 3.3.1 @@ -38652,7 +38734,7 @@ packages: engines: {node: '>=6.9.0'} dependencies: alphanum-sort: 1.0.2 - has: 1.0.3 + has: 1.0.4 postcss: 7.0.39 postcss-selector-parser: 3.1.2 dev: true @@ -38676,13 +38758,13 @@ packages: postcss: 7.0.39 dev: true - /postcss-modules-extract-imports@3.0.0(postcss@8.4.25): + /postcss-modules-extract-imports@3.0.0(postcss@8.4.31): resolution: {integrity: sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.25 + postcss: 8.4.31 dev: true /postcss-modules-local-by-default@1.2.0: @@ -38702,14 +38784,14 @@ packages: postcss-value-parser: 4.2.0 dev: true - /postcss-modules-local-by-default@4.0.3(postcss@8.4.25): + /postcss-modules-local-by-default@4.0.3(postcss@8.4.31): resolution: {integrity: sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - icss-utils: 5.1.0(postcss@8.4.25) - postcss: 8.4.25 + icss-utils: 5.1.0(postcss@8.4.31) + postcss: 8.4.31 postcss-selector-parser: 6.0.13 postcss-value-parser: 4.2.0 dev: true @@ -38729,13 +38811,13 @@ packages: postcss-selector-parser: 6.0.13 dev: true - /postcss-modules-scope@3.0.0(postcss@8.4.25): + /postcss-modules-scope@3.0.0(postcss@8.4.31): resolution: {integrity: sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - postcss: 8.4.25 + postcss: 8.4.31 postcss-selector-parser: 6.0.13 dev: true @@ -38753,14 +38835,14 @@ packages: postcss: 7.0.39 dev: true - /postcss-modules-values@4.0.0(postcss@8.4.25): + /postcss-modules-values@4.0.0(postcss@8.4.31): resolution: {integrity: sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==} engines: {node: ^10 || ^12 || >= 14} peerDependencies: postcss: ^8.1.0 dependencies: - icss-utils: 5.1.0(postcss@8.4.25) - postcss: 8.4.25 + icss-utils: 5.1.0(postcss@8.4.31) + postcss: 8.4.31 dev: true /postcss-modules@2.0.0: @@ -38773,14 +38855,14 @@ packages: string-hash: 1.1.3 dev: true - /postcss-nesting@10.2.0(postcss@8.4.25): + /postcss-nesting@10.2.0(postcss@8.4.31): resolution: {integrity: sha512-EwMkYchxiDiKUhlJGzWsD9b2zvq/r2SSubcRrgP+jujMXFzqvANLt16lJANC+5uZ6hjI7lpRmI6O8JIl+8l1KA==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: '@csstools/selector-specificity': 2.2.0(postcss-selector-parser@6.0.13) - postcss: 8.4.25 + postcss: 8.4.31 postcss-selector-parser: 6.0.13 dev: true @@ -38811,7 +38893,7 @@ packages: engines: {node: '>=6.9.0'} dependencies: cssnano-util-get-arguments: 4.0.0 - has: 1.0.3 + has: 1.0.4 postcss: 7.0.39 postcss-value-parser: 3.3.1 dev: true @@ -38830,7 +38912,7 @@ packages: resolution: {integrity: sha512-RrERod97Dnwqq49WNz8qo66ps0swYZDSb6rM57kN2J+aoyEAJfZ6bMx0sx/F9TIEX0xthPGCmeyiam/jXif0eA==} engines: {node: '>=6.9.0'} dependencies: - has: 1.0.3 + has: 1.0.4 postcss: 7.0.39 postcss-value-parser: 3.3.1 dev: true @@ -38848,7 +38930,7 @@ packages: resolution: {integrity: sha512-od18Uq2wCYn+vZ/qCOeutvHjB5jm57ToxRaMeNuf0nWVHaP9Hua56QyMF6fs/4FSUnVIw0CBPsU0K4LnBPwYwg==} engines: {node: '>=6.9.0'} dependencies: - browserslist: 4.21.9 + browserslist: 4.22.1 postcss: 7.0.39 postcss-value-parser: 3.3.1 dev: true @@ -38871,13 +38953,13 @@ packages: postcss-value-parser: 3.3.1 dev: true - /postcss-opacity-percentage@1.1.3(postcss@8.4.25): + /postcss-opacity-percentage@1.1.3(postcss@8.4.31): resolution: {integrity: sha512-An6Ba4pHBiDtyVpSLymUUERMo2cU7s+Obz6BTrS+gxkbnSBNKSuD0AVUc+CpBMrpVPKKfoVz0WQCX+Tnst0i4A==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.25 + postcss: 8.4.31 dev: true /postcss-ordered-values@4.1.2: @@ -38895,13 +38977,13 @@ packages: dependencies: postcss: 7.0.32 - /postcss-overflow-shorthand@3.0.4(postcss@8.4.25): + /postcss-overflow-shorthand@3.0.4(postcss@8.4.31): resolution: {integrity: sha512-otYl/ylHK8Y9bcBnPLo3foYFLL6a6Ak+3EQBPOTR7luMYCOsiVTUk1iLvNf6tVPNGXcoL9Hoz37kpfriRIFb4A==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.25 + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: true @@ -38910,12 +38992,12 @@ packages: dependencies: postcss: 7.0.32 - /postcss-page-break@3.0.4(postcss@8.4.25): + /postcss-page-break@3.0.4(postcss@8.4.31): resolution: {integrity: sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==} peerDependencies: postcss: ^8 dependencies: - postcss: 8.4.25 + postcss: 8.4.31 dev: true /postcss-place@4.0.1: @@ -38925,13 +39007,13 @@ packages: postcss: 7.0.32 postcss-values-parser: 2.0.1 - /postcss-place@7.0.5(postcss@8.4.25): + /postcss-place@7.0.5(postcss@8.4.31): resolution: {integrity: sha512-wR8igaZROA6Z4pv0d+bvVrvGY4GVHihBCBQieXFY3kuSuMyOmEnnfFzHl/tQuqHZkfkIVBEbDvYcFfHmpSet9g==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.25 + postcss: 8.4.31 postcss-value-parser: 4.2.0 dev: true @@ -38940,8 +39022,8 @@ packages: engines: {node: '>=6.0.0'} dependencies: autoprefixer: 9.8.8 - browserslist: 4.21.9 - caniuse-lite: 1.0.30001515 + browserslist: 4.22.1 + caniuse-lite: 1.0.30001554 css-blank-pseudo: 0.1.4 css-has-pseudo: 0.10.0 css-prefers-color-scheme: 3.1.1 @@ -38977,57 +39059,57 @@ packages: postcss-selector-matches: 4.0.0 postcss-selector-not: 4.0.1 - /postcss-preset-env@7.5.0(postcss@8.4.25): + /postcss-preset-env@7.5.0(postcss@8.4.31): resolution: {integrity: sha512-0BJzWEfCdTtK2R3EiKKSdkE51/DI/BwnhlnicSW482Ym6/DGHud8K0wGLcdjip1epVX0HKo4c8zzTeV/SkiejQ==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.4 dependencies: - '@csstools/postcss-color-function': 1.1.1(postcss@8.4.25) - '@csstools/postcss-font-format-keywords': 1.0.1(postcss@8.4.25) - '@csstools/postcss-hwb-function': 1.0.2(postcss@8.4.25) - '@csstools/postcss-ic-unit': 1.0.1(postcss@8.4.25) - '@csstools/postcss-is-pseudo-class': 2.0.7(postcss@8.4.25) - '@csstools/postcss-normalize-display-values': 1.0.1(postcss@8.4.25) - '@csstools/postcss-oklab-function': 1.1.1(postcss@8.4.25) - '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.25) - '@csstools/postcss-stepped-value-functions': 1.0.1(postcss@8.4.25) - '@csstools/postcss-unset-value': 1.0.2(postcss@8.4.25) - autoprefixer: 10.4.14(postcss@8.4.25) - browserslist: 4.21.9 - css-blank-pseudo: 3.0.3(postcss@8.4.25) - css-has-pseudo: 3.0.4(postcss@8.4.25) - css-prefers-color-scheme: 6.0.3(postcss@8.4.25) + '@csstools/postcss-color-function': 1.1.1(postcss@8.4.31) + '@csstools/postcss-font-format-keywords': 1.0.1(postcss@8.4.31) + '@csstools/postcss-hwb-function': 1.0.2(postcss@8.4.31) + '@csstools/postcss-ic-unit': 1.0.1(postcss@8.4.31) + '@csstools/postcss-is-pseudo-class': 2.0.7(postcss@8.4.31) + '@csstools/postcss-normalize-display-values': 1.0.1(postcss@8.4.31) + '@csstools/postcss-oklab-function': 1.1.1(postcss@8.4.31) + '@csstools/postcss-progressive-custom-properties': 1.3.0(postcss@8.4.31) + '@csstools/postcss-stepped-value-functions': 1.0.1(postcss@8.4.31) + '@csstools/postcss-unset-value': 1.0.2(postcss@8.4.31) + autoprefixer: 10.4.16(postcss@8.4.31) + browserslist: 4.22.1 + css-blank-pseudo: 3.0.3(postcss@8.4.31) + css-has-pseudo: 3.0.4(postcss@8.4.31) + css-prefers-color-scheme: 6.0.3(postcss@8.4.31) cssdb: 6.6.3 - postcss: 8.4.25 - postcss-attribute-case-insensitive: 5.0.2(postcss@8.4.25) - postcss-clamp: 4.1.0(postcss@8.4.25) - postcss-color-functional-notation: 4.2.4(postcss@8.4.25) - postcss-color-hex-alpha: 8.0.4(postcss@8.4.25) - postcss-color-rebeccapurple: 7.1.1(postcss@8.4.25) - postcss-custom-media: 8.0.2(postcss@8.4.25) - postcss-custom-properties: 12.1.11(postcss@8.4.25) - postcss-custom-selectors: 6.0.3(postcss@8.4.25) - postcss-dir-pseudo-class: 6.0.5(postcss@8.4.25) - postcss-double-position-gradients: 3.1.2(postcss@8.4.25) - postcss-env-function: 4.0.6(postcss@8.4.25) - postcss-focus-visible: 6.0.4(postcss@8.4.25) - postcss-focus-within: 5.0.4(postcss@8.4.25) - postcss-font-variant: 5.0.0(postcss@8.4.25) - postcss-gap-properties: 3.0.5(postcss@8.4.25) - postcss-image-set-function: 4.0.7(postcss@8.4.25) - postcss-initial: 4.0.1(postcss@8.4.25) - postcss-lab-function: 4.2.1(postcss@8.4.25) - postcss-logical: 5.0.4(postcss@8.4.25) - postcss-media-minmax: 5.0.0(postcss@8.4.25) - postcss-nesting: 10.2.0(postcss@8.4.25) - postcss-opacity-percentage: 1.1.3(postcss@8.4.25) - postcss-overflow-shorthand: 3.0.4(postcss@8.4.25) - postcss-page-break: 3.0.4(postcss@8.4.25) - postcss-place: 7.0.5(postcss@8.4.25) - postcss-pseudo-class-any-link: 7.1.6(postcss@8.4.25) - postcss-replace-overflow-wrap: 4.0.0(postcss@8.4.25) - postcss-selector-not: 5.0.0(postcss@8.4.25) + postcss: 8.4.31 + postcss-attribute-case-insensitive: 5.0.2(postcss@8.4.31) + postcss-clamp: 4.1.0(postcss@8.4.31) + postcss-color-functional-notation: 4.2.4(postcss@8.4.31) + postcss-color-hex-alpha: 8.0.4(postcss@8.4.31) + postcss-color-rebeccapurple: 7.1.1(postcss@8.4.31) + postcss-custom-media: 8.0.2(postcss@8.4.31) + postcss-custom-properties: 12.1.11(postcss@8.4.31) + postcss-custom-selectors: 6.0.3(postcss@8.4.31) + postcss-dir-pseudo-class: 6.0.5(postcss@8.4.31) + postcss-double-position-gradients: 3.1.2(postcss@8.4.31) + postcss-env-function: 4.0.6(postcss@8.4.31) + postcss-focus-visible: 6.0.4(postcss@8.4.31) + postcss-focus-within: 5.0.4(postcss@8.4.31) + postcss-font-variant: 5.0.0(postcss@8.4.31) + postcss-gap-properties: 3.0.5(postcss@8.4.31) + postcss-image-set-function: 4.0.7(postcss@8.4.31) + postcss-initial: 4.0.1(postcss@8.4.31) + postcss-lab-function: 4.2.1(postcss@8.4.31) + postcss-logical: 5.0.4(postcss@8.4.31) + postcss-media-minmax: 5.0.0(postcss@8.4.31) + postcss-nesting: 10.2.0(postcss@8.4.31) + postcss-opacity-percentage: 1.1.3(postcss@8.4.31) + postcss-overflow-shorthand: 3.0.4(postcss@8.4.31) + postcss-page-break: 3.0.4(postcss@8.4.31) + postcss-place: 7.0.5(postcss@8.4.31) + postcss-pseudo-class-any-link: 7.1.6(postcss@8.4.31) + postcss-replace-overflow-wrap: 4.0.0(postcss@8.4.31) + postcss-selector-not: 5.0.0(postcss@8.4.31) postcss-value-parser: 4.2.0 dev: true @@ -39038,13 +39120,13 @@ packages: postcss: 7.0.32 postcss-selector-parser: 5.0.0 - /postcss-pseudo-class-any-link@7.1.6(postcss@8.4.25): + /postcss-pseudo-class-any-link@7.1.6(postcss@8.4.31): resolution: {integrity: sha512-9sCtZkO6f/5ML9WcTLcIyV1yz9D1rf0tWc+ulKcvV30s0iZKS/ONyETvoWsr6vnrmW+X+KmuK3gV/w5EWnT37w==} engines: {node: ^12 || ^14 || >=16} peerDependencies: postcss: ^8.2 dependencies: - postcss: 8.4.25 + postcss: 8.4.31 postcss-selector-parser: 6.0.13 dev: true @@ -39052,9 +39134,9 @@ packages: resolution: {integrity: sha512-gKWmR5aUulSjbzOfD9AlJiHCGH6AEVLaM0AV+aSioxUDd16qXP1PCh8d1/BGVvpdWn8k/HiK7n6TjeoXN1F7DA==} engines: {node: '>=6.9.0'} dependencies: - browserslist: 4.21.9 + browserslist: 4.22.1 caniuse-api: 3.0.0 - has: 1.0.3 + has: 1.0.4 postcss: 7.0.39 dev: true @@ -39063,7 +39145,7 @@ packages: engines: {node: '>=6.9.0'} dependencies: cssnano-util-get-match: 4.0.0 - has: 1.0.3 + has: 1.0.4 postcss: 7.0.39 postcss-value-parser: 3.3.1 dev: true @@ -39073,12 +39155,12 @@ packages: dependencies: postcss: 7.0.32 - /postcss-replace-overflow-wrap@4.0.0(postcss@8.4.25): + /postcss-replace-overflow-wrap@4.0.0(postcss@8.4.31): resolution: {integrity: sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==} peerDependencies: postcss: ^8.0.3 dependencies: - postcss: 8.4.25 + postcss: 8.4.31 dev: true /postcss-resolve-nested-selector@0.1.1: @@ -39117,13 +39199,13 @@ packages: balanced-match: 1.0.2 postcss: 7.0.32 - /postcss-selector-not@5.0.0(postcss@8.4.25): + /postcss-selector-not@5.0.0(postcss@8.4.31): resolution: {integrity: sha512-/2K3A4TCP9orP4TNS7u3tGdRFVKqz/E6pX3aGnriPG0jU78of8wsUcqE4QAhWEU0d+WnMSF93Ah3F//vUtK+iQ==} peerDependencies: postcss: ^8.1.0 dependencies: balanced-match: 1.0.2 - postcss: 8.4.25 + postcss: 8.4.31 dev: true /postcss-selector-parser@3.1.2: @@ -39150,13 +39232,13 @@ packages: cssesc: 3.0.0 util-deprecate: 1.0.2 - /postcss-sorting@6.0.0(postcss@8.4.25): + /postcss-sorting@6.0.0(postcss@8.4.31): resolution: {integrity: sha512-bYJ0vgAiGbjCBKi7B07CzsBc9eM84nLEbavUmwNp8rAa+PNyrgdH+6PpnqTtciLuUs99c4rFQQmCaYgeBQYmSQ==} peerDependencies: postcss: ^8.0.4 dependencies: lodash: 4.17.21 - postcss: 8.4.25 + postcss: 8.4.31 dev: true /postcss-svgo@4.0.3: @@ -39252,8 +39334,8 @@ packages: picocolors: 0.2.1 source-map: 0.6.1 - /postcss@8.4.25: - resolution: {integrity: sha512-7taJ/8t2av0Z+sQEvNzCkpDynl0tX3uJMCODi6nT3PfASC7dYCWV9aQ+uiCf+KBD4SEFcu+GvJdGdwzQ6OSjCw==} + /postcss@8.4.31: + resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==} engines: {node: ^10 || ^12 || >=14} dependencies: nanoid: 3.3.6 @@ -39346,15 +39428,15 @@ packages: /power-assert@1.6.1: resolution: {integrity: sha512-VWkkZV6Y+W8qLX/PtJu2Ur2jDPIs0a5vbP0TpKeybNcIXmT4vcKoVkyTp5lnQvTpY/DxacAZ4RZisHRHLJcAZQ==} dependencies: - define-properties: 1.2.0 + define-properties: 1.2.1 empower: 1.3.1 power-assert-formatter: 1.4.1 universal-deep-strict-equal: 1.2.2 xtend: 4.0.2 dev: true - /preferred-pm@3.0.3: - resolution: {integrity: sha512-+wZgbxNES/KlJs9q40F/1sfOd/j7f1O9JaHcW5Dsn3aUUOZg3L2bjpVUcKV2jvtElYfoTuQiNeMfQJ4kwUAhCQ==} + /preferred-pm@3.1.2: + resolution: {integrity: sha512-nk7dKrcW8hfCZ4H6klWcdRknBOXWzNQByJ0oJyX97BOupsYD+FzLS4hflgEu/uPUEHZCuRfMxzCBsuWd7OzT8Q==} engines: {node: '>=10'} dependencies: find-up: 5.0.0 @@ -39366,6 +39448,7 @@ packages: /prelude-ls@1.1.2: resolution: {integrity: sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==} engines: {node: '>= 0.8.0'} + dev: true /prelude-ls@1.2.1: resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} @@ -39398,9 +39481,9 @@ packages: peerDependencies: prettier: '>= 2.0.0' dependencies: - postcss: 8.4.25 + postcss: 8.4.31 postcss-less: 4.0.1 - postcss-sorting: 6.0.0(postcss@8.4.25) + postcss-sorting: 6.0.0(postcss@8.4.31) prettier: 2.8.8 dev: true @@ -39454,11 +39537,11 @@ packages: react-is: 17.0.2 dev: false - /pretty-format@29.6.1: - resolution: {integrity: sha512-7jRj+yXO0W7e4/tSJKoR7HRIHLPPjtNaUGG2xxKQnGvPNRkgWcQ0AZX6P4KBRJN4FcTBWb3sa7DVUJmocYuoog==} + /pretty-format@29.7.0: + resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@jest/schemas': 29.6.0 + '@jest/schemas': 29.6.3 ansi-styles: 5.2.0 react-is: 18.2.0 @@ -39514,7 +39597,7 @@ packages: /probe.gl@3.6.0: resolution: {integrity: sha512-19JydJWI7+DtR4feV+pu4Mn1I5TAc0xojuxVgZdXIyfmTLfUaFnk4OloWK1bKbPtkgGKLr2lnbnCXmpZEcEp9g==} dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 '@probe.gl/env': 3.6.0 '@probe.gl/log': 3.6.0 '@probe.gl/stats': 3.6.0 @@ -39535,7 +39618,7 @@ packages: dependencies: chalk: 2.4.2 cli-spinners: 1.3.1 - humanize-duration: 3.29.0 + humanize-duration: 3.30.0 log-update: 2.3.0 dev: true @@ -39561,25 +39644,27 @@ packages: err-code: 1.1.2 retry: 0.10.1 - /promise.allsettled@1.0.6: - resolution: {integrity: sha512-22wJUOD3zswWFqgwjNHa1965LvqTX87WPu/lreY2KSd7SVcERfuZ4GfUaOnJNnvtoIv2yXT/W00YIGMetXtFXg==} + /promise.allsettled@1.0.7: + resolution: {integrity: sha512-hezvKvQQmsFkOdrZfYxUxkyxl8mgFQeT259Ajj9PXdbg9VzBCWrItOev72JyWxkCD5VSSqAeHmlN3tWx4DlmsA==} engines: {node: '>= 0.4'} dependencies: - array.prototype.map: 1.0.5 - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.3 - get-intrinsic: 1.2.1 + array.prototype.map: 1.0.6 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + get-intrinsic: 1.2.2 iterate-value: 1.0.2 dev: true - /promise.prototype.finally@3.1.4: - resolution: {integrity: sha512-nNc3YbgMfLzqtqvO/q5DP6RR0SiHI9pUPGzyDf1q+usTwCN2kjvAnJkBb7bHe3o+fFSBPpsGMoYtaSi+LTNqng==} + /promise.prototype.finally@3.1.7: + resolution: {integrity: sha512-iL9OcJRUZcCE5xn6IwhZxO+eMM0VEXjkETHy+Nk+d9q3s7kxVtPg+mBlMO+ZGxNKNMODyKmy/bOyt/yhxTnvEw==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.3 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + get-intrinsic: 1.2.2 + set-function-name: 2.0.1 dev: true /promise.series@0.2.0: @@ -39614,7 +39699,7 @@ packages: /prop-types-exact@1.2.0: resolution: {integrity: sha512-K+Tk3Kd9V0odiXFP9fwDHUYRyvK3Nun3GVyPapSIs5OBkITAm15W0CPFD/YKTkMUAbc0b9CUwRQp2ybiBIq+eA==} dependencies: - has: 1.0.3 + has: 1.0.4 object.assign: 4.1.4 reflect.ownkeys: 0.2.0 dev: true @@ -39639,16 +39724,16 @@ packages: dependencies: xtend: 4.0.2 - /property-information@6.2.0: - resolution: {integrity: sha512-kma4U7AFCTwpqq5twzC1YVIDXSqg6qQK6JN0smOw8fgRy1OkMi0CYSzFmsy6dnqSenamAtj0CyXMUJ1Mf6oROg==} + /property-information@6.3.0: + resolution: {integrity: sha512-gVNZ74nqhRMiIUYWGQdosYetaKc83x8oT41a0LlV3AAFCAZwCpg4vmGkq8t34+cUhp3cnM4XDiU/7xlgK7HGrg==} dev: false /proto-list@1.2.4: resolution: {integrity: sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==} dev: false - /protobufjs@6.11.3: - resolution: {integrity: sha512-xL96WDdCZYdU7Slin569tFX712BxsxslWwAfAhCYjQKGTq7dAU91Lomy6nLLhh/dyGhk/YH4TwTSRxTzhuHyZg==} + /protobufjs@6.11.4: + resolution: {integrity: sha512-5kQWPaJHi1WoCpjTGszzQ32PG2F4+wRY6BmAT4Vfw56Q2FZ4YZzK20xUYQH4YkfehY1e6QSICrJquM6xXZNcrw==} hasBin: true requiresBuild: true dependencies: @@ -39663,12 +39748,12 @@ packages: '@protobufjs/pool': 1.1.0 '@protobufjs/utf8': 1.1.0 '@types/long': 4.0.2 - '@types/node': 14.18.53 + '@types/node': 14.18.63 long: 4.0.0 dev: false - /protobufjs@7.2.4: - resolution: {integrity: sha512-AT+RJgD2sH8phPmCf7OUZR8xGdcJRga4+1cOaXJ64hvcSkVhNcRHOwIxUatPH15+nj59WAGTDv3LSGZPEQbJaQ==} + /protobufjs@7.2.5: + resolution: {integrity: sha512-gGXRSXvxQ7UiPgfw8gevrfRWcTlSbOFg+p/N+JVJEK5VhueL2miT6qTymqAmjr1Q5WbOCyJbyrk6JfWKwlFn6A==} engines: {node: '>=12.0.0'} requiresBuild: true dependencies: @@ -39682,7 +39767,7 @@ packages: '@protobufjs/path': 1.1.2 '@protobufjs/pool': 1.1.0 '@protobufjs/utf8': 1.1.0 - '@types/node': 14.18.53 + '@types/node': 14.18.63 long: 5.2.3 dev: false @@ -39709,24 +39794,6 @@ packages: ipaddr.js: 1.9.1 dev: true - /proxy-agent@5.0.0: - resolution: {integrity: sha512-gkH7BkvLVkSfX9Dk27W6TyNOWWZWRilRfk1XxGNWOYJ2TuedAv1yFpCaU9QSBmBe716XOTNpYNOzhysyw8xn7g==} - engines: {node: '>= 8'} - dependencies: - agent-base: 6.0.2 - debug: 4.3.4(supports-color@5.5.0) - http-proxy-agent: 4.0.1 - https-proxy-agent: 5.0.1 - lru-cache: 5.1.1 - pac-proxy-agent: 5.0.0 - proxy-from-env: 1.1.0 - socks-proxy-agent: 5.0.1 - transitivePeerDependencies: - - supports-color - - /proxy-from-env@1.1.0: - resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==} - /prr@1.0.1: resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==} @@ -39790,8 +39857,8 @@ packages: resolution: {integrity: sha512-QFADYnsVoBMw1srW7OVKEYjG+MbIa49s54w1MA1EDY6r2r/sTcKKYqRX1f4GYvnXP7eN/Pe9HFcX+hwzmrXRHA==} dev: false - /pure-rand@6.0.2: - resolution: {integrity: sha512-6Yg0ekpKICSjPswYOuC5sku/TSWaRYlA0qsXqJgM/d/4pLPHPuTxK7Nbf7jFKzAeedUhR8C7K9Uv63FBsSo8xQ==} + /pure-rand@6.0.4: + resolution: {integrity: sha512-LA0Y9kxMYv47GIPJy6MI84fqTd2HmYZI83W/kM/SkKfDlajnZYfmXFTxkbY+xSBPkLJxltMa9hIkmdc29eguMA==} dev: true /q@1.5.1: @@ -39957,8 +40024,9 @@ packages: http-errors: 2.0.0 iconv-lite: 0.4.24 unpipe: 1.0.0 + dev: false - /raw-loader@3.1.0(webpack@4.46.0): + /raw-loader@3.1.0(webpack@4.47.0): resolution: {integrity: sha512-lzUVMuJ06HF4rYveaz9Tv0WRlUMxJ0Y1hgSkkgg+50iEdaI0TthyEDe08KIHb0XsF6rn8WYTqPCaGTZg3sX+qA==} engines: {node: '>= 8.9.0'} peerDependencies: @@ -39966,7 +40034,7 @@ packages: dependencies: loader-utils: 1.4.2 schema-utils: 2.7.1 - webpack: 4.46.0(webpack-cli@5.0.0) + webpack: 4.47.0(webpack-cli@5.0.0) dev: true /rbush@2.0.2: @@ -39996,10 +40064,10 @@ packages: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.2.6 dom-align: 1.12.4 - rc-util: 5.34.1(react-dom@16.14.0)(react@17.0.2) + rc-util: 5.38.0(react-dom@16.14.0)(react@17.0.2) react: 17.0.2 react-dom: 16.14.0(react@17.0.2) resize-observer-polyfill: 1.5.1 @@ -40010,10 +40078,10 @@ packages: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.2.6 dom-align: 1.12.4 - rc-util: 5.34.1(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.38.0(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) resize-observer-polyfill: 1.5.1 @@ -40041,12 +40109,12 @@ packages: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 array-tree-filter: 2.1.0 classnames: 2.3.2 - rc-select: 14.1.17(react-dom@16.14.0)(react@17.0.2) - rc-tree: 5.7.9(react-dom@16.14.0)(react@17.0.2) - rc-util: 5.34.1(react-dom@16.14.0)(react@17.0.2) + rc-select: 14.1.18(react-dom@16.14.0)(react@17.0.2) + rc-tree: 5.7.12(react-dom@16.14.0)(react@17.0.2) + rc-util: 5.38.0(react-dom@16.14.0)(react@17.0.2) react: 17.0.2 react-dom: 16.14.0(react@17.0.2) @@ -40056,12 +40124,12 @@ packages: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 array-tree-filter: 2.1.0 classnames: 2.3.2 - rc-select: 14.1.17(react-dom@17.0.2)(react@17.0.2) - rc-tree: 5.7.9(react-dom@17.0.2)(react@17.0.2) - rc-util: 5.34.1(react-dom@17.0.2)(react@17.0.2) + rc-select: 14.1.18(react-dom@17.0.2)(react@17.0.2) + rc-tree: 5.7.12(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.38.0(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) @@ -40080,9 +40148,9 @@ packages: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.3.2 - rc-util: 5.34.1(react-dom@16.14.0)(react@17.0.2) + rc-util: 5.38.0(react-dom@16.14.0)(react@17.0.2) react: 17.0.2 react-dom: 16.14.0(react@17.0.2) @@ -40092,9 +40160,9 @@ packages: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.3.2 - rc-util: 5.34.1(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.38.0(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) @@ -40116,10 +40184,10 @@ packages: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.2.6 - rc-motion: 2.7.3(react-dom@16.14.0)(react@17.0.2) - rc-util: 5.34.1(react-dom@16.14.0)(react@17.0.2) + rc-motion: 2.9.0(react-dom@16.14.0)(react@17.0.2) + rc-util: 5.38.0(react-dom@16.14.0)(react@17.0.2) react: 17.0.2 react-dom: 16.14.0(react@17.0.2) shallowequal: 1.1.0 @@ -40130,10 +40198,10 @@ packages: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.2.6 - rc-motion: 2.7.3(react-dom@17.0.2)(react@17.0.2) - rc-util: 5.34.1(react-dom@17.0.2)(react@17.0.2) + rc-motion: 2.9.0(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.38.0(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) shallowequal: 1.1.0 @@ -40144,11 +40212,11 @@ packages: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 - '@rc-component/portal': 1.1.1(react-dom@16.14.0)(react@17.0.2) + '@babel/runtime': 7.23.2 + '@rc-component/portal': 1.1.2(react-dom@16.14.0)(react@17.0.2) classnames: 2.2.6 - rc-motion: 2.7.3(react-dom@16.14.0)(react@17.0.2) - rc-util: 5.34.1(react-dom@16.14.0)(react@17.0.2) + rc-motion: 2.9.0(react-dom@16.14.0)(react@17.0.2) + rc-util: 5.38.0(react-dom@16.14.0)(react@17.0.2) react: 17.0.2 react-dom: 16.14.0(react@17.0.2) @@ -40158,11 +40226,11 @@ packages: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 - '@rc-component/portal': 1.1.1(react-dom@17.0.2)(react@17.0.2) + '@babel/runtime': 7.23.2 + '@rc-component/portal': 1.1.2(react-dom@17.0.2)(react@17.0.2) classnames: 2.2.6 - rc-motion: 2.7.3(react-dom@17.0.2)(react@17.0.2) - rc-util: 5.34.1(react-dom@17.0.2)(react@17.0.2) + rc-motion: 2.9.0(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.38.0(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) @@ -40172,11 +40240,11 @@ packages: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 - '@rc-component/portal': 1.1.1(react-dom@16.14.0)(react@17.0.2) + '@babel/runtime': 7.23.2 + '@rc-component/portal': 1.1.2(react-dom@16.14.0)(react@17.0.2) classnames: 2.2.6 - rc-motion: 2.7.3(react-dom@16.14.0)(react@17.0.2) - rc-util: 5.34.1(react-dom@16.14.0)(react@17.0.2) + rc-motion: 2.9.0(react-dom@16.14.0)(react@17.0.2) + rc-util: 5.38.0(react-dom@16.14.0)(react@17.0.2) react: 17.0.2 react-dom: 16.14.0(react@17.0.2) @@ -40186,11 +40254,11 @@ packages: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 - '@rc-component/portal': 1.1.1(react-dom@17.0.2)(react@17.0.2) + '@babel/runtime': 7.23.2 + '@rc-component/portal': 1.1.2(react-dom@17.0.2)(react@17.0.2) classnames: 2.2.6 - rc-motion: 2.7.3(react-dom@17.0.2)(react@17.0.2) - rc-util: 5.34.1(react-dom@17.0.2)(react@17.0.2) + rc-motion: 2.9.0(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.38.0(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) @@ -40200,10 +40268,10 @@ packages: react: '>=16.11.0 || 17' react-dom: '>=16.11.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.2.6 rc-trigger: 5.3.4(react-dom@16.14.0)(react@17.0.2) - rc-util: 5.34.1(react-dom@16.14.0)(react@17.0.2) + rc-util: 5.38.0(react-dom@16.14.0)(react@17.0.2) react: 17.0.2 react-dom: 16.14.0(react@17.0.2) @@ -40213,10 +40281,10 @@ packages: react: '>=16.11.0 || 17' react-dom: '>=16.11.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.2.6 rc-trigger: 5.3.4(react-dom@17.0.2)(react@17.0.2) - rc-util: 5.34.1(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.38.0(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) @@ -40262,9 +40330,9 @@ packages: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 async-validator: 4.2.5 - rc-util: 5.34.1(react-dom@16.14.0)(react@17.0.2) + rc-util: 5.38.0(react-dom@16.14.0)(react@17.0.2) react: 17.0.2 react-dom: 16.14.0(react@17.0.2) @@ -40275,22 +40343,22 @@ packages: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 async-validator: 4.2.5 - rc-util: 5.34.1(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.38.0(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) - /rc-field-form@1.34.1(react-dom@17.0.2)(react@17.0.2): - resolution: {integrity: sha512-oohdrjUHYWzY4H5EOw/9xk324oatZOKiCfo3FwnK9G/LswoqflWoxeaAGMkjI5Ug4YxSq80fehoJjVYApSheYA==} + /rc-field-form@1.40.0(react-dom@17.0.2)(react@17.0.2): + resolution: {integrity: sha512-OM3N01X2BYFGJDJcwpk9/BBtlwgveE7eh2SQAKIxVCt9KVWlODYJ9ypTHQdxchfDbeJKJKxMBFXlLAmyvlgPHg==} engines: {node: '>=8.x'} peerDependencies: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 async-validator: 4.2.5 - rc-util: 5.34.1(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.38.0(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) dev: false @@ -40324,12 +40392,12 @@ packages: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 - '@rc-component/portal': 1.1.1(react-dom@16.14.0)(react@17.0.2) + '@babel/runtime': 7.23.2 + '@rc-component/portal': 1.1.2(react-dom@16.14.0)(react@17.0.2) classnames: 2.2.6 rc-dialog: 9.0.2(react-dom@16.14.0)(react@17.0.2) - rc-motion: 2.7.3(react-dom@16.14.0)(react@17.0.2) - rc-util: 5.34.1(react-dom@16.14.0)(react@17.0.2) + rc-motion: 2.9.0(react-dom@16.14.0)(react@17.0.2) + rc-util: 5.38.0(react-dom@16.14.0)(react@17.0.2) react: 17.0.2 react-dom: 16.14.0(react@17.0.2) @@ -40339,12 +40407,12 @@ packages: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 - '@rc-component/portal': 1.1.1(react-dom@17.0.2)(react@17.0.2) + '@babel/runtime': 7.23.2 + '@rc-component/portal': 1.1.2(react-dom@17.0.2)(react@17.0.2) classnames: 2.2.6 rc-dialog: 9.0.2(react-dom@17.0.2)(react@17.0.2) - rc-motion: 2.7.3(react-dom@17.0.2)(react@17.0.2) - rc-util: 5.34.1(react-dom@17.0.2)(react@17.0.2) + rc-motion: 2.9.0(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.38.0(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) @@ -40354,9 +40422,9 @@ packages: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.2.6 - rc-util: 5.34.1(react-dom@16.14.0)(react@17.0.2) + rc-util: 5.38.0(react-dom@16.14.0)(react@17.0.2) react: 17.0.2 react-dom: 16.14.0(react@17.0.2) @@ -40366,9 +40434,9 @@ packages: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.2.6 - rc-util: 5.34.1(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.38.0(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) @@ -40378,9 +40446,9 @@ packages: react: '>=16.0.0 || 17' react-dom: '>=16.0.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.2.6 - rc-util: 5.34.1(react-dom@16.14.0)(react@17.0.2) + rc-util: 5.38.0(react-dom@16.14.0)(react@17.0.2) react: 17.0.2 react-dom: 16.14.0(react@17.0.2) @@ -40390,9 +40458,9 @@ packages: react: '>=16.0.0 || 17' react-dom: '>=16.0.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.2.6 - rc-util: 5.34.1(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.38.0(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) @@ -40402,12 +40470,12 @@ packages: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.2.6 rc-menu: 9.8.4(react-dom@16.14.0)(react@17.0.2) rc-textarea: 0.4.7(react-dom@16.14.0)(react@17.0.2) rc-trigger: 5.3.4(react-dom@16.14.0)(react@17.0.2) - rc-util: 5.34.1(react-dom@16.14.0)(react@17.0.2) + rc-util: 5.38.0(react-dom@16.14.0)(react@17.0.2) react: 17.0.2 react-dom: 16.14.0(react@17.0.2) @@ -40417,12 +40485,12 @@ packages: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.2.6 rc-menu: 9.8.4(react-dom@17.0.2)(react@17.0.2) rc-textarea: 0.4.7(react-dom@17.0.2)(react@17.0.2) rc-trigger: 5.3.4(react-dom@17.0.2)(react@17.0.2) - rc-util: 5.34.1(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.38.0(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) @@ -40432,12 +40500,12 @@ packages: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.2.6 - rc-motion: 2.7.3(react-dom@16.14.0)(react@17.0.2) - rc-overflow: 1.3.1(react-dom@16.14.0)(react@17.0.2) + rc-motion: 2.9.0(react-dom@16.14.0)(react@17.0.2) + rc-overflow: 1.3.2(react-dom@16.14.0)(react@17.0.2) rc-trigger: 5.3.4(react-dom@16.14.0)(react@17.0.2) - rc-util: 5.34.1(react-dom@16.14.0)(react@17.0.2) + rc-util: 5.38.0(react-dom@16.14.0)(react@17.0.2) react: 17.0.2 react-dom: 16.14.0(react@17.0.2) shallowequal: 1.1.0 @@ -40449,12 +40517,12 @@ packages: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.2.6 - rc-motion: 2.7.3(react-dom@17.0.2)(react@17.0.2) - rc-overflow: 1.3.1(react-dom@17.0.2)(react@17.0.2) + rc-motion: 2.9.0(react-dom@17.0.2)(react@17.0.2) + rc-overflow: 1.3.2(react-dom@17.0.2)(react@17.0.2) rc-trigger: 5.3.4(react-dom@17.0.2)(react@17.0.2) - rc-util: 5.34.1(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.38.0(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) shallowequal: 1.1.0 @@ -40466,12 +40534,12 @@ packages: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.2.6 - rc-motion: 2.7.3(react-dom@16.14.0)(react@17.0.2) - rc-overflow: 1.3.1(react-dom@16.14.0)(react@17.0.2) + rc-motion: 2.9.0(react-dom@16.14.0)(react@17.0.2) + rc-overflow: 1.3.2(react-dom@16.14.0)(react@17.0.2) rc-trigger: 5.3.4(react-dom@16.14.0)(react@17.0.2) - rc-util: 5.34.1(react-dom@16.14.0)(react@17.0.2) + rc-util: 5.38.0(react-dom@16.14.0)(react@17.0.2) react: 17.0.2 react-dom: 16.14.0(react@17.0.2) @@ -40481,36 +40549,36 @@ packages: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.2.6 - rc-motion: 2.7.3(react-dom@17.0.2)(react@17.0.2) - rc-overflow: 1.3.1(react-dom@17.0.2)(react@17.0.2) + rc-motion: 2.9.0(react-dom@17.0.2)(react@17.0.2) + rc-overflow: 1.3.2(react-dom@17.0.2)(react@17.0.2) rc-trigger: 5.3.4(react-dom@17.0.2)(react@17.0.2) - rc-util: 5.34.1(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.38.0(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) - /rc-motion@2.7.3(react-dom@16.14.0)(react@17.0.2): - resolution: {integrity: sha512-2xUvo8yGHdOHeQbdI8BtBsCIrWKchEmFEIskf0nmHtJsou+meLd/JE+vnvSX2JxcBrJtXY2LuBpxAOxrbY/wMQ==} + /rc-motion@2.9.0(react-dom@16.14.0)(react@17.0.2): + resolution: {integrity: sha512-XIU2+xLkdIr1/h6ohPZXyPBMvOmuyFZQ/T0xnawz+Rh+gh4FINcnZmMT5UTIj6hgI0VLDjTaPeRd+smJeSPqiQ==} peerDependencies: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.2.6 - rc-util: 5.34.1(react-dom@16.14.0)(react@17.0.2) + rc-util: 5.38.0(react-dom@16.14.0)(react@17.0.2) react: 17.0.2 react-dom: 16.14.0(react@17.0.2) - /rc-motion@2.7.3(react-dom@17.0.2)(react@17.0.2): - resolution: {integrity: sha512-2xUvo8yGHdOHeQbdI8BtBsCIrWKchEmFEIskf0nmHtJsou+meLd/JE+vnvSX2JxcBrJtXY2LuBpxAOxrbY/wMQ==} + /rc-motion@2.9.0(react-dom@17.0.2)(react@17.0.2): + resolution: {integrity: sha512-XIU2+xLkdIr1/h6ohPZXyPBMvOmuyFZQ/T0xnawz+Rh+gh4FINcnZmMT5UTIj6hgI0VLDjTaPeRd+smJeSPqiQ==} peerDependencies: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.2.6 - rc-util: 5.34.1(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.38.0(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) @@ -40521,10 +40589,10 @@ packages: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.2.6 - rc-motion: 2.7.3(react-dom@16.14.0)(react@17.0.2) - rc-util: 5.34.1(react-dom@16.14.0)(react@17.0.2) + rc-motion: 2.9.0(react-dom@16.14.0)(react@17.0.2) + rc-util: 5.38.0(react-dom@16.14.0)(react@17.0.2) react: 17.0.2 react-dom: 16.14.0(react@17.0.2) @@ -40535,36 +40603,36 @@ packages: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.2.6 - rc-motion: 2.7.3(react-dom@17.0.2)(react@17.0.2) - rc-util: 5.34.1(react-dom@17.0.2)(react@17.0.2) + rc-motion: 2.9.0(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.38.0(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) - /rc-overflow@1.3.1(react-dom@16.14.0)(react@17.0.2): - resolution: {integrity: sha512-RY0nVBlfP9CkxrpgaLlGzkSoh9JhjJLu6Icqs9E7CW6Ewh9s0peF9OHIex4OhfoPsR92LR0fN6BlCY9Z4VoUtA==} + /rc-overflow@1.3.2(react-dom@16.14.0)(react@17.0.2): + resolution: {integrity: sha512-nsUm78jkYAoPygDAcGZeC2VwIg/IBGSodtOY3pMof4W3M9qRJgqaDYm03ZayHlde3I6ipliAxbN0RUcGf5KOzw==} peerDependencies: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.2.6 - rc-resize-observer: 1.3.1(react-dom@16.14.0)(react@17.0.2) - rc-util: 5.34.1(react-dom@16.14.0)(react@17.0.2) + rc-resize-observer: 1.4.0(react-dom@16.14.0)(react@17.0.2) + rc-util: 5.38.0(react-dom@16.14.0)(react@17.0.2) react: 17.0.2 react-dom: 16.14.0(react@17.0.2) - /rc-overflow@1.3.1(react-dom@17.0.2)(react@17.0.2): - resolution: {integrity: sha512-RY0nVBlfP9CkxrpgaLlGzkSoh9JhjJLu6Icqs9E7CW6Ewh9s0peF9OHIex4OhfoPsR92LR0fN6BlCY9Z4VoUtA==} + /rc-overflow@1.3.2(react-dom@17.0.2)(react@17.0.2): + resolution: {integrity: sha512-nsUm78jkYAoPygDAcGZeC2VwIg/IBGSodtOY3pMof4W3M9qRJgqaDYm03ZayHlde3I6ipliAxbN0RUcGf5KOzw==} peerDependencies: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.2.6 - rc-resize-observer: 1.3.1(react-dom@17.0.2)(react@17.0.2) - rc-util: 5.34.1(react-dom@17.0.2)(react@17.0.2) + rc-resize-observer: 1.4.0(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.38.0(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) @@ -40574,7 +40642,7 @@ packages: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.2.6 react: 17.0.2 react-dom: 16.14.0(react@17.0.2) @@ -40585,7 +40653,7 @@ packages: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.2.6 react: 17.0.2 react-dom: 17.0.2(react@17.0.2) @@ -40597,50 +40665,50 @@ packages: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.2.6 date-fns: 2.30.0 dayjs: 1.10.5 moment: 2.29.1 rc-trigger: 5.3.4(react-dom@16.14.0)(react@17.0.2) - rc-util: 5.34.1(react-dom@16.14.0)(react@17.0.2) + rc-util: 5.38.0(react-dom@16.14.0)(react@17.0.2) react: 17.0.2 react-dom: 16.14.0(react@17.0.2) shallowequal: 1.1.0 dev: true - /rc-picker@2.7.2(react-dom@16.14.0)(react@17.0.2): - resolution: {integrity: sha512-KbUKgbzgWVN5L+V9xhZDKSmseHIyFneBlmuMtMrZ9fU7Oypw6D+owS5kuUicIEV08Y17oXt8dUqauMeC5IFBPg==} + /rc-picker@2.7.6(react-dom@16.14.0)(react@17.0.2): + resolution: {integrity: sha512-H9if/BUJUZBOhPfWcPeT15JUI3/ntrG9muzERrXDkSoWmDj4yzmBvumozpxYrHwjcKnjyDGAke68d+whWwvhHA==} engines: {node: '>=8.x'} peerDependencies: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.2.6 date-fns: 2.30.0 dayjs: 1.10.5 moment: 2.29.1 rc-trigger: 5.3.4(react-dom@16.14.0)(react@17.0.2) - rc-util: 5.34.1(react-dom@16.14.0)(react@17.0.2) + rc-util: 5.38.0(react-dom@16.14.0)(react@17.0.2) react: 17.0.2 react-dom: 16.14.0(react@17.0.2) shallowequal: 1.1.0 - /rc-picker@2.7.2(react-dom@17.0.2)(react@17.0.2): - resolution: {integrity: sha512-KbUKgbzgWVN5L+V9xhZDKSmseHIyFneBlmuMtMrZ9fU7Oypw6D+owS5kuUicIEV08Y17oXt8dUqauMeC5IFBPg==} + /rc-picker@2.7.6(react-dom@17.0.2)(react@17.0.2): + resolution: {integrity: sha512-H9if/BUJUZBOhPfWcPeT15JUI3/ntrG9muzERrXDkSoWmDj4yzmBvumozpxYrHwjcKnjyDGAke68d+whWwvhHA==} engines: {node: '>=8.x'} peerDependencies: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.2.6 date-fns: 2.30.0 dayjs: 1.10.5 moment: 2.29.1 rc-trigger: 5.3.4(react-dom@17.0.2)(react@17.0.2) - rc-util: 5.34.1(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.38.0(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) shallowequal: 1.1.0 @@ -40651,9 +40719,9 @@ packages: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.2.6 - rc-util: 5.34.1(react-dom@16.14.0)(react@17.0.2) + rc-util: 5.38.0(react-dom@16.14.0)(react@17.0.2) react: 17.0.2 react-dom: 16.14.0(react@17.0.2) @@ -40663,60 +40731,60 @@ packages: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.2.6 - rc-util: 5.34.1(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.38.0(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) - /rc-rate@2.9.2(react-dom@16.14.0)(react@17.0.2): - resolution: {integrity: sha512-SaiZFyN8pe0Fgphv8t3+kidlej+cq/EALkAJAc3A0w0XcPaH2L1aggM8bhe1u6GAGuQNAoFvTLjw4qLPGRKV5g==} + /rc-rate@2.9.3(react-dom@16.14.0)(react@17.0.2): + resolution: {integrity: sha512-2THssUSnRhtqIouQIIXqsZGzRczvp4WsH4WvGuhiwm+LG2fVpDUJliP9O1zeDOZvYfBE/Bup4SgHun/eCkbjgQ==} engines: {node: '>=8.x'} peerDependencies: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.2.6 - rc-util: 5.34.1(react-dom@16.14.0)(react@17.0.2) + rc-util: 5.38.0(react-dom@16.14.0)(react@17.0.2) react: 17.0.2 react-dom: 16.14.0(react@17.0.2) - /rc-rate@2.9.2(react-dom@17.0.2)(react@17.0.2): - resolution: {integrity: sha512-SaiZFyN8pe0Fgphv8t3+kidlej+cq/EALkAJAc3A0w0XcPaH2L1aggM8bhe1u6GAGuQNAoFvTLjw4qLPGRKV5g==} + /rc-rate@2.9.3(react-dom@17.0.2)(react@17.0.2): + resolution: {integrity: sha512-2THssUSnRhtqIouQIIXqsZGzRczvp4WsH4WvGuhiwm+LG2fVpDUJliP9O1zeDOZvYfBE/Bup4SgHun/eCkbjgQ==} engines: {node: '>=8.x'} peerDependencies: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.2.6 - rc-util: 5.34.1(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.38.0(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) - /rc-resize-observer@1.3.1(react-dom@16.14.0)(react@17.0.2): - resolution: {integrity: sha512-iFUdt3NNhflbY3mwySv5CA1TC06zdJ+pfo0oc27xpf4PIOvfZwZGtD9Kz41wGYqC4SLio93RVAirSSpYlV/uYg==} + /rc-resize-observer@1.4.0(react-dom@16.14.0)(react@17.0.2): + resolution: {integrity: sha512-PnMVyRid9JLxFavTjeDXEXo65HCRqbmLBw9xX9gfC4BZiSzbLXKzW3jPz+J0P71pLbD5tBMTT+mkstV5gD0c9Q==} peerDependencies: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.2.6 - rc-util: 5.34.1(react-dom@16.14.0)(react@17.0.2) + rc-util: 5.38.0(react-dom@16.14.0)(react@17.0.2) react: 17.0.2 react-dom: 16.14.0(react@17.0.2) resize-observer-polyfill: 1.5.1 - /rc-resize-observer@1.3.1(react-dom@17.0.2)(react@17.0.2): - resolution: {integrity: sha512-iFUdt3NNhflbY3mwySv5CA1TC06zdJ+pfo0oc27xpf4PIOvfZwZGtD9Kz41wGYqC4SLio93RVAirSSpYlV/uYg==} + /rc-resize-observer@1.4.0(react-dom@17.0.2)(react@17.0.2): + resolution: {integrity: sha512-PnMVyRid9JLxFavTjeDXEXo65HCRqbmLBw9xX9gfC4BZiSzbLXKzW3jPz+J0P71pLbD5tBMTT+mkstV5gD0c9Q==} peerDependencies: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.2.6 - rc-util: 5.34.1(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.38.0(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) resize-observer-polyfill: 1.5.1 @@ -40727,10 +40795,10 @@ packages: react: '>=16.0.0 || 17' react-dom: '>=16.0.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.2.6 - rc-motion: 2.7.3(react-dom@16.14.0)(react@17.0.2) - rc-util: 5.34.1(react-dom@16.14.0)(react@17.0.2) + rc-motion: 2.9.0(react-dom@16.14.0)(react@17.0.2) + rc-util: 5.38.0(react-dom@16.14.0)(react@17.0.2) react: 17.0.2 react-dom: 16.14.0(react@17.0.2) @@ -40740,44 +40808,44 @@ packages: react: '>=16.0.0 || 17' react-dom: '>=16.0.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.2.6 - rc-motion: 2.7.3(react-dom@17.0.2)(react@17.0.2) - rc-util: 5.34.1(react-dom@17.0.2)(react@17.0.2) + rc-motion: 2.9.0(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.38.0(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) - /rc-select@14.1.17(react-dom@16.14.0)(react@17.0.2): - resolution: {integrity: sha512-6qQhMqtoUkkboRqXKKFRR5Nu1mrnw2mC1uxIBIczg7aiJ94qCZBg4Ww8OLT9f4xdyCgbFSGh6r3yB9EBsjoHGA==} + /rc-select@14.1.18(react-dom@16.14.0)(react@17.0.2): + resolution: {integrity: sha512-4JgY3oG2Yz68ECMUSCON7mtxuJvCSj+LJpHEg/AONaaVBxIIrmI/ZTuMJkyojall/X50YdBe5oMKqHHPNiPzEg==} engines: {node: '>=8.x'} peerDependencies: react: '*' react-dom: '*' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.2.6 - rc-motion: 2.7.3(react-dom@16.14.0)(react@17.0.2) - rc-overflow: 1.3.1(react-dom@16.14.0)(react@17.0.2) + rc-motion: 2.9.0(react-dom@16.14.0)(react@17.0.2) + rc-overflow: 1.3.2(react-dom@16.14.0)(react@17.0.2) rc-trigger: 5.3.4(react-dom@16.14.0)(react@17.0.2) - rc-util: 5.34.1(react-dom@16.14.0)(react@17.0.2) - rc-virtual-list: 3.5.3(react-dom@16.14.0)(react@17.0.2) + rc-util: 5.38.0(react-dom@16.14.0)(react@17.0.2) + rc-virtual-list: 3.11.2(react-dom@16.14.0)(react@17.0.2) react: 17.0.2 react-dom: 16.14.0(react@17.0.2) - /rc-select@14.1.17(react-dom@17.0.2)(react@17.0.2): - resolution: {integrity: sha512-6qQhMqtoUkkboRqXKKFRR5Nu1mrnw2mC1uxIBIczg7aiJ94qCZBg4Ww8OLT9f4xdyCgbFSGh6r3yB9EBsjoHGA==} + /rc-select@14.1.18(react-dom@17.0.2)(react@17.0.2): + resolution: {integrity: sha512-4JgY3oG2Yz68ECMUSCON7mtxuJvCSj+LJpHEg/AONaaVBxIIrmI/ZTuMJkyojall/X50YdBe5oMKqHHPNiPzEg==} engines: {node: '>=8.x'} peerDependencies: react: '*' react-dom: '*' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.2.6 - rc-motion: 2.7.3(react-dom@17.0.2)(react@17.0.2) - rc-overflow: 1.3.1(react-dom@17.0.2)(react@17.0.2) + rc-motion: 2.9.0(react-dom@17.0.2)(react@17.0.2) + rc-overflow: 1.3.2(react-dom@17.0.2)(react@17.0.2) rc-trigger: 5.3.4(react-dom@17.0.2)(react@17.0.2) - rc-util: 5.34.1(react-dom@17.0.2)(react@17.0.2) - rc-virtual-list: 3.5.3(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.38.0(react-dom@17.0.2)(react@17.0.2) + rc-virtual-list: 3.11.2(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) @@ -40788,9 +40856,9 @@ packages: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.2.6 - rc-util: 5.34.1(react-dom@16.14.0)(react@17.0.2) + rc-util: 5.38.0(react-dom@16.14.0)(react@17.0.2) react: 17.0.2 react-dom: 16.14.0(react@17.0.2) shallowequal: 1.1.0 @@ -40802,9 +40870,9 @@ packages: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.2.6 - rc-util: 5.34.1(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.38.0(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) shallowequal: 1.1.0 @@ -40841,9 +40909,9 @@ packages: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.2.6 - rc-util: 5.34.1(react-dom@16.14.0)(react@17.0.2) + rc-util: 5.38.0(react-dom@16.14.0)(react@17.0.2) react: 17.0.2 react-dom: 16.14.0(react@17.0.2) @@ -40854,9 +40922,9 @@ packages: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.2.6 - rc-util: 5.34.1(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.38.0(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) @@ -40875,9 +40943,9 @@ packages: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.2.6 - rc-util: 5.34.1(react-dom@16.14.0)(react@17.0.2) + rc-util: 5.38.0(react-dom@16.14.0)(react@17.0.2) react: 17.0.2 react-dom: 16.14.0(react@17.0.2) @@ -40887,9 +40955,9 @@ packages: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.2.6 - rc-util: 5.34.1(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.38.0(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) @@ -40900,10 +40968,10 @@ packages: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.2.6 - rc-resize-observer: 1.3.1(react-dom@16.14.0)(react@17.0.2) - rc-util: 5.34.1(react-dom@16.14.0)(react@17.0.2) + rc-resize-observer: 1.4.0(react-dom@16.14.0)(react@17.0.2) + rc-util: 5.38.0(react-dom@16.14.0)(react@17.0.2) react: 17.0.2 react-dom: 16.14.0(react@17.0.2) shallowequal: 1.1.0 @@ -40915,10 +40983,10 @@ packages: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.2.6 - rc-resize-observer: 1.3.1(react-dom@17.0.2)(react@17.0.2) - rc-util: 5.34.1(react-dom@17.0.2)(react@17.0.2) + rc-resize-observer: 1.4.0(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.38.0(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) shallowequal: 1.1.0 @@ -40930,12 +40998,12 @@ packages: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.2.6 rc-dropdown: 4.0.1(react-dom@16.14.0)(react@17.0.2) rc-menu: 9.6.4(react-dom@16.14.0)(react@17.0.2) - rc-resize-observer: 1.3.1(react-dom@16.14.0)(react@17.0.2) - rc-util: 5.34.1(react-dom@16.14.0)(react@17.0.2) + rc-resize-observer: 1.4.0(react-dom@16.14.0)(react@17.0.2) + rc-util: 5.38.0(react-dom@16.14.0)(react@17.0.2) react: 17.0.2 react-dom: 16.14.0(react@17.0.2) dev: true @@ -40947,12 +41015,12 @@ packages: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.2.6 rc-dropdown: 4.0.1(react-dom@17.0.2)(react@17.0.2) rc-menu: 9.6.4(react-dom@17.0.2)(react@17.0.2) - rc-resize-observer: 1.3.1(react-dom@17.0.2)(react@17.0.2) - rc-util: 5.34.1(react-dom@17.0.2)(react@17.0.2) + rc-resize-observer: 1.4.0(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.38.0(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) dev: false @@ -40964,13 +41032,13 @@ packages: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.2.6 rc-dropdown: 4.0.1(react-dom@16.14.0)(react@17.0.2) rc-menu: 9.8.4(react-dom@16.14.0)(react@17.0.2) - rc-motion: 2.7.3(react-dom@16.14.0)(react@17.0.2) - rc-resize-observer: 1.3.1(react-dom@16.14.0)(react@17.0.2) - rc-util: 5.34.1(react-dom@16.14.0)(react@17.0.2) + rc-motion: 2.9.0(react-dom@16.14.0)(react@17.0.2) + rc-resize-observer: 1.4.0(react-dom@16.14.0)(react@17.0.2) + rc-util: 5.38.0(react-dom@16.14.0)(react@17.0.2) react: 17.0.2 react-dom: 16.14.0(react@17.0.2) @@ -40981,13 +41049,13 @@ packages: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.2.6 rc-dropdown: 4.0.1(react-dom@17.0.2)(react@17.0.2) rc-menu: 9.8.4(react-dom@17.0.2)(react@17.0.2) - rc-motion: 2.7.3(react-dom@17.0.2)(react@17.0.2) - rc-resize-observer: 1.3.1(react-dom@17.0.2)(react@17.0.2) - rc-util: 5.34.1(react-dom@17.0.2)(react@17.0.2) + rc-motion: 2.9.0(react-dom@17.0.2)(react@17.0.2) + rc-resize-observer: 1.4.0(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.38.0(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) @@ -40997,10 +41065,10 @@ packages: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.2.6 - rc-resize-observer: 1.3.1(react-dom@16.14.0)(react@17.0.2) - rc-util: 5.34.1(react-dom@16.14.0)(react@17.0.2) + rc-resize-observer: 1.4.0(react-dom@16.14.0)(react@17.0.2) + rc-util: 5.38.0(react-dom@16.14.0)(react@17.0.2) react: 17.0.2 react-dom: 16.14.0(react@17.0.2) shallowequal: 1.1.0 @@ -41011,10 +41079,10 @@ packages: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.2.6 - rc-resize-observer: 1.3.1(react-dom@17.0.2)(react@17.0.2) - rc-util: 5.34.1(react-dom@17.0.2)(react@17.0.2) + rc-resize-observer: 1.4.0(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.38.0(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) shallowequal: 1.1.0 @@ -41036,7 +41104,7 @@ packages: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.3.2 rc-trigger: 5.3.4(react-dom@16.14.0)(react@17.0.2) react: 17.0.2 @@ -41048,7 +41116,7 @@ packages: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.3.2 rc-trigger: 5.3.4(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 @@ -41060,11 +41128,11 @@ packages: react: '*' react-dom: '*' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.2.6 - rc-select: 14.1.17(react-dom@16.14.0)(react@17.0.2) - rc-tree: 5.7.9(react-dom@16.14.0)(react@17.0.2) - rc-util: 5.34.1(react-dom@16.14.0)(react@17.0.2) + rc-select: 14.1.18(react-dom@16.14.0)(react@17.0.2) + rc-tree: 5.7.12(react-dom@16.14.0)(react@17.0.2) + rc-util: 5.38.0(react-dom@16.14.0)(react@17.0.2) react: 17.0.2 react-dom: 16.14.0(react@17.0.2) @@ -41074,44 +41142,76 @@ packages: react: '*' react-dom: '*' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.2.6 - rc-select: 14.1.17(react-dom@17.0.2)(react@17.0.2) - rc-tree: 5.7.9(react-dom@17.0.2)(react@17.0.2) - rc-util: 5.34.1(react-dom@17.0.2)(react@17.0.2) + rc-select: 14.1.18(react-dom@17.0.2)(react@17.0.2) + rc-tree: 5.7.12(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.38.0(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) - /rc-tree@5.7.9(react-dom@16.14.0)(react@17.0.2): - resolution: {integrity: sha512-1hKkToz/EVjJlMVwmZnpXeLXt/1iQMsaAq9m+GNkUbK746gkc7QpJXSN/TzjhTI5Hi+LOSlrMaXLMT0bHPqILQ==} + /rc-tree@5.7.12(react-dom@16.14.0)(react@17.0.2): + resolution: {integrity: sha512-LXA5nY2hG5koIAlHW5sgXgLpOMz+bFRbnZZ+cCg0tQs4Wv1AmY7EDi1SK7iFXhslYockbqUerQan82jljoaItg==} engines: {node: '>=10.x'} peerDependencies: react: '*' react-dom: '*' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.2.6 - rc-motion: 2.7.3(react-dom@16.14.0)(react@17.0.2) - rc-util: 5.34.1(react-dom@16.14.0)(react@17.0.2) - rc-virtual-list: 3.5.3(react-dom@16.14.0)(react@17.0.2) + rc-motion: 2.9.0(react-dom@16.14.0)(react@17.0.2) + rc-util: 5.38.0(react-dom@16.14.0)(react@17.0.2) + rc-virtual-list: 3.11.2(react-dom@16.14.0)(react@17.0.2) react: 17.0.2 react-dom: 16.14.0(react@17.0.2) - /rc-tree@5.7.9(react-dom@17.0.2)(react@17.0.2): - resolution: {integrity: sha512-1hKkToz/EVjJlMVwmZnpXeLXt/1iQMsaAq9m+GNkUbK746gkc7QpJXSN/TzjhTI5Hi+LOSlrMaXLMT0bHPqILQ==} + /rc-tree@5.7.12(react-dom@17.0.2)(react@17.0.2): + resolution: {integrity: sha512-LXA5nY2hG5koIAlHW5sgXgLpOMz+bFRbnZZ+cCg0tQs4Wv1AmY7EDi1SK7iFXhslYockbqUerQan82jljoaItg==} engines: {node: '>=10.x'} peerDependencies: react: '*' react-dom: '*' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.2.6 - rc-motion: 2.7.3(react-dom@17.0.2)(react@17.0.2) - rc-util: 5.34.1(react-dom@17.0.2)(react@17.0.2) - rc-virtual-list: 3.5.3(react-dom@17.0.2)(react@17.0.2) + rc-motion: 2.9.0(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.38.0(react-dom@17.0.2)(react@17.0.2) + rc-virtual-list: 3.11.2(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) + /rc-tree@5.8.2(react-dom@16.14.0)(react@17.0.2): + resolution: {integrity: sha512-xH/fcgLHWTLmrSuNphU8XAqV7CdaOQgm4KywlLGNoTMhDAcNR3GVNP6cZzb0GrKmIZ9yae+QLot/cAgUdPRMzg==} + engines: {node: '>=10.x'} + peerDependencies: + react: '*' + react-dom: '*' + dependencies: + '@babel/runtime': 7.23.2 + classnames: 2.2.6 + rc-motion: 2.9.0(react-dom@16.14.0)(react@17.0.2) + rc-util: 5.38.0(react-dom@16.14.0)(react@17.0.2) + rc-virtual-list: 3.11.2(react-dom@16.14.0)(react@17.0.2) + react: 17.0.2 + react-dom: 16.14.0(react@17.0.2) + dev: true + + /rc-tree@5.8.2(react-dom@17.0.2)(react@17.0.2): + resolution: {integrity: sha512-xH/fcgLHWTLmrSuNphU8XAqV7CdaOQgm4KywlLGNoTMhDAcNR3GVNP6cZzb0GrKmIZ9yae+QLot/cAgUdPRMzg==} + engines: {node: '>=10.x'} + peerDependencies: + react: '*' + react-dom: '*' + dependencies: + '@babel/runtime': 7.23.2 + classnames: 2.2.6 + rc-motion: 2.9.0(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.38.0(react-dom@17.0.2)(react@17.0.2) + rc-virtual-list: 3.11.2(react-dom@17.0.2)(react@17.0.2) + react: 17.0.2 + react-dom: 17.0.2(react@17.0.2) + dev: false + /rc-trigger@2.6.5(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-m6Cts9hLeZWsTvWnuMm7oElhf+03GOjOLfTuU0QmdB9ZrW7jR2IpI5rpNM7i9MvAAlMAmTx5Zr7g3uu/aMvZAw==} dependencies: @@ -41134,11 +41234,11 @@ packages: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.2.6 rc-align: 4.0.15(react-dom@16.14.0)(react@17.0.2) - rc-motion: 2.7.3(react-dom@16.14.0)(react@17.0.2) - rc-util: 5.34.1(react-dom@16.14.0)(react@17.0.2) + rc-motion: 2.9.0(react-dom@16.14.0)(react@17.0.2) + rc-util: 5.38.0(react-dom@16.14.0)(react@17.0.2) react: 17.0.2 react-dom: 16.14.0(react@17.0.2) @@ -41149,35 +41249,35 @@ packages: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.2.6 rc-align: 4.0.15(react-dom@17.0.2)(react@17.0.2) - rc-motion: 2.7.3(react-dom@17.0.2)(react@17.0.2) - rc-util: 5.34.1(react-dom@17.0.2)(react@17.0.2) + rc-motion: 2.9.0(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.38.0(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) - /rc-upload@4.3.4(react-dom@16.14.0)(react@17.0.2): - resolution: {integrity: sha512-uVbtHFGNjHG/RyAfm9fluXB6pvArAGyAx8z7XzXXyorEgVIWj6mOlriuDm0XowDHYz4ycNK0nE0oP3cbFnzxiQ==} + /rc-upload@4.3.5(react-dom@16.14.0)(react@17.0.2): + resolution: {integrity: sha512-EHlKJbhkgFSQHliTj9v/2K5aEuFwfUQgZARzD7AmAPOneZEPiCNF3n6PEWIuqz9h7oq6FuXgdR67sC5BWFxJbA==} peerDependencies: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.2.6 - rc-util: 5.34.1(react-dom@16.14.0)(react@17.0.2) + rc-util: 5.38.0(react-dom@16.14.0)(react@17.0.2) react: 17.0.2 react-dom: 16.14.0(react@17.0.2) - /rc-upload@4.3.4(react-dom@17.0.2)(react@17.0.2): - resolution: {integrity: sha512-uVbtHFGNjHG/RyAfm9fluXB6pvArAGyAx8z7XzXXyorEgVIWj6mOlriuDm0XowDHYz4ycNK0nE0oP3cbFnzxiQ==} + /rc-upload@4.3.5(react-dom@17.0.2)(react@17.0.2): + resolution: {integrity: sha512-EHlKJbhkgFSQHliTj9v/2K5aEuFwfUQgZARzD7AmAPOneZEPiCNF3n6PEWIuqz9h7oq6FuXgdR67sC5BWFxJbA==} peerDependencies: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.2.6 - rc-util: 5.34.1(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.38.0(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) @@ -41191,53 +41291,53 @@ packages: shallowequal: 1.1.0 dev: false - /rc-util@5.34.1(react-dom@16.14.0)(react@17.0.2): - resolution: {integrity: sha512-SqiUT8Ssgh5C+hu4y887xwCrMNcxLm6ScOo8AFlWYYF3z9uNNiPpwwSjvicqOlWd79rNw1g44rnP7tz9MrO1ZQ==} + /rc-util@5.38.0(react-dom@16.14.0)(react@17.0.2): + resolution: {integrity: sha512-yV/YBNdFn+edyBpBdCqkPE29Su0jWcHNgwx2dJbRqMrMfrUcMJUjCRV+ZPhcvWyKFJ63GzEerPrz9JIVo0zXmA==} peerDependencies: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 react: 17.0.2 react-dom: 16.14.0(react@17.0.2) - react-is: 16.13.1 + react-is: 18.2.0 - /rc-util@5.34.1(react-dom@17.0.2)(react@17.0.2): - resolution: {integrity: sha512-SqiUT8Ssgh5C+hu4y887xwCrMNcxLm6ScOo8AFlWYYF3z9uNNiPpwwSjvicqOlWd79rNw1g44rnP7tz9MrO1ZQ==} + /rc-util@5.38.0(react-dom@17.0.2)(react@17.0.2): + resolution: {integrity: sha512-yV/YBNdFn+edyBpBdCqkPE29Su0jWcHNgwx2dJbRqMrMfrUcMJUjCRV+ZPhcvWyKFJ63GzEerPrz9JIVo0zXmA==} peerDependencies: react: '>=16.9.0 || 17' react-dom: '>=16.9.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 react: 17.0.2 react-dom: 17.0.2(react@17.0.2) - react-is: 16.13.1 + react-is: 18.2.0 - /rc-virtual-list@3.5.3(react-dom@16.14.0)(react@17.0.2): - resolution: {integrity: sha512-rG6IuD4EYM8K6oZ8Shu2BC/CmcTdqng4yBWkc/5fjWhB20bl6QwR2Upyt7+MxvfscoVm8zOQY+tcpEO5cu4GaQ==} + /rc-virtual-list@3.11.2(react-dom@16.14.0)(react@17.0.2): + resolution: {integrity: sha512-MTFLL2LOHr3+/+r+WjTIs6j8XmJE6EqdOsJvCH8SWig7qyik3aljCEImUtw5tdWR0tQhXUfbv7P7nZaLY91XPg==} engines: {node: '>=8.x'} peerDependencies: react: '*' react-dom: '*' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.2.6 - rc-resize-observer: 1.3.1(react-dom@16.14.0)(react@17.0.2) - rc-util: 5.34.1(react-dom@16.14.0)(react@17.0.2) + rc-resize-observer: 1.4.0(react-dom@16.14.0)(react@17.0.2) + rc-util: 5.38.0(react-dom@16.14.0)(react@17.0.2) react: 17.0.2 react-dom: 16.14.0(react@17.0.2) - /rc-virtual-list@3.5.3(react-dom@17.0.2)(react@17.0.2): - resolution: {integrity: sha512-rG6IuD4EYM8K6oZ8Shu2BC/CmcTdqng4yBWkc/5fjWhB20bl6QwR2Upyt7+MxvfscoVm8zOQY+tcpEO5cu4GaQ==} + /rc-virtual-list@3.11.2(react-dom@17.0.2)(react@17.0.2): + resolution: {integrity: sha512-MTFLL2LOHr3+/+r+WjTIs6j8XmJE6EqdOsJvCH8SWig7qyik3aljCEImUtw5tdWR0tQhXUfbv7P7nZaLY91XPg==} engines: {node: '>=8.x'} peerDependencies: react: '*' react-dom: '*' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 classnames: 2.2.6 - rc-resize-observer: 1.3.1(react-dom@17.0.2)(react@17.0.2) - rc-util: 5.34.1(react-dom@17.0.2)(react@17.0.2) + rc-resize-observer: 1.4.0(react-dom@17.0.2)(react@17.0.2) + rc-util: 5.38.0(react-dom@17.0.2)(react@17.0.2) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) @@ -41282,7 +41382,7 @@ packages: react: ^16.8.5 || ^17.0.0 || ^18.0.0 || 17 react-dom: ^16.8.5 || ^17.0.0 || ^18.0.0 dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 css-box-model: 1.2.1 memoize-one: 5.2.1 raf-schd: 4.0.3 @@ -41300,7 +41400,7 @@ packages: peerDependencies: react: ^15.3.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || 17 dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 react: 16.14.0 dev: true @@ -41309,17 +41409,17 @@ packages: peerDependencies: react: ^15.3.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || 17 dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 react: 17.0.2 dev: true - /react-codemirror2@5.1.0(codemirror@5.65.13)(react@17.0.2): + /react-codemirror2@5.1.0(codemirror@5.65.15)(react@17.0.2): resolution: {integrity: sha512-Cksbgbviuf2mJfMyrKmcu7ycK6zX/ukuQO8dvRZdFWqATf5joalhjFc6etnBdGCcPA2LbhIwz+OPnQxLN/j1Fw==} peerDependencies: codemirror: 5.x react: '>=15.5 <=16.x || 17' dependencies: - codemirror: 5.65.13 + codemirror: 5.65.15 react: 17.0.2 dev: true @@ -41337,7 +41437,7 @@ packages: reactcss: 1.2.3(react@17.0.2) tinycolor2: 1.6.0 - /react-dev-utils@7.0.5(typescript@5.1.6)(webpack@4.46.0): + /react-dev-utils@7.0.5(typescript@5.1.6)(webpack@4.47.0): resolution: {integrity: sha512-zJnqqb0x6gd63E3xoz5pXAxBPNaW75Hyz7GgQp0qPhMroBCRQtRvG67AoTZZY1z4yCYVJQZAfQJFdnea0Ujbug==} engines: {node: '>=6'} peerDependencies: @@ -41372,12 +41472,12 @@ packages: strip-ansi: 5.0.0 text-table: 0.2.0 typescript: 5.1.6 - webpack: 4.46.0(webpack-cli@5.0.0) + webpack: 4.47.0(webpack-cli@5.0.0) transitivePeerDependencies: - supports-color dev: true - /react-dev-utils@9.1.0(eslint@7.32.0)(typescript@3.3.4000)(webpack@4.46.0): + /react-dev-utils@9.1.0(eslint@7.32.0)(typescript@3.3.4000)(webpack@4.47.0): resolution: {integrity: sha512-X2KYF/lIGyGwP/F/oXgGDF24nxDA2KC4b7AFto+eqzc/t838gpSGiaU8trTqHXOohuLxxc5qi1eDzsl9ucPDpg==} engines: {node: '>=8.10'} peerDependencies: @@ -41396,7 +41496,7 @@ packages: escape-string-regexp: 1.0.5 filesize: 3.6.1 find-up: 3.0.0 - fork-ts-checker-webpack-plugin: 1.5.0(eslint@7.32.0)(typescript@3.3.4000)(webpack@4.46.0) + fork-ts-checker-webpack-plugin: 1.5.0(eslint@7.32.0)(typescript@3.3.4000)(webpack@4.47.0) global-modules: 2.0.0 globby: 8.0.2 gzip-size: 5.1.1 @@ -41413,14 +41513,14 @@ packages: strip-ansi: 5.2.0 text-table: 0.2.0 typescript: 3.3.4000 - webpack: 4.46.0(webpack-cli@5.0.0) + webpack: 4.47.0(webpack-cli@5.0.0) transitivePeerDependencies: - eslint - supports-color - vue-template-compiler dev: true - /react-dev-utils@9.1.0(eslint@7.32.0)(typescript@5.1.6)(webpack@4.46.0): + /react-dev-utils@9.1.0(eslint@7.32.0)(typescript@5.1.6)(webpack@4.47.0): resolution: {integrity: sha512-X2KYF/lIGyGwP/F/oXgGDF24nxDA2KC4b7AFto+eqzc/t838gpSGiaU8trTqHXOohuLxxc5qi1eDzsl9ucPDpg==} engines: {node: '>=8.10'} peerDependencies: @@ -41439,7 +41539,7 @@ packages: escape-string-regexp: 1.0.5 filesize: 3.6.1 find-up: 3.0.0 - fork-ts-checker-webpack-plugin: 1.5.0(eslint@7.32.0)(typescript@5.1.6)(webpack@4.46.0) + fork-ts-checker-webpack-plugin: 1.5.0(eslint@7.32.0)(typescript@5.1.6)(webpack@4.47.0) global-modules: 2.0.0 globby: 8.0.2 gzip-size: 5.1.1 @@ -41456,15 +41556,15 @@ packages: strip-ansi: 5.2.0 text-table: 0.2.0 typescript: 5.1.6 - webpack: 4.46.0(webpack-cli@5.0.0) + webpack: 4.47.0(webpack-cli@5.0.0) transitivePeerDependencies: - eslint - supports-color - vue-template-compiler dev: true - /react-devtools-core@4.28.0: - resolution: {integrity: sha512-E3C3X1skWBdBzwpOUbmXG8SgH6BtsluSMe+s6rRcujNKG1DGi8uIfhdhszkgDpAsMoE55hwqRUzeXCmETDBpTg==} + /react-devtools-core@4.28.5: + resolution: {integrity: sha512-cq/o30z9W2Wb4rzBefjv5fBalHU0rJGZCHAkf/RHSBWSSYwh8PlQTqqOJmgIIbBtpj27T6FIPXeomIjZtCNVqA==} dependencies: shell-quote: 1.8.1 ws: 7.5.9 @@ -41502,12 +41602,12 @@ packages: typescript: 5.1.6 dev: true - /react-docgen-typescript-loader@3.7.2(typescript@5.1.6)(webpack@4.46.0): + /react-docgen-typescript-loader@3.7.2(typescript@5.1.6)(webpack@4.47.0): resolution: {integrity: sha512-fNzUayyUGzSyoOl7E89VaPKJk9dpvdSgyXg81cUkwy0u+NBvkzQG3FC5WBIlXda0k/iaxS+PWi+OC+tUiGxzPA==} peerDependencies: typescript: '*' dependencies: - '@webpack-contrib/schema-utils': 1.0.0-beta.0(webpack@4.46.0) + '@webpack-contrib/schema-utils': 1.0.0-beta.0(webpack@4.47.0) loader-utils: 1.4.2 react-docgen-typescript: 1.22.0(typescript@5.1.6) typescript: 5.1.6 @@ -41536,8 +41636,8 @@ packages: engines: {node: '>=6'} hasBin: true dependencies: - '@babel/parser': 7.22.7 - '@babel/runtime': 7.22.6 + '@babel/parser': 7.23.0 + '@babel/runtime': 7.23.2 async: 2.6.4 commander: 2.20.3 doctrine: 2.1.0 @@ -41551,7 +41651,7 @@ packages: hasBin: true dependencies: '@babel/core': 7.9.0 - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 async: 2.6.4 commander: 2.20.3 doctrine: 3.0.0 @@ -41566,9 +41666,9 @@ packages: engines: {node: '>=8.10.0'} hasBin: true dependencies: - '@babel/core': 7.22.9 - '@babel/generator': 7.22.9 - '@babel/runtime': 7.22.6 + '@babel/core': 7.23.2 + '@babel/generator': 7.23.0 + '@babel/runtime': 7.23.2 ast-types: 0.14.2 commander: 2.20.3 doctrine: 3.0.0 @@ -41612,6 +41712,16 @@ packages: react: 17.0.2 scheduler: 0.20.2 + /react-dom@18.2.0(react@18.2.0): + resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==} + peerDependencies: + react: ^18.2.0 || 17 + dependencies: + loose-envify: 1.4.0 + react: 18.2.0 + scheduler: 0.23.0 + dev: false + /react-draggable@4.4.5(react-dom@16.14.0)(react@16.14.0): resolution: {integrity: sha512-OMHzJdyJbYTZo4uQE393fHcqqPYsEtkjfMgvCHr6rejT+Ezn4OZbNyGH50vv+SunC1RMvwOTSWkEODQLzw1M9g==} peerDependencies: @@ -41642,7 +41752,7 @@ packages: peerDependencies: react: '>=16.13.1 || 17' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 react: 17.0.2 /react-error-overlay@5.1.6: @@ -41670,8 +41780,8 @@ packages: react: 17.0.2 dev: true - /react-focus-lock@2.9.5(@types/react@17.0.0)(react@16.14.0): - resolution: {integrity: sha512-h6vrdgUbsH2HeD5I7I3Cx1PPrmwGuKYICS+kB9m+32X/9xHRrAbxgvaBpG7BFBN9h3tO+C3qX1QAVESmi4CiIA==} + /react-focus-lock@2.9.6(@types/react@17.0.0)(react@16.14.0): + resolution: {integrity: sha512-B7gYnCjHNrNYwY2juS71dHbf0+UpXXojt02svxybj8N5bxceAkzPChKEncHuratjUHkIFNCn06k2qj1DRlzTug==} peerDependencies: '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 17 @@ -41679,9 +41789,9 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 '@types/react': 17.0.0 - focus-lock: 0.11.6 + focus-lock: 1.0.0 prop-types: 15.8.1 react: 16.14.0 react-clientside-effect: 1.2.6(react@16.14.0) @@ -41689,8 +41799,8 @@ packages: use-sidecar: 1.1.2(@types/react@17.0.0)(react@16.14.0) dev: true - /react-focus-lock@2.9.5(@types/react@17.0.0)(react@17.0.2): - resolution: {integrity: sha512-h6vrdgUbsH2HeD5I7I3Cx1PPrmwGuKYICS+kB9m+32X/9xHRrAbxgvaBpG7BFBN9h3tO+C3qX1QAVESmi4CiIA==} + /react-focus-lock@2.9.6(@types/react@17.0.0)(react@17.0.2): + resolution: {integrity: sha512-B7gYnCjHNrNYwY2juS71dHbf0+UpXXojt02svxybj8N5bxceAkzPChKEncHuratjUHkIFNCn06k2qj1DRlzTug==} peerDependencies: '@types/react': ^16.8.0 || ^17.0.0 || ^18.0.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 17 @@ -41698,9 +41808,9 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 '@types/react': 17.0.0 - focus-lock: 0.11.6 + focus-lock: 1.0.0 prop-types: 15.8.1 react: 17.0.2 react-clientside-effect: 1.2.6(react@17.0.2) @@ -41725,7 +41835,7 @@ packages: react: ^16.6.0 || ^17.0.0 || ^18.0.0 || 17 react-dom: ^16.6.0 || ^17.0.0 || ^18.0.0 dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 invariant: 2.2.4 prop-types: 15.8.1 react: 16.14.0 @@ -41740,7 +41850,7 @@ packages: react: ^16.6.0 || ^17.0.0 || ^18.0.0 || 17 react-dom: ^16.6.0 || ^17.0.0 || ^18.0.0 dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 invariant: 2.2.4 prop-types: 15.8.1 react: 17.0.2 @@ -41755,7 +41865,7 @@ packages: react: ^16.6.0 || ^17.0.0 || ^18.0.0 || 17 react-dom: ^16.6.0 || ^17.0.0 || ^18.0.0 dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 invariant: 2.2.4 prop-types: 15.8.1 react: 16.14.0 @@ -41770,7 +41880,7 @@ packages: react: ^16.6.0 || ^17.0.0 || ^18.0.0 || 17 react-dom: ^16.6.0 || ^17.0.0 || ^18.0.0 dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 invariant: 2.2.4 prop-types: 15.8.1 react: 17.0.2 @@ -41862,7 +41972,7 @@ packages: peerDependencies: react: ^16.8.4 || 17 dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 is-dom: 1.1.0 prop-types: 15.8.1 react: 16.14.0 @@ -41878,8 +41988,8 @@ packages: '@formatjs/intl-relativetimeformat': 4.5.16 '@formatjs/intl-unified-numberformat': 3.3.7 '@formatjs/intl-utils': 2.3.0 - '@types/hoist-non-react-statics': 3.3.1 - '@types/invariant': 2.2.35 + '@types/hoist-non-react-statics': 3.3.4 + '@types/invariant': 2.2.36 hoist-non-react-statics: 3.3.2 intl-format-cache: 4.3.1 intl-messageformat: 7.8.4 @@ -41902,12 +42012,12 @@ packages: '@formatjs/intl': 2.9.0(typescript@5.1.6) '@formatjs/intl-displaynames': 6.5.0 '@formatjs/intl-listformat': 7.4.0 - '@types/hoist-non-react-statics': 3.3.1 + '@types/hoist-non-react-statics': 3.3.4 '@types/react': 17.0.0 hoist-non-react-statics: 3.3.2 intl-messageformat: 10.5.0 react: 17.0.2 - tslib: 2.6.0 + tslib: 2.6.2 typescript: 5.1.6 dev: false @@ -41931,7 +42041,7 @@ packages: react-base16-styling: 0.6.0 react-dom: 17.0.2(react@17.0.2) react-lifecycles-compat: 3.0.4 - react-textarea-autosize: 8.5.2(@types/react@17.0.0)(react@17.0.2) + react-textarea-autosize: 8.5.3(@types/react@17.0.0)(react@17.0.2) transitivePeerDependencies: - '@types/react' - encoding @@ -41948,14 +42058,14 @@ packages: react: 17.0.2 dev: false - /react-konva@16.8.6(konva@9.2.0)(react-dom@17.0.2)(react@17.0.2): + /react-konva@16.8.6(konva@9.2.2)(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-6KRIqHyJuTTMuAehDIXvw+ZrtEj2aMc2fwolhmFlg1HBzH4PJimsMByTcEx292Afh9d38TcHdjXP1C58qqDOlg==} peerDependencies: konva: ^3.2.3 react: 16.8.x || 17 react-dom: 16.8.x dependencies: - konva: 9.2.0 + konva: 9.2.2 react: 17.0.2 react-dom: 17.0.2(react@17.0.2) react-reconciler: 0.20.4(react@17.0.2) @@ -41974,10 +42084,10 @@ packages: dependencies: buble: 0.19.8 core-js: 2.6.12 - create-react-context: 0.2.3(prop-types@15.8.1)(react@17.0.2) + create-react-context: 0.2.3(prop-types@15.7.2)(react@17.0.2) dom-iterator: 1.0.0 prismjs: 1.6.0 - prop-types: 15.8.1 + prop-types: 15.7.2 react: 17.0.2 react-dom: 16.14.0(react@17.0.2) unescape: 0.2.0 @@ -41992,10 +42102,10 @@ packages: dependencies: buble: 0.19.8 core-js: 2.6.12 - create-react-context: 0.2.3(prop-types@15.8.1)(react@17.0.2) + create-react-context: 0.2.3(prop-types@15.7.2)(react@17.0.2) dom-iterator: 1.0.0 prismjs: 1.6.0 - prop-types: 15.8.1 + prop-types: 15.7.2 react: 17.0.2 react-dom: 17.0.2(react@17.0.2) unescape: 0.2.0 @@ -42006,7 +42116,7 @@ packages: peerDependencies: react: ^15.0.0 || ^16.0.0 || 17 dependencies: - html-to-react: 1.6.0(react@17.0.2) + html-to-react: 1.7.0(react@17.0.2) mdast-add-list-metadata: 1.0.1 prop-types: 15.8.1 react: 17.0.2 @@ -42023,20 +42133,20 @@ packages: '@types/react': '>=16' react: '>=16 || 17' dependencies: - '@types/hast': 2.3.5 - '@types/prop-types': 15.7.5 + '@types/hast': 2.3.7 + '@types/prop-types': 15.7.9 '@types/react': 17.0.0 - '@types/unist': 2.0.7 + '@types/unist': 2.0.9 comma-separated-tokens: 2.0.3 hast-util-whitespace: 2.0.1 prop-types: 15.8.1 - property-information: 6.2.0 + property-information: 6.3.0 react: 17.0.2 react-is: 18.2.0 remark-parse: 10.0.2 remark-rehype: 10.1.0 space-separated-tokens: 2.0.2 - style-to-object: 0.4.1 + style-to-object: 0.4.4 unified: 10.1.2 unist-util-visit: 4.1.2 vfile: 5.3.7 @@ -42079,23 +42189,23 @@ packages: react-tween-state: 0.1.5 dev: false - /react-native@0.72.3(@babel/core@7.22.9)(@babel/preset-env@7.22.9)(react@17.0.2): - resolution: {integrity: sha512-QqISi+JVmCssNP2FlQ4MWhlc4O/I00MRE1/GClvyZ8h/6kdsyk/sOirkYdZqX3+DrJfI3q+OnyMnsyaXIQ/5tQ==} + /react-native@0.72.6(@babel/core@7.23.2)(@babel/preset-env@7.23.2)(react@17.0.2): + resolution: {integrity: sha512-RafPY2gM7mcrFySS8TL8x+TIO3q7oAlHpzEmC7Im6pmXni6n1AuufGaVh0Narbr1daxstw7yW7T9BKW5dpVc2A==} engines: {node: '>=16'} hasBin: true peerDependencies: react: 18.2.0 || 17 dependencies: - '@jest/create-cache-key-function': 29.6.1 - '@react-native-community/cli': 11.3.5(@babel/core@7.22.9) - '@react-native-community/cli-platform-android': 11.3.5 - '@react-native-community/cli-platform-ios': 11.3.5 + '@jest/create-cache-key-function': 29.7.0 + '@react-native-community/cli': 11.3.7(@babel/core@7.23.2) + '@react-native-community/cli-platform-android': 11.3.7 + '@react-native-community/cli-platform-ios': 11.3.7 '@react-native/assets-registry': 0.72.0 - '@react-native/codegen': 0.72.6(@babel/preset-env@7.22.9) + '@react-native/codegen': 0.72.7(@babel/preset-env@7.23.2) '@react-native/gradle-plugin': 0.72.11 '@react-native/js-polyfills': 0.72.1 '@react-native/normalize-colors': 0.72.0 - '@react-native/virtualized-lists': 0.72.6(react-native@0.72.3) + '@react-native/virtualized-lists': 0.72.8(react-native@0.72.6) abort-controller: 3.0.0 anser: 1.4.10 base64-js: 1.5.1 @@ -42103,24 +42213,24 @@ packages: event-target-shim: 5.0.1 flow-enums-runtime: 0.0.5 invariant: 2.2.4 - jest-environment-node: 29.6.1 + jest-environment-node: 29.7.0 jsc-android: 250231.0.0 memoize-one: 5.2.1 - metro-runtime: 0.76.7 - metro-source-map: 0.76.7 + metro-runtime: 0.76.8 + metro-source-map: 0.76.8 mkdirp: 0.5.6 nullthrows: 1.1.1 pretty-format: 26.6.2 promise: 8.3.0 react: 17.0.2 - react-devtools-core: 4.28.0 + react-devtools-core: 4.28.5 react-refresh: 0.4.3 react-shallow-renderer: 16.15.0(react@17.0.2) regenerator-runtime: 0.13.11 scheduler: 0.24.0-canary-efb381bbf-20230505 stacktrace-parser: 0.1.10 use-sync-external-store: 1.2.0(react@17.0.2) - whatwg-fetch: 3.6.2 + whatwg-fetch: 3.6.19 ws: 6.2.2 yargs: 17.7.2 transitivePeerDependencies: @@ -42139,7 +42249,7 @@ packages: react-dom: '>=16.3.3' dependencies: perfect-scrollbar: 1.5.5 - prop-types: 15.8.1 + prop-types: 15.7.2 react: 17.0.2 react-dom: 16.14.0(react@17.0.2) dev: true @@ -42151,7 +42261,7 @@ packages: react-dom: '>=16.3.3' dependencies: perfect-scrollbar: 1.5.5 - prop-types: 15.8.1 + prop-types: 15.7.2 react: 17.0.2 react-dom: 17.0.2(react@17.0.2) dev: true @@ -42162,7 +42272,7 @@ packages: react: ^16.6.0 || 17 react-dom: ^16.6.0 dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 react: 16.14.0 react-dom: 16.14.0(react@17.0.2) react-popper: 1.3.11(react@16.14.0) @@ -42174,7 +42284,7 @@ packages: react: ^16.6.0 || 17 react-dom: ^16.6.0 dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 react: 17.0.2 react-dom: 16.14.0(react@17.0.2) react-popper: 1.3.11(react@17.0.2) @@ -42186,7 +42296,7 @@ packages: react: ^16.6.0 || 17 react-dom: ^16.6.0 dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 react: 16.14.0 react-dom: 17.0.2(react@17.0.2) react-popper: 1.3.11(react@16.14.0) @@ -42198,7 +42308,7 @@ packages: react: ^16.6.0 || 17 react-dom: ^16.6.0 dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 react: 17.0.2 react-dom: 17.0.2(react@17.0.2) react-popper: 1.3.11(react@17.0.2) @@ -42209,7 +42319,7 @@ packages: peerDependencies: react: 0.14.x || ^15.0.0 || ^16.0.0 || ^17.0.0 || 17 dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 '@hypnosphi/create-react-context': 0.3.1(prop-types@15.8.1)(react@16.14.0) deep-equal: 1.1.1 popper.js: 1.16.1 @@ -42224,7 +42334,7 @@ packages: peerDependencies: react: 0.14.x || ^15.0.0 || ^16.0.0 || ^17.0.0 || 17 dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 '@hypnosphi/create-react-context': 0.3.1(prop-types@15.8.1)(react@17.0.2) deep-equal: 1.1.1 popper.js: 1.16.1 @@ -42270,8 +42380,8 @@ packages: react-native: optional: true dependencies: - '@babel/runtime': 7.22.6 - '@types/react-redux': 7.1.25 + '@babel/runtime': 7.23.2 + '@types/react-redux': 7.1.28 hoist-non-react-statics: 3.3.2 loose-envify: 1.4.0 prop-types: 15.8.1 @@ -42292,8 +42402,8 @@ packages: react-native: optional: true dependencies: - '@babel/runtime': 7.22.6 - '@types/react-redux': 7.1.25 + '@babel/runtime': 7.23.2 + '@types/react-redux': 7.1.28 hoist-non-react-statics: 3.3.2 loose-envify: 1.4.0 prop-types: 15.8.1 @@ -42314,8 +42424,8 @@ packages: react-native: optional: true dependencies: - '@babel/runtime': 7.22.6 - '@types/react-redux': 7.1.25 + '@babel/runtime': 7.23.2 + '@types/react-redux': 7.1.28 hoist-non-react-statics: 3.3.2 loose-envify: 1.4.0 prop-types: 15.8.1 @@ -42344,7 +42454,7 @@ packages: react: '>=15 || 17' react-router: '>=5' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 react: 16.14.0 react-router: 5.2.0(react@17.0.2) @@ -42354,7 +42464,7 @@ packages: react: '>=15 || 17' react-router: '>=5' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 react: 17.0.2 react-router: 5.2.0(react@17.0.2) dev: true @@ -42365,37 +42475,37 @@ packages: react: '>=15 || 17' react-router: '>=5' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 react: 16.14.0 react-router: 5.3.4(react@17.0.2) dev: false - /react-router-config@5.1.1(react-router@6.14.1)(react@16.14.0): + /react-router-config@5.1.1(react-router@6.17.0)(react@16.14.0): resolution: {integrity: sha512-DuanZjaD8mQp1ppHjgnnUnyOlqYXZVjnov/JzFhjLEwd3Z4dYjMSnqrEzzGThH47vpCOqPPwJM2FtthLeJ8Pbg==} peerDependencies: react: '>=15 || 17' react-router: '>=5' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 react: 16.14.0 - react-router: 6.14.1(react@17.0.2) + react-router: 6.17.0(react@17.0.2) - /react-router-config@5.1.1(react-router@6.14.1)(react@17.0.2): + /react-router-config@5.1.1(react-router@6.17.0)(react@17.0.2): resolution: {integrity: sha512-DuanZjaD8mQp1ppHjgnnUnyOlqYXZVjnov/JzFhjLEwd3Z4dYjMSnqrEzzGThH47vpCOqPPwJM2FtthLeJ8Pbg==} peerDependencies: react: '>=15 || 17' react-router: '>=5' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 react: 17.0.2 - react-router: 6.14.1(react@17.0.2) + react-router: 6.17.0(react@17.0.2) /react-router-dom@5.1.1(react@17.0.2): resolution: {integrity: sha512-r8R8H0Vt2ISqpk02rR6VZBLk+JZdR6pZV+h9K1y0ISh3/G4GGByNevYBS69x6czcOcWVRcZmXjwY8l9UBCKV+w==} peerDependencies: react: '>=15 || 17' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 history: 4.10.1 loose-envify: 1.4.0 prop-types: 15.8.1 @@ -42410,7 +42520,7 @@ packages: peerDependencies: react: '>=15 || 17' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 history: 4.10.1 loose-envify: 1.4.0 prop-types: 15.8.1 @@ -42424,7 +42534,7 @@ packages: peerDependencies: react: '>=15 || 17' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 history: 4.10.1 loose-envify: 1.4.0 prop-types: 15.8.1 @@ -42438,7 +42548,7 @@ packages: peerDependencies: react: '>=15 || 17' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 history: 4.10.1 hoist-non-react-statics: 3.3.2 loose-envify: 1.4.0 @@ -42456,7 +42566,7 @@ packages: peerDependencies: react: '>=15 || 17' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 history: 4.10.1 hoist-non-react-statics: 3.3.2 loose-envify: 1.4.0 @@ -42473,7 +42583,7 @@ packages: peerDependencies: react: '>=15 || 17' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 history: 4.10.1 hoist-non-react-statics: 3.3.2 loose-envify: 1.4.0 @@ -42490,7 +42600,7 @@ packages: peerDependencies: react: '>=15 || 17' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 history: 4.10.1 hoist-non-react-statics: 3.3.2 loose-envify: 1.4.0 @@ -42502,13 +42612,13 @@ packages: tiny-warning: 1.0.3 dev: false - /react-router@6.14.1(react@17.0.2): - resolution: {integrity: sha512-U4PfgvG55LdvbQjg5Y9QRWyVxIdO1LlpYT7x+tMAxd9/vmiPuJhIwdxZuIQLN/9e3O4KFDHYfR9gzGeYMasW8g==} - engines: {node: '>=14'} + /react-router@6.17.0(react@17.0.2): + resolution: {integrity: sha512-YJR3OTJzi3zhqeJYADHANCGPUu9J+6fT5GLv82UWRGSxu6oJYCKVmxUcaBQuGm9udpWmPsvpme/CdHumqgsoaA==} + engines: {node: '>=14.0.0'} peerDependencies: react: '>=16.8 || 17' dependencies: - '@remix-run/router': 1.7.1 + '@remix-run/router': 1.10.0 react: 17.0.2 /react-select@3.2.0(react-dom@16.14.0)(react@17.0.2): @@ -42517,7 +42627,7 @@ packages: react: ^16.8.0 || ^17.0.0 || 17 react-dom: ^16.8.0 || ^17.0.0 dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 '@emotion/cache': 10.0.29 '@emotion/core': 10.3.1(react@17.0.2) '@emotion/css': 10.0.27 @@ -42535,7 +42645,7 @@ packages: react: ^16.8.0 || ^17.0.0 || 17 react-dom: ^16.8.0 || ^17.0.0 dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 '@emotion/cache': 10.0.29 '@emotion/core': 10.3.1(react@17.0.2) '@emotion/css': 10.0.27 @@ -42600,7 +42710,7 @@ packages: react: ^0.14.0 || ^15.0.0 || ^16.0.0 || 17 react-dom: ^0.14.0 || ^15.0.0 || ^16.0.0 dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 invariant: 2.2.4 prop-types: 15.8.1 react: 17.0.2 @@ -42614,25 +42724,25 @@ packages: react: ^16.3.0 || ^17.0.0 || 17 react-dom: ^16.3.0 || ^17.0.0 dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 invariant: 2.2.4 prop-types: 15.8.1 react: 17.0.2 react-dom: 17.0.2(react@17.0.2) dev: false - /react-spring@9.6.0(@react-three/fiber@8.13.5)(konva@9.2.0)(react-dom@17.0.2)(react-konva@16.8.6)(react-native@0.72.3)(react-zdog@1.1.1)(react@17.0.2)(three@0.139.2)(zdog@1.1.3): + /react-spring@9.6.0(@react-three/fiber@8.15.8)(konva@9.2.2)(react-dom@17.0.2)(react-konva@16.8.6)(react-native@0.72.6)(react-zdog@1.2.2)(react@17.0.2)(three@0.139.2)(zdog@1.1.3): resolution: {integrity: sha512-BJJBhGPkNNoj83i6+7z7BDDuB3Q25j0w3WCCKlSqgLQafcjx+Se2ogxKM05m+JjjeML5DTDTbsw0UD0GbAzW4g==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 17 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: '@react-spring/core': 9.6.1(react@17.0.2) - '@react-spring/konva': 9.6.1(konva@9.2.0)(react-konva@16.8.6)(react@17.0.2) - '@react-spring/native': 9.6.1(react-native@0.72.3)(react@17.0.2) - '@react-spring/three': 9.6.1(@react-three/fiber@8.13.5)(react@17.0.2)(three@0.139.2) + '@react-spring/konva': 9.6.1(konva@9.2.2)(react-konva@16.8.6)(react@17.0.2) + '@react-spring/native': 9.6.1(react-native@0.72.6)(react@17.0.2) + '@react-spring/three': 9.6.1(@react-three/fiber@8.15.8)(react@17.0.2)(three@0.139.2) '@react-spring/web': 9.6.1(react-dom@17.0.2)(react@17.0.2) - '@react-spring/zdog': 9.6.1(react-dom@17.0.2)(react-zdog@1.1.1)(react@17.0.2)(zdog@1.1.3) + '@react-spring/zdog': 9.6.1(react-dom@17.0.2)(react-zdog@1.2.2)(react@17.0.2)(zdog@1.1.3) react: 17.0.2 react-dom: 17.0.2(react@17.0.2) transitivePeerDependencies: @@ -42651,7 +42761,7 @@ packages: prop-types: ^15.6.2 react: ^0.14.0 || ^15.0.0 || ^16.0.0 || 17 dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 prop-types: 15.8.1 react: 17.0.2 resize-observer-polyfill: 1.5.1 @@ -42662,7 +42772,7 @@ packages: peerDependencies: react: '>= 0.14.0 || 17' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 highlight.js: 9.13.1 lowlight: 1.11.0 prismjs: 1.29.0 @@ -42675,7 +42785,7 @@ packages: peerDependencies: react: '>= 0.14.0 || 17' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 highlight.js: 9.18.5 lowlight: 1.11.0 prismjs: 1.29.0 @@ -42688,7 +42798,7 @@ packages: peerDependencies: react: '>= 0.14.0 || 17' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 highlight.js: 9.18.5 lowlight: 1.11.0 prismjs: 1.29.0 @@ -42713,7 +42823,7 @@ packages: peerDependencies: react: '>=0.14.0 <17.0.0 || 17' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 prop-types: 15.8.1 react: 16.14.0 dev: true @@ -42723,18 +42833,18 @@ packages: peerDependencies: react: '>=0.14.0 <17.0.0 || 17' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 prop-types: 15.8.1 react: 17.0.2 dev: true - /react-textarea-autosize@8.5.2(@types/react@17.0.0)(react@17.0.2): - resolution: {integrity: sha512-uOkyjkEl0ByEK21eCJMHDGBAAd/BoFQBawYK5XItjAmCTeSbjxghd8qnt7nzsLYzidjnoObu6M26xts0YGKsGg==} + /react-textarea-autosize@8.5.3(@types/react@17.0.0)(react@17.0.2): + resolution: {integrity: sha512-XT1024o2pqCuZSuBt9FwHlaDeNtVrtCXu0Rnz88t1jUGheCLa3PhjE1GH8Ctm2axEtvdCl5SUHYschyQ0L5QHQ==} engines: {node: '>=10'} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || 17 dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 react: 17.0.2 use-composed-ref: 1.3.0(react@17.0.2) use-latest: 1.2.1(@types/react@17.0.0)(react@17.0.2) @@ -42748,7 +42858,7 @@ packages: react: '>=16.6.0 || 17' react-dom: '>=16.6.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 dom-helpers: 5.2.1 loose-envify: 1.4.0 prop-types: 15.8.1 @@ -42762,7 +42872,7 @@ packages: react: '>=16.6.0 || 17' react-dom: '>=16.6.0' dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 dom-helpers: 5.2.1 loose-envify: 1.4.0 prop-types: 15.8.1 @@ -42787,22 +42897,12 @@ packages: react-dom: 17.0.2(react@17.0.2) dev: false - /react-zdog@1.1.1(react-dom@17.0.2)(react@17.0.2)(zdog@1.1.3): - resolution: {integrity: sha512-p8la+aWDagOfY0qqedDsrmaWGsJ5JFMY5Da4kMOhsu3QPK717i0Q65lNYxIcazYTmO3n6x2HjoaauYI0nOOSAg==} - peerDependencies: - react: '>=16.8 || 17' - react-dom: '>=16.8' - zdog: '>=1.1' + /react-zdog@1.2.2: + resolution: {integrity: sha512-Ix7ALha91aOEwiHuxumCeYbARS5XNpc/w0v145oGkM6poF/CvhKJwzLhM5sEZbtrghMA+psAhOJkCTzJoseicA==} dependencies: - '@babel/runtime': 7.22.6 - lodash-es: 4.17.21 - pointer-events-polyfill: 0.4.4-pre - react: 17.0.2 - react-dom: 17.0.2(react@17.0.2) - react-reconciler: 0.20.4(react@17.0.2) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) resize-observer-polyfill: 1.5.1 - scheduler: 0.13.3 - zdog: 1.1.3 dev: false /react@16.14.0: @@ -42820,6 +42920,13 @@ packages: loose-envify: 1.4.0 object-assign: 4.1.1 + /react@18.2.0: + resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==} + engines: {node: '>=0.10.0'} + dependencies: + loose-envify: 1.4.0 + dev: false + /reactcss@1.2.3(react@17.0.2): resolution: {integrity: sha512-KiwVUcFu1RErkI97ywr8nvx8dNOpT03rbnma0SSalTYjkrPYaEajR4a/MRt6DZ46K6arDRbWMNHF+xH7G7n/8A==} peerDependencies: @@ -42897,7 +43004,7 @@ packages: resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} engines: {node: '>=8'} dependencies: - '@types/normalize-package-data': 2.4.1 + '@types/normalize-package-data': 2.4.3 normalize-package-data: 2.5.0 parse-json: 5.2.0 type-fest: 0.6.0 @@ -42919,6 +43026,7 @@ packages: inherits: 2.0.4 isarray: 0.0.1 string_decoder: 0.10.31 + dev: false /readable-stream@2.3.8: resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} @@ -43038,28 +43146,28 @@ packages: ast-types: 0.15.2 esprima: 4.0.1 source-map: 0.6.1 - tslib: 2.6.0 + tslib: 2.6.2 dev: false /rechoir@0.6.2: resolution: {integrity: sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==} engines: {node: '>= 0.10'} dependencies: - resolve: 1.22.2 + resolve: 1.22.8 dev: true /rechoir@0.7.1: resolution: {integrity: sha512-/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg==} engines: {node: '>= 0.10'} dependencies: - resolve: 1.22.2 + resolve: 1.22.8 dev: false /rechoir@0.8.0: resolution: {integrity: sha512-/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ==} engines: {node: '>= 10.13.0'} dependencies: - resolve: 1.22.2 + resolve: 1.22.8 /recursive-readdir@2.2.2: resolution: {integrity: sha512-nRCcW9Sj7NuZwa2XvH9co8NPeXUBhZP7CRKJtU+cS6PW9FpCIFoI5ib0NT1ZrbNuPoRy0ylyCaUL8Gih4LSyFg==} @@ -43105,20 +43213,20 @@ packages: /redux@4.2.1: resolution: {integrity: sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w==} dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 /reflect-metadata@0.1.13: resolution: {integrity: sha512-Ts1Y/anZELhSsjMcU605fU9RE4Oi3p5ORujwbIKXfWa+0Zxs510Qrmrce5/Jowq3cHSZSJqBjypxmHarc+vEWg==} dev: false - /reflect.getprototypeof@1.0.3: - resolution: {integrity: sha512-TTAOZpkJ2YLxl7mVHWrNo3iDMEkYlva/kgFcXndqMgbo/AZUmmavEkdXV+hXtE4P8xdyEKRzalaFqZVuwIk/Nw==} + /reflect.getprototypeof@1.0.4: + resolution: {integrity: sha512-ECkTw8TmJwW60lOTR+ZkODISW6RQ8+2CL3COqtiJKLd6MmB45hN51HprHFziKLGkAuTGQhBb91V8cy+KHlaCjw==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.3 - get-intrinsic: 1.2.1 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + get-intrinsic: 1.2.2 globalthis: 1.0.3 which-builtin-type: 1.1.3 dev: true @@ -43138,8 +43246,8 @@ packages: /refractor@4.8.1: resolution: {integrity: sha512-/fk5sI0iTgFYlmVGYVew90AoYnNMP6pooClx/XKqyeeCQXrL0Kvgn8V0VEht5ccdljbzzF1i3Q213gcntkRExg==} dependencies: - '@types/hast': 2.3.5 - '@types/prismjs': 1.26.0 + '@types/hast': 2.3.7 + '@types/prismjs': 1.26.2 hastscript: 7.2.0 parse-entities: 4.0.1 dev: false @@ -43150,8 +43258,8 @@ packages: dependencies: regenerate: 1.4.2 - /regenerate-unicode-properties@10.1.0: - resolution: {integrity: sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==} + /regenerate-unicode-properties@10.1.1: + resolution: {integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==} engines: {node: '>=4'} dependencies: regenerate: 1.4.2 @@ -43187,6 +43295,9 @@ packages: /regenerator-runtime@0.13.5: resolution: {integrity: sha512-ZS5w8CpKFinUzOwW3c83oPeVXoNsrLsaCoLtJvAClH135j/R77RuymhiSErhm2lKcwSCIpmvIWSbDkIfAqKQlA==} + /regenerator-runtime@0.14.0: + resolution: {integrity: sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==} + /regenerator-transform@0.10.1: resolution: {integrity: sha512-PJepbvDbuK1xgIgnau7Y90cwaAmO/LCLMI2mPvaXq2heGMR3aWW5/BQvYrhJ8jgmQjXewXvBjzfqKcVOmhjZ6Q==} dependencies: @@ -43201,10 +43312,10 @@ packages: private: 0.1.8 dev: true - /regenerator-transform@0.15.1: - resolution: {integrity: sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==} + /regenerator-transform@0.15.2: + resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==} dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 /regex-not@1.0.2: resolution: {integrity: sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==} @@ -43218,13 +43329,13 @@ packages: hasBin: true dev: true - /regexp.prototype.flags@1.5.0: - resolution: {integrity: sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==} + /regexp.prototype.flags@1.5.1: + resolution: {integrity: sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - functions-have-names: 1.2.3 + call-bind: 1.0.5 + define-properties: 1.2.1 + set-function-name: 2.0.1 /regexpp@3.2.0: resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==} @@ -43257,7 +43368,7 @@ packages: dependencies: '@babel/regjsgen': 0.8.0 regenerate: 1.4.2 - regenerate-unicode-properties: 10.1.0 + regenerate-unicode-properties: 10.1.1 regjsparser: 0.9.1 unicode-match-property-ecmascript: 2.0.0 unicode-match-property-value-ecmascript: 2.1.0 @@ -43345,7 +43456,7 @@ packages: /rehype-autolink-headings@6.1.1: resolution: {integrity: sha512-NMYzZIsHM3sA14nC5rAFuUPIOfg+DFmf9EY1YMhaNlB7+3kK/ZlE6kqPfuxr1tsJ1XWkTrMtMoyHosU70d35mA==} dependencies: - '@types/hast': 2.3.5 + '@types/hast': 2.3.7 extend: 3.0.2 hast-util-has-property: 2.0.1 hast-util-heading-rank: 2.1.1 @@ -43404,10 +43515,10 @@ packages: - supports-color - utf-8-validate - /rehype-parse@8.0.4: - resolution: {integrity: sha512-MJJKONunHjoTh4kc3dsM1v3C9kGrrxvA3U8PxZlP2SjH8RNUSrb+lF7Y0KVaUDnGH2QZ5vAn7ulkiajM9ifuqg==} + /rehype-parse@8.0.5: + resolution: {integrity: sha512-Ds3RglaY/+clEX2U2mHflt7NlMA72KspZ0JLUJgBBLpRddBcEw3H8uYZQliQriku22NZpYMfjDdSgHcjxue24A==} dependencies: - '@types/hast': 2.3.5 + '@types/hast': 2.3.7 hast-util-from-parse5: 7.1.2 parse5: 6.0.1 unified: 10.1.2 @@ -43419,7 +43530,7 @@ packages: hast-util-to-string: 2.0.0 parse-numeric-range: 1.3.0 refractor: 4.8.1 - rehype-parse: 8.0.4 + rehype-parse: 8.0.5 unist-util-filter: 4.0.1 unist-util-visit: 4.1.2 dev: false @@ -43427,7 +43538,7 @@ packages: /rehype-raw@6.1.1: resolution: {integrity: sha512-d6AKtisSRtDRX4aSPsJGTfnzrX2ZkHQLE5kiUuGOeEoLpbEulFF4hj0mLPbsa+7vmguDKOVVEQdHKDSwoaIDsQ==} dependencies: - '@types/hast': 2.3.5 + '@types/hast': 2.3.7 hast-util-raw: 7.2.3 unified: 10.1.2 dev: false @@ -43460,7 +43571,7 @@ packages: /rehype-slug@5.1.0: resolution: {integrity: sha512-Gf91dJoXneiorNEnn+Phx97CO7oRMrpi+6r155tTxzGuLtm+QrI4cTwCa9e1rtePdL4i9tSO58PeSS6HWfgsiw==} dependencies: - '@types/hast': 2.3.5 + '@types/hast': 2.3.7 github-slugger: 2.0.0 hast-util-has-property: 2.0.1 hast-util-heading-rank: 2.1.1 @@ -43479,13 +43590,6 @@ packages: engines: {node: '>= 0.10'} dev: true - /release-zalgo@1.0.0: - resolution: {integrity: sha512-gUAyHVHPPC5wdqX/LG4LWtRYtgjxyX78oanFNTMMyFEfOqdC54s3eE82imuWKbOeqYht2CrNf64Qb8vgmmtZGA==} - engines: {node: '>=4'} - dependencies: - es6-error: 4.1.1 - dev: true - /remark-docz@0.13.3: resolution: {integrity: sha512-b0UWtd+x+YwHlNhF1kmnxoghi1ivTW4iRxCsWX5YXZN9YKabhBtAHTU1pipmtiJAfL1uQNiV0sM4ZHgIHkM6Ng==} dependencies: @@ -43496,8 +43600,8 @@ packages: /remark-docz@1.2.0: resolution: {integrity: sha512-uL4CW4pLk9+7owCa/ce6PuYGZ+99P3ZAubT3HrTcyhAjyE2f0iG08lUgDUXQbdjo9L8OfXWCEg9AWgQijr0JsA==} dependencies: - '@babel/generator': 7.22.9 - '@babel/types': 7.22.5 + '@babel/generator': 7.23.0 + '@babel/types': 7.23.0 unist-util-remove: 1.0.3 unist-util-visit: 1.4.1 dev: true @@ -43530,7 +43634,7 @@ packages: /remark-gfm@3.0.1: resolution: {integrity: sha512-lEFDoi2PICJyNrACFOfDD3JlLkuSbOa5Wd8EPt06HUdptv8Gn0bxYTdbU/XXQ3swAPkEaGxxPN9cbnMHvVu1Ig==} dependencies: - '@types/mdast': 3.0.12 + '@types/mdast': 3.0.14 mdast-util-gfm: 2.0.2 micromark-extension-gfm: 2.0.3 unified: 10.1.2 @@ -43579,7 +43683,7 @@ packages: /remark-parse@10.0.2: resolution: {integrity: sha512-3ydxgHa/ZQzG8LvC7jTXccARYDcRld3VfcgIIFs7bI6vbRSxJJmzgLEIIoYKyrfhaY+ujuWaf/PJiMZXoiCXgw==} dependencies: - '@types/mdast': 3.0.12 + '@types/mdast': 3.0.14 mdast-util-from-markdown: 1.3.1 unified: 10.1.2 transitivePeerDependencies: @@ -43657,8 +43761,8 @@ packages: /remark-rehype@10.1.0: resolution: {integrity: sha512-EFmR5zppdBp0WQeDVZ/b66CWJipB2q2VLNFMabzDSGR66Z2fQii83G5gTBbgGEnEEA0QRussvrFHxk1HWGJskw==} dependencies: - '@types/hast': 2.3.5 - '@types/mdast': 3.0.12 + '@types/hast': 2.3.7 + '@types/mdast': 3.0.14 mdast-util-to-hast: 12.3.0 unified: 10.1.2 dev: false @@ -43715,10 +43819,6 @@ packages: dependencies: parse-git-config: 1.1.1 - /remove-accents@0.4.2: - resolution: {integrity: sha512-7pXIJqJOq5tFgG1A2Zxti3Ht8jJF337m4sowbuHsW30ZnkQFnDzy9qBNhgzX8ZLW4+UBcXiiR7SwR6pokHsxiA==} - dev: true - /remove-bom-buffer@3.0.0: resolution: {integrity: sha512-8v2rWhaakv18qcvNeli2mZ/TMTL2nEyAKRvzo1WtnZBl15SHyEhrCu2/xKlJyUFKHiHgfXIyuY6g2dObJJycXQ==} engines: {node: '>=0.10.0'} @@ -43939,23 +44039,23 @@ packages: /resolve@1.19.0: resolution: {integrity: sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==} dependencies: - is-core-module: 2.12.1 + is-core-module: 2.13.1 path-parse: 1.0.7 dev: true - /resolve@1.22.2: - resolution: {integrity: sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==} + /resolve@1.22.8: + resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} hasBin: true dependencies: - is-core-module: 2.12.1 + is-core-module: 2.13.1 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 - /resolve@2.0.0-next.4: - resolution: {integrity: sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==} + /resolve@2.0.0-next.5: + resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==} hasBin: true dependencies: - is-core-module: 2.12.1 + is-core-module: 2.13.1 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 dev: true @@ -43980,12 +44080,6 @@ packages: onetime: 5.1.2 signal-exit: 3.0.7 - /resumer@0.0.0: - resolution: {integrity: sha512-Fn9X8rX8yYF4m81rZCK/5VmrmsSbqS/i3rDLl6ZZHAXgC2nTAx3dhwG8q8odP/RmdLa2YrybDJaAMg+X1ajY3w==} - dependencies: - through: 2.3.8 - dev: false - /ret@0.1.15: resolution: {integrity: sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==} engines: {node: '>=0.12'} @@ -44222,7 +44316,7 @@ packages: postcss-load-config: 2.1.2 postcss-modules: 2.0.0 promise.series: 0.2.0 - resolve: 1.22.2 + resolve: 1.22.8 rollup-pluginutils: 2.8.2 safe-identifier: 0.4.2 style-inject: 0.3.0 @@ -44230,14 +44324,15 @@ packages: /rollup-plugin-terser@7.0.2(rollup@2.33.3): resolution: {integrity: sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==} + deprecated: This package has been deprecated and is no longer maintained. Please use @rollup/plugin-terser peerDependencies: rollup: ^2.0.0 dependencies: - '@babel/code-frame': 7.22.5 + '@babel/code-frame': 7.22.13 jest-worker: 26.6.2 rollup: 2.33.3 serialize-javascript: 4.0.0 - terser: 5.19.0 + terser: 5.22.0 dev: true /rollup-plugin-typescript2@0.32.1(rollup@2.33.3)(typescript@4.7.4): @@ -44249,9 +44344,9 @@ packages: '@rollup/pluginutils': 4.2.1 find-cache-dir: 3.3.2 fs-extra: 10.1.0 - resolve: 1.22.2 + resolve: 1.22.8 rollup: 2.33.3 - tslib: 2.6.0 + tslib: 2.6.2 typescript: 4.7.4 dev: true @@ -44326,7 +44421,7 @@ packages: /rxjs@7.8.1: resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==} dependencies: - tslib: 2.6.0 + tslib: 2.6.2 dev: false /sade@1.8.1: @@ -44336,15 +44431,14 @@ packages: mri: 1.2.0 dev: false - /safe-array-concat@1.0.0: - resolution: {integrity: sha512-9dVEFruWIsnie89yym+xWTAYASdpw3CJV7Li/6zBewGf9z2i1j31rP6jnY0pHEO4QZh6N0K11bFjWmdR8UGdPQ==} + /safe-array-concat@1.0.1: + resolution: {integrity: sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==} engines: {node: '>=0.4'} dependencies: - call-bind: 1.0.2 - get-intrinsic: 1.2.1 + call-bind: 1.0.5 + get-intrinsic: 1.2.2 has-symbols: 1.0.3 isarray: 2.0.5 - dev: true /safe-buffer@5.1.1: resolution: {integrity: sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==} @@ -44363,8 +44457,8 @@ packages: /safe-regex-test@1.0.0: resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==} dependencies: - call-bind: 1.0.2 - get-intrinsic: 1.2.1 + call-bind: 1.0.5 + get-intrinsic: 1.2.2 is-regex: 1.1.4 /safe-regex@1.1.0: @@ -44434,6 +44528,10 @@ packages: /sax@1.2.4: resolution: {integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==} + dev: true + + /sax@1.3.0: + resolution: {integrity: sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA==} /saxes@5.0.1: resolution: {integrity: sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==} @@ -44441,13 +44539,6 @@ packages: dependencies: xmlchars: 2.2.0 - /scheduler@0.13.3: - resolution: {integrity: sha512-UxN5QRYWtpR1egNWzJcVLk8jlegxAugswQc984lD3kU7NuobsO37/sRfbpTdBjtnD5TBNFA2Q2oLV5+UmPSmEQ==} - dependencies: - loose-envify: 1.4.0 - object-assign: 4.1.1 - dev: false - /scheduler@0.13.6: resolution: {integrity: sha512-IWnObHt413ucAYKsD9J1QShUKkbKLQQHdxRyw73sw4FN26iWr3DY/H34xGPe4nmL1DwXyWmSWmMrA9TfQbE/XQ==} dependencies: @@ -44473,6 +44564,12 @@ packages: loose-envify: 1.4.0 dev: false + /scheduler@0.23.0: + resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==} + dependencies: + loose-envify: 1.4.0 + dev: false + /scheduler@0.24.0-canary-efb381bbf-20230505: resolution: {integrity: sha512-ABvovCDe/k9IluqSh4/ISoq8tIJnW8euVAWYt5j/bg6dRnqwQwiGO1F/V4AyK96NGF/FB04FhOUDuWj8IKfABA==} dependencies: @@ -44491,7 +44588,7 @@ packages: resolution: {integrity: sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==} engines: {node: '>= 8.9.0'} dependencies: - '@types/json-schema': 7.0.12 + '@types/json-schema': 7.0.14 ajv: 6.12.6 ajv-keywords: 3.5.2(ajv@6.12.6) dev: true @@ -44500,7 +44597,7 @@ packages: resolution: {integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==} engines: {node: '>= 10.13.0'} dependencies: - '@types/json-schema': 7.0.12 + '@types/json-schema': 7.0.14 ajv: 6.12.6 ajv-keywords: 3.5.2(ajv@6.12.6) @@ -44508,7 +44605,7 @@ packages: resolution: {integrity: sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==} engines: {node: '>= 12.13.0'} dependencies: - '@types/json-schema': 7.0.12 + '@types/json-schema': 7.0.14 ajv: 8.12.0 ajv-formats: 2.1.1(ajv@8.12.0) ajv-keywords: 5.1.0(ajv@8.12.0) @@ -44736,6 +44833,23 @@ packages: /set-blocking@2.0.0: resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==} + /set-function-length@1.1.1: + resolution: {integrity: sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==} + engines: {node: '>= 0.4'} + dependencies: + define-data-property: 1.1.1 + get-intrinsic: 1.2.2 + gopd: 1.0.1 + has-property-descriptors: 1.0.1 + + /set-function-name@2.0.1: + resolution: {integrity: sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==} + engines: {node: '>= 0.4'} + dependencies: + define-data-property: 1.1.1 + functions-have-names: 1.2.3 + has-property-descriptors: 1.0.1 + /set-value@2.0.1: resolution: {integrity: sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==} engines: {node: '>=0.10.0'} @@ -44835,6 +44949,7 @@ packages: /shortid@2.2.16: resolution: {integrity: sha512-Ugt+GIZqvGXCIItnsL+lvFJOiN7RYqlGy7QE41O3YC1xbNSeDGIRO7xg2JJXIAj1cAGnOeC1r7/T9pgrtQbv4g==} + deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info. dependencies: nanoid: 2.1.11 @@ -44845,9 +44960,9 @@ packages: /side-channel@1.0.4: resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} dependencies: - call-bind: 1.0.2 - get-intrinsic: 1.2.1 - object-inspect: 1.12.3 + call-bind: 1.0.5 + get-intrinsic: 1.2.2 + object-inspect: 1.13.1 /sigmund@1.0.1: resolution: {integrity: sha512-fCvEXfh6NWpm+YSuY2bpXb/VIihqWA6hLsgboC+0nl71Q7N7o2eaCW8mJa/NLvQhs6jpd3VZV4UiUQlV6+lc8g==} @@ -44922,13 +45037,22 @@ packages: resolution: {integrity: sha512-9no0pK7/1y+8/oTF3sy/+kx0PjQ3uk4cYwld5F1CJGk2gx+prRyUq8GRfvcVLq5niYWSozZdX73a2wIr1o9l/g==} dependencies: can-use-dom: 0.1.0 - core-js: 3.31.1 + core-js: 3.33.1 lodash.debounce: 4.0.8 lodash.memoize: 4.1.2 lodash.throttle: 4.1.1 resize-observer-polyfill: 1.5.1 dev: true + /sirv@2.0.3: + resolution: {integrity: sha512-O9jm9BsID1P+0HOi81VpXPoDxYP374pkOLzACAoyUQ/3OUVndNpsz6wMnY2z+yOxzbllCKZrM+9QrWsv4THnyA==} + engines: {node: '>= 10'} + dependencies: + '@polka/url': 1.0.0-next.23 + mrmime: 1.0.1 + totalist: 3.0.1 + dev: false + /sisteransi@1.0.5: resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} @@ -44937,10 +45061,10 @@ packages: engines: {node: '>=10.3.0', npm: '>=5.6.0'} hasBin: true dependencies: - '@types/node': 14.18.53 - '@types/sax': 1.2.4 + '@types/node': 14.18.63 + '@types/sax': 1.2.6 arg: 5.0.2 - sax: 1.2.4 + sax: 1.3.0 /size-sensor@1.0.1: resolution: {integrity: sha512-QTy7MnuugCFXIedXRpUSk9gUnyNiaxIdxGfUjr8xxXOqIB3QvBUYP9+b51oCg2C4dnhaeNk/h57TxjbvoJrJUA==} @@ -44997,13 +45121,14 @@ packages: /smart-buffer@4.2.0: resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==} engines: {node: '>= 6.0.0', npm: '>= 3.0.0'} + dev: true /smartwrap@2.0.2: resolution: {integrity: sha512-vCsKNQxb7PnCNd2wY1WClWifAc2lwqsG8OaswpJkVJsvMGcnEntdTCDajZCkk93Ay1U3t/9puJmb525Rg5MZBA==} engines: {node: '>=6'} hasBin: true dependencies: - array.prototype.flat: 1.3.1 + array.prototype.flat: 1.3.2 breakword: 1.0.6 grapheme-splitter: 1.0.4 strip-ansi: 6.0.1 @@ -45106,16 +45231,6 @@ packages: socks: 2.3.3 dev: true - /socks-proxy-agent@5.0.1: - resolution: {integrity: sha512-vZdmnjb9a2Tz6WEQVIurybSwElwPxMZaIc7PzqbJTrezcKNznv6giT7J7tZDZ1BojVaa1jvO/UiUdhDVB0ACoQ==} - engines: {node: '>= 6'} - dependencies: - agent-base: 6.0.2 - debug: 4.3.4(supports-color@5.5.0) - socks: 2.7.1 - transitivePeerDependencies: - - supports-color - /socks@1.1.10: resolution: {integrity: sha512-ArX4vGPULWjKDKgUnW8YzfI2uXW7kzgkJuB0GnFBA/PfT3exrrOk+7Wk2oeb894Qf20u1PWv9LEgrO0Z82qAzA==} engines: {node: '>= 0.10.0', npm: '>= 1.3.5'} @@ -45132,13 +45247,6 @@ packages: smart-buffer: 4.2.0 dev: true - /socks@2.7.1: - resolution: {integrity: sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==} - engines: {node: '>= 10.13.0', npm: '>= 3.0.0'} - dependencies: - ip: 2.0.0 - smart-buffer: 4.2.0 - /sonic-boom@2.8.0: resolution: {integrity: sha512-kuonw1YOYYNOve5iHdSahXPOK49GqwA+LZhI6Wz/l0rP57iKyXXIHaRagOBHAPmGwJC6od2Z9zgvZ5loSgMlVg==} dependencies: @@ -45298,17 +45406,6 @@ packages: resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==} dev: false - /spawn-wrap@1.4.3: - resolution: {integrity: sha512-IgB8md0QW/+tWqcavuFgKYR/qIRvJkRLPJDFaoXtLLUaVcCDK0+HeFTkmQHj3eprcYhc+gOl0aEA1w7qZlYezw==} - dependencies: - foreground-child: 1.5.6 - mkdirp: 0.5.6 - os-homedir: 1.0.2 - rimraf: 2.7.1 - signal-exit: 3.0.7 - which: 1.3.1 - dev: true - /spawndamnit@2.0.0: resolution: {integrity: sha512-j4JKEcncSjFlqIwU5L/rp2N5SIPsdxaRsIv678+TZxZ0SRDJTm8JrxJMjE/XuiEZNEir3S8l0Fa3Ke339WI4qA==} dependencies: @@ -45320,7 +45417,7 @@ packages: resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==} dependencies: spdx-expression-parse: 3.0.1 - spdx-license-ids: 3.0.13 + spdx-license-ids: 3.0.16 /spdx-exceptions@2.3.0: resolution: {integrity: sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==} @@ -45329,10 +45426,10 @@ packages: resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} dependencies: spdx-exceptions: 2.3.0 - spdx-license-ids: 3.0.13 + spdx-license-ids: 3.0.16 - /spdx-license-ids@3.0.13: - resolution: {integrity: sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w==} + /spdx-license-ids@3.0.16: + resolution: {integrity: sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw==} /spdy-transport@3.0.0: resolution: {integrity: sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==} @@ -45441,8 +45538,8 @@ packages: frac: 1.1.2 dev: false - /sshpk@1.17.0: - resolution: {integrity: sha512-/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ==} + /sshpk@1.18.0: + resolution: {integrity: sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==} engines: {node: '>=0.10.0'} hasBin: true dependencies: @@ -45544,7 +45641,7 @@ packages: /std-env@2.3.1: resolution: {integrity: sha512-eOsoKTWnr6C8aWrqJJ2KAReXoa7Vn5Ywyw6uCXgA/xDhxPoaIsBa5aNJmISY04dLwXPBnDHW4diGM7Sn5K4R/g==} dependencies: - ci-info: 3.8.0 + ci-info: 3.9.0 dev: true /stealthy-require@1.1.1: @@ -45556,20 +45653,20 @@ packages: resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==} engines: {node: '>= 0.4'} dependencies: - internal-slot: 1.0.5 + internal-slot: 1.0.6 dev: true /store2@2.14.2: resolution: {integrity: sha512-siT1RiqlfQnGqgT/YzXVUNsom9S0H1OX+dpdGN1xkyYATo4I6sep5NmsRD/40s3IIOvlCq6akxkqG82urIZW1w==} dev: true - /storybook-addon-source@2.0.11(@types/react@17.0.0)(react-dom@16.14.0)(regenerator-runtime@0.13.11)(webpack@5.88.0): + /storybook-addon-source@2.0.11(@types/react@17.0.0)(react-dom@16.14.0)(regenerator-runtime@0.14.0)(webpack@5.88.0): resolution: {integrity: sha512-tKmnBxO8OjewwC2EhDkgkTF/UCylJsHmpdpXwhvuuLQNLF09rOkAPejfC5NparQMmMiaeCuSdpUYWG65wTjkfA==} engines: {node: '>= 6.9.0'} peerDependencies: webpack: ^4.3.0 dependencies: - '@storybook/addons': 5.3.22(react-dom@16.14.0)(regenerator-runtime@0.13.11) + '@storybook/addons': 5.3.22(react-dom@16.14.0)(regenerator-runtime@0.14.0) '@storybook/components': 5.3.22(@types/react@17.0.0)(react-dom@16.14.0)(react@16.14.0) react: 16.14.0 react-syntax-highlighter: 10.3.5(react@16.14.0) @@ -45580,13 +45677,13 @@ packages: - regenerator-runtime dev: true - /storybook-addon-source@2.0.11(@types/react@17.0.0)(react-dom@17.0.2)(regenerator-runtime@0.13.11)(webpack@5.88.0): + /storybook-addon-source@2.0.11(@types/react@17.0.0)(react-dom@17.0.2)(regenerator-runtime@0.14.0)(webpack@5.88.0): resolution: {integrity: sha512-tKmnBxO8OjewwC2EhDkgkTF/UCylJsHmpdpXwhvuuLQNLF09rOkAPejfC5NparQMmMiaeCuSdpUYWG65wTjkfA==} engines: {node: '>= 6.9.0'} peerDependencies: webpack: ^4.3.0 dependencies: - '@storybook/addons': 5.3.22(react-dom@17.0.2)(regenerator-runtime@0.13.11) + '@storybook/addons': 5.3.22(react-dom@17.0.2)(regenerator-runtime@0.14.0) '@storybook/components': 5.3.22(@types/react@17.0.0)(react-dom@17.0.2)(react@16.14.0) react: 16.14.0 react-syntax-highlighter: 10.3.5(react@16.14.0) @@ -45724,61 +45821,63 @@ packages: resolution: {integrity: sha512-n69H31OnxSGSZyZbgBlvYIXlrMhJQ0dQAX1js1QDhpaUH6zmU3QYlj07bCwCNlPOu3oRXIubGPl2gDGnHsiCqg==} dev: true - /string.prototype.matchall@4.0.8: - resolution: {integrity: sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==} + /string.prototype.matchall@4.0.10: + resolution: {integrity: sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ==} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.3 - get-intrinsic: 1.2.1 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 + get-intrinsic: 1.2.2 has-symbols: 1.0.3 - internal-slot: 1.0.5 - regexp.prototype.flags: 1.5.0 + internal-slot: 1.0.6 + regexp.prototype.flags: 1.5.1 + set-function-name: 2.0.1 side-channel: 1.0.4 dev: true - /string.prototype.padend@3.1.4: - resolution: {integrity: sha512-67otBXoksdjsnXXRUq+KMVTdlVRZ2af422Y0aTyTjVaoQkGr3mxl2Bc5emi7dOQ3OGVVQQskmLEWwFXwommpNw==} + /string.prototype.padend@3.1.5: + resolution: {integrity: sha512-DOB27b/2UTTD+4myKUFh+/fXWcu/UDyASIXfg+7VzoCNNGOfWvoyU/x5pvVHr++ztyt/oSYI1BcWBBG/hmlNjA==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.3 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 dev: true - /string.prototype.padstart@3.1.4: - resolution: {integrity: sha512-XqOHj8horGsF+zwxraBvMTkBFM28sS/jHBJajh17JtJKA92qazidiQbLosV4UA18azvLOVKYo/E3g3T9Y5826w==} + /string.prototype.padstart@3.1.5: + resolution: {integrity: sha512-R57IsE3JIfModQWrVXYZ8ZHWMBNDpIoniDwhYCR1nx+iHwDkjjk26a8xM9BYgf7SAXJO7sdNPng5J+0ccr5LFQ==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.3 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 dev: true - /string.prototype.trim@1.2.7: - resolution: {integrity: sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==} + /string.prototype.trim@1.2.8: + resolution: {integrity: sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==} engines: {node: '>= 0.4'} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.3 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 - /string.prototype.trimend@1.0.6: - resolution: {integrity: sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==} + /string.prototype.trimend@1.0.7: + resolution: {integrity: sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.3 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 - /string.prototype.trimstart@1.0.6: - resolution: {integrity: sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==} + /string.prototype.trimstart@1.0.7: + resolution: {integrity: sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 - es-abstract: 1.21.3 + call-bind: 1.0.5 + define-properties: 1.2.1 + es-abstract: 1.22.3 /string_decoder@0.10.31: resolution: {integrity: sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==} + dev: false /string_decoder@1.1.1: resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} @@ -45921,7 +46020,7 @@ packages: schema-utils: 1.0.0 dev: true - /style-loader@1.3.0(webpack@4.46.0): + /style-loader@1.3.0(webpack@4.47.0): resolution: {integrity: sha512-V7TCORko8rs9rIqkSrlMfkqA63DfoGBBJmK1kKGCcSi+BWb4cqz0SRsnp4l6rU5iwOEd0/2ePv68SV22VXon4Q==} engines: {node: '>= 8.9.0'} peerDependencies: @@ -45929,7 +46028,7 @@ packages: dependencies: loader-utils: 2.0.4 schema-utils: 2.7.1 - webpack: 4.46.0(webpack-cli@5.0.0) + webpack: 4.47.0(webpack-cli@5.0.0) dev: true /style-loader@3.3.1(webpack@5.88.0): @@ -45949,28 +46048,28 @@ packages: dependencies: inline-style-parser: 0.1.1 - /style-to-object@0.4.1: - resolution: {integrity: sha512-HFpbb5gr2ypci7Qw+IOhnP2zOU7e77b+rzM+wTzXzfi1PrtBCX0E7Pk4wL4iTLnhzZ+JgEGAhX81ebTg/aYjQw==} + /style-to-object@0.4.4: + resolution: {integrity: sha512-HYNoHZa2GorYNyqiCaBgsxvcJIn7OHq6inEga+E6Ke3m5JkoqpQbnFssk4jwe+K7AhGa2fcha4wSOf1Kn01dMg==} dependencies: inline-style-parser: 0.1.1 dev: false - /styled-components@4.4.1(@babel/core@7.22.9)(react-dom@16.14.0)(react@17.0.2): + /styled-components@4.4.1(@babel/core@7.23.2)(react-dom@16.14.0)(react@17.0.2): resolution: {integrity: sha512-RNqj14kYzw++6Sr38n7197xG33ipEOktGElty4I70IKzQF1jzaD1U4xQ+Ny/i03UUhHlC5NWEO+d8olRCDji6g==} requiresBuild: true peerDependencies: react: '>= 16.3.0 || 17' react-dom: '>= 16.3.0' dependencies: - '@babel/helper-module-imports': 7.22.5 - '@babel/traverse': 7.22.8(supports-color@5.5.0) + '@babel/helper-module-imports': 7.22.15 + '@babel/traverse': 7.23.2(supports-color@5.5.0) '@emotion/is-prop-valid': 0.8.8 '@emotion/unitless': 0.7.5 - babel-plugin-styled-components: 2.1.4(@babel/core@7.22.9)(styled-components@4.4.1) + babel-plugin-styled-components: 2.1.4(@babel/core@7.23.2)(styled-components@4.4.1) css-to-react-native: 2.3.2 memoize-one: 5.2.1 merge-anything: 2.4.4 - prop-types: 15.8.1 + prop-types: 15.7.2 react: 17.0.2 react-dom: 16.14.0(react@17.0.2) react-is: 16.13.1 @@ -45981,22 +46080,22 @@ packages: - '@babel/core' dev: true - /styled-components@4.4.1(@babel/core@7.22.9)(react-dom@17.0.2)(react@17.0.2): + /styled-components@4.4.1(@babel/core@7.23.2)(react-dom@17.0.2)(react@17.0.2): resolution: {integrity: sha512-RNqj14kYzw++6Sr38n7197xG33ipEOktGElty4I70IKzQF1jzaD1U4xQ+Ny/i03UUhHlC5NWEO+d8olRCDji6g==} requiresBuild: true peerDependencies: react: '>= 16.3.0 || 17' react-dom: '>= 16.3.0' dependencies: - '@babel/helper-module-imports': 7.22.5 - '@babel/traverse': 7.22.8(supports-color@5.5.0) + '@babel/helper-module-imports': 7.22.15 + '@babel/traverse': 7.23.2(supports-color@5.5.0) '@emotion/is-prop-valid': 0.8.8 '@emotion/unitless': 0.7.5 - babel-plugin-styled-components: 2.1.4(@babel/core@7.22.9)(styled-components@4.4.1) + babel-plugin-styled-components: 2.1.4(@babel/core@7.23.2)(styled-components@4.4.1) css-to-react-native: 2.3.2 memoize-one: 5.2.1 merge-anything: 2.4.4 - prop-types: 15.8.1 + prop-types: 15.7.2 react: 17.0.2 react-dom: 17.0.2(react@17.0.2) react-is: 16.13.1 @@ -46007,47 +46106,31 @@ packages: - '@babel/core' dev: true - /styled-components@6.0.4(react-dom@17.0.2)(react@17.0.2): - resolution: {integrity: sha512-lRJt4vg8hKJhlVG+VKz8QEqPCXKyTryZZ59odyK0UC0HHV3u/mshWTfSay8NpkN0Xijw1iN9r0Leld3dcCcp/w==} + /styled-components@6.1.0(react-dom@17.0.2)(react@17.0.2): + resolution: {integrity: sha512-VWNfYYBuXzuLS/QYEeoPgMErP26WL+dX9//rEh80B2mmlS1yRxRxuL5eax4m6ybYEUoHWlTy2XOU32767mlMkg==} engines: {node: '>= 16'} peerDependencies: - babel-plugin-styled-components: '>= 2' react: '>= 16.8.0 || 17' react-dom: '>= 16.8.0' - peerDependenciesMeta: - babel-plugin-styled-components: - optional: true dependencies: - '@babel/cli': 7.22.9(@babel/core@7.22.9) - '@babel/core': 7.22.9 - '@babel/helper-module-imports': 7.22.5 - '@babel/plugin-external-helpers': 7.22.5(@babel/core@7.22.9) - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.22.9) - '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.22.9) - '@babel/preset-env': 7.22.9(@babel/core@7.22.9) - '@babel/preset-react': 7.22.5(@babel/core@7.22.9) - '@babel/preset-typescript': 7.22.5(@babel/core@7.22.9) - '@babel/traverse': 7.22.8(supports-color@5.5.0) '@emotion/is-prop-valid': 1.2.1 '@emotion/unitless': 0.8.1 - '@types/stylis': 4.2.0 + '@types/stylis': 4.2.2 css-to-react-native: 3.2.0 csstype: 3.1.2 - postcss: 8.4.25 + postcss: 8.4.31 react: 17.0.2 react-dom: 17.0.2(react@17.0.2) shallowequal: 1.1.0 stylis: 4.3.0 - tslib: 2.6.0 - transitivePeerDependencies: - - supports-color + tslib: 2.6.2 dev: true /stylehacks@4.0.3: resolution: {integrity: sha512-7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g==} engines: {node: '>=6.9.0'} dependencies: - browserslist: 4.21.9 + browserslist: 4.22.1 postcss: 7.0.39 postcss-selector-parser: 3.1.2 dev: true @@ -46109,7 +46192,7 @@ packages: cosmiconfig: 7.1.0 debug: 4.3.4(supports-color@5.5.0) execall: 2.0.0 - fast-glob: 3.3.0 + fast-glob: 3.3.1 fastest-levenshtein: 1.0.16 file-entry-cache: 6.0.1 get-stdin: 8.0.0 @@ -46147,7 +46230,7 @@ packages: sugarss: 2.0.0 svg-tags: 1.0.0 table: 6.8.1 - v8-compile-cache: 2.3.0 + v8-compile-cache: 2.4.0 write-file-atomic: 3.0.3 transitivePeerDependencies: - postcss-jsx @@ -46328,7 +46411,7 @@ packages: csso: 4.2.0 js-yaml: 3.14.1 mkdirp: 0.5.6 - object.values: 1.1.6 + object.values: 1.1.7 sax: 1.2.4 stable: 0.1.8 unquote: 1.1.1 @@ -46363,11 +46446,12 @@ packages: react: 17.0.2 dev: false - /swr@2.2.0(react@17.0.2): - resolution: {integrity: sha512-AjqHOv2lAhkuUdIiBu9xbuettzAzWXmCEcLONNKJRba87WAefz8Ca9d6ds/SzrPc235n1IxWYdhJ2zF3MNUaoQ==} + /swr@2.2.4(react@17.0.2): + resolution: {integrity: sha512-njiZ/4RiIhoOlAaLYDqwz5qH/KZXVilRLvomrx83HjzCWTfa+InyfAjv05PSFxnmLzZkNO9ZfvgoqzAaEI4sGQ==} peerDependencies: react: ^16.11.0 || ^17.0.0 || ^18.0.0 || 17 dependencies: + client-only: 0.0.1 react: 17.0.2 use-sync-external-store: 1.2.0(react@17.0.2) dev: false @@ -46379,10 +46463,10 @@ packages: resolution: {integrity: sha512-x738iXRYsrAt9WBhRCVG5BtIC3B7CUkFwbHW2zOvGtwM33s7JjrCDyq8V0zgMYVb5ymsL8+qkzzpANH63CPQaQ==} engines: {node: '>= 0.11.15'} dependencies: - call-bind: 1.0.2 + call-bind: 1.0.5 get-symbol-description: 1.0.0 has-symbols: 1.0.3 - object.getownpropertydescriptors: 2.1.6 + object.getownpropertydescriptors: 2.1.7 dev: true /systemjs@6.11.0: @@ -46408,25 +46492,26 @@ packages: resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} engines: {node: '>=6'} - /tape@4.16.2: - resolution: {integrity: sha512-TUChV+q0GxBBCEbfCYkGLkv8hDJYjMdSWdE0/Lr331sB389dsvFUHNV9ph5iQqKzt8Ss9drzcda/YeexclBFqg==} + /tape@4.17.0: + resolution: {integrity: sha512-KCuXjYxCZ3ru40dmND+oCLsXyuA8hoseu2SS404Px5ouyS0A99v8X/mdiLqsR5MTAyamMBN7PRwt2Dv3+xGIxw==} hasBin: true dependencies: - call-bind: 1.0.2 + '@ljharb/resumer': 0.0.1 + '@ljharb/through': 2.3.11 + call-bind: 1.0.5 deep-equal: 1.1.1 defined: 1.0.1 dotignore: 0.1.2 for-each: 0.3.3 glob: 7.2.3 - has: 1.0.3 + has: 1.0.4 inherits: 2.0.4 is-regex: 1.1.4 minimist: 1.2.8 + mock-property: 1.0.3 object-inspect: 1.12.3 - resolve: 1.22.2 - resumer: 0.0.0 - string.prototype.trim: 1.2.7 - through: 2.3.8 + resolve: 1.22.8 + string.prototype.trim: 1.2.8 dev: false /tar-fs@1.16.3: @@ -46462,8 +46547,8 @@ packages: yallist: 3.1.1 dev: true - /tcp-base@3.1.1: - resolution: {integrity: sha512-6wS2yvxq7xqhlpjHPLCYsuy6hIu1HFP3vDqfa1swjQ14MHIz2TW32CvY3hOrt6eM0tmUmy+1rsy52JKqD9hkjQ==} + /tcp-base@3.2.0: + resolution: {integrity: sha512-fFAqH8QTbheuEbXLdbxTSe31Gkw6Lg3nq4loyrxIXM6+ILGdbYXEblgyuu7UltOkOHbP/q2iqaC+gIXXu0C5bg==} engines: {node: '>= 6.0.0'} dependencies: is-type-of: 1.4.0 @@ -46483,7 +46568,7 @@ packages: /telejson@3.3.0: resolution: {integrity: sha512-er08AylQ+LEbDLp1GRezORZu5wKOHaBczF6oYJtgC3Idv10qZ8A3p6ffT+J5BzDKkV9MqBvu8HAKiIIOp6KJ2w==} dependencies: - '@types/is-function': 1.0.1 + '@types/is-function': 1.0.2 global: 4.4.0 is-function: 1.0.2 is-regex: 1.1.4 @@ -46493,6 +46578,12 @@ packages: memoizerific: 1.11.3 dev: true + /telejson@7.2.0: + resolution: {integrity: sha512-1QTEcJkJEhc8OnStBx/ILRu5J2p0GjvWsBx56bmZRqnrkdBMUe+nX92jxV+p3dB4CP6PZCdJMQJwCggkNBMzkQ==} + dependencies: + memoizerific: 1.11.3 + dev: true + /temp-dir@2.0.0: resolution: {integrity: sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==} engines: {node: '>=8'} @@ -46533,7 +46624,7 @@ packages: through2: 2.0.5 dev: true - /terser-webpack-plugin@1.4.5(webpack@4.46.0): + /terser-webpack-plugin@1.4.5(webpack@4.47.0): resolution: {integrity: sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw==} engines: {node: '>= 6.9.0'} peerDependencies: @@ -46546,12 +46637,12 @@ packages: serialize-javascript: 4.0.0 source-map: 0.6.1 terser: 4.8.1 - webpack: 4.46.0(webpack-cli@5.0.0) + webpack: 4.47.0(webpack-cli@5.0.0) webpack-sources: 1.4.3 worker-farm: 1.7.0 dev: true - /terser-webpack-plugin@2.3.8(webpack@4.46.0): + /terser-webpack-plugin@2.3.8(webpack@4.47.0): resolution: {integrity: sha512-/fKw3R+hWyHfYx7Bv6oPqmk4HGQcrWLtV3X6ggvPuwPNHSnzvVV51z6OaaCOus4YLjutYGOz3pEpbhe6Up2s1w==} engines: {node: '>= 8.9.0'} peerDependencies: @@ -46565,7 +46656,7 @@ packages: serialize-javascript: 4.0.0 source-map: 0.6.1 terser: 4.8.1 - webpack: 4.46.0(webpack-cli@5.0.0) + webpack: 4.47.0(webpack-cli@5.0.0) webpack-sources: 1.4.3 transitivePeerDependencies: - bluebird @@ -46587,11 +46678,11 @@ packages: uglify-js: optional: true dependencies: - '@jridgewell/trace-mapping': 0.3.18 + '@jridgewell/trace-mapping': 0.3.20 jest-worker: 27.5.1 schema-utils: 3.3.0 serialize-javascript: 6.0.1 - terser: 5.19.0 + terser: 5.22.0 webpack: 5.88.0(webpack-cli@5.0.0) /terser@4.8.1: @@ -46615,8 +46706,8 @@ packages: commander: 2.20.3 source-map-support: 0.5.21 - /terser@5.19.0: - resolution: {integrity: sha512-JpcpGOQLOXm2jsomozdMDpd5f8ZHh1rR48OFgWUH3QsyZcfPgv2qDCYbcDEAYNd4OZRj2bWYKpwdll/udZCk/Q==} + /terser@5.22.0: + resolution: {integrity: sha512-hHZVLgRA2z4NWcN6aS5rQDc+7Dcy58HOf2zbYwmFcQ+ua3h6eEFf5lIDKTzbWwlazPyOZsFQO8V80/IjVNExEw==} engines: {node: '>=10'} hasBin: true dependencies: @@ -46662,7 +46753,7 @@ packages: dependencies: any-promise: 1.3.0 - /thread-loader@2.1.3(webpack@4.46.0): + /thread-loader@2.1.3(webpack@4.47.0): resolution: {integrity: sha512-wNrVKH2Lcf8ZrWxDF/khdlLlsTMczdcwPA9VEK4c2exlEPynYWxi9op3nPTo5lAnDIkE0rQEB3VBP+4Zncc9Hg==} engines: {node: '>= 6.9.0 <7.0.0 || >= 8.9.0'} peerDependencies: @@ -46671,7 +46762,7 @@ packages: loader-runner: 2.4.0 loader-utils: 1.4.2 neo-async: 2.6.2 - webpack: 4.46.0(webpack-cli@5.0.0) + webpack: 4.47.0(webpack-cli@5.0.0) dev: true /thread-stream@0.15.2: @@ -46680,8 +46771,8 @@ packages: real-require: 0.1.0 dev: true - /three-forcegraph@1.41.9(three@0.139.2): - resolution: {integrity: sha512-RrL/NJKLhLWww2JVvVID9fYAUNS4pjRsyDb+2x3rqLNEzSzKjcNKSjOBIMV1dWFeO4uVcMghhcdqKWhlFCGbnw==} + /three-forcegraph@1.41.10(three@0.139.2): + resolution: {integrity: sha512-XrrH0HzlWQiY5A30RMtlu+SpAM/LOoHMyaQouCFgavTSLrSsP4UIUP3eWrfJ0be1xDPuMGt3iofSYjgu4UT2NA==} engines: {node: '>=12'} peerDependencies: three: '>=0.118.3' @@ -46692,22 +46783,22 @@ packages: d3-scale: 4.0.0 d3-scale-chromatic: 3.0.0 data-joint: 1.3.1 - kapsule: 1.14.4 + kapsule: 1.14.5 ngraph.forcelayout: 3.3.1 ngraph.graph: 20.0.1 three: 0.139.2 tinycolor2: 1.6.0 dev: false - /three-render-objects@1.28.6(three@0.139.2): - resolution: {integrity: sha512-e1Dls7NbT9XvKByueLRFRFKIAnNRL9sz7Ul318uXkP/f9uZjUFmelgloBAK3PSQ5xJd++FsKCf7ZIteSWNzTpA==} + /three-render-objects@1.29.0(three@0.139.2): + resolution: {integrity: sha512-HzVjL12KG2ko5VoU3aO/qFbtVu5Md5SN8dSzjGS7uNeTmYSAdQQZmg+R6zgctmvUrEjA78vO6ZGAC9y/9o/H2A==} engines: {node: '>=12'} peerDependencies: three: '*' dependencies: '@tweenjs/tween.js': 21.0.0 accessor-fn: 1.5.0 - kapsule: 1.14.4 + kapsule: 1.14.5 polished: 4.2.2 three: 0.139.2 dev: false @@ -46918,6 +47009,11 @@ packages: commander: 2.20.3 dev: false + /totalist@3.0.1: + resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==} + engines: {node: '>=6'} + dev: false + /tough-cookie@2.5.0: resolution: {integrity: sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==} engines: {node: '>=0.8'} @@ -46994,6 +47090,7 @@ packages: /trim@0.0.1: resolution: {integrity: sha512-YzQV+TZg4AxpKxaTHK3c3D+kRDCGVEE7LemdlQZoQXn0iennk10RsIoY6ikzAqJTc9Xjl9C1/waHom/J86ziAQ==} + deprecated: Use String.prototype.trim() instead dev: true /trough@1.0.5: @@ -47012,6 +47109,11 @@ packages: engines: {node: '>=6.10'} dev: true + /ts-dedent@2.2.0: + resolution: {integrity: sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==} + engines: {node: '>=6.10'} + dev: true + /ts-loader@8.4.0(typescript@4.7.4)(webpack@5.88.0): resolution: {integrity: sha512-6nFY3IZ2//mrPc+ImY3hNWx1vCHyEhl6V+wLmL4CZcm6g1CqX7UKrkc6y0i4FwcfOhxyMPCfaEvh20f4r9GNpw==} engines: {node: '>=10.0.0'} @@ -47145,8 +47247,8 @@ packages: /tslib@1.14.1: resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} - /tslib@2.6.0: - resolution: {integrity: sha512-7At1WUettjcSRHXCyYtTselblcHl9PJFFVKiCAy/bY97+BPZXSQ2wbq0P9s8tK2G7dFQfNnlJnPAiArVBVBsfA==} + /tslib@2.6.2: + resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} /tsscmp@1.0.6: resolution: {integrity: sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==} @@ -47176,8 +47278,8 @@ packages: /tty-browserify@0.0.0: resolution: {integrity: sha512-JVa5ijo+j/sOoHGjw0sxw734b1LhBkQ3bvUGNdxnVXDCX81Yx7TFgnZygxrIIWn23hbfTaMYLwRmAxFyDuFmIw==} - /tty-table@4.2.1: - resolution: {integrity: sha512-xz0uKo+KakCQ+Dxj1D/tKn2FSyreSYWzdkL/BYhgN6oMW808g8QRMuh1atAV9fjTPbWBjfbkKQpI/5rEcnAc7g==} + /tty-table@4.2.2: + resolution: {integrity: sha512-2gvCArMZLxgvpZ2NvQKdnYWIFLe7I/z5JClMuhrDXunmKgSZcQKcZRjN9XjAFiToMz2pUo1dEIXyrm0AwgV5Tw==} engines: {node: '>=8.0.0'} hasBin: true dependencies: @@ -47274,6 +47376,7 @@ packages: engines: {node: '>= 0.8.0'} dependencies: prelude-ls: 1.1.2 + dev: true /type-check@0.4.0: resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} @@ -47352,22 +47455,39 @@ packages: resolution: {integrity: sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==} dev: true + /typed-array-buffer@1.0.0: + resolution: {integrity: sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.5 + get-intrinsic: 1.2.2 + is-typed-array: 1.1.12 + + /typed-array-byte-length@1.0.0: + resolution: {integrity: sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==} + engines: {node: '>= 0.4'} + dependencies: + call-bind: 1.0.5 + for-each: 0.3.3 + has-proto: 1.0.1 + is-typed-array: 1.1.12 + /typed-array-byte-offset@1.0.0: resolution: {integrity: sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==} engines: {node: '>= 0.4'} dependencies: available-typed-arrays: 1.0.5 - call-bind: 1.0.2 + call-bind: 1.0.5 for-each: 0.3.3 has-proto: 1.0.1 - is-typed-array: 1.1.10 + is-typed-array: 1.1.12 /typed-array-length@1.0.4: resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==} dependencies: - call-bind: 1.0.2 + call-bind: 1.0.5 for-each: 0.3.3 - is-typed-array: 1.1.10 + is-typed-array: 1.1.12 /typed-styles@0.0.7: resolution: {integrity: sha512-pzP0PWoZUhsECYjABgCGQlRGL1n7tOHsgwYv3oIiEpJwGhFTuty/YNeduxQYzXXa3Ge5BdT6sHYIQYpl4uJ+5Q==} @@ -47403,11 +47523,11 @@ packages: engines: {node: '>=14.17'} hasBin: true - /ua-parser-js@0.7.35: - resolution: {integrity: sha512-veRf7dawaj9xaWEu9HoTVn5Pggtc/qj+kqTOFvNiN1l0YdxwC1kvel57UCjThjGa3BHBihE8/UJAHI+uQHmd/g==} + /ua-parser-js@0.7.36: + resolution: {integrity: sha512-CPPLoCts2p7D8VbybttE3P2ylv0OBZEAy7a12DsulIEcAiMtWJy+PBgMXgWDI80D5UwqE8oQPHYnk13tm38M2Q==} - /ua-parser-js@1.0.35: - resolution: {integrity: sha512-fKnGuqmTBnIE+/KXSzCn4db8RTigUzw1AN0DmdU6hJovUTbYJKyqj+8Mt1c4VfRDnOVJnENmfYkIPZ946UrSAA==} + /ua-parser-js@1.0.36: + resolution: {integrity: sha512-znuyCIXzl8ciS3+y3fHJI/2OhQIXbXw9MWC/o3qwyR+RGppjZHrM27CGFSKCJXi2Kctiz537iOu2KnXs1lMQhw==} dev: false /uglify-es@3.3.9: @@ -47554,16 +47674,16 @@ packages: - react-router dev: false - /umi@3.5.41(react-router@6.14.1): + /umi@3.5.41(react-router@6.17.0): resolution: {integrity: sha512-sjgfFGC3E5jG5Cn8pXdwODDgPW1hnlkn24f7+onNnNdq77syuc4s3R5z7BKQHbjiWtVVIV1VOFMYE9JsJYnOPQ==} hasBin: true dependencies: - '@umijs/bundler-webpack': 3.5.41(react-dom@16.14.0)(react-router@6.14.1)(react@16.14.0) + '@umijs/bundler-webpack': 3.5.41(react-dom@16.14.0)(react-router@6.17.0)(react@16.14.0) '@umijs/core': 3.5.41 '@umijs/deps': 3.5.41 '@umijs/preset-built-in': 3.5.41(react-dom@16.14.0)(react@16.14.0) '@umijs/runtime': 3.5.41(react@16.14.0) - '@umijs/types': 3.5.41(react-dom@16.14.0)(react-router@6.14.1)(react@16.14.0) + '@umijs/types': 3.5.41(react-dom@16.14.0)(react-router@6.17.0)(react@16.14.0) '@umijs/utils': 3.5.41 react: 16.14.0 react-dom: 16.14.0(react@16.14.0) @@ -47574,7 +47694,7 @@ packages: /unbox-primitive@1.0.2: resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} dependencies: - call-bind: 1.0.2 + call-bind: 1.0.5 has-bigints: 1.0.2 has-symbols: 1.0.3 which-boxed-primitive: 1.0.2 @@ -47638,7 +47758,7 @@ packages: /unified@10.1.2: resolution: {integrity: sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==} dependencies: - '@types/unist': 2.0.7 + '@types/unist': 2.0.9 bail: 2.0.2 extend: 3.0.2 is-buffer: 2.0.5 @@ -47650,7 +47770,7 @@ packages: /unified@6.2.0: resolution: {integrity: sha512-1k+KPhlVtqmG99RaTbAv/usu85fcSRu3wY8X+vnsEhIxNP5VbVIDiXnLqyKIG+UMdyTg0ZX9EI6k2AfjJkHPtA==} dependencies: - '@types/unist': 2.0.7 + '@types/unist': 2.0.9 bail: 1.0.5 extend: 3.0.2 is-plain-obj: 1.1.0 @@ -47662,7 +47782,7 @@ packages: /unified@7.1.0: resolution: {integrity: sha512-lbk82UOIGuCEsZhPj8rNAkXSDXd6p0QLzIuSsCdxrqnqU56St4eyOB+AlXsVgVeRmetPTYydIuvFfpDIed8mqw==} dependencies: - '@types/unist': 2.0.7 + '@types/unist': 2.0.9 '@types/vfile': 3.0.2 bail: 1.0.5 extend: 3.0.2 @@ -47675,7 +47795,7 @@ packages: /unified@8.4.2: resolution: {integrity: sha512-JCrmN13jI4+h9UAyKEoGcDZV+i1E7BLFuG7OsaDvTXI5P0qhHX+vZO/kOhz9jn8HGENDKbwSeB0nVOg4gVStGA==} dependencies: - '@types/unist': 2.0.7 + '@types/unist': 2.0.9 bail: 1.0.5 extend: 3.0.2 is-plain-obj: 2.1.0 @@ -47685,7 +47805,7 @@ packages: /unified@9.2.0: resolution: {integrity: sha512-vx2Z0vY+a3YoTj8+pttM3tiJHCwY5UFbYdiWrwBEbHmK8pvsPj2rtAX2BFfgXen8T39CJWblWRDT4L5WGXtDdg==} dependencies: - '@types/unist': 2.0.7 + '@types/unist': 2.0.9 bail: 1.0.5 extend: 3.0.2 is-buffer: 2.0.5 @@ -47697,7 +47817,7 @@ packages: /unified@9.2.2: resolution: {integrity: sha512-Sg7j110mtefBD+qunSLO1lqOEKdrwBFBrR6Qd8f4uwkhWNlbkaqwHse6e7QvD3AP/MNoJdEDLaf8OxYyoWgorQ==} dependencies: - '@types/unist': 2.0.7 + '@types/unist': 2.0.9 bail: 1.0.5 extend: 3.0.2 is-buffer: 2.0.5 @@ -47769,7 +47889,7 @@ packages: /unist-util-filter@4.0.1: resolution: {integrity: sha512-RynicUM/vbOSTSiUK+BnaK9XMfmQUh6gyi7L6taNgc7FIf84GukXVV3ucGzEN/PhUUkdP5hb1MmXc+3cvPUm5Q==} dependencies: - '@types/unist': 2.0.7 + '@types/unist': 2.0.9 unist-util-is: 5.2.1 unist-util-visit-parents: 5.1.3 dev: false @@ -47813,7 +47933,7 @@ packages: /unist-util-is@5.2.1: resolution: {integrity: sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==} dependencies: - '@types/unist': 2.0.7 + '@types/unist': 2.0.9 dev: false /unist-util-map@1.0.5: @@ -47828,7 +47948,7 @@ packages: /unist-util-position@4.0.4: resolution: {integrity: sha512-kUBE91efOWfIVBo8xzh/uZQ7p9ffYRtUbMRZBNFYwf0RK8koUMx6dGUfwylLOKmaT2cs4wSW96QoYUSXAyEtpg==} dependencies: - '@types/unist': 2.0.7 + '@types/unist': 2.0.9 dev: false /unist-util-remove-position@1.1.4: @@ -47862,18 +47982,18 @@ packages: /unist-util-stringify-position@2.0.3: resolution: {integrity: sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==} dependencies: - '@types/unist': 2.0.7 + '@types/unist': 2.0.9 /unist-util-stringify-position@3.0.3: resolution: {integrity: sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==} dependencies: - '@types/unist': 2.0.7 + '@types/unist': 2.0.9 dev: false /unist-util-stringify-position@4.0.0: resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==} dependencies: - '@types/unist': 3.0.0 + '@types/unist': 3.0.1 dev: true /unist-util-visit-parents@1.1.2: @@ -47889,13 +48009,13 @@ packages: /unist-util-visit-parents@3.1.1: resolution: {integrity: sha512-1KROIZWo6bcMrZEwiH2UrXDyalAa0uqzWCxCJj6lPOvTve2WkfgCytoDTPaMnodXh1WrXOq0haVYHj99ynJlsg==} dependencies: - '@types/unist': 2.0.7 + '@types/unist': 2.0.9 unist-util-is: 4.1.0 /unist-util-visit-parents@5.1.3: resolution: {integrity: sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==} dependencies: - '@types/unist': 2.0.7 + '@types/unist': 2.0.9 unist-util-is: 5.2.1 dev: false @@ -47908,14 +48028,14 @@ packages: /unist-util-visit@2.0.3: resolution: {integrity: sha512-iJ4/RczbJMkD0712mGktuGpm/U4By4FfDonL7N/9tATGIF4imikjOuagyMY53tnZq3NP6BcmlrHhEKAfGWjh7Q==} dependencies: - '@types/unist': 2.0.7 + '@types/unist': 2.0.9 unist-util-is: 4.1.0 unist-util-visit-parents: 3.1.1 /unist-util-visit@4.1.2: resolution: {integrity: sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==} dependencies: - '@types/unist': 2.0.7 + '@types/unist': 2.0.9 unist-util-is: 5.2.1 unist-util-visit-parents: 5.1.3 dev: false @@ -47974,13 +48094,13 @@ packages: engines: {node: '>=4'} dev: true - /update-browserslist-db@1.0.11(browserslist@4.21.9): - resolution: {integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==} + /update-browserslist-db@1.0.13(browserslist@4.22.1): + resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==} hasBin: true peerDependencies: browserslist: '>= 4.21.0' dependencies: - browserslist: 4.21.9 + browserslist: 4.22.1 escalade: 3.1.1 picocolors: 1.0.0 @@ -48035,7 +48155,7 @@ packages: /upper-case@2.0.2: resolution: {integrity: sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==} dependencies: - tslib: 2.6.0 + tslib: 2.6.2 dev: false /uri-js@4.4.1: @@ -48055,7 +48175,7 @@ packages: resolution: {integrity: sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==} dev: true - /url-loader@1.1.2(webpack@4.46.0): + /url-loader@1.1.2(webpack@4.47.0): resolution: {integrity: sha512-dXHkKmw8FhPqu8asTc1puBfe3TehOCo2+RmOOev5suNCIYBcT626kxiWg1NBVkwc4rO8BGa7gP70W7VXuqHrjg==} engines: {node: '>= 6.9.0'} peerDependencies: @@ -48064,10 +48184,10 @@ packages: loader-utils: 1.4.2 mime: 2.6.0 schema-utils: 1.0.0 - webpack: 4.46.0(webpack-cli@5.0.0) + webpack: 4.47.0(webpack-cli@5.0.0) dev: true - /url-loader@2.3.0(file-loader@4.3.0)(webpack@4.46.0): + /url-loader@2.3.0(file-loader@4.3.0)(webpack@4.47.0): resolution: {integrity: sha512-goSdg8VY+7nPZKUEChZSEtW5gjbS66USIGCeSJ1OVOJ7Yfuh/36YxCwMi5HVEJh6mqUYOoy3NJ0vlOMrWsSHog==} engines: {node: '>= 8.9.0'} peerDependencies: @@ -48077,11 +48197,11 @@ packages: file-loader: optional: true dependencies: - file-loader: 4.3.0(webpack@4.46.0) + file-loader: 4.3.0(webpack@4.47.0) loader-utils: 1.4.2 mime: 2.6.0 schema-utils: 2.7.1 - webpack: 4.46.0(webpack-cli@5.0.0) + webpack: 4.47.0(webpack-cli@5.0.0) dev: true /url-parse-lax@1.0.0: @@ -48103,15 +48223,20 @@ packages: querystringify: 2.2.0 requires-port: 1.0.0 - /url@0.11.1: - resolution: {integrity: sha512-rWS3H04/+mzzJkv0eZ7vEDGiQbgquI1fGfOad6zKvgYQi1SzMmhl7c/DdRGxhaWrVH6z0qWITo8rpnxK/RfEhA==} + /url@0.11.3: + resolution: {integrity: sha512-6hxOLGfZASQK/cijlZnZJTq8OXAkt/3YGfQX45vvMYXpZoo8NdWZcY73K108Jf759lS1Bv/8wXnHDTSz17dSRw==} dependencies: punycode: 1.4.1 qs: 6.11.2 - /urllib@2.40.0: - resolution: {integrity: sha512-XDZjoijtzsbkXTXgM+A/sJM002nwoYsc46YOYr6MNH2jUUw1nCBf2ywT1WaPsVEWJX4Yr+9isGmYj4+yofFn9g==} + /urllib@2.41.0: + resolution: {integrity: sha512-pNXdxEv52L67jahLT+/7QE+Fup1y2Gc6EdmrAhQ6OpQIC2rl14oWwv9hvk1GXOZqEnJNwRXHABuwgPOs1CtL7g==} engines: {node: '>= 0.10.0'} + peerDependencies: + proxy-agent: ^5.0.0 + peerDependenciesMeta: + proxy-agent: + optional: true dependencies: any-promise: 1.3.0 content-type: 1.0.5 @@ -48119,11 +48244,10 @@ packages: default-user-agent: 1.0.0 digest-header: 1.1.0 ee-first: 1.1.1 - formstream: 1.2.0 + formstream: 1.3.1 humanize-ms: 1.2.1 iconv-lite: 0.4.24 ip: 1.1.8 - proxy-agent: 5.0.0 pump: 3.0.0 qs: 6.5.3 statuses: 1.5.0 @@ -48143,7 +48267,7 @@ packages: dependencies: '@types/react': 17.0.0 react: 16.14.0 - tslib: 2.6.0 + tslib: 2.6.2 dev: true /use-callback-ref@1.3.0(@types/react@17.0.0)(react@17.0.2): @@ -48158,7 +48282,7 @@ packages: dependencies: '@types/react': 17.0.0 react: 17.0.2 - tslib: 2.6.0 + tslib: 2.6.2 dev: true /use-composed-ref@1.3.0(react@17.0.2): @@ -48243,7 +48367,7 @@ packages: '@types/react': 17.0.0 detect-node-es: 1.1.0 react: 16.14.0 - tslib: 2.6.0 + tslib: 2.6.2 dev: true /use-sidecar@1.1.2(@types/react@17.0.0)(react@17.0.2): @@ -48259,7 +48383,7 @@ packages: '@types/react': 17.0.0 detect-node-es: 1.1.0 react: 17.0.2 - tslib: 2.6.0 + tslib: 2.6.2 dev: true /use-subscription@1.5.1(react@16.14.0): @@ -48296,35 +48420,35 @@ packages: /util.promisify@1.0.0: resolution: {integrity: sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==} dependencies: - define-properties: 1.2.0 - object.getownpropertydescriptors: 2.1.6 + define-properties: 1.2.1 + object.getownpropertydescriptors: 2.1.7 dev: true /util.promisify@1.0.1: resolution: {integrity: sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==} dependencies: - define-properties: 1.2.0 - es-abstract: 1.21.3 + define-properties: 1.2.1 + es-abstract: 1.22.3 has-symbols: 1.0.3 - object.getownpropertydescriptors: 2.1.6 + object.getownpropertydescriptors: 2.1.7 dev: true /util.promisify@1.1.2: resolution: {integrity: sha512-PBdZ03m1kBnQ5cjjO0ZvJMJS+QsbyIcFwi4hY4U76OQsCO9JrOYjbCFgIF76ccFg9xnJo7ZHPkqyj1GqmdS7MA==} dependencies: - call-bind: 1.0.2 - define-properties: 1.2.0 + call-bind: 1.0.5 + define-properties: 1.2.1 for-each: 0.3.3 has-proto: 1.0.1 has-symbols: 1.0.3 - object.getownpropertydescriptors: 2.1.6 - safe-array-concat: 1.0.0 + object.getownpropertydescriptors: 2.1.7 + safe-array-concat: 1.0.1 dev: true - /util@0.10.3: - resolution: {integrity: sha512-5KiHfsmkqacuKjkRkdV7SsfDJ2EGiPsK92s2MhNSY0craxjTdKTtqKsJaCWp4LW33ZZ0OPUv1WO/TFvNQRiQxQ==} + /util@0.10.4: + resolution: {integrity: sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==} dependencies: - inherits: 2.0.1 + inherits: 2.0.3 /util@0.11.1: resolution: {integrity: sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==} @@ -48376,22 +48500,26 @@ packages: /v8-compile-cache@2.3.0: resolution: {integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==} + /v8-compile-cache@2.4.0: + resolution: {integrity: sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw==} + dev: true + /v8-to-istanbul@7.1.2: resolution: {integrity: sha512-TxNb7YEUwkLXCQYeudi6lgQ/SZrzNO4kMdlqVxaZPUIUjCv6iSSypUQX70kNBSERpQ8fk48+d61FXk+tgqcWow==} engines: {node: '>=10.10.0'} dependencies: - '@types/istanbul-lib-coverage': 2.0.4 + '@types/istanbul-lib-coverage': 2.0.5 convert-source-map: 1.9.0 source-map: 0.7.4 dev: false - /v8-to-istanbul@9.1.0: - resolution: {integrity: sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==} + /v8-to-istanbul@9.1.3: + resolution: {integrity: sha512-9lDD+EVI2fjFsMWXc6dy5JJzBsVTcQ2fVkfBvncZ6xJWG9wtBhOldG+mHkSL0+V1K/xgZz0JDO5UT5hFwHUghg==} engines: {node: '>=10.12.0'} dependencies: - '@jridgewell/trace-mapping': 0.3.18 - '@types/istanbul-lib-coverage': 2.0.4 - convert-source-map: 1.9.0 + '@jridgewell/trace-mapping': 0.3.20 + '@types/istanbul-lib-coverage': 2.0.5 + convert-source-map: 2.0.0 dev: true /validate-npm-package-license@3.0.4: @@ -48405,8 +48533,8 @@ packages: dependencies: builtins: 1.0.3 - /validator@13.9.0: - resolution: {integrity: sha512-B+dGG8U3fdtM0/aNK4/X8CXq/EcxU2WPrPEkJGslb47qyHsxmbggTWK0yEA4qnYVNF+nxNlN88o14hIcPmSIEA==} + /validator@13.11.0: + resolution: {integrity: sha512-Ii+sehpSfZy+At5nPdnyMhx78fEoPDkR2XW/zimHEL3MyGJQOCQ7WeP20jPYRz7ZCpcKLB21NxuXHF3bxjStBQ==} engines: {node: '>= 0.10'} dev: true @@ -48445,7 +48573,7 @@ packages: /vfile-location@4.1.0: resolution: {integrity: sha512-YF23YMyASIIJXpktBa4vIGLJ5Gs88UB/XePgqPmTa7cDA+JeO3yclbpheQYCHjVHBn/yePzrXuygIL+xbvRYHw==} dependencies: - '@types/unist': 2.0.7 + '@types/unist': 2.0.9 vfile: 5.3.7 dev: false @@ -48458,20 +48586,20 @@ packages: /vfile-message@2.0.4: resolution: {integrity: sha512-DjssxRGkMvifUOJre00juHoP9DPWuzjxKuMDrhNbk2TdaYYBNMStsNhEOt3idrtI12VQYM/1+iM0KOzXi4pxwQ==} dependencies: - '@types/unist': 2.0.7 + '@types/unist': 2.0.9 unist-util-stringify-position: 2.0.3 /vfile-message@3.1.4: resolution: {integrity: sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==} dependencies: - '@types/unist': 2.0.7 + '@types/unist': 2.0.9 unist-util-stringify-position: 3.0.3 dev: false /vfile-message@4.0.2: resolution: {integrity: sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==} dependencies: - '@types/unist': 3.0.0 + '@types/unist': 3.0.1 unist-util-stringify-position: 4.0.0 dev: true @@ -48496,7 +48624,7 @@ packages: /vfile@4.2.1: resolution: {integrity: sha512-O6AE4OskCG5S1emQ/4gl8zK586RqA3srz3nfK/Viy0UPToBc5Trp9BVFb1u0CjsKrAWwnpr4ifM/KBXPWwJbCA==} dependencies: - '@types/unist': 2.0.7 + '@types/unist': 2.0.9 is-buffer: 2.0.5 unist-util-stringify-position: 2.0.3 vfile-message: 2.0.4 @@ -48504,7 +48632,7 @@ packages: /vfile@5.3.7: resolution: {integrity: sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==} dependencies: - '@types/unist': 2.0.7 + '@types/unist': 2.0.9 is-buffer: 2.0.5 unist-util-stringify-position: 3.0.3 vfile-message: 3.1.4 @@ -48513,7 +48641,7 @@ packages: /viewport-mercator-project@6.2.3: resolution: {integrity: sha512-QQb0/qCLlP4DdfbHHSWVYXpghB2wkLIiiZQnoelOB59mXKQSyZVxjreq1S+gaBJFpcGkWEcyVtre0+2y2DTl/Q==} dependencies: - '@babel/runtime': 7.22.6 + '@babel/runtime': 7.23.2 gl-matrix: 3.4.3 dev: false @@ -48578,15 +48706,6 @@ packages: /vm-browserify@1.1.2: resolution: {integrity: sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==} - /vm2@3.9.19: - resolution: {integrity: sha512-J637XF0DHDMV57R6JyVsTak7nIL8gy5KH4r1HiwWLf/4GBbb5MKL5y7LpmF4A8E2nR6XmzpmMFQ7V7ppPTmUQg==} - engines: {node: '>=6.0'} - deprecated: The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm. - hasBin: true - dependencies: - acorn: 8.10.0 - acorn-walk: 8.2.0 - /vt-pbf@3.1.3: resolution: {integrity: sha512-2LzDFzt0mZKZ9IpVF2r69G9bXaP2Q2sArJCmcCgvfTdCCZzSyz4aCLoQyUilu37Ll56tCblIZrXFIjNUpGIlmA==} dependencies: @@ -48718,6 +48837,33 @@ packages: - utf-8-validate dev: true + /webpack-bundle-analyzer@4.9.1: + resolution: {integrity: sha512-jnd6EoYrf9yMxCyYDPj8eutJvtjQNp8PHmni/e/ulydHBWhT5J3menXt3HEkScsu9YqMAcG4CfFjs3rj5pVU1w==} + engines: {node: '>= 10.13.0'} + hasBin: true + dependencies: + '@discoveryjs/json-ext': 0.5.7 + acorn: 8.10.0 + acorn-walk: 8.2.0 + commander: 7.2.0 + escape-string-regexp: 4.0.0 + gzip-size: 6.0.0 + is-plain-object: 5.0.0 + lodash.debounce: 4.0.8 + lodash.escape: 4.0.1 + lodash.flatten: 4.4.0 + lodash.invokemap: 4.6.0 + lodash.pullall: 4.2.0 + lodash.uniqby: 4.7.0 + opener: 1.5.2 + picocolors: 1.0.0 + sirv: 2.0.3 + ws: 7.5.9 + transitivePeerDependencies: + - bufferutil + - utf-8-validate + dev: false + /webpack-chain@4.12.1: resolution: {integrity: sha512-BCfKo2YkDe2ByqkEWe1Rw+zko4LsyS75LVr29C6xIrxAg9JHJ4pl8kaIZ396SUSNp6b4815dRZPSTAS8LlURRQ==} dependencies: @@ -48771,7 +48917,7 @@ packages: interpret: 2.2.0 rechoir: 0.7.1 webpack: 5.88.0(webpack-cli@4.10.0) - webpack-merge: 5.9.0 + webpack-merge: 5.10.0 dev: false /webpack-cli@5.0.0(webpack@5.88.0): @@ -48804,9 +48950,9 @@ packages: interpret: 3.1.1 rechoir: 0.8.0 webpack: 5.88.0(webpack-cli@5.0.0) - webpack-merge: 5.9.0 + webpack-merge: 5.10.0 - /webpack-dev-middleware@3.7.3(webpack@4.46.0): + /webpack-dev-middleware@3.7.3(webpack@4.47.0): resolution: {integrity: sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==} engines: {node: '>= 6'} peerDependencies: @@ -48816,11 +48962,11 @@ packages: mime: 2.6.0 mkdirp: 0.5.6 range-parser: 1.2.1 - webpack: 4.46.0(webpack-cli@5.0.0) + webpack: 4.47.0(webpack-cli@5.0.0) webpack-log: 2.0.0 dev: true - /webpack-dev-server@3.11.3(webpack-cli@5.0.0)(webpack@4.46.0): + /webpack-dev-server@3.11.3(webpack-cli@5.0.0)(webpack@4.47.0): resolution: {integrity: sha512-3x31rjbEQWKMNzacUZRE6wXvUFuGpH7vr0lIEbYpMAG9BOxi0928QU1BBswOAP3kg3H1O4hiS+sq4YyAn6ANnA==} engines: {node: '>= 6.11.5'} hasBin: true @@ -48859,10 +49005,10 @@ packages: spdy: 4.0.2(supports-color@6.1.0) strip-ansi: 3.0.1 supports-color: 6.1.0 - url: 0.11.1 - webpack: 4.46.0(webpack-cli@5.0.0) + url: 0.11.3 + webpack: 4.47.0(webpack-cli@5.0.0) webpack-cli: 5.0.0(webpack@5.88.0) - webpack-dev-middleware: 3.7.3(webpack@4.46.0) + webpack-dev-middleware: 3.7.3(webpack@4.47.0) webpack-log: 2.0.0 ws: 6.2.2 yargs: 13.3.2 @@ -48871,19 +49017,19 @@ packages: - utf-8-validate dev: true - /webpack-hot-client@4.2.0(webpack@4.46.0): + /webpack-hot-client@4.2.0(webpack@4.47.0): resolution: {integrity: sha512-TxAZCiiBmBZvSq5bFwVCFWjPAwsgbhSt/v1gBiFMhbU0iQuws8JxAogGI+jgPeBoovhQyhSMrifZD+bcpDyjQA==} engines: {node: '>= 6.9.0 < 7.0.0 || >= 8.9.0'} peerDependencies: webpack: ^4.0.0 dependencies: - '@webpack-contrib/schema-utils': 1.0.0-beta.0(webpack@4.46.0) + '@webpack-contrib/schema-utils': 1.0.0-beta.0(webpack@4.47.0) json-stringify-safe: 5.0.1 loglevelnext: 1.0.5 merge-options: 1.0.1 strip-ansi: 4.0.0 uuid: 3.4.0 - webpack: 4.46.0(webpack-cli@5.0.0) + webpack: 4.47.0(webpack-cli@5.0.0) webpack-log: 1.2.0 ws: 4.1.0 transitivePeerDependencies: @@ -48917,7 +49063,7 @@ packages: uuid: 3.4.0 dev: true - /webpack-manifest-plugin@2.2.0(webpack@4.46.0): + /webpack-manifest-plugin@2.2.0(webpack@4.47.0): resolution: {integrity: sha512-9S6YyKKKh/Oz/eryM1RyLVDVmy3NSPV0JXMRhZ18fJsq+AwGxUY34X54VNwkzYcEmEkDwNxuEOboCZEebJXBAQ==} engines: {node: '>=6.11.5'} peerDependencies: @@ -48925,16 +49071,17 @@ packages: dependencies: fs-extra: 7.0.1 lodash: 4.17.21 - object.entries: 1.1.6 + object.entries: 1.1.7 tapable: 1.1.3 - webpack: 4.46.0(webpack-cli@5.0.0) + webpack: 4.47.0(webpack-cli@5.0.0) dev: true - /webpack-merge@5.9.0: - resolution: {integrity: sha512-6NbRQw4+Sy50vYNTw7EyOn41OZItPiXB8GNv3INSoe3PSFaHJEz3SHTrYVaRm2LilNGnFUzh0FAwqPEmU/CwDg==} + /webpack-merge@5.10.0: + resolution: {integrity: sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==} engines: {node: '>=10.0.0'} dependencies: clone-deep: 4.0.1 + flat: 5.0.2 wildcard: 2.0.1 /webpack-sources@1.4.3: @@ -48956,8 +49103,8 @@ packages: - supports-color dev: true - /webpack@4.46.0(webpack-cli@5.0.0): - resolution: {integrity: sha512-6jJuJjg8znb/xRItk7bkT0+Q7AHCYjjFnvKIWQPkNIOyRqoCGvkOs0ipeQzrqz4l5FtN5ZI/ukEHroeX/o1/5Q==} + /webpack@4.47.0(webpack-cli@5.0.0): + resolution: {integrity: sha512-td7fYwgLSrky3fI1EuU5cneU4+pbH6GgOfuKNS1tNPcfdGinGELAqsb/BP4nnvZyKSG2i/xFGU7+n2PvZA8HJQ==} engines: {node: '>=6.11.5'} hasBin: true peerDependencies: @@ -48989,7 +49136,7 @@ packages: node-libs-browser: 2.2.1 schema-utils: 1.0.0 tapable: 1.1.3 - terser-webpack-plugin: 1.4.5(webpack@4.46.0) + terser-webpack-plugin: 1.4.5(webpack@4.47.0) watchpack: 1.7.5 webpack-cli: 5.0.0(webpack@5.88.0) webpack-sources: 1.4.3 @@ -49007,17 +49154,17 @@ packages: webpack-cli: optional: true dependencies: - '@types/eslint-scope': 3.7.4 - '@types/estree': 1.0.1 + '@types/eslint-scope': 3.7.6 + '@types/estree': 1.0.3 '@webassemblyjs/ast': 1.11.6 '@webassemblyjs/wasm-edit': 1.11.6 '@webassemblyjs/wasm-parser': 1.11.6 acorn: 8.10.0 acorn-import-assertions: 1.9.0(acorn@8.10.0) - browserslist: 4.21.9 + browserslist: 4.22.1 chrome-trace-event: 1.0.3 enhanced-resolve: 5.15.0 - es-module-lexer: 1.3.0 + es-module-lexer: 1.3.1 eslint-scope: 5.1.1 events: 3.3.0 glob-to-regexp: 0.4.1 @@ -49048,17 +49195,17 @@ packages: webpack-cli: optional: true dependencies: - '@types/eslint-scope': 3.7.4 - '@types/estree': 1.0.1 + '@types/eslint-scope': 3.7.6 + '@types/estree': 1.0.3 '@webassemblyjs/ast': 1.11.6 '@webassemblyjs/wasm-edit': 1.11.6 '@webassemblyjs/wasm-parser': 1.11.6 acorn: 8.10.0 acorn-import-assertions: 1.9.0(acorn@8.10.0) - browserslist: 4.21.9 + browserslist: 4.22.1 chrome-trace-event: 1.0.3 enhanced-resolve: 5.15.0 - es-module-lexer: 1.3.0 + es-module-lexer: 1.3.1 eslint-scope: 5.1.1 events: 3.3.0 glob-to-regexp: 0.4.1 @@ -49078,7 +49225,7 @@ packages: - esbuild - uglify-js - /webpackbar@3.2.0(webpack@4.46.0): + /webpackbar@3.2.0(webpack@4.47.0): resolution: {integrity: sha512-PC4o+1c8gWWileUfwabe0gqptlXUDJd5E0zbpr2xHP1VSOVlZVPBZ8j6NCR8zM5zbKdxPhctHXahgpNK1qFDPw==} engines: {node: '>= 6.9.0'} peerDependencies: @@ -49091,7 +49238,7 @@ packages: pretty-time: 1.1.0 std-env: 2.3.1 text-table: 0.2.0 - webpack: 4.46.0(webpack-cli@5.0.0) + webpack: 4.47.0(webpack-cli@5.0.0) wrap-ansi: 5.1.0 dev: true @@ -49121,8 +49268,8 @@ packages: iconv-lite: 0.6.3 dev: true - /whatwg-fetch@3.6.2: - resolution: {integrity: sha512-bJlen0FcuU/0EMLrdbJ7zOnW6ITZLrZMIarMUVmdKtsGvZna8vxKYaexICWPfZ8qwf9fzNq+UEIZrnSaApt6RA==} + /whatwg-fetch@3.6.19: + resolution: {integrity: sha512-d67JP4dHSbm2TrpFj8AbO8DnL1JXL5J9u0Kq2xW6d0TFDbCA3Muhdt8orXC22utleTVj7Prqt82baN6RBvnEgw==} /whatwg-mimetype@2.3.0: resolution: {integrity: sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==} @@ -49178,7 +49325,7 @@ packages: resolution: {integrity: sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==} engines: {node: '>= 0.4'} dependencies: - function.prototype.name: 1.1.5 + function.prototype.name: 1.1.6 has-tostringtag: 1.0.0 is-async-function: 2.0.0 is-date-object: 1.0.5 @@ -49189,7 +49336,7 @@ packages: isarray: 2.0.5 which-boxed-primitive: 1.0.2 which-collection: 1.0.1 - which-typed-array: 1.1.10 + which-typed-array: 1.1.13 dev: true /which-collection@1.0.1: @@ -49216,16 +49363,15 @@ packages: path-exists: 4.0.0 dev: true - /which-typed-array@1.1.10: - resolution: {integrity: sha512-uxoA5vLUfRPdjCuJ1h5LlYdmTLbYfums398v3WLkM+i/Wltl2/XyZpQWKbN++ck5L64SR/grOHqtXCUKmlZPNA==} + /which-typed-array@1.1.13: + resolution: {integrity: sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==} engines: {node: '>= 0.4'} dependencies: available-typed-arrays: 1.0.5 - call-bind: 1.0.2 + call-bind: 1.0.5 for-each: 0.3.3 gopd: 1.0.1 has-tostringtag: 1.0.0 - is-typed-array: 1.1.10 /which@1.3.1: resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} @@ -49246,7 +49392,7 @@ packages: /wide-align@1.1.5: resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==} dependencies: - string-width: 4.2.3 + string-width: 1.0.2 dev: true /widest-line@2.0.1: @@ -49275,9 +49421,10 @@ packages: resolution: {integrity: sha512-1pTPQDKTdd61ozlKGNCjhNRd+KPmgLSGa3mZTHoOliaGcESD8G1PXhh7c1fgiPjVbNVfgy2Faw4BI8/m0cC8Mg==} engines: {node: '>= 0.8.0'} - /word-wrap@1.2.3: - resolution: {integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==} + /word-wrap@1.2.5: + resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} engines: {node: '>=0.10.0'} + dev: true /wordwrap@0.0.2: resolution: {integrity: sha512-xSBsCeh+g+dinoBv3GAOWM4LcVVO68wLXRanibtBSdUvkGWQRGeE9P7IwU9EmDDi4jA6L44lz15CGMwdw9N5+Q==} @@ -49456,8 +49603,8 @@ packages: utf-8-validate: optional: true - /ws@8.13.0: - resolution: {integrity: sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==} + /ws@8.14.2: + resolution: {integrity: sha512-wEBG1ftX4jcglPxgFCMJmZ2PLtSbJ2Peg6TmpJFTbe9GZYOQCDPdMYu/Tm0/bGZkw8paZnJY45J4K2PZrLYq8g==} engines: {node: '>=10.0.0'} peerDependencies: bufferutil: ^4.0.1 @@ -49518,9 +49665,6 @@ packages: resolution: {integrity: sha512-f9s+fUkX04BxQf+7mMWAp5zk61pciie+fFLC9hX9UVvCeJQfNHRHXpeo5MPcR0EUf57PYLdt+ZO4f3Ipk2oZUw==} engines: {node: '>=0.1'} - /xregexp@2.0.0: - resolution: {integrity: sha512-xl/50/Cf32VsGq/1R8jJE5ajH1yMCQkpmoS10QbFZWl2Oor4H0Me64Pu2yxvsRWK3m6soJbmGfzSR7BYmDcWAA==} - /xregexp@4.0.0: resolution: {integrity: sha512-PHyM+sQouu7xspQQwELlGwwd05mXUFqwFYfqPO0cC7x4fxyHnnuetmQr6CjJiafIDoH4MogHb9dOoJzR/Y4rFg==} dev: true @@ -49562,8 +49706,8 @@ packages: engines: {node: '>= 6'} dev: true - /yaml@2.3.1: - resolution: {integrity: sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==} + /yaml@2.3.3: + resolution: {integrity: sha512-zw0VAJxgeZ6+++/su5AFoqBbZbrEakwu+X0M5HmcwUiBL7AzcuPKjj5we4xfQLp78LkEMpD0cOnUhmgOVy3KdQ==} engines: {node: '>= 14'} dev: false @@ -49754,7 +49898,7 @@ packages: dependencies: lodash.get: 4.4.2 lodash.isequal: 4.5.0 - validator: 13.9.0 + validator: 13.11.0 optionalDependencies: commander: 9.5.0 dev: true diff --git a/turbo.json b/turbo.json index c97596f85..e2b40a676 100644 --- a/turbo.json +++ b/turbo.json @@ -8,6 +8,9 @@ "build:umd": { "dependsOn": ["^build:umd"], "outputs": ["dist/**"] + }, + "sync": { + "dependsOn": ["^sync"] } }, "globalDependencies": [".prettierrc.js"]