diff --git a/README.md b/README.md index 6a89eb0..68e4287 100644 --- a/README.md +++ b/README.md @@ -69,41 +69,67 @@ instance.request({ ``` ### 小程序 -小程序没有 FormData 和 Blob 对象, 因此你需要额外的库来兼容,并通过自定义一个 vite 插件来兼容 + +小程序没有 FormData 和 Blob 对象, 需要自定义一个 vite 插件来兼容: + +```ts +{ + name: "vite-plugin-uni-axios", + transform(code, id) { + if (process.env.UNI_PLATFORM?.includes("mp")) { + if (id.includes("/form-data/lib/browser.js")) { + return { + code: code.replace("window", "globalThis"), + }; + } + if (id.includes("/axios/lib/platform/browser/classes/FormData.js")) { + return { + code: `class FormData {};\nexport default FormData;`, + }; + } + if (id.includes("/axios/lib/platform/browser/classes/Blob.js")) { + return { + code: `class Blob {};\nexport default Blob;`, + }; + } + } + }, +}, +``` + +如果你需要 FormData 和 Blob 的话: ```bash pnpm add miniprogram-formdata miniprogram-blob ``` ```ts -// vite.config.ts -export default defineConfig({ - plugins: [ - { - transform(code, id) { - if (process.env.UNI_PLATFORM?.includes("mp")) { - if (id.includes("/form-data/lib/browser.js")) { - return { - code: code.replace("window", "globalThis"), - }; - } - if (id.includes("/axios/lib/platform/browser/classes/FormData.js")) { - return { - code: `import FormData from 'miniprogram-formdata';\nexport default FormData;`, - }; - } - if (id.includes("/axios/lib/platform/browser/index.js")) { - return { - code: `import Blob from 'miniprogram-blob'\n${code}`, - }; - } - } - }, - }, - ] -}) +{ + name: "vite-plugin-uni-axios", + transform(code, id) { + if (process.env.UNI_PLATFORM?.includes("mp")) { + if (id.includes("/form-data/lib/browser.js")) { + return { + code: code.replace("window", "globalThis"), + }; + } + if (id.includes("/axios/lib/platform/browser/classes/FormData.js")) { + return { + code: `import FormData from 'miniprogram-formdata';\nexport default FormData;`, + }; + } + if (id.includes("/axios/lib/platform/browser/classes/Blob.js")) { + return { + code: `import Blob from 'miniprogram-blob';\nexport default Blob;`, + }; + } + } + }, +}, ``` +如果你使用的是 vue cli,那么你需要编写一个类似的 webpack 插件 + ## 客户端类型 提供了 upload 和 download 方法的类型提示,及 AxiosRequestConfig 支持传递 uniapp 特有参数 diff --git a/package.json b/package.json index ce123bb..8e0c40c 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@uni-helper/axios-adapter", "type": "module", - "version": "0.0.7", + "version": "1.4.0", "license": "MIT", "packageManager": "pnpm@8.5.1", "description": "The Axios adapter for uniapp", diff --git a/playground/package.json b/playground/package.json index c9c3712..87c7e9b 100644 --- a/playground/package.json +++ b/playground/package.json @@ -49,19 +49,22 @@ "@dcloudio/uni-mp-weixin": "3.0.0-alpha-3071220230324001", "@dcloudio/uni-quickapp-webview": "3.0.0-alpha-3071220230324001", "@uni-helper/axios-adapter": "workspace:*", - "@vueuse/integrations": "^9.12.0", - "axios": "^1.2.6", - "vue": "^3.2.45", + "@vueuse/core": "^9.13.0", + "@vueuse/integrations": "^9.13.0", + "@vueuse/shared": "^9.13.0", + "axios": "^1.4.0", + "vue": "^3.3.4", + "vue-demi": "^0.14.5", "vue-i18n": "^9.2.2" }, "devDependencies": { - "@dcloudio/types": "^3.2.8", + "@dcloudio/types": "^3.3.3", "@dcloudio/uni-automator": "3.0.0-alpha-3071220230324001", "@dcloudio/uni-cli-shared": "3.0.0-alpha-3071220230324001", "@dcloudio/uni-stacktracey": "3.0.0-alpha-3071220230324001", "@dcloudio/vite-plugin-uni": "3.0.0-alpha-3071220230324001", - "typescript": "^4.9.4", - "vite": "^4.0.4", - "vitest": "^0.30.0" + "typescript": "^5.0.4", + "vite": "^4.3.8", + "vitest": "^0.31.1" } } diff --git a/playground/vite.config.ts b/playground/vite.config.ts index 46e36fe..8fc0e6b 100644 --- a/playground/vite.config.ts +++ b/playground/vite.config.ts @@ -3,5 +3,29 @@ import uni from "@dcloudio/vite-plugin-uni"; // https://vitejs.dev/config/ export default defineConfig({ - plugins: [uni()], + plugins: [ + uni(), + { + name: "vite-plugin-uni-axios", + transform(code, id) { + if (process.env.UNI_PLATFORM?.includes("mp")) { + if (id.includes("/form-data/lib/browser.js")) { + return { + code: code.replace("window", "globalThis"), + }; + } + if (id.includes("/axios/lib/platform/browser/classes/FormData.js")) { + return { + code: `class FormData {};\nexport default FormData;`, + }; + } + if (id.includes("/axios/lib/platform/browser/classes/Blob.js")) { + return { + code: `class Blob {};\nexport default Blob;`, + }; + } + } + }, + }, + ], }); diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index f0d947f..d1b4011 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -43,80 +43,89 @@ importers: dependencies: '@dcloudio/uni-app': specifier: 3.0.0-alpha-3071220230324001 - version: 3.0.0-alpha-3071220230324001(@dcloudio/types@3.2.8)(postcss@8.4.23)(vue@3.2.45) + version: 3.0.0-alpha-3071220230324001(@dcloudio/types@3.3.3)(postcss@8.4.23)(vue@3.3.4) '@dcloudio/uni-app-plus': specifier: 3.0.0-alpha-3071220230324001 - version: 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vite@4.0.4)(vue@3.2.45) + version: 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vite@4.3.8)(vue@3.3.4) '@dcloudio/uni-components': specifier: 3.0.0-alpha-3071220230324001 version: 3.0.0-alpha-3071220230324001 '@dcloudio/uni-h5': specifier: 3.0.0-alpha-3071220230324001 - version: 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.2.45) + version: 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.3.4) '@dcloudio/uni-mp-alipay': specifier: 3.0.0-alpha-3071220230324001 - version: 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.2.45) + version: 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.3.4) '@dcloudio/uni-mp-baidu': specifier: 3.0.0-alpha-3071220230324001 - version: 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.2.45) + version: 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.3.4) '@dcloudio/uni-mp-kuaishou': specifier: 3.0.0-alpha-3071220230324001 - version: 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.2.45) + version: 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.3.4) '@dcloudio/uni-mp-lark': specifier: 3.0.0-alpha-3071220230324001 - version: 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.2.45) + version: 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.3.4) '@dcloudio/uni-mp-qq': specifier: 3.0.0-alpha-3071220230324001 - version: 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.2.45) + version: 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.3.4) '@dcloudio/uni-mp-toutiao': specifier: 3.0.0-alpha-3071220230324001 - version: 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.2.45) + version: 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.3.4) '@dcloudio/uni-mp-weixin': specifier: 3.0.0-alpha-3071220230324001 - version: 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.2.45) + version: 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.3.4) '@dcloudio/uni-quickapp-webview': specifier: 3.0.0-alpha-3071220230324001 - version: 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.2.45) + version: 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.3.4) '@uni-helper/axios-adapter': specifier: workspace:* version: link:.. + '@vueuse/core': + specifier: ^9.13.0 + version: 9.13.0(vue@3.3.4) '@vueuse/integrations': - specifier: ^9.12.0 - version: 9.12.0(axios@1.2.6)(vue@3.2.45) + specifier: ^9.13.0 + version: 9.13.0(axios@1.4.0)(vue@3.3.4) + '@vueuse/shared': + specifier: ^9.13.0 + version: 9.13.0(vue@3.3.4) axios: - specifier: ^1.2.6 - version: 1.2.6 + specifier: ^1.4.0 + version: 1.4.0 vue: - specifier: ^3.2.45 - version: 3.2.45 + specifier: ^3.3.4 + version: 3.3.4 + vue-demi: + specifier: ^0.14.5 + version: 0.14.5(vue@3.3.4) vue-i18n: specifier: ^9.2.2 - version: 9.2.2(vue@3.2.45) + version: 9.2.2(vue@3.3.4) devDependencies: '@dcloudio/types': - specifier: ^3.2.8 - version: 3.2.8 + specifier: ^3.3.3 + version: 3.3.3 '@dcloudio/uni-automator': specifier: 3.0.0-alpha-3071220230324001 - version: 3.0.0-alpha-3071220230324001(jest-environment-node@27.5.1)(jest@27.0.4)(postcss@8.4.23)(vue@3.2.45) + version: 3.0.0-alpha-3071220230324001(jest-environment-node@27.5.1)(jest@27.0.4)(postcss@8.4.23)(vue@3.3.4) '@dcloudio/uni-cli-shared': specifier: 3.0.0-alpha-3071220230324001 - version: 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.2.45) + version: 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.3.4) '@dcloudio/uni-stacktracey': specifier: 3.0.0-alpha-3071220230324001 version: 3.0.0-alpha-3071220230324001 '@dcloudio/vite-plugin-uni': specifier: 3.0.0-alpha-3071220230324001 - version: 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vite@4.0.4)(vue@3.2.45) + version: 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vite@4.3.8)(vue@3.3.4) typescript: - specifier: ^4.9.4 - version: 4.9.4 + specifier: ^5.0.4 + version: 5.0.4 vite: - specifier: ^4.0.4 - version: 4.0.4(@types/node@18.16.14)(terser@5.15.1) + specifier: ^4.3.8 + version: 4.3.8(@types/node@18.16.14)(terser@5.15.1) vitest: - specifier: ^0.30.0 - version: 0.30.0(terser@5.15.1) + specifier: ^0.31.1 + version: 0.31.1(terser@5.15.1) packages: @@ -1360,17 +1369,13 @@ packages: resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} dev: true - /@dcloudio/types@3.2.8: - resolution: {integrity: sha512-m8P5J9SI1jvk3M3PQEQp1y9a3LtrjjqfweBQ/huVmEiA0JUne3m55aokYAq1LUAMyYJnWEX569t5lbeDb9RRsQ==} - /@dcloudio/types@3.3.3: resolution: {integrity: sha512-xfp88QOJ2fgCzv49HhEGrX0L+3xDsCyyvcoApL7z0J1Lr7tqPUkxqAVBe9zBlKsDX/mO9mNj7NzKIisHfp+fNQ==} - dev: true - /@dcloudio/uni-app-plus@3.0.0-alpha-3071220230324001(postcss@8.4.23)(vite@4.0.4)(vue@3.2.45): + /@dcloudio/uni-app-plus@3.0.0-alpha-3071220230324001(postcss@8.4.23)(vite@4.3.8)(vue@3.3.4): resolution: {integrity: sha512-D1Fc7gMQm69z38kejHJpapMm3ocbcVffK1HO2GcaihGXQAER9h/YhGSjT6DY6hv9o2vnKya2DHXoY3i5L/8MSQ==} dependencies: - '@dcloudio/uni-app-vite': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vite@4.0.4)(vue@3.2.45) + '@dcloudio/uni-app-vite': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vite@4.3.8)(vue@3.3.4) '@dcloudio/uni-app-vue': 3.0.0-alpha-3071220230324001 debug: 4.3.4 fs-extra: 10.1.0 @@ -1384,15 +1389,15 @@ packages: - vue dev: false - /@dcloudio/uni-app-vite@3.0.0-alpha-3071220230324001(postcss@8.4.23)(vite@4.0.4)(vue@3.2.45): + /@dcloudio/uni-app-vite@3.0.0-alpha-3071220230324001(postcss@8.4.23)(vite@4.3.8)(vue@3.3.4): resolution: {integrity: sha512-onfqyEdxGOxKywY7E6OvR7BIDdjRolL+VEXr2qAhdy0KjTaJpY7NCX7PeRwUjuGIdB4YTbKZ25uLe3v+KIZffw==} dependencies: - '@dcloudio/uni-cli-shared': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.2.45) + '@dcloudio/uni-cli-shared': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.3.4) '@dcloudio/uni-i18n': 3.0.0-alpha-3071220230324001 '@dcloudio/uni-nvue-styler': 3.0.0-alpha-3071220230324001 '@dcloudio/uni-shared': 3.0.0-alpha-3071220230324001 '@rollup/pluginutils': 4.2.1 - '@vitejs/plugin-vue': 4.1.0(vite@4.0.4)(vue@3.2.45) + '@vitejs/plugin-vue': 4.1.0(vite@4.3.8)(vue@3.3.4) '@vue/compiler-dom': 3.2.47 '@vue/compiler-sfc': 3.2.47 debug: 4.3.4 @@ -1410,18 +1415,18 @@ packages: resolution: {integrity: sha512-LLfgZUPNBIW7eqUGcwyoNKtRfskRcHbRWm6N++xQUQnr5bnlQLaOKwrrGee6TKXY528PNV/x95zVBp8oeaO0ZA==} dev: false - /@dcloudio/uni-app@3.0.0-alpha-3071220230324001(@dcloudio/types@3.2.8)(postcss@8.4.23)(vue@3.2.45): + /@dcloudio/uni-app@3.0.0-alpha-3071220230324001(@dcloudio/types@3.3.3)(postcss@8.4.23)(vue@3.3.4): resolution: {integrity: sha512-U7vojT/Mg37W5eKXc4rDHyDyS6oXo3PvSH6Qj1Ymzmi9a/wDPWRvmZNe5u7fh+3gh+1g+CerlIVuTbv5yg4GNQ==} peerDependencies: '@dcloudio/types': ^3.3.2 dependencies: - '@dcloudio/types': 3.2.8 - '@dcloudio/uni-cloud': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.2.45) + '@dcloudio/types': 3.3.3 + '@dcloudio/uni-cloud': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.3.4) '@dcloudio/uni-components': 3.0.0-alpha-3071220230324001 '@dcloudio/uni-i18n': 3.0.0-alpha-3071220230324001 - '@dcloudio/uni-push': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.2.45) + '@dcloudio/uni-push': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.3.4) '@dcloudio/uni-shared': 3.0.0-alpha-3071220230324001 - '@dcloudio/uni-stat': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.2.45) + '@dcloudio/uni-stat': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.3.4) '@vue/shared': 3.2.47 transitivePeerDependencies: - postcss @@ -1430,13 +1435,13 @@ packages: - vue dev: false - /@dcloudio/uni-automator@3.0.0-alpha-3071220230324001(jest-environment-node@27.5.1)(jest@27.0.4)(postcss@8.4.23)(vue@3.2.45): + /@dcloudio/uni-automator@3.0.0-alpha-3071220230324001(jest-environment-node@27.5.1)(jest@27.0.4)(postcss@8.4.23)(vue@3.3.4): resolution: {integrity: sha512-UuyOH8erhdRgDEQtdPMnKbuNQF2R70EvYiuqKQLE82K0FEFUgm782/P19X+B+gLg5K57RL+QLQDCvHlyBCxVww==} peerDependencies: jest: 27.0.4 jest-environment-node: 27.5.1 dependencies: - '@dcloudio/uni-cli-shared': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.2.45) + '@dcloudio/uni-cli-shared': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.3.4) address: 1.2.1 cross-env: 7.0.3 debug: 4.3.4 @@ -1457,7 +1462,7 @@ packages: - vue dev: true - /@dcloudio/uni-cli-shared@3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.2.45): + /@dcloudio/uni-cli-shared@3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.3.4): resolution: {integrity: sha512-YvzdslATg4/J77zPMkYCnFbWsLRezK4iqBdGwy0rL53brlTtKH9HcmF34es/qvjNE6XIewYAYiZUZwWw8XVC+Q==} engines: {node: ^14.18.0 || >=16.0.0} dependencies: @@ -1474,7 +1479,7 @@ packages: '@vue/compiler-core': 3.2.47 '@vue/compiler-dom': 3.2.47 '@vue/compiler-sfc': 3.2.47 - '@vue/server-renderer': 3.2.47(vue@3.2.45) + '@vue/server-renderer': 3.2.47(vue@3.3.4) '@vue/shared': 3.2.47 autoprefixer: 10.4.14(postcss@8.4.23) base64url: 3.0.1 @@ -1507,10 +1512,10 @@ packages: - ts-node - vue - /@dcloudio/uni-cloud@3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.2.45): + /@dcloudio/uni-cloud@3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.3.4): resolution: {integrity: sha512-wq5rC7Jyoj7NayrYEOOlp3yDNrbhg9Aznh0+8iZ7ofmV6IFBhuFsZfPegjeOoot3YxVUPF2shZLevYZtHOOmEA==} dependencies: - '@dcloudio/uni-cli-shared': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.2.45) + '@dcloudio/uni-cli-shared': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.3.4) '@dcloudio/uni-i18n': 3.0.0-alpha-3071220230324001 '@dcloudio/uni-shared': 3.0.0-alpha-3071220230324001 '@vue/shared': 3.2.47 @@ -1526,15 +1531,15 @@ packages: resolution: {integrity: sha512-nG3nx3PeQTvi1AWdvhivBmZiqE2v7wwgSLa5IiiHWJgFcNe38L4aMZSBbhyL2yp8mbjB82S9wRNmK4KeEAgJiw==} dev: false - /@dcloudio/uni-h5-vite@3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.2.45): + /@dcloudio/uni-h5-vite@3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.3.4): resolution: {integrity: sha512-gvvE4Lvu9Gu3ju5vUKRhE+3PbiqDZvOV7grxyt0BixNHY2YgbdHZS/XuDdK9l9Rk0nt9/dvpFj9EVQFT6+jM+w==} dependencies: - '@dcloudio/uni-cli-shared': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.2.45) + '@dcloudio/uni-cli-shared': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.3.4) '@dcloudio/uni-shared': 3.0.0-alpha-3071220230324001 '@rollup/pluginutils': 4.2.1 '@vue/compiler-dom': 3.2.47 '@vue/compiler-sfc': 3.2.47 - '@vue/server-renderer': 3.2.47(vue@3.2.45) + '@vue/server-renderer': 3.2.47(vue@3.3.4) '@vue/shared': 3.2.47 debug: 4.3.4 fs-extra: 10.1.0 @@ -1553,20 +1558,20 @@ packages: '@dcloudio/uni-shared': 3.0.0-alpha-3071220230324001 dev: false - /@dcloudio/uni-h5@3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.2.45): + /@dcloudio/uni-h5@3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.3.4): resolution: {integrity: sha512-Rp5pcqPb5bcwVaHcdwCHd2QLX7bwSC/VV97CEt8vpHn0GlMPvVS7N6NUnjnCwOkYMMtxmTaFBl0ADKTkOBhZyw==} dependencies: - '@dcloudio/uni-h5-vite': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.2.45) + '@dcloudio/uni-h5-vite': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.3.4) '@dcloudio/uni-h5-vue': 3.0.0-alpha-3071220230324001 '@dcloudio/uni-i18n': 3.0.0-alpha-3071220230324001 '@dcloudio/uni-shared': 3.0.0-alpha-3071220230324001 - '@vue/server-renderer': 3.2.47(vue@3.2.45) + '@vue/server-renderer': 3.2.47(vue@3.3.4) '@vue/shared': 3.2.47 debug: 4.3.4 localstorage-polyfill: 1.0.1 postcss-selector-parser: 6.0.10 safe-area-insets: 1.4.1 - vue-router: 4.1.6(vue@3.2.45) + vue-router: 4.1.6(vue@3.3.4) xmlhttprequest: 1.8.0 transitivePeerDependencies: - postcss @@ -1578,11 +1583,11 @@ packages: /@dcloudio/uni-i18n@3.0.0-alpha-3071220230324001: resolution: {integrity: sha512-tciWLpX0+oJoVytLPRwj8UrX82XLoD8+jz95/pML0qHBCa+tw3snrryM05k3ULN3UPTd+TbVCCe53Gj4hqX5Dw==} - /@dcloudio/uni-mp-alipay@3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.2.45): + /@dcloudio/uni-mp-alipay@3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.3.4): resolution: {integrity: sha512-XxO6BJQe0tGI8ooxadA2RgJxV5ypOfS6w8PbJgYBM2Jq9mLnGSjE0wQ1KwVsM4dQSjjAeQpjZs2C0BGO5u8Ndg==} dependencies: - '@dcloudio/uni-cli-shared': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.2.45) - '@dcloudio/uni-mp-vite': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.2.45) + '@dcloudio/uni-cli-shared': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.3.4) + '@dcloudio/uni-mp-vite': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.3.4) '@dcloudio/uni-mp-vue': 3.0.0-alpha-3071220230324001 '@dcloudio/uni-shared': 3.0.0-alpha-3071220230324001 '@vue/compiler-core': 3.2.47 @@ -1594,14 +1599,14 @@ packages: - vue dev: false - /@dcloudio/uni-mp-baidu@3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.2.45): + /@dcloudio/uni-mp-baidu@3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.3.4): resolution: {integrity: sha512-PGiqlhCenL3Xga9+XzMfyudCUFrs/q8AoeEOqdGdQvvY3qKlrZxMQCm4dc+/J+fgbQiVqF7UO9lOZy26B+O/Vw==} dependencies: - '@dcloudio/uni-cli-shared': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.2.45) - '@dcloudio/uni-mp-compiler': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.2.45) - '@dcloudio/uni-mp-vite': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.2.45) + '@dcloudio/uni-cli-shared': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.3.4) + '@dcloudio/uni-mp-compiler': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.3.4) + '@dcloudio/uni-mp-vite': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.3.4) '@dcloudio/uni-mp-vue': 3.0.0-alpha-3071220230324001 - '@dcloudio/uni-mp-weixin': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.2.45) + '@dcloudio/uni-mp-weixin': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.3.4) '@dcloudio/uni-shared': 3.0.0-alpha-3071220230324001 '@vue/compiler-core': 3.2.47 '@vue/shared': 3.2.47 @@ -1619,13 +1624,13 @@ packages: - vue dev: false - /@dcloudio/uni-mp-compiler@3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.2.45): + /@dcloudio/uni-mp-compiler@3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.3.4): resolution: {integrity: sha512-Pak8yNCCshZmRrI2tDlYjV4471TTgRet/NvXyaKjxqqNR4aJX32O9sHUV5r/0CO9KV+KrBMSOaikBEDBJv7sLg==} dependencies: '@babel/generator': 7.21.3 '@babel/parser': 7.21.3 '@babel/types': 7.21.3 - '@dcloudio/uni-cli-shared': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.2.45) + '@dcloudio/uni-cli-shared': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.3.4) '@dcloudio/uni-shared': 3.0.0-alpha-3071220230324001 '@vue/compiler-core': 3.2.47 '@vue/compiler-dom': 3.2.47 @@ -1638,14 +1643,14 @@ packages: - vue dev: false - /@dcloudio/uni-mp-kuaishou@3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.2.45): + /@dcloudio/uni-mp-kuaishou@3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.3.4): resolution: {integrity: sha512-XJdHnMlrND9DyTyLZQt4MlUMOz1bVjT1R4ZIUegdXmt/dk49OBIxEmajHa/vjFvWBHU+fD1Tnp6+T6b9HSz1hg==} dependencies: - '@dcloudio/uni-cli-shared': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.2.45) - '@dcloudio/uni-mp-compiler': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.2.45) - '@dcloudio/uni-mp-vite': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.2.45) + '@dcloudio/uni-cli-shared': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.3.4) + '@dcloudio/uni-mp-compiler': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.3.4) + '@dcloudio/uni-mp-vite': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.3.4) '@dcloudio/uni-mp-vue': 3.0.0-alpha-3071220230324001 - '@dcloudio/uni-mp-weixin': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.2.45) + '@dcloudio/uni-mp-weixin': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.3.4) '@dcloudio/uni-shared': 3.0.0-alpha-3071220230324001 '@vue/compiler-core': 3.2.47 '@vue/shared': 3.2.47 @@ -1658,13 +1663,13 @@ packages: - vue dev: false - /@dcloudio/uni-mp-lark@3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.2.45): + /@dcloudio/uni-mp-lark@3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.3.4): resolution: {integrity: sha512-kRXubApfX998HC9Pg6P8QxQrYGUm64HGGchYPO1x6ZoZKExyd+35WhgYGGUhYmnc0tb0Pg8eBeheXX1Zobqdfw==} dependencies: - '@dcloudio/uni-cli-shared': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.2.45) - '@dcloudio/uni-mp-compiler': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.2.45) - '@dcloudio/uni-mp-toutiao': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.2.45) - '@dcloudio/uni-mp-vite': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.2.45) + '@dcloudio/uni-cli-shared': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.3.4) + '@dcloudio/uni-mp-compiler': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.3.4) + '@dcloudio/uni-mp-toutiao': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.3.4) + '@dcloudio/uni-mp-vite': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.3.4) '@dcloudio/uni-mp-vue': 3.0.0-alpha-3071220230324001 '@dcloudio/uni-shared': 3.0.0-alpha-3071220230324001 '@vue/compiler-core': 3.2.47 @@ -1676,11 +1681,11 @@ packages: - vue dev: false - /@dcloudio/uni-mp-qq@3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.2.45): + /@dcloudio/uni-mp-qq@3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.3.4): resolution: {integrity: sha512-7gcN+bjomq8FFUd1iqX44HZyoqApQHjhfh4Aija3XC0TSSnSTAQyZWsaCLwYcav/CRj3cDNZt7ahgv1cR2QLZw==} dependencies: - '@dcloudio/uni-cli-shared': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.2.45) - '@dcloudio/uni-mp-vite': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.2.45) + '@dcloudio/uni-cli-shared': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.3.4) + '@dcloudio/uni-mp-vite': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.3.4) '@dcloudio/uni-mp-vue': 3.0.0-alpha-3071220230324001 '@dcloudio/uni-shared': 3.0.0-alpha-3071220230324001 '@vue/shared': 3.2.47 @@ -1692,12 +1697,12 @@ packages: - vue dev: false - /@dcloudio/uni-mp-toutiao@3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.2.45): + /@dcloudio/uni-mp-toutiao@3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.3.4): resolution: {integrity: sha512-AYthDPpxVmKn7qELrF8Pf1qX/VyczILQpmKaFJ9Pxvpn2/iNOENbKhStM0BMtiupZmJ0w4hINKoVfGvHJR9+fw==} dependencies: - '@dcloudio/uni-cli-shared': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.2.45) - '@dcloudio/uni-mp-compiler': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.2.45) - '@dcloudio/uni-mp-vite': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.2.45) + '@dcloudio/uni-cli-shared': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.3.4) + '@dcloudio/uni-mp-compiler': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.3.4) + '@dcloudio/uni-mp-vite': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.3.4) '@dcloudio/uni-mp-vue': 3.0.0-alpha-3071220230324001 '@dcloudio/uni-shared': 3.0.0-alpha-3071220230324001 '@vue/compiler-core': 3.2.47 @@ -1709,12 +1714,12 @@ packages: - vue dev: false - /@dcloudio/uni-mp-vite@3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.2.45): + /@dcloudio/uni-mp-vite@3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.3.4): resolution: {integrity: sha512-7Yoq42OTmiCtYcDrM8ssU/IrBtuw+PlRxvN6cK8MaGiNODRjSHvv9bNWbnZ+mV1OyyOPvVfnajCHUX1jCR61CA==} dependencies: - '@dcloudio/uni-cli-shared': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.2.45) + '@dcloudio/uni-cli-shared': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.3.4) '@dcloudio/uni-i18n': 3.0.0-alpha-3071220230324001 - '@dcloudio/uni-mp-compiler': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.2.45) + '@dcloudio/uni-mp-compiler': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.3.4) '@dcloudio/uni-mp-vue': 3.0.0-alpha-3071220230324001 '@dcloudio/uni-shared': 3.0.0-alpha-3071220230324001 '@vue/compiler-sfc': 3.2.47 @@ -1734,11 +1739,11 @@ packages: '@vue/shared': 3.2.47 dev: false - /@dcloudio/uni-mp-weixin@3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.2.45): + /@dcloudio/uni-mp-weixin@3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.3.4): resolution: {integrity: sha512-Fywld7MWtfzAsMgh42QXr/EpJxCNbEgFFlY88259uhuQTqbgeusBkSRPHGgvNxMDJiPFXCpzeZSrVU3yk3JDBA==} dependencies: - '@dcloudio/uni-cli-shared': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.2.45) - '@dcloudio/uni-mp-vite': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.2.45) + '@dcloudio/uni-cli-shared': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.3.4) + '@dcloudio/uni-mp-vite': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.3.4) '@dcloudio/uni-mp-vue': 3.0.0-alpha-3071220230324001 '@dcloudio/uni-shared': 3.0.0-alpha-3071220230324001 '@vue/shared': 3.2.47 @@ -1761,13 +1766,13 @@ packages: dependencies: '@vue/shared': 3.2.47 parse-css-font: 4.0.0 - postcss: 8.4.21 + postcss: 8.4.23 dev: false - /@dcloudio/uni-push@3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.2.45): + /@dcloudio/uni-push@3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.3.4): resolution: {integrity: sha512-RYhFwiAsZOa/gra/+2IDtDs7lABUGJj5VVxl9KnFYDOnTHJDP0Gez5GQ9xqSIXbh5pkr+2PA5a5LFsZUWWzkaA==} dependencies: - '@dcloudio/uni-cli-shared': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.2.45) + '@dcloudio/uni-cli-shared': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.3.4) transitivePeerDependencies: - postcss - supports-color @@ -1775,11 +1780,11 @@ packages: - vue dev: false - /@dcloudio/uni-quickapp-webview@3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.2.45): + /@dcloudio/uni-quickapp-webview@3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.3.4): resolution: {integrity: sha512-v+3LKa0zMplfWKnHToLllB7uCZpAFiLOqaxBOjNGV5jQOCePtQu2nvx8qs4vvEZPUpBDrl+gPddEBrlzWTxOgg==} dependencies: - '@dcloudio/uni-cli-shared': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.2.45) - '@dcloudio/uni-mp-vite': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.2.45) + '@dcloudio/uni-cli-shared': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.3.4) + '@dcloudio/uni-mp-vite': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.3.4) '@dcloudio/uni-mp-vue': 3.0.0-alpha-3071220230324001 '@dcloudio/uni-shared': 3.0.0-alpha-3071220230324001 '@vue/shared': 3.2.47 @@ -1799,10 +1804,10 @@ packages: resolution: {integrity: sha512-VF8ohZ7WuhXBmwGY82lDUKNfIqF5m6QO4ddHv6WzzjhCQWgb0lDWjxNIqJCzmF/BakTLHmkrBXNjBposslqCKw==} dev: true - /@dcloudio/uni-stat@3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.2.45): + /@dcloudio/uni-stat@3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.3.4): resolution: {integrity: sha512-hRy21juXZXoxgB9eY5DvnE1gm4ri70Y5DYq649sgn4Xw+GclP62MzwjaqBIYHfo2z+Pr69fZLW7lclv9Tk8LiA==} dependencies: - '@dcloudio/uni-cli-shared': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.2.45) + '@dcloudio/uni-cli-shared': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.3.4) '@dcloudio/uni-shared': 3.0.0-alpha-3071220230324001 debug: 4.3.4 transitivePeerDependencies: @@ -1812,7 +1817,7 @@ packages: - vue dev: false - /@dcloudio/vite-plugin-uni@3.0.0-alpha-3071220230324001(postcss@8.4.23)(vite@4.0.4)(vue@3.2.45): + /@dcloudio/vite-plugin-uni@3.0.0-alpha-3071220230324001(postcss@8.4.23)(vite@4.3.8)(vue@3.3.4): resolution: {integrity: sha512-WqFZ+RlSXMc9Bt2lmfl3vsVQ1bPc02VREjz8w82MQ11oa7R3R0ZvesBYFU6ZJRMjo1PzO7R6ghIkM9fTT3CscQ==} engines: {node: ^14.18.0 || >=16.0.0} hasBin: true @@ -1822,12 +1827,12 @@ packages: '@babel/core': 7.21.3 '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.21.3) '@babel/plugin-transform-typescript': 7.20.2(@babel/core@7.21.3) - '@dcloudio/uni-cli-shared': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.2.45) + '@dcloudio/uni-cli-shared': 3.0.0-alpha-3071220230324001(postcss@8.4.23)(vue@3.3.4) '@dcloudio/uni-shared': 3.0.0-alpha-3071220230324001 '@rollup/pluginutils': 4.2.1 - '@vitejs/plugin-legacy': 4.0.2(terser@5.15.1)(vite@4.0.4) - '@vitejs/plugin-vue': 4.1.0(vite@4.0.4)(vue@3.2.45) - '@vitejs/plugin-vue-jsx': 3.0.1(vite@4.0.4)(vue@3.2.45) + '@vitejs/plugin-legacy': 4.0.2(terser@5.15.1)(vite@4.3.8) + '@vitejs/plugin-vue': 4.1.0(vite@4.3.8)(vue@3.3.4) + '@vitejs/plugin-vue-jsx': 3.0.1(vite@4.3.8)(vue@3.3.4) '@vue/compiler-core': 3.2.47 '@vue/compiler-dom': 3.2.47 '@vue/compiler-sfc': 3.2.47 @@ -1843,7 +1848,7 @@ packages: magic-string: 0.27.0 picocolors: 1.0.0 terser: 5.15.1 - vite: 4.0.4(@types/node@18.16.14)(terser@5.15.1) + vite: 4.3.8(@types/node@18.16.14)(terser@5.15.1) transitivePeerDependencies: - postcss - supports-color @@ -1851,14 +1856,6 @@ packages: - vue dev: true - /@esbuild/android-arm64@0.16.4: - resolution: {integrity: sha512-VPuTzXFm/m2fcGfN6CiwZTlLzxrKsWbPkG7ArRFpuxyaHUm/XFHQPD4xNwZT6uUmpIHhnSjcaCmcla8COzmZ5Q==} - engines: {node: '>=12'} - cpu: [arm64] - os: [android] - requiresBuild: true - optional: true - /@esbuild/android-arm64@0.17.12: resolution: {integrity: sha512-WQ9p5oiXXYJ33F2EkE3r0FRDFVpEdcDiwNX3u7Xaibxfx6vQE0Sb8ytrfQsA5WO6kDn6mDfKLh6KrPBjvkk7xA==} engines: {node: '>=12'} @@ -1867,14 +1864,6 @@ packages: requiresBuild: true optional: true - /@esbuild/android-arm@0.16.4: - resolution: {integrity: sha512-rZzb7r22m20S1S7ufIc6DC6W659yxoOrl7sKP1nCYhuvUlnCFHVSbATG4keGUtV8rDz11sRRDbWkvQZpzPaHiw==} - engines: {node: '>=12'} - cpu: [arm] - os: [android] - requiresBuild: true - optional: true - /@esbuild/android-arm@0.17.12: resolution: {integrity: sha512-E/sgkvwoIfj4aMAPL2e35VnUJspzVYl7+M1B2cqeubdBhADV4uPon0KCc8p2G+LqSJ6i8ocYPCqY3A4GGq0zkQ==} engines: {node: '>=12'} @@ -1883,14 +1872,6 @@ packages: requiresBuild: true optional: true - /@esbuild/android-x64@0.16.4: - resolution: {integrity: sha512-MW+B2O++BkcOfMWmuHXB15/l1i7wXhJFqbJhp82IBOais8RBEQv2vQz/jHrDEHaY2X0QY7Wfw86SBL2PbVOr0g==} - engines: {node: '>=12'} - cpu: [x64] - os: [android] - requiresBuild: true - optional: true - /@esbuild/android-x64@0.17.12: resolution: {integrity: sha512-m4OsaCr5gT+se25rFPHKQXARMyAehHTQAz4XX1Vk3d27VtqiX0ALMBPoXZsGaB6JYryCLfgGwUslMqTfqeLU0w==} engines: {node: '>=12'} @@ -1899,14 +1880,6 @@ packages: requiresBuild: true optional: true - /@esbuild/darwin-arm64@0.16.4: - resolution: {integrity: sha512-a28X1O//aOfxwJVZVs7ZfM8Tyih2Za4nKJrBwW5Wm4yKsnwBy9aiS/xwpxiiTRttw3EaTg4Srerhcm6z0bu9Wg==} - engines: {node: '>=12'} - cpu: [arm64] - os: [darwin] - requiresBuild: true - optional: true - /@esbuild/darwin-arm64@0.17.12: resolution: {integrity: sha512-O3GCZghRIx+RAN0NDPhyyhRgwa19MoKlzGonIb5hgTj78krqp9XZbYCvFr9N1eUxg0ZQEpiiZ4QvsOQwBpP+lg==} engines: {node: '>=12'} @@ -1915,14 +1888,6 @@ packages: requiresBuild: true optional: true - /@esbuild/darwin-x64@0.16.4: - resolution: {integrity: sha512-e3doCr6Ecfwd7VzlaQqEPrnbvvPjE9uoTpxG5pyLzr2rI2NMjDHmvY1E5EO81O/e9TUOLLkXA5m6T8lfjK9yAA==} - engines: {node: '>=12'} - cpu: [x64] - os: [darwin] - requiresBuild: true - optional: true - /@esbuild/darwin-x64@0.17.12: resolution: {integrity: sha512-5D48jM3tW27h1qjaD9UNRuN+4v0zvksqZSPZqeSWggfMlsVdAhH3pwSfQIFJwcs9QJ9BRibPS4ViZgs3d2wsCA==} engines: {node: '>=12'} @@ -1931,14 +1896,6 @@ packages: requiresBuild: true optional: true - /@esbuild/freebsd-arm64@0.16.4: - resolution: {integrity: sha512-Oup3G/QxBgvvqnXWrBed7xxkFNwAwJVHZcklWyQt7YCAL5bfUkaa6FVWnR78rNQiM8MqqLiT6ZTZSdUFuVIg1w==} - engines: {node: '>=12'} - cpu: [arm64] - os: [freebsd] - requiresBuild: true - optional: true - /@esbuild/freebsd-arm64@0.17.12: resolution: {integrity: sha512-OWvHzmLNTdF1erSvrfoEBGlN94IE6vCEaGEkEH29uo/VoONqPnoDFfShi41Ew+yKimx4vrmmAJEGNoyyP+OgOQ==} engines: {node: '>=12'} @@ -1947,14 +1904,6 @@ packages: requiresBuild: true optional: true - /@esbuild/freebsd-x64@0.16.4: - resolution: {integrity: sha512-vAP+eYOxlN/Bpo/TZmzEQapNS8W1njECrqkTpNgvXskkkJC2AwOXwZWai/Kc2vEFZUXQttx6UJbj9grqjD/+9Q==} - engines: {node: '>=12'} - cpu: [x64] - os: [freebsd] - requiresBuild: true - optional: true - /@esbuild/freebsd-x64@0.17.12: resolution: {integrity: sha512-A0Xg5CZv8MU9xh4a+7NUpi5VHBKh1RaGJKqjxe4KG87X+mTjDE6ZvlJqpWoeJxgfXHT7IMP9tDFu7IZ03OtJAw==} engines: {node: '>=12'} @@ -1963,14 +1912,6 @@ packages: requiresBuild: true optional: true - /@esbuild/linux-arm64@0.16.4: - resolution: {integrity: sha512-2zXoBhv4r5pZiyjBKrOdFP4CXOChxXiYD50LRUU+65DkdS5niPFHbboKZd/c81l0ezpw7AQnHeoCy5hFrzzs4g==} - engines: {node: '>=12'} - cpu: [arm64] - os: [linux] - requiresBuild: true - optional: true - /@esbuild/linux-arm64@0.17.12: resolution: {integrity: sha512-cK3AjkEc+8v8YG02hYLQIQlOznW+v9N+OI9BAFuyqkfQFR+DnDLhEM5N8QRxAUz99cJTo1rLNXqRrvY15gbQUg==} engines: {node: '>=12'} @@ -1979,14 +1920,6 @@ packages: requiresBuild: true optional: true - /@esbuild/linux-arm@0.16.4: - resolution: {integrity: sha512-A47ZmtpIPyERxkSvIv+zLd6kNIOtJH03XA0Hy7jaceRDdQaQVGSDt4mZqpWqJYgDk9rg96aglbF6kCRvPGDSUA==} - engines: {node: '>=12'} - cpu: [arm] - os: [linux] - requiresBuild: true - optional: true - /@esbuild/linux-arm@0.17.12: resolution: {integrity: sha512-WsHyJ7b7vzHdJ1fv67Yf++2dz3D726oO3QCu8iNYik4fb5YuuReOI9OtA+n7Mk0xyQivNTPbl181s+5oZ38gyA==} engines: {node: '>=12'} @@ -1995,14 +1928,6 @@ packages: requiresBuild: true optional: true - /@esbuild/linux-ia32@0.16.4: - resolution: {integrity: sha512-uxdSrpe9wFhz4yBwt2kl2TxS/NWEINYBUFIxQtaEVtglm1eECvsj1vEKI0KX2k2wCe17zDdQ3v+jVxfwVfvvjw==} - engines: {node: '>=12'} - cpu: [ia32] - os: [linux] - requiresBuild: true - optional: true - /@esbuild/linux-ia32@0.17.12: resolution: {integrity: sha512-jdOBXJqcgHlah/nYHnj3Hrnl9l63RjtQ4vn9+bohjQPI2QafASB5MtHAoEv0JQHVb/xYQTFOeuHnNYE1zF7tYw==} engines: {node: '>=12'} @@ -2011,14 +1936,6 @@ packages: requiresBuild: true optional: true - /@esbuild/linux-loong64@0.16.4: - resolution: {integrity: sha512-peDrrUuxbZ9Jw+DwLCh/9xmZAk0p0K1iY5d2IcwmnN+B87xw7kujOkig6ZRcZqgrXgeRGurRHn0ENMAjjD5DEg==} - engines: {node: '>=12'} - cpu: [loong64] - os: [linux] - requiresBuild: true - optional: true - /@esbuild/linux-loong64@0.17.12: resolution: {integrity: sha512-GTOEtj8h9qPKXCyiBBnHconSCV9LwFyx/gv3Phw0pa25qPYjVuuGZ4Dk14bGCfGX3qKF0+ceeQvwmtI+aYBbVA==} engines: {node: '>=12'} @@ -2027,14 +1944,6 @@ packages: requiresBuild: true optional: true - /@esbuild/linux-mips64el@0.16.4: - resolution: {integrity: sha512-sD9EEUoGtVhFjjsauWjflZklTNr57KdQ6xfloO4yH1u7vNQlOfAlhEzbyBKfgbJlW7rwXYBdl5/NcZ+Mg2XhQA==} - engines: {node: '>=12'} - cpu: [mips64el] - os: [linux] - requiresBuild: true - optional: true - /@esbuild/linux-mips64el@0.17.12: resolution: {integrity: sha512-o8CIhfBwKcxmEENOH9RwmUejs5jFiNoDw7YgS0EJTF6kgPgcqLFjgoc5kDey5cMHRVCIWc6kK2ShUePOcc7RbA==} engines: {node: '>=12'} @@ -2043,14 +1952,6 @@ packages: requiresBuild: true optional: true - /@esbuild/linux-ppc64@0.16.4: - resolution: {integrity: sha512-X1HSqHUX9D+d0l6/nIh4ZZJ94eQky8d8z6yxAptpZE3FxCWYWvTDd9X9ST84MGZEJx04VYUD/AGgciddwO0b8g==} - engines: {node: '>=12'} - cpu: [ppc64] - os: [linux] - requiresBuild: true - optional: true - /@esbuild/linux-ppc64@0.17.12: resolution: {integrity: sha512-biMLH6NR/GR4z+ap0oJYb877LdBpGac8KfZoEnDiBKd7MD/xt8eaw1SFfYRUeMVx519kVkAOL2GExdFmYnZx3A==} engines: {node: '>=12'} @@ -2059,14 +1960,6 @@ packages: requiresBuild: true optional: true - /@esbuild/linux-riscv64@0.16.4: - resolution: {integrity: sha512-97ANpzyNp0GTXCt6SRdIx1ngwncpkV/z453ZuxbnBROCJ5p/55UjhbaG23UdHj88fGWLKPFtMoU4CBacz4j9FA==} - engines: {node: '>=12'} - cpu: [riscv64] - os: [linux] - requiresBuild: true - optional: true - /@esbuild/linux-riscv64@0.17.12: resolution: {integrity: sha512-jkphYUiO38wZGeWlfIBMB72auOllNA2sLfiZPGDtOBb1ELN8lmqBrlMiucgL8awBw1zBXN69PmZM6g4yTX84TA==} engines: {node: '>=12'} @@ -2075,14 +1968,6 @@ packages: requiresBuild: true optional: true - /@esbuild/linux-s390x@0.16.4: - resolution: {integrity: sha512-pUvPQLPmbEeJRPjP0DYTC1vjHyhrnCklQmCGYbipkep+oyfTn7GTBJXoPodR7ZS5upmEyc8lzAkn2o29wD786A==} - engines: {node: '>=12'} - cpu: [s390x] - os: [linux] - requiresBuild: true - optional: true - /@esbuild/linux-s390x@0.17.12: resolution: {integrity: sha512-j3ucLdeY9HBcvODhCY4b+Ds3hWGO8t+SAidtmWu/ukfLLG/oYDMaA+dnugTVAg5fnUOGNbIYL9TOjhWgQB8W5g==} engines: {node: '>=12'} @@ -2091,14 +1976,6 @@ packages: requiresBuild: true optional: true - /@esbuild/linux-x64@0.16.4: - resolution: {integrity: sha512-N55Q0mJs3Sl8+utPRPBrL6NLYZKBCLLx0bme/+RbjvMforTGGzFvsRl4xLTZMUBFC1poDzBEPTEu5nxizQ9Nlw==} - engines: {node: '>=12'} - cpu: [x64] - os: [linux] - requiresBuild: true - optional: true - /@esbuild/linux-x64@0.17.12: resolution: {integrity: sha512-uo5JL3cgaEGotaqSaJdRfFNSCUJOIliKLnDGWaVCgIKkHxwhYMm95pfMbWZ9l7GeW9kDg0tSxcy9NYdEtjwwmA==} engines: {node: '>=12'} @@ -2107,14 +1984,6 @@ packages: requiresBuild: true optional: true - /@esbuild/netbsd-x64@0.16.4: - resolution: {integrity: sha512-LHSJLit8jCObEQNYkgsDYBh2JrJT53oJO2HVdkSYLa6+zuLJh0lAr06brXIkljrlI+N7NNW1IAXGn/6IZPi3YQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [netbsd] - requiresBuild: true - optional: true - /@esbuild/netbsd-x64@0.17.12: resolution: {integrity: sha512-DNdoRg8JX+gGsbqt2gPgkgb00mqOgOO27KnrWZtdABl6yWTST30aibGJ6geBq3WM2TIeW6COs5AScnC7GwtGPg==} engines: {node: '>=12'} @@ -2123,14 +1992,6 @@ packages: requiresBuild: true optional: true - /@esbuild/openbsd-x64@0.16.4: - resolution: {integrity: sha512-nLgdc6tWEhcCFg/WVFaUxHcPK3AP/bh+KEwKtl69Ay5IBqUwKDaq/6Xk0E+fh/FGjnLwqFSsarsbPHeKM8t8Sw==} - engines: {node: '>=12'} - cpu: [x64] - os: [openbsd] - requiresBuild: true - optional: true - /@esbuild/openbsd-x64@0.17.12: resolution: {integrity: sha512-aVsENlr7B64w8I1lhHShND5o8cW6sB9n9MUtLumFlPhG3elhNWtE7M1TFpj3m7lT3sKQUMkGFjTQBrvDDO1YWA==} engines: {node: '>=12'} @@ -2139,14 +2000,6 @@ packages: requiresBuild: true optional: true - /@esbuild/sunos-x64@0.16.4: - resolution: {integrity: sha512-08SluG24GjPO3tXKk95/85n9kpyZtXCVwURR2i4myhrOfi3jspClV0xQQ0W0PYWHioJj+LejFMt41q+PG3mlAQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [sunos] - requiresBuild: true - optional: true - /@esbuild/sunos-x64@0.17.12: resolution: {integrity: sha512-qbHGVQdKSwi0JQJuZznS4SyY27tYXYF0mrgthbxXrZI3AHKuRvU+Eqbg/F0rmLDpW/jkIZBlCO1XfHUBMNJ1pg==} engines: {node: '>=12'} @@ -2155,14 +2008,6 @@ packages: requiresBuild: true optional: true - /@esbuild/win32-arm64@0.16.4: - resolution: {integrity: sha512-yYiRDQcqLYQSvNQcBKN7XogbrSvBE45FEQdH8fuXPl7cngzkCvpsG2H9Uey39IjQ6gqqc+Q4VXYHsQcKW0OMjQ==} - engines: {node: '>=12'} - cpu: [arm64] - os: [win32] - requiresBuild: true - optional: true - /@esbuild/win32-arm64@0.17.12: resolution: {integrity: sha512-zsCp8Ql+96xXTVTmm6ffvoTSZSV2B/LzzkUXAY33F/76EajNw1m+jZ9zPfNJlJ3Rh4EzOszNDHsmG/fZOhtqDg==} engines: {node: '>=12'} @@ -2171,14 +2016,6 @@ packages: requiresBuild: true optional: true - /@esbuild/win32-ia32@0.16.4: - resolution: {integrity: sha512-5rabnGIqexekYkh9zXG5waotq8mrdlRoBqAktjx2W3kb0zsI83mdCwrcAeKYirnUaTGztR5TxXcXmQrEzny83w==} - engines: {node: '>=12'} - cpu: [ia32] - os: [win32] - requiresBuild: true - optional: true - /@esbuild/win32-ia32@0.17.12: resolution: {integrity: sha512-FfrFjR4id7wcFYOdqbDfDET3tjxCozUgbqdkOABsSFzoZGFC92UK7mg4JKRc/B3NNEf1s2WHxJ7VfTdVDPN3ng==} engines: {node: '>=12'} @@ -2187,14 +2024,6 @@ packages: requiresBuild: true optional: true - /@esbuild/win32-x64@0.16.4: - resolution: {integrity: sha512-sN/I8FMPtmtT2Yw+Dly8Ur5vQ5a/RmC8hW7jO9PtPSQUPkowxWpcUZnqOggU7VwyT3Xkj6vcXWd3V/qTXwultQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [win32] - requiresBuild: true - optional: true - /@esbuild/win32-x64@0.17.12: resolution: {integrity: sha512-JOOxw49BVZx2/5tW3FqkdjSD/5gXYeVGPDcB0lvap0gLQshkh1Nyel1QazC+wNxus3xPlsYAgqU1BUmrmCvWtw==} engines: {node: '>=12'} @@ -3106,11 +2935,11 @@ packages: /@types/chai-subset@1.3.3: resolution: {integrity: sha512-frBecisrNGz+F4T6bcc+NLeolfiojh5FxW2klu669+8BARtyQv2C/GkNW6FUodVe4BroGMP/wER/YDGc7rEllw==} dependencies: - '@types/chai': 4.3.4 + '@types/chai': 4.3.5 dev: true - /@types/chai@4.3.4: - resolution: {integrity: sha512-KnRanxnpfpjUTqTCXslZSEdLfXExwgNxYPdiO2WGUj8+HDjFi8R3k5RVKPeSCzLjCcshCAtVO2QBbVuAV4kTnw==} + /@types/chai@4.3.5: + resolution: {integrity: sha512-mEo1sAde+UCE6b2hxn332f1g1E8WfYRu6p5SvTKr2ZKC1f7gFJXk4h5PyGP9Dt6gCaG8y8XhwnXWC6Iy2cmBng==} dev: true /@types/graceful-fs@4.1.6: @@ -3160,7 +2989,7 @@ packages: '@types/yargs-parser': 21.0.0 dev: true - /@vitejs/plugin-legacy@4.0.2(terser@5.15.1)(vite@4.0.4): + /@vitejs/plugin-legacy@4.0.2(terser@5.15.1)(vite@4.3.8): resolution: {integrity: sha512-ivnt9sCkgwJTYTWLjuvY6H/HTuiQC1EgzAPkiAvi0yNAssiqOJjyjhG3hAK5LFUUorE0w9kGxn8K0f/74DlbxQ==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: @@ -3175,12 +3004,12 @@ packages: regenerator-runtime: 0.13.11 systemjs: 6.14.1 terser: 5.15.1 - vite: 4.0.4(@types/node@18.16.14)(terser@5.15.1) + vite: 4.3.8(@types/node@18.16.14)(terser@5.15.1) transitivePeerDependencies: - supports-color dev: true - /@vitejs/plugin-vue-jsx@3.0.1(vite@4.0.4)(vue@3.2.45): + /@vitejs/plugin-vue-jsx@3.0.1(vite@4.3.8)(vue@3.3.4): resolution: {integrity: sha512-+Jb7ggL48FSPS1uhPnJbJwWa9Sr90vQ+d0InW+AhBM22n+cfuYqJZDckBc+W3QSHe1WDvewMZfa4wZOtk5pRgw==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: @@ -3190,55 +3019,55 @@ packages: '@babel/core': 7.21.3 '@babel/plugin-transform-typescript': 7.21.3(@babel/core@7.21.3) '@vue/babel-plugin-jsx': 1.1.1(@babel/core@7.21.3) - vite: 4.0.4(@types/node@18.16.14)(terser@5.15.1) - vue: 3.2.45 + vite: 4.3.8(@types/node@18.16.14)(terser@5.15.1) + vue: 3.3.4 transitivePeerDependencies: - supports-color dev: true - /@vitejs/plugin-vue@4.1.0(vite@4.0.4)(vue@3.2.45): + /@vitejs/plugin-vue@4.1.0(vite@4.3.8)(vue@3.3.4): resolution: {integrity: sha512-++9JOAFdcXI3lyer9UKUV4rfoQ3T1RN8yDqoCLar86s0xQct5yblxAE+yWgRnU5/0FOlVCpTZpYSBV/bGWrSrQ==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: vite: ^4.0.0 vue: ^3.2.25 dependencies: - vite: 4.0.4(@types/node@18.16.14)(terser@5.15.1) - vue: 3.2.45 + vite: 4.3.8(@types/node@18.16.14)(terser@5.15.1) + vue: 3.3.4 - /@vitest/expect@0.30.0: - resolution: {integrity: sha512-b/jLWBqi6WQHfezWm8VjgXdIyfejAurtxqdyCdDqoToCim5W/nDxKjFAADitEHPz80oz+IP+c+wmkGKBucSpiw==} + /@vitest/expect@0.31.1: + resolution: {integrity: sha512-BV1LyNvhnX+eNYzJxlHIGPWZpwJFZaCcOIzp2CNG0P+bbetenTupk6EO0LANm4QFt0TTit+yqx7Rxd1qxi/SQA==} dependencies: - '@vitest/spy': 0.30.0 - '@vitest/utils': 0.30.0 + '@vitest/spy': 0.31.1 + '@vitest/utils': 0.31.1 chai: 4.3.7 dev: true - /@vitest/runner@0.30.0: - resolution: {integrity: sha512-Xh4xkdRcymdeRNrSwjhgarCTSgnQu2J59wsFI6i4UhKrL5whzo5+vWyq7iWK1ht3fppPeNAtvkbqUDf+OJSCbQ==} + /@vitest/runner@0.31.1: + resolution: {integrity: sha512-imWuc82ngOtxdCUpXwtEzZIuc1KMr+VlQ3Ondph45VhWoQWit5yvG/fFcldbnCi8DUuFi+NmNx5ehMUw/cGLUw==} dependencies: - '@vitest/utils': 0.30.0 + '@vitest/utils': 0.31.1 concordance: 5.0.4 p-limit: 4.0.0 pathe: 1.1.0 dev: true - /@vitest/snapshot@0.30.0: - resolution: {integrity: sha512-e4eSGCy36Bw3/Tkir9qYJDlFsUz3NALFPNJSxzlY8CFl901TV9iZdKgpqXpyG1sAhLO0tPHThBAMHRi8hRA8cg==} + /@vitest/snapshot@0.31.1: + resolution: {integrity: sha512-L3w5uU9bMe6asrNzJ8WZzN+jUTX4KSgCinEJPXyny0o90fG4FPQMV0OWsq7vrCWfQlAilMjDnOF9nP8lidsJ+g==} dependencies: magic-string: 0.30.0 pathe: 1.1.0 pretty-format: 27.5.1 dev: true - /@vitest/spy@0.30.0: - resolution: {integrity: sha512-olTWyG5gVWdfhCrdgxWQb2K3JYtj1/ZwInFFOb4GZ2HFI91PUWHWHhLRPORxwRwVvoXD1MS1162vPJZuHlKJkg==} + /@vitest/spy@0.31.1: + resolution: {integrity: sha512-1cTpt2m9mdo3hRLDyCG2hDQvRrePTDgEJBFQQNz1ydHHZy03EiA6EpFxY+7ODaY7vMRCie+WlFZBZ0/dQWyssQ==} dependencies: tinyspy: 2.1.0 dev: true - /@vitest/utils@0.30.0: - resolution: {integrity: sha512-qFZgoOKQ+rJV9xG4BBxgOSilnLQ2gkfG4I+z1wBuuQ3AD33zQrnB88kMFfzsot1E1AbF3dNK1e4CU7q3ojahRA==} + /@vitest/utils@0.31.1: + resolution: {integrity: sha512-yFyRD5ilwojsZfo3E0BnH72pSVSuLg2356cN1tCEe/0RtDzxTPYwOomIC+eQbot7m6DRy4tPZw+09mB7NkbMmA==} dependencies: concordance: 5.0.4 loupe: 2.3.6 @@ -3266,14 +3095,6 @@ packages: - supports-color dev: true - /@vue/compiler-core@3.2.45: - resolution: {integrity: sha512-rcMj7H+PYe5wBV3iYeUgbCglC+pbpN8hBLTJvRiK2eKQiWqu+fG9F+8sW99JdL4LQi7Re178UOxn09puSXvn4A==} - dependencies: - '@babel/parser': 7.21.3 - '@vue/shared': 3.2.45 - estree-walker: 2.0.2 - source-map: 0.6.1 - /@vue/compiler-core@3.2.47: resolution: {integrity: sha512-p4D7FDnQb7+YJmO2iPEv0SQNeNzcbHdGByJDsT4lynf63AFkOTFN07HsiRSvjGo0QrxR/o3d0hUyNCUnBU2Tig==} dependencies: @@ -3282,11 +3103,13 @@ packages: estree-walker: 2.0.2 source-map: 0.6.1 - /@vue/compiler-dom@3.2.45: - resolution: {integrity: sha512-tyYeUEuKqqZO137WrZkpwfPCdiiIeXYCcJ8L4gWz9vqaxzIQRccTSwSWZ/Axx5YR2z+LvpUbmPNXxuBU45lyRw==} + /@vue/compiler-core@3.3.4: + resolution: {integrity: sha512-cquyDNvZ6jTbf/+x+AgM2Arrp6G4Dzbb0R64jiG804HRMfRiFXWI6kqUVqZ6ZR0bQhIoQjB4+2bhNtVwndW15g==} dependencies: - '@vue/compiler-core': 3.2.45 - '@vue/shared': 3.2.45 + '@babel/parser': 7.21.3 + '@vue/shared': 3.3.4 + estree-walker: 2.0.2 + source-map-js: 1.0.2 /@vue/compiler-dom@3.2.47: resolution: {integrity: sha512-dBBnEHEPoftUiS03a4ggEig74J2YBZ2UIeyfpcRM2tavgMWo4bsEfgCGsu+uJIL/vax9S+JztH8NmQerUo7shQ==} @@ -3294,19 +3117,11 @@ packages: '@vue/compiler-core': 3.2.47 '@vue/shared': 3.2.47 - /@vue/compiler-sfc@3.2.45: - resolution: {integrity: sha512-1jXDuWah1ggsnSAOGsec8cFjT/K6TMZ0sPL3o3d84Ft2AYZi2jWJgRMjw4iaK0rBfA89L5gw427H4n1RZQBu6Q==} + /@vue/compiler-dom@3.3.4: + resolution: {integrity: sha512-wyM+OjOVpuUukIq6p5+nwHYtj9cFroz9cwkfmP9O1nzH68BenTTv0u7/ndggT8cIQlnBeOo6sUT/gvHcIkLA5w==} dependencies: - '@babel/parser': 7.21.3 - '@vue/compiler-core': 3.2.45 - '@vue/compiler-dom': 3.2.45 - '@vue/compiler-ssr': 3.2.45 - '@vue/reactivity-transform': 3.2.45 - '@vue/shared': 3.2.45 - estree-walker: 2.0.2 - magic-string: 0.25.9 - postcss: 8.4.21 - source-map: 0.6.1 + '@vue/compiler-core': 3.3.4 + '@vue/shared': 3.3.4 /@vue/compiler-sfc@3.2.47: resolution: {integrity: sha512-rog05W+2IFfxjMcFw10tM9+f7i/+FFpZJJ5XHX72NP9eC2uRD+42M3pYcQqDXVYoj74kHMSEdQ/WmCjt8JFksQ==} @@ -3322,11 +3137,19 @@ packages: postcss: 8.4.23 source-map: 0.6.1 - /@vue/compiler-ssr@3.2.45: - resolution: {integrity: sha512-6BRaggEGqhWht3lt24CrIbQSRD5O07MTmd+LjAn5fJj568+R9eUD2F7wMQJjX859seSlrYog7sUtrZSd7feqrQ==} + /@vue/compiler-sfc@3.3.4: + resolution: {integrity: sha512-6y/d8uw+5TkCuzBkgLS0v3lSM3hJDntFEiUORM11pQ/hKvkhSKZrXW6i69UyXlJQisJxuUEJKAWEqWbWsLeNKQ==} dependencies: - '@vue/compiler-dom': 3.2.45 - '@vue/shared': 3.2.45 + '@babel/parser': 7.21.3 + '@vue/compiler-core': 3.3.4 + '@vue/compiler-dom': 3.3.4 + '@vue/compiler-ssr': 3.3.4 + '@vue/reactivity-transform': 3.3.4 + '@vue/shared': 3.3.4 + estree-walker: 2.0.2 + magic-string: 0.30.0 + postcss: 8.4.23 + source-map-js: 1.0.2 /@vue/compiler-ssr@3.2.47: resolution: {integrity: sha512-wVXC+gszhulcMD8wpxMsqSOpvDZ6xKXSVWkf50Guf/S+28hTAXPDYRTbLQ3EDkOP5Xz/+SY37YiwDquKbJOgZw==} @@ -3334,19 +3157,16 @@ packages: '@vue/compiler-dom': 3.2.47 '@vue/shared': 3.2.47 + /@vue/compiler-ssr@3.3.4: + resolution: {integrity: sha512-m0v6oKpup2nMSehwA6Uuu+j+wEwcy7QmwMkVNVfrV9P2qE5KshC6RwOCq8fjGS/Eak/uNb8AaWekfiXxbBB6gQ==} + dependencies: + '@vue/compiler-dom': 3.3.4 + '@vue/shared': 3.3.4 + /@vue/devtools-api@6.4.5: resolution: {integrity: sha512-JD5fcdIuFxU4fQyXUu3w2KpAJHzTVdN+p4iOX2lMWSHMOoQdMAcpFLZzm9Z/2nmsoZ1a96QEhZ26e50xLBsgOQ==} dev: false - /@vue/reactivity-transform@3.2.45: - resolution: {integrity: sha512-BHVmzYAvM7vcU5WmuYqXpwaBHjsS8T63jlKGWVtHxAHIoMIlmaMyurUSEs1Zcg46M4AYT5MtB1U274/2aNzjJQ==} - dependencies: - '@babel/parser': 7.21.3 - '@vue/compiler-core': 3.2.45 - '@vue/shared': 3.2.45 - estree-walker: 2.0.2 - magic-string: 0.25.9 - /@vue/reactivity-transform@3.2.47: resolution: {integrity: sha512-m8lGXw8rdnPVVIdIFhf0LeQ/ixyHkH5plYuS83yop5n7ggVJU+z5v0zecwEnX7fa7HNLBhh2qngJJkxpwEEmYA==} dependencies: @@ -3356,62 +3176,71 @@ packages: estree-walker: 2.0.2 magic-string: 0.25.9 - /@vue/reactivity@3.2.45: - resolution: {integrity: sha512-PRvhCcQcyEVohW0P8iQ7HDcIOXRjZfAsOds3N99X/Dzewy8TVhTCT4uXpAHfoKjVTJRA0O0K+6QNkDIZAxNi3A==} + /@vue/reactivity-transform@3.3.4: + resolution: {integrity: sha512-MXgwjako4nu5WFLAjpBnCj/ieqcjE2aJBINUNQzkZQfzIZA4xn+0fV1tIYBJvvva3N3OvKGofRLvQIwEQPpaXw==} dependencies: - '@vue/shared': 3.2.45 + '@babel/parser': 7.21.3 + '@vue/compiler-core': 3.3.4 + '@vue/shared': 3.3.4 + estree-walker: 2.0.2 + magic-string: 0.30.0 - /@vue/runtime-core@3.2.45: - resolution: {integrity: sha512-gzJiTA3f74cgARptqzYswmoQx0fIA+gGYBfokYVhF8YSXjWTUA2SngRzZRku2HbGbjzB6LBYSbKGIaK8IW+s0A==} + /@vue/reactivity@3.3.4: + resolution: {integrity: sha512-kLTDLwd0B1jG08NBF3R5rqULtv/f8x3rOFByTDz4J53ttIQEDmALqKqXY0J+XQeN0aV2FBxY8nJDf88yvOPAqQ==} dependencies: - '@vue/reactivity': 3.2.45 - '@vue/shared': 3.2.45 + '@vue/shared': 3.3.4 - /@vue/runtime-dom@3.2.45: - resolution: {integrity: sha512-cy88YpfP5Ue2bDBbj75Cb4bIEZUMM/mAkDMfqDTpUYVgTf/kuQ2VQ8LebuZ8k6EudgH8pYhsGWHlY0lcxlvTwA==} + /@vue/runtime-core@3.3.4: + resolution: {integrity: sha512-R+bqxMN6pWO7zGI4OMlmvePOdP2c93GsHFM/siJI7O2nxFRzj55pLwkpCedEY+bTMgp5miZ8CxfIZo3S+gFqvA==} dependencies: - '@vue/runtime-core': 3.2.45 - '@vue/shared': 3.2.45 - csstype: 2.6.21 + '@vue/reactivity': 3.3.4 + '@vue/shared': 3.3.4 - /@vue/server-renderer@3.2.45(vue@3.2.45): - resolution: {integrity: sha512-ebiMq7q24WBU1D6uhPK//2OTR1iRIyxjF5iVq/1a5I1SDMDyDu4Ts6fJaMnjrvD3MqnaiFkKQj+LKAgz5WIK3g==} - peerDependencies: - vue: 3.2.45 + /@vue/runtime-dom@3.3.4: + resolution: {integrity: sha512-Aj5bTJ3u5sFsUckRghsNjVTtxZQ1OyMWCr5dZRAPijF/0Vy4xEoRCwLyHXcj4D0UFbJ4lbx3gPTgg06K/GnPnQ==} dependencies: - '@vue/compiler-ssr': 3.2.45 - '@vue/shared': 3.2.45 - vue: 3.2.45 + '@vue/runtime-core': 3.3.4 + '@vue/shared': 3.3.4 + csstype: 3.1.2 - /@vue/server-renderer@3.2.47(vue@3.2.45): + /@vue/server-renderer@3.2.47(vue@3.3.4): resolution: {integrity: sha512-dN9gc1i8EvmP9RCzvneONXsKfBRgqFeFZLurmHOveL7oH6HiFXJw5OGu294n1nHc/HMgTy6LulU/tv5/A7f/LA==} peerDependencies: vue: 3.2.47 dependencies: '@vue/compiler-ssr': 3.2.47 '@vue/shared': 3.2.47 - vue: 3.2.45 + vue: 3.3.4 - /@vue/shared@3.2.45: - resolution: {integrity: sha512-Ewzq5Yhimg7pSztDV+RH1UDKBzmtqieXQlpTVm2AwraoRL/Rks96mvd8Vgi7Lj+h+TH8dv7mXD3FRZR3TUvbSg==} + /@vue/server-renderer@3.3.4(vue@3.3.4): + resolution: {integrity: sha512-Q6jDDzR23ViIb67v+vM1Dqntu+HUexQcsWKhhQa4ARVzxOY2HbC7QRW/ggkDBd5BU+uM1sV6XOAP0b216o34JQ==} + peerDependencies: + vue: 3.3.4 + dependencies: + '@vue/compiler-ssr': 3.3.4 + '@vue/shared': 3.3.4 + vue: 3.3.4 /@vue/shared@3.2.47: resolution: {integrity: sha512-BHGyyGN3Q97EZx0taMQ+OLNuZcW3d37ZEVmEAyeoA9ERdGvm9Irc/0Fua8SNyOtV1w6BS4q25wbMzJujO9HIfQ==} - /@vueuse/core@9.12.0(vue@3.2.45): - resolution: {integrity: sha512-h/Di8Bvf6xRcvS/PvUVheiMYYz3U0tH3X25YxONSaAUBa841ayMwxkuzx/DGUMCW/wHWzD8tRy2zYmOC36r4sg==} + /@vue/shared@3.3.4: + resolution: {integrity: sha512-7OjdcV8vQ74eiz1TZLzZP4JwqM5fA94K6yntPS5Z25r9HDuGNzaGdgvwKYq6S+MxwF0TFRwe50fIR/MYnakdkQ==} + + /@vueuse/core@9.13.0(vue@3.3.4): + resolution: {integrity: sha512-pujnclbeHWxxPRqXWmdkKV5OX4Wk4YeK7wusHqRwU0Q7EFusHoqNA/aPhB6KCh9hEqJkLAJo7bb0Lh9b+OIVzw==} dependencies: '@types/web-bluetooth': 0.0.16 - '@vueuse/metadata': 9.12.0 - '@vueuse/shared': 9.12.0(vue@3.2.45) - vue-demi: 0.13.11(vue@3.2.45) + '@vueuse/metadata': 9.13.0 + '@vueuse/shared': 9.13.0(vue@3.3.4) + vue-demi: 0.14.5(vue@3.3.4) transitivePeerDependencies: - '@vue/composition-api' - vue dev: false - /@vueuse/integrations@9.12.0(axios@1.2.6)(vue@3.2.45): - resolution: {integrity: sha512-bu0hOQAqg7A8S33RHpr49LuzVQJ4tK4oyimEfhPFGUVqmz/MMcwPH8Lde+MbVXvfYh2hrtwNv9S38pCmonRx4w==} + /@vueuse/integrations@9.13.0(axios@1.4.0)(vue@3.3.4): + resolution: {integrity: sha512-I1kX/tsfcvWWLZD7HZaP0LsSfchK13YxReLfharXhk72SFXp87doLbRaTfIF5w8m/gr/vPtcNyQPAXW7Ubpuww==} peerDependencies: async-validator: '*' axios: '*' @@ -3448,23 +3277,23 @@ packages: universal-cookie: optional: true dependencies: - '@vueuse/core': 9.12.0(vue@3.2.45) - '@vueuse/shared': 9.12.0(vue@3.2.45) - axios: 1.2.6 - vue-demi: 0.13.11(vue@3.2.45) + '@vueuse/core': 9.13.0(vue@3.3.4) + '@vueuse/shared': 9.13.0(vue@3.3.4) + axios: 1.4.0 + vue-demi: 0.14.5(vue@3.3.4) transitivePeerDependencies: - '@vue/composition-api' - vue dev: false - /@vueuse/metadata@9.12.0: - resolution: {integrity: sha512-9oJ9MM9lFLlmvxXUqsR1wLt1uF7EVbP5iYaHJYqk+G2PbMjY6EXvZeTjbdO89HgoF5cI6z49o2zT/jD9SVoNpQ==} + /@vueuse/metadata@9.13.0: + resolution: {integrity: sha512-gdU7TKNAUVlXXLbaF+ZCfte8BjRJQWPCa2J55+7/h+yDtzw3vOoGQDRXzI6pyKyo6bXFT5/QoPE4hAknExjRLQ==} dev: false - /@vueuse/shared@9.12.0(vue@3.2.45): - resolution: {integrity: sha512-TWuJLACQ0BVithVTRbex4Wf1a1VaRuSpVeyEd4vMUWl54PzlE0ciFUshKCXnlLuD0lxIaLK4Ypj3NXYzZh4+SQ==} + /@vueuse/shared@9.13.0(vue@3.3.4): + resolution: {integrity: sha512-UrnhU+Cnufu4S6JLCPZnkWh0WwZGUp72ktOF2DFptMlOs3TOdVv8xJN53zhHGARmVOsz5KqOls09+J1NR6sBKw==} dependencies: - vue-demi: 0.13.11(vue@3.2.45) + vue-demi: 0.14.5(vue@3.3.4) transitivePeerDependencies: - '@vue/composition-api' - vue @@ -3637,16 +3466,6 @@ packages: postcss: 8.4.23 postcss-value-parser: 4.2.0 - /axios@1.2.6: - resolution: {integrity: sha512-rC/7F08XxZwjMV4iuWv+JpD3E0Ksqg9nac4IIg6RwNuF0JTeWoCo/mBNG54+tNhhI11G3/VDRbdDQTs9hGp4pQ==} - dependencies: - follow-redirects: 1.15.2 - form-data: 4.0.0 - proxy-from-env: 1.1.0 - transitivePeerDependencies: - - debug - dev: false - /axios@1.4.0: resolution: {integrity: sha512-S4XCWMEmzvo64T9GfvQDOXgYRDJ/wsSZc7Jvdgx5u1sd0JwsuPLqb3SYmusag+edF6ziyMensPVqLTSc1PiSEA==} dependencies: @@ -3655,7 +3474,6 @@ packages: proxy-from-env: 1.1.0 transitivePeerDependencies: - debug - dev: true /babel-jest@27.5.1(@babel/core@7.21.3): resolution: {integrity: sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==} @@ -4186,8 +4004,8 @@ packages: cssom: 0.3.8 dev: true - /csstype@2.6.21: - resolution: {integrity: sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w==} + /csstype@3.1.2: + resolution: {integrity: sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==} /data-urls@2.0.0: resolution: {integrity: sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==} @@ -4358,35 +4176,6 @@ packages: /es-module-lexer@0.9.3: resolution: {integrity: sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==} - /esbuild@0.16.4: - resolution: {integrity: sha512-qQrPMQpPTWf8jHugLWHoGqZjApyx3OEm76dlTXobHwh/EBbavbRdjXdYi/GWr43GyN0sfpap14GPkb05NH3ROA==} - engines: {node: '>=12'} - hasBin: true - requiresBuild: true - optionalDependencies: - '@esbuild/android-arm': 0.16.4 - '@esbuild/android-arm64': 0.16.4 - '@esbuild/android-x64': 0.16.4 - '@esbuild/darwin-arm64': 0.16.4 - '@esbuild/darwin-x64': 0.16.4 - '@esbuild/freebsd-arm64': 0.16.4 - '@esbuild/freebsd-x64': 0.16.4 - '@esbuild/linux-arm': 0.16.4 - '@esbuild/linux-arm64': 0.16.4 - '@esbuild/linux-ia32': 0.16.4 - '@esbuild/linux-loong64': 0.16.4 - '@esbuild/linux-mips64el': 0.16.4 - '@esbuild/linux-ppc64': 0.16.4 - '@esbuild/linux-riscv64': 0.16.4 - '@esbuild/linux-s390x': 0.16.4 - '@esbuild/linux-x64': 0.16.4 - '@esbuild/netbsd-x64': 0.16.4 - '@esbuild/openbsd-x64': 0.16.4 - '@esbuild/sunos-x64': 0.16.4 - '@esbuild/win32-arm64': 0.16.4 - '@esbuild/win32-ia32': 0.16.4 - '@esbuild/win32-x64': 0.16.4 - /esbuild@0.17.12: resolution: {integrity: sha512-bX/zHl7Gn2CpQwcMtRogTTBf9l1nl+H6R8nUbjk+RuKqAE3+8FDulLA+pHvX7aA7Xe07Iwa+CWvy9I8Y2qqPKQ==} engines: {node: '>=12'} @@ -5951,7 +5740,6 @@ packages: engines: {node: '>=12'} dependencies: '@jridgewell/sourcemap-codec': 1.4.14 - dev: true /make-dir@3.1.0: resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==} @@ -6520,14 +6308,6 @@ packages: /postcss-value-parser@4.2.0: resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} - /postcss@8.4.21: - resolution: {integrity: sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==} - engines: {node: ^10 || ^12 || >=14} - dependencies: - nanoid: 3.3.6 - picocolors: 1.0.0 - source-map-js: 1.0.2 - /postcss@8.4.23: resolution: {integrity: sha512-bQ3qMcpF6A/YjR55xtoTr0jGOlnPOKAIMdOWiv0EIT6HVPEaJiJB4NLljSbiHoC2RX7DN5Uvjtpbg1NPdwv1oA==} engines: {node: ^10 || ^12 || >=14} @@ -6750,7 +6530,6 @@ packages: hasBin: true optionalDependencies: fsevents: 2.3.2 - dev: true /rollup@3.7.2: resolution: {integrity: sha512-orqIX5zkHyHKVsIBl8J5a2tnVikOAMte0DgOLViyW6McYuj45FG+cQPrXILhaifBSmy0D0hKbHg2RbgzFJcwTg==} @@ -6758,6 +6537,7 @@ packages: hasBin: true optionalDependencies: fsevents: 2.3.2 + dev: true /run-parallel@1.2.0: resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} @@ -7134,16 +6914,16 @@ packages: resolution: {integrity: sha512-IjZc9KIotudix8bMaBW6QvMuq64BrJWFs1+4V0lXwWGQZwH+LnX87doAYhem4caOEusRP9/g6jVDQmZ8XOk1nw==} dev: false - /tinybench@2.4.0: - resolution: {integrity: sha512-iyziEiyFxX4kyxSp+MtY1oCH/lvjH3PxFN8PGCDeqcZWAJ/i+9y+nL85w99PxVzrIvew/GSkSbDYtiGVa85Afg==} + /tinybench@2.5.0: + resolution: {integrity: sha512-kRwSG8Zx4tjF9ZiyH4bhaebu+EDz1BOx9hOigYHlUW4xxI/wKIUQUqo018UlU4ar6ATPBsaMrdbKZ+tmPdohFA==} dev: true /tinycolor2@1.6.0: resolution: {integrity: sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==} dev: false - /tinypool@0.4.0: - resolution: {integrity: sha512-2ksntHOKf893wSAH4z/+JbPpi92esw8Gn9N2deXX+B0EO92hexAVI9GIZZPx7P5aYo5KULfeOSt3kMOmSOy6uA==} + /tinypool@0.5.0: + resolution: {integrity: sha512-paHQtnrlS1QZYKF/GnLoOM/DN9fqaGOFbCbxzAhwniySnzl9Ebk8w73/dd34DAhe/obUbPAOldTyYXQZxnPBPQ==} engines: {node: '>=14.0.0'} dev: true @@ -7282,12 +7062,6 @@ packages: is-typedarray: 1.0.0 dev: true - /typescript@4.9.4: - resolution: {integrity: sha512-Uz+dTXYzxXXbsFpM86Wh3dKCxrQqUcVMxwU54orwlJjOpO3ao8L7j5lH+dWfTwgCwIuM9GQ2kvVotzYJMXTBZg==} - engines: {node: '>=4.2.0'} - hasBin: true - dev: true - /typescript@5.0.4: resolution: {integrity: sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw==} engines: {node: '>=12.20'} @@ -7390,8 +7164,8 @@ packages: engines: {node: '>= 0.8'} dev: true - /vite-node@0.30.0(@types/node@18.16.14)(terser@5.15.1): - resolution: {integrity: sha512-23X5Ggylx0kU/bMf8MCcEEl55d/gsTtU81mMZjm7Z0FSpgKZexUqmX3mJtgglP9SySQQs9ydYg/GEahi/cKHaA==} + /vite-node@0.31.1(@types/node@18.16.14)(terser@5.15.1): + resolution: {integrity: sha512-BajE/IsNQ6JyizPzu9zRgHrBwczkAs0erQf/JRpgTIESpKvNj9/Gd0vxX905klLkb0I0SJVCKbdrl5c6FnqYKA==} engines: {node: '>=v14.18.0'} hasBin: true dependencies: @@ -7411,40 +7185,6 @@ packages: - terser dev: true - /vite@4.0.4(@types/node@18.16.14)(terser@5.15.1): - resolution: {integrity: sha512-xevPU7M8FU0i/80DMR+YhgrzR5KS2ORy1B4xcX/cXLsvnUWvfHuqMmVU6N0YiJ4JWGRJJsLCgjEzKjG9/GKoSw==} - engines: {node: ^14.18.0 || >=16.0.0} - hasBin: true - peerDependencies: - '@types/node': '>= 14' - less: '*' - sass: '*' - stylus: '*' - sugarss: '*' - terser: ^5.4.0 - peerDependenciesMeta: - '@types/node': - optional: true - less: - optional: true - sass: - optional: true - stylus: - optional: true - sugarss: - optional: true - terser: - optional: true - dependencies: - '@types/node': 18.16.14 - esbuild: 0.16.4 - postcss: 8.4.21 - resolve: 1.22.1 - rollup: 3.7.2 - terser: 5.15.1 - optionalDependencies: - fsevents: 2.3.2 - /vite@4.3.8(@types/node@18.16.14)(terser@5.15.1): resolution: {integrity: sha512-uYB8PwN7hbMrf4j1xzGDk/lqjsZvCDbt/JC5dyfxc19Pg8kRm14LinK/uq+HSLNswZEoKmweGdtpbnxRtrAXiQ==} engines: {node: ^14.18.0 || >=16.0.0} @@ -7477,10 +7217,9 @@ packages: terser: 5.15.1 optionalDependencies: fsevents: 2.3.2 - dev: true - /vitest@0.30.0(terser@5.15.1): - resolution: {integrity: sha512-2WW4WeTHtrLFeoiuotWvEW6khozx1NvMGYoGsNz2btdddEbqvEdPJIouIdoiC5i61Rl1ctZvm9cn2R9TcPQlzw==} + /vitest@0.31.1(terser@5.15.1): + resolution: {integrity: sha512-/dOoOgzoFk/5pTvg1E65WVaobknWREN15+HF+0ucudo3dDG/vCZoXTQrjIfEaWvQXmqScwkRodrTbM/ScMpRcQ==} engines: {node: '>=v14.18.0'} hasBin: true peerDependencies: @@ -7510,14 +7249,14 @@ packages: webdriverio: optional: true dependencies: - '@types/chai': 4.3.4 + '@types/chai': 4.3.5 '@types/chai-subset': 1.3.3 '@types/node': 18.16.14 - '@vitest/expect': 0.30.0 - '@vitest/runner': 0.30.0 - '@vitest/snapshot': 0.30.0 - '@vitest/spy': 0.30.0 - '@vitest/utils': 0.30.0 + '@vitest/expect': 0.31.1 + '@vitest/runner': 0.31.1 + '@vitest/snapshot': 0.31.1 + '@vitest/spy': 0.31.1 + '@vitest/utils': 0.31.1 acorn: 8.8.2 acorn-walk: 8.2.0 cac: 6.7.14 @@ -7528,13 +7267,12 @@ packages: magic-string: 0.30.0 pathe: 1.1.0 picocolors: 1.0.0 - source-map: 0.6.1 std-env: 3.3.2 strip-literal: 1.0.1 - tinybench: 2.4.0 - tinypool: 0.4.0 + tinybench: 2.5.0 + tinypool: 0.5.0 vite: 4.3.8(@types/node@18.16.14)(terser@5.15.1) - vite-node: 0.30.0(@types/node@18.16.14)(terser@5.15.1) + vite-node: 0.31.1(@types/node@18.16.14)(terser@5.15.1) why-is-node-running: 2.2.2 transitivePeerDependencies: - less @@ -7545,8 +7283,8 @@ packages: - terser dev: true - /vue-demi@0.13.11(vue@3.2.45): - resolution: {integrity: sha512-IR8HoEEGM65YY3ZJYAjMlKygDQn25D5ajNFNoKh9RSDMQtlzCxtfQjdQgv9jjK+m3377SsJXY8ysq8kLCZL25A==} + /vue-demi@0.14.5(vue@3.3.4): + resolution: {integrity: sha512-o9NUVpl/YlsGJ7t+xuqJKx8EBGf1quRhCiT6D/J0pfwmk9zUwYkC7yrF4SZCe6fETvSM3UNL2edcbYrSyc4QHA==} engines: {node: '>=12'} hasBin: true requiresBuild: true @@ -7557,10 +7295,10 @@ packages: '@vue/composition-api': optional: true dependencies: - vue: 3.2.45 + vue: 3.3.4 dev: false - /vue-i18n@9.2.2(vue@3.2.45): + /vue-i18n@9.2.2(vue@3.3.4): resolution: {integrity: sha512-yswpwtj89rTBhegUAv9Mu37LNznyu3NpyLQmozF3i1hYOhwpG8RjcjIFIIfnu+2MDZJGSZPXaKWvnQA71Yv9TQ==} engines: {node: '>= 14'} peerDependencies: @@ -7570,26 +7308,26 @@ packages: '@intlify/shared': 9.2.2 '@intlify/vue-devtools': 9.2.2 '@vue/devtools-api': 6.4.5 - vue: 3.2.45 + vue: 3.3.4 dev: false - /vue-router@4.1.6(vue@3.2.45): + /vue-router@4.1.6(vue@3.3.4): resolution: {integrity: sha512-DYWYwsG6xNPmLq/FmZn8Ip+qrhFEzA14EI12MsMgVxvHFDYvlr4NXpVF5hrRH1wVcDP8fGi5F4rxuJSl8/r+EQ==} peerDependencies: vue: ^3.2.0 dependencies: '@vue/devtools-api': 6.4.5 - vue: 3.2.45 + vue: 3.3.4 dev: false - /vue@3.2.45: - resolution: {integrity: sha512-9Nx/Mg2b2xWlXykmCwiTUCWHbWIj53bnkizBxKai1g61f2Xit700A1ljowpTIM11e3uipOeiPcSqnmBg6gyiaA==} + /vue@3.3.4: + resolution: {integrity: sha512-VTyEYn3yvIeY1Py0WaYGZsXnz3y5UnGi62GjVEqvEGPl6nxbOrCXbVOTQWBEJUqAyTUk2uJ5JLVnYJ6ZzGbrSw==} dependencies: - '@vue/compiler-dom': 3.2.45 - '@vue/compiler-sfc': 3.2.45 - '@vue/runtime-dom': 3.2.45 - '@vue/server-renderer': 3.2.45(vue@3.2.45) - '@vue/shared': 3.2.45 + '@vue/compiler-dom': 3.3.4 + '@vue/compiler-sfc': 3.3.4 + '@vue/runtime-dom': 3.3.4 + '@vue/server-renderer': 3.3.4(vue@3.3.4) + '@vue/shared': 3.3.4 /w3c-hr-time@1.0.2: resolution: {integrity: sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==}