From cef8aa514f0433d215ad981b248b3bc57ec4ba0d Mon Sep 17 00:00:00 2001 From: DarkPhoenix2704 Date: Mon, 2 Dec 2024 09:13:56 +0530 Subject: [PATCH] fix: update configs --- build-local-docker-image.sh | 2 +- packages/nocodb-sdk/src/lib/Api.ts | 25 + packages/nocodb/package.json | 5 +- packages/nocodb/rspack.cli.config.js | 10 +- packages/nocodb/rspack.config.js | 26 +- packages/nocodb/rspack.dev.config.js | 8 +- packages/nocodb/rspack.local.config.js | 85 --- packages/nocodb/rspack.timely.config.js | 8 + pnpm-lock.yaml | 813 +++++++++++++----------- 9 files changed, 512 insertions(+), 470 deletions(-) delete mode 100644 packages/nocodb/rspack.local.config.js diff --git a/build-local-docker-image.sh b/build-local-docker-image.sh index b269185f9e..c6fd2878b8 100755 --- a/build-local-docker-image.sh +++ b/build-local-docker-image.sh @@ -45,7 +45,7 @@ function copy_gui_artifacts() { function package_nocodb() { # build nocodb ( pack nocodb-sdk and nc-gui ) cd ${SCRIPT_DIR}/packages/nocodb - EE=true ${SCRIPT_DIR}/node_modules/.bin/webpack --config ${SCRIPT_DIR}/packages/nocodb/webpack.local.config.js || ERROR="package_nocodb failed" + EE=true ${SCRIPT_DIR}/node_modules/@rspack/cli/bin --config ${SCRIPT_DIR}/packages/nocodb/rspack.config.js || ERROR="package_nocodb failed" } function build_image() { diff --git a/packages/nocodb-sdk/src/lib/Api.ts b/packages/nocodb-sdk/src/lib/Api.ts index b0358b64ba..aeeebea37d 100644 --- a/packages/nocodb-sdk/src/lib/Api.ts +++ b/packages/nocodb-sdk/src/lib/Api.ts @@ -3293,6 +3293,31 @@ export interface ExtensionType { order?: number; } +/** + * Model for Snapshot + */ +export interface SnapshotType { + /** Unique ID */ + id?: IdType; + /** Title of the Snapshot */ + title?: string; + /** Foreign Key to Base */ + base_id?: IdType; + /** Foreign Key to Snapshot Base */ + snapshot_base_id?: IdType; + /** Foreign Key to Workspace */ + fk_workspace_id?: IdType; + /** + * Date of creation + * @format date + */ + created_at?: string; + /** User ID of the creator */ + created_by?: IdType; + /** Status of the Snapshot */ + status?: string; +} + export interface ExtensionReqType { /** Unique Base ID */ base_id?: IdType; diff --git a/packages/nocodb/package.json b/packages/nocodb/package.json index 3852a9d258..7375c40193 100644 --- a/packages/nocodb/package.json +++ b/packages/nocodb/package.json @@ -165,8 +165,8 @@ "@nestjs/schematics": "^10.1.1", "@nestjs/testing": "^10.3.8", "@nestjsplus/dyn-schematics": "^1.0.12", - "@rspack/cli": "^1.1.1", - "@rspack/core": "^1.1.1", + "@rspack/cli": "^1.1.4", + "@rspack/core": "^1.1.4", "@swc-node/register": "^1.10.9", "@types/content-disposition": "^0.5.8", "@types/ejs": "^3.1.5", @@ -192,7 +192,6 @@ "jest": "29.7.0", "mocha": "^10.3.0", "node-loader": "^2.1.0", - "nodemon": "^3.0.3", "prettier": "^2.8.8", "run-script-webpack-plugin": "^0.2.0", "supertest": "^6.3.4", diff --git a/packages/nocodb/rspack.cli.config.js b/packages/nocodb/rspack.cli.config.js index 48786db9a6..667461e44d 100644 --- a/packages/nocodb/rspack.cli.config.js +++ b/packages/nocodb/rspack.cli.config.js @@ -31,9 +31,11 @@ module.exports = { ], nodeEnv: false, }, - externals: [nodeExternals({ - allowlist: ['nocodb-sdk'] - })], + externals: [ + nodeExternals({ + allowlist: ['nocodb-sdk'], + }), + ], resolve: { extensions: ['.tsx', '.ts', '.js', '.json'], tsConfig: { @@ -61,4 +63,4 @@ module.exports = { }), ], target: 'node', -}; +}; \ No newline at end of file diff --git a/packages/nocodb/rspack.config.js b/packages/nocodb/rspack.config.js index bd6d53632d..c05b016bcc 100644 --- a/packages/nocodb/rspack.config.js +++ b/packages/nocodb/rspack.config.js @@ -1,6 +1,7 @@ const path = require('path'); const { rspack } = require('@rspack/core'); const nodeExternals = require('webpack-node-externals'); +const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin'); module.exports = { entry: './src/index.ts', @@ -18,6 +19,7 @@ module.exports = { exclude: /node_modules/, loader: 'builtin:swc-loader', options: { + sourceMap: false, jsc: { parser: { syntax: 'typescript', @@ -30,9 +32,16 @@ module.exports = { decoratorMetadata: true, }, target: 'es2017', + loose: true, + externalHelpers: false, + keepClassNames: true, }, module: { type: 'commonjs', + strict: false, + strictMode: true, + lazy: false, + noInterop: false, }, }, }, @@ -52,11 +61,13 @@ module.exports = { ], nodeEnv: false, }, - externals: [nodeExternals({ - allowlist: ['nocodb-sdk'] - })], + externals: [ + nodeExternals({ + allowlist: ['nocodb-sdk'], + }), + ], resolve: { - extensions: ['.tsx', '.ts', '.js', '.json'], + extensions: ['.tsx', '.ts', '.js', '.json', '.node'], tsConfig: { configFile: path.resolve('tsconfig.json'), }, @@ -79,6 +90,11 @@ module.exports = { new rspack.CopyRspackPlugin({ patterns: [{ from: 'src/public', to: 'public' }], }), + new ForkTsCheckerWebpackPlugin({ + typescript: { + configFile: resolve('./src/tsconfig.build.json'), + }, + }) ], target: 'node', -}; +}; \ No newline at end of file diff --git a/packages/nocodb/rspack.dev.config.js b/packages/nocodb/rspack.dev.config.js index 647f327733..76c27a8f3c 100644 --- a/packages/nocodb/rspack.dev.config.js +++ b/packages/nocodb/rspack.dev.config.js @@ -1,8 +1,8 @@ -const { join, resolve } = require('path'); +const { join } = require('path'); const { rspack } = require('@rspack/core'); +const nodeExternals = require('webpack-node-externals'); const { RunScriptWebpackPlugin } = require('run-script-webpack-plugin'); const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin'); -const nodeExternals = require('webpack-node-externals'); const baseDevConfig = { mode: 'development', @@ -53,7 +53,7 @@ const baseDevConfig = { externals: [ nodeExternals({ allowlist: ['webpack/hot/poll?1000'], - }) + }), ], resolve: { extensions: ['.tsx', '.ts', '.js', '.json', '.node'], @@ -102,4 +102,4 @@ const baseDevConfig = { }, }; -module.exports = baseDevConfig; +module.exports = baseDevConfig; \ No newline at end of file diff --git a/packages/nocodb/rspack.local.config.js b/packages/nocodb/rspack.local.config.js deleted file mode 100644 index 5d20c565fe..0000000000 --- a/packages/nocodb/rspack.local.config.js +++ /dev/null @@ -1,85 +0,0 @@ -const path = require('path'); -const { rspack } = require('@rspack/core'); -const nodeExternals = require('webpack-node-externals'); - -module.exports = { - entry: './src/run/local.ts', - // devtool: 'inline-source-map', - module: { - rules: [ - { - test: /\.node$/, - loader: 'node-loader', - options: { - name: '[path][name].[ext]', - }, - }, - { - test: /\.tsx?$/, - exclude: /node_modules/, - loader: 'builtin:swc-loader', - options: { - jsc: { - parser: { - syntax: 'typescript', - tsx: true, - decorators: true, - dynamicImport: true, - }, - transform: { - legacyDecorator: true, - decoratorMetadata: true, - }, - target: 'es2017', - }, - module: { - type: 'commonjs', - }, - }, - }, - ], - }, - - optimization: { - minimize: true, //Update this to true or false - minimizer: [ - new rspack.SwcJsMinimizerRspackPlugin({ - minimizerOptions: { - compress: { - keep_classnames: true, - }, - }, - }), - ], - nodeEnv: false, - }, - externals: [ - nodeExternals({ - allowlist: ['nocodb-sdk'], - }), - ], - resolve: { - extensions: ['.tsx', '.ts', '.js', '.json', '.node'], - tsConfig: { - configFile: path.resolve('tsconfig.json'), - }, - }, - mode: 'production', - output: { - filename: 'main.js', - path: path.resolve(__dirname, 'docker'), - library: 'libs', - libraryTarget: 'umd', - globalObject: "typeof self !== 'undefined' ? self : this", - }, - node: { - __dirname: false, - }, - plugins: [ - new rspack.EnvironmentPlugin({ - EE: true, - }), - ], - - target: 'node', -}; diff --git a/packages/nocodb/rspack.timely.config.js b/packages/nocodb/rspack.timely.config.js index 4d3018167c..136cf31113 100644 --- a/packages/nocodb/rspack.timely.config.js +++ b/packages/nocodb/rspack.timely.config.js @@ -18,6 +18,7 @@ module.exports = { exclude: /node_modules/, loader: 'builtin:swc-loader', options: { + sourceMap: false, jsc: { parser: { syntax: 'typescript', @@ -30,9 +31,16 @@ module.exports = { decoratorMetadata: true, }, target: 'es2017', + loose: true, + externalHelpers: false, + keepClassNames: true, }, module: { type: 'commonjs', + strict: false, + strictMode: true, + lazy: false, + noInterop: false, }, }, }, diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 1761fefdee..29d9d6f785 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -418,7 +418,7 @@ importers: version: 2.4.6 '@vueuse/nuxt': specifier: ^10.7.2 - version: 10.7.2(nuxt@3.11.2(@opentelemetry/api@1.4.1)(@parcel/watcher@2.4.1)(@types/node@20.11.30)(@unocss/reset@0.58.9)(async-validator@4.2.5)(axios@1.6.8)(encoding@0.1.13)(eslint@8.56.0)(floating-vue@5.2.2(@nuxt/kit@3.13.2(magicast@0.3.4)(rollup@4.17.2)(webpack-sources@3.2.3))(vue@3.5.13(typescript@5.6.2)))(fuse.js@6.6.2)(ioredis@5.4.1)(jwt-decode@3.1.2)(nprogress@0.2.0)(optionator@0.9.3)(qrcode@1.5.3)(rollup@4.17.2)(sass@1.71.1)(sortablejs@1.15.2)(terser@5.27.0)(typescript@5.6.2)(unocss@0.58.9(@unocss/webpack@0.58.9(rollup@4.17.2)(webpack@5.91.0(esbuild@0.20.2)))(postcss@8.4.47)(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0)))(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0))(xml2js@0.6.2))(rollup@4.17.2)(vue@3.5.13(typescript@5.6.2)) + version: 10.7.2(nuxt@3.11.2(@opentelemetry/api@1.4.1)(@parcel/watcher@2.4.1)(@types/node@20.11.30)(@unocss/reset@0.58.9)(async-validator@4.2.5)(axios@1.6.8)(encoding@0.1.13)(eslint@8.56.0)(floating-vue@5.2.2(@nuxt/kit@3.13.2(magicast@0.3.4)(rollup@4.17.2)(webpack-sources@3.2.3))(vue@3.5.13(typescript@5.6.2)))(fuse.js@6.6.2)(ioredis@5.4.1)(jwt-decode@3.1.2)(nprogress@0.2.0)(optionator@0.9.3)(qrcode@1.5.3)(rollup@4.17.2)(sass@1.71.1)(sortablejs@1.15.2)(terser@5.27.0)(typescript@5.6.2)(unocss@0.58.9(@unocss/webpack@0.58.9(rollup@4.17.2)(webpack@5.91.0(@swc/core@1.9.2)(esbuild@0.20.2)))(postcss@8.4.47)(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0)))(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0))(xml2js@0.6.2))(rollup@4.17.2)(vue@3.5.13(typescript@5.6.2)) '@windicss/plugin-animations': specifier: ^1.0.9 version: 1.0.9 @@ -442,7 +442,7 @@ importers: version: 6.0.4(encoding@0.1.13) nuxt: specifier: ^3.11.2 - version: 3.11.2(@opentelemetry/api@1.4.1)(@parcel/watcher@2.4.1)(@types/node@20.11.30)(@unocss/reset@0.58.9)(async-validator@4.2.5)(axios@1.6.8)(encoding@0.1.13)(eslint@8.56.0)(floating-vue@5.2.2(@nuxt/kit@3.13.2(magicast@0.3.4)(rollup@4.17.2)(webpack-sources@3.2.3))(vue@3.5.13(typescript@5.6.2)))(fuse.js@6.6.2)(ioredis@5.4.1)(jwt-decode@3.1.2)(nprogress@0.2.0)(optionator@0.9.3)(qrcode@1.5.3)(rollup@4.17.2)(sass@1.71.1)(sortablejs@1.15.2)(terser@5.27.0)(typescript@5.6.2)(unocss@0.58.9(@unocss/webpack@0.58.9(rollup@4.17.2)(webpack@5.91.0(esbuild@0.20.2)))(postcss@8.4.47)(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0)))(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0))(xml2js@0.6.2) + version: 3.11.2(@opentelemetry/api@1.4.1)(@parcel/watcher@2.4.1)(@types/node@20.11.30)(@unocss/reset@0.58.9)(async-validator@4.2.5)(axios@1.6.8)(encoding@0.1.13)(eslint@8.56.0)(floating-vue@5.2.2(@nuxt/kit@3.13.2(magicast@0.3.4)(rollup@4.17.2)(webpack-sources@3.2.3))(vue@3.5.13(typescript@5.6.2)))(fuse.js@6.6.2)(ioredis@5.4.1)(jwt-decode@3.1.2)(nprogress@0.2.0)(optionator@0.9.3)(qrcode@1.5.3)(rollup@4.17.2)(sass@1.71.1)(sortablejs@1.15.2)(terser@5.27.0)(typescript@5.6.2)(unocss@0.58.9(@unocss/webpack@0.58.9(rollup@4.17.2)(webpack@5.91.0(@swc/core@1.9.2)(esbuild@0.20.2)))(postcss@8.4.47)(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0)))(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0))(xml2js@0.6.2) nuxt-windicss: specifier: ^2.6.1 version: 2.6.1(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0)) @@ -552,7 +552,7 @@ importers: version: 5.0.8(eslint@8.56.0)(typescript@5.6.2) eslint-plugin-import: specifier: ^2.29.1 - version: 2.29.1(@typescript-eslint/parser@6.21.0(eslint@8.56.0)(typescript@5.4.5))(eslint@8.56.0) + version: 2.29.1(eslint@8.56.0) eslint-plugin-prettier: specifier: ^4.2.1 version: 4.2.1(eslint-config-prettier@8.10.0(eslint@8.56.0))(eslint@8.56.0)(prettier@2.8.8) @@ -921,11 +921,11 @@ importers: specifier: ^1.0.12 version: 1.0.12 '@rspack/cli': - specifier: ^1.1.1 - version: 1.1.1(@rspack/core@1.1.1)(@types/express@4.17.21)(debug@4.3.4)(webpack@5.90.1(@swc/core@1.9.2)) + specifier: ^1.1.4 + version: 1.1.4(@rspack/core@1.1.4)(@types/express@4.17.21)(debug@4.3.4)(webpack@5.90.1(@swc/core@1.9.2)) '@rspack/core': - specifier: ^1.1.1 - version: 1.1.1 + specifier: ^1.1.4 + version: 1.1.4 '@swc-node/register': specifier: ^1.10.9 version: 1.10.9(@swc/core@1.9.2)(@swc/types@0.1.15)(typescript@5.4.5) @@ -1001,9 +1001,6 @@ importers: node-loader: specifier: ^2.1.0 version: 2.1.0(webpack@5.90.1(@swc/core@1.9.2)) - nodemon: - specifier: ^3.0.3 - version: 3.0.3 prettier: specifier: ^2.8.8 version: 2.8.8 @@ -1024,7 +1021,7 @@ importers: dependencies: axios: specifier: ^1.6.8 - version: 1.6.8(debug@4.3.4) + version: 1.6.8 dayjs: specifier: ^1.11.11 version: 1.11.11 @@ -1735,6 +1732,10 @@ packages: resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==} engines: {node: '>=6.9.0'} + '@babel/helper-string-parser@7.24.8': + resolution: {integrity: sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==} + engines: {node: '>=6.9.0'} + '@babel/helper-string-parser@7.25.7': resolution: {integrity: sha512-CbkjYdsJNHFk8uqpEkpCvRs3YRp9tY6FmFY7wLMSYuGYkrdUi7r2lc4/wqsvlHoMznX3WJ9IP8giGPq68T/Y6g==} engines: {node: '>=6.9.0'} @@ -1743,6 +1744,10 @@ packages: resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==} engines: {node: '>=6.9.0'} + '@babel/helper-validator-identifier@7.24.7': + resolution: {integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==} + engines: {node: '>=6.9.0'} + '@babel/helper-validator-identifier@7.25.7': resolution: {integrity: sha512-AM6TzwYqGChO45oiuPqwL2t20/HdMC1rTPAesnBCgPCSF1x3oN9MVUwQV2iyz4xqWrctwK5RNC8LV22kaQCNYg==} engines: {node: '>=6.9.0'} @@ -1769,6 +1774,11 @@ packages: engines: {node: '>=6.0.0'} hasBin: true + '@babel/parser@7.24.7': + resolution: {integrity: sha512-9uUYRm6OqQrCqQdG1iCBwBPZgN8ciDBro2nIOFaiRz1/BCxaI7CNvQbDHvsArAC7Tw9Hda/B3U+6ui9u4HWXPw==} + engines: {node: '>=6.0.0'} + hasBin: true + '@babel/parser@7.25.7': resolution: {integrity: sha512-aZn7ETtQsjjGG5HruveUK06cU3Hljuhd9Iojm4M8WWv3wLE6OkE5PWbDUkItmMgegmccaITudyuW5RPYrYlgWw==} engines: {node: '>=6.0.0'} @@ -1907,6 +1917,10 @@ packages: resolution: {integrity: sha512-YuGopBq3ke25BVSiS6fgF49Ul9gH1x70Bcr6bqRLjWCkcX8Hre1/5+z+IiWOIerRMSSEfGZVB9z9kyq7wVs9YA==} engines: {node: '>=6.9.0'} + '@babel/types@7.24.0': + resolution: {integrity: sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w==} + engines: {node: '>=6.9.0'} + '@babel/types@7.25.6': resolution: {integrity: sha512-/l42B1qxpG6RdfYf343Uw1vmDjeNhneUXtzhojE7pDgfpEypmRhI6j1kr17XCVv4Cgl9HdAiQY2x0GwKm7rWCw==} engines: {node: '>=6.9.0'} @@ -4210,62 +4224,62 @@ packages: cpu: [x64] os: [win32] - '@rspack/binding-darwin-arm64@1.1.1': - resolution: {integrity: sha512-BnvGPWObGZ2ZVnxe4K3NKwAWxYubOJvfwporXWD3NgkzeV5xJqGBFWRDnr/nfsFpgCTI8goxK5db/wb7NVzLqg==} + '@rspack/binding-darwin-arm64@1.1.4': + resolution: {integrity: sha512-mSN9OWvenbD125THkj3nFOlJCk5o44C8uc0YH7gK1uR77g98USiC/4eSWXKqP+sRfDBplQEzannuPrBW1nPimQ==} cpu: [arm64] os: [darwin] - '@rspack/binding-darwin-x64@1.1.1': - resolution: {integrity: sha512-aiwJRkPGAg99vCrG/C9I87Fh9TShOAkzpf2yeJEZL4gwTj9A8wrc/xlrCFn1BDkbPnGYz62oCR7z6JLIDgYLuA==} + '@rspack/binding-darwin-x64@1.1.4': + resolution: {integrity: sha512-ECmcTJecXwqhqqpOjfjIcwDp8UqJ3D1Crc2COG+wUfwejtbqs9twUTaufZz7U7xna+oyfJ4GRNSKS9xs4N2kPQ==} cpu: [x64] os: [darwin] - '@rspack/binding-linux-arm64-gnu@1.1.1': - resolution: {integrity: sha512-2Z8YxH4+V0MiNhVQ2IFELDIFtykIdKgmOmGr/PuRQMHMxSn8AKo5uqBD30sZqe0+gryplZwK3hyrBETHOmSltQ==} + '@rspack/binding-linux-arm64-gnu@1.1.4': + resolution: {integrity: sha512-QVRFV6+z1DopeGn8rLRbBNrWXuBvp7J19lTtvx9F5mItzTiBVHmNqFt31namm59xkhHJ3leng7l2F39qcOMOIA==} cpu: [arm64] os: [linux] - '@rspack/binding-linux-arm64-musl@1.1.1': - resolution: {integrity: sha512-l+cJd3wAxBt523Min7qN+G5s3SU0rif9Yq2AFWWl+R6IvmnMlMq6sAAyiyogUidFmJ5XIKSJJBTBnvLF3g4ezg==} + '@rspack/binding-linux-arm64-musl@1.1.4': + resolution: {integrity: sha512-UCateQWfEpEyFOC/tkuicXpIm81s5DavcwKjX3wwh1JB/KO6UxGHK8F75BV4K3Coo/UEiNCvL8xrB7eDjMDwYg==} cpu: [arm64] os: [linux] - '@rspack/binding-linux-x64-gnu@1.1.1': - resolution: {integrity: sha512-goaDDrXNulR7FcvUfj8AjhF3g7IXUttjQ4QsfY2xz7s20tDETlq5HpcM2A8GEI6lqkPAv/ITU0AynLK7bfyr4A==} + '@rspack/binding-linux-x64-gnu@1.1.4': + resolution: {integrity: sha512-Nz5Bt1PDxebVRU321h9AGkLRQL5n9Xgt+rluWAXLVtyxM9aPavmvu1n6/G9stXwQdnUVrZIUs7EzhIhWBe5R/A==} cpu: [x64] os: [linux] - '@rspack/binding-linux-x64-musl@1.1.1': - resolution: {integrity: sha512-T4RRn9ycxUHAfZJpfNRy+DdfevTXIZqox+NNg/N3d+Pqj5QS3zqpHBfPLC2mIIN1dw55BoshRIP2C1hUG0Fk6g==} + '@rspack/binding-linux-x64-musl@1.1.4': + resolution: {integrity: sha512-1XG795a+M4vE7JLyeDa1oktr4WU/I5IQ9d8Vk3PVtF59IxnKpjOb3vdGhXP7Ke2zWP6C2YQzWotez6AbO3uWeA==} cpu: [x64] os: [linux] - '@rspack/binding-win32-arm64-msvc@1.1.1': - resolution: {integrity: sha512-FHIPpueFc/+vWdZeVWRYWW0Z0IsDIHy+WhWxITeLjOVGsUN4rhaztYOausD7WsOlOhmR0SddeOYtRs/BR35wig==} + '@rspack/binding-win32-arm64-msvc@1.1.4': + resolution: {integrity: sha512-1hXOgHxnrBmjBNUluy9MbFMQi4lnAS199JD5UHRc2mx5i+D8cjAiBsWHzIcK4xzsxu2IYgVGsJcdIA8/zV/PVQ==} cpu: [arm64] os: [win32] - '@rspack/binding-win32-ia32-msvc@1.1.1': - resolution: {integrity: sha512-pgXE45ATK/Iil/oXlqaGoWZ0x3SoQk4dAjJGK7TzQuek6UEoJbLQL+W1ufe/iUxz67ICAmUvq5NH2ftOhEE2SA==} + '@rspack/binding-win32-ia32-msvc@1.1.4': + resolution: {integrity: sha512-Jfq6gF5QKOYZsgDYRx+fWipDHmtHxq6jniws1WAE8F5w1qIt/dAHzW3a6+3VwCih9lQEEH3Rimy/ECB0oergng==} cpu: [ia32] os: [win32] - '@rspack/binding-win32-x64-msvc@1.1.1': - resolution: {integrity: sha512-z/kdbB+uhMi+H4podjTE7bfUpahACUuPOZPUtAAA6PMgRyiigBTK5UFYN35D30MONwZP4yNiLvPjurwiLw7EpA==} + '@rspack/binding-win32-x64-msvc@1.1.4': + resolution: {integrity: sha512-d9HUGVfNFhB+r32kDPkzHeMmgwemTFsDymnWJUgUrojzTJ326JrDmEXVeCnAHfwBSC9w4/mp4H+4iGhIdKSo9w==} cpu: [x64] os: [win32] - '@rspack/binding@1.1.1': - resolution: {integrity: sha512-BRFliHbErqWrUo9X9bdik9WTRi6EgrJSQbbUiVeIYgW4gzYdfHUohgTkWo2Byu36LZolKrEjq/Uq2A8q/tc0YA==} + '@rspack/binding@1.1.4': + resolution: {integrity: sha512-XdR/4DACpLqNjxEw+ikg5FN2dQbOAxj7fDlndNio0l+m8ThPiIsetkJ2FNSlxt/K4SVnIrwAkhE5kabVNKR4EA==} - '@rspack/cli@1.1.1': - resolution: {integrity: sha512-Tm3A6Dc+gBQA67F1ShMU7c+1i3xtPBumnkwJ/TES15YaJ3iQlTehL8qzOSie5gfnWBE3Rzqyo/5t1/vg5DF8eA==} + '@rspack/cli@1.1.4': + resolution: {integrity: sha512-3rmJDfvDBd5cxsjubYCvB7RDmtsk2gyItOwVkpH4OnNSB31fkFC4Dmm4WjvGG/SMMTFEvqgrqdQGDZuugHrRzw==} hasBin: true peerDependencies: '@rspack/core': ^1.0.0-alpha || ^1.x - '@rspack/core@1.1.1': - resolution: {integrity: sha512-khYNAho2evyc7N5mYk4K6B587ou/dN1CDCqWrSDeZZNFFQHtuEp5T3kL1ntsKY7agObQhI60osCYaxFUPs0yww==} + '@rspack/core@1.1.4': + resolution: {integrity: sha512-JUU1pS11TY3/MwnezBfLLp3+7zfkd4Adzo8Pv4f4R1KoJyX1FYBFBcKnfZBlaGYi2C2e5ZDrrHxQlrPmygjbuw==} engines: {node: '>=16.0.0'} peerDependencies: '@swc/helpers': '>=0.5.1' @@ -5922,36 +5936,24 @@ packages: '@vue/compiler-core@3.5.13': resolution: {integrity: sha512-oOdAkwqUfW1WqpwSYJce06wvt6HljgY3fGeM9NcVA1HaYOij3mZG9Rkysn0OHuyUAGMbEbARIpsG+LPVlBJ5/Q==} - '@vue/compiler-core@3.5.13': - resolution: {integrity: sha512-oOdAkwqUfW1WqpwSYJce06wvt6HljgY3fGeM9NcVA1HaYOij3mZG9Rkysn0OHuyUAGMbEbARIpsG+LPVlBJ5/Q==} - '@vue/compiler-dom@3.4.27': resolution: {integrity: sha512-kUTvochG/oVgE1w5ViSr3KUBh9X7CWirebA3bezTbB5ZKBQZwR2Mwj9uoSKRMFcz4gSMzzLXBPD6KpCLb9nvWw==} '@vue/compiler-dom@3.5.13': resolution: {integrity: sha512-ZOJ46sMOKUjO3e94wPdCzQ6P1Lx/vhp2RSvfaab88Ajexs0AHeV0uasYhi99WPaogmBlRHNRuly8xV75cNTMDA==} - '@vue/compiler-dom@3.5.13': - resolution: {integrity: sha512-ZOJ46sMOKUjO3e94wPdCzQ6P1Lx/vhp2RSvfaab88Ajexs0AHeV0uasYhi99WPaogmBlRHNRuly8xV75cNTMDA==} - '@vue/compiler-sfc@3.4.27': resolution: {integrity: sha512-nDwntUEADssW8e0rrmE0+OrONwmRlegDA1pD6QhVeXxjIytV03yDqTey9SBDiALsvAd5U4ZrEKbMyVXhX6mCGA==} '@vue/compiler-sfc@3.5.13': resolution: {integrity: sha512-6VdaljMpD82w6c2749Zhf5T9u5uLBWKnVue6XWxprDobftnletJ8+oel7sexFfM3qIxNmVE7LSFGTpv6obNyaQ==} - '@vue/compiler-sfc@3.5.13': - resolution: {integrity: sha512-6VdaljMpD82w6c2749Zhf5T9u5uLBWKnVue6XWxprDobftnletJ8+oel7sexFfM3qIxNmVE7LSFGTpv6obNyaQ==} - '@vue/compiler-ssr@3.4.27': resolution: {integrity: sha512-CVRzSJIltzMG5FcidsW0jKNQnNRYC8bT21VegyMMtHmhW3UOI7knmUehzswXLrExDLE6lQCZdrhD4ogI7c+vuw==} '@vue/compiler-ssr@3.5.13': resolution: {integrity: sha512-wMH6vrYHxQl/IybKJagqbquvxpWCuVYpoUJfCqFZwa/JY1GdATAQ+TgVtgrwwMZ0D07QhA99rs/EAAWfvG6KpA==} - '@vue/compiler-ssr@3.5.13': - resolution: {integrity: sha512-wMH6vrYHxQl/IybKJagqbquvxpWCuVYpoUJfCqFZwa/JY1GdATAQ+TgVtgrwwMZ0D07QhA99rs/EAAWfvG6KpA==} - '@vue/devtools-api@6.5.0': resolution: {integrity: sha512-o9KfBeaBmCKl10usN4crU53fYtC1r7jJwdGKjPT24t348rHxgfpZ0xL3Xm/gLUYnc0oTp8LAmrxOeLyu6tbk2Q==} @@ -6010,9 +6012,6 @@ packages: '@vue/shared@3.5.13': resolution: {integrity: sha512-/hnE/qP5ZoGpol0a5mDi45bOd7t3tjYJBjsgCsivow7D48cJeV5l05RD82lPqi7gRiphZM37rnhW1l6ZoCNNnQ==} - '@vue/shared@3.5.13': - resolution: {integrity: sha512-/hnE/qP5ZoGpol0a5mDi45bOd7t3tjYJBjsgCsivow7D48cJeV5l05RD82lPqi7gRiphZM37rnhW1l6ZoCNNnQ==} - '@vue/test-utils@2.4.6': resolution: {integrity: sha512-FMxEjOpYNYiFe0GkaHsnJPXFHxQ6m4t8vI/ElPGpMWxZKpmRvQ33OIrvRXemy6yha03RxhOlQuy+gZMC3CQSow==} @@ -6915,12 +6914,6 @@ packages: caniuse-api@3.0.0: resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==} - caniuse-lite@1.0.30001588: - resolution: {integrity: sha512-+hVY9jE44uKLkH0SrUTqxjxqNTOWHsbnQDIKjwkZ3lNTzUUVdBLBGXtj/q5Mp5u98r3droaZAewQuEDzjQdZlQ==} - - caniuse-lite@1.0.30001618: - resolution: {integrity: sha512-p407+D1tIkDvsEAPS22lJxLQQaG8OTBEqo0KhzfABGk0TU4juBNDSfH0hyAp/HRyx+M8L17z/ltyhxh27FTfQg==} - caniuse-lite@1.0.30001667: resolution: {integrity: sha512-7LTwJjcRkzKFmtqGsibMeuXmvFDfZq/nzIjnmgCGzKKRVzjD72selLDK1oPF/Oxzmt4fNcPvTDvGqSDG4tCALw==} @@ -8189,6 +8182,9 @@ packages: resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==} engines: {node: '>= 0.4'} + 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==} @@ -9643,6 +9639,10 @@ packages: interactjs@1.10.18: resolution: {integrity: sha512-ho+Qgr5U3b3oz23Iv7MkIZGoWaTsSCRnrCL34Dtjzs5eFghwpESJeiPj9RhYKc/SgRJL9anR+2OQxFsCg4PmLA==} + internal-slot@1.0.5: + resolution: {integrity: sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==} + engines: {node: '>= 0.4'} + internal-slot@1.0.7: resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==} engines: {node: '>= 0.4'} @@ -11627,6 +11627,10 @@ packages: object-sizeof@2.6.4: resolution: {integrity: sha512-YuJAf7Bi61KROcYmXm8RCeBrBw8UOaJDzTm1gp0eU7RjYi1xEte3/Nmg/VyPaHcJZ3sNojs1Y0xvSrgwkLmcFw==} + object.assign@4.1.4: + resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==} + engines: {node: '>= 0.4'} + object.assign@4.1.5: resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==} engines: {node: '>= 0.4'} @@ -12086,6 +12090,9 @@ packages: picocolors@1.0.0: resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} + picocolors@1.0.1: + resolution: {integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==} + picocolors@1.1.0: resolution: {integrity: sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==} @@ -12520,6 +12527,10 @@ packages: resolution: {integrity: sha512-rEYkQOMUCEMhsKbK66tbEU9QVIxbhN18YiniAwA7XQYTVBqrBy+P2p5JcdqsHgKM2zWylp8d7J6eszocfds5Sw==} engines: {node: '>=4'} + postcss-selector-parser@6.0.16: + resolution: {integrity: sha512-A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw==} + engines: {node: '>=4'} + postcss-selector-parser@6.1.0: resolution: {integrity: sha512-UMz42UD0UY0EApS0ZL9o1XnLhSTtvvvLe5Dc2H2O56fvRZi+KulDyf5ctDhhtYJBGKStV2FL1fy6253cmLgqVQ==} engines: {node: '>=4'} @@ -12961,6 +12972,10 @@ packages: resolution: {integrity: sha512-iETxpjK6YoRWJG5o6hXLwvjYAoW+FEZn9os0PD/b6AP6xQwsa/Y7lCVgIixBbUPMfhu+i2LtdeAqVTgGlQarfA==} hasBin: true + regexp.prototype.flags@1.5.0: + resolution: {integrity: sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==} + engines: {node: '>= 0.4'} + regexp.prototype.flags@1.5.2: resolution: {integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==} engines: {node: '>= 0.4'} @@ -16185,7 +16200,7 @@ snapshots: '@smithy/util-middleware': 3.0.3 '@smithy/util-retry': 3.0.3 '@smithy/util-utf8': 3.0.0 - tslib: 2.6.2 + tslib: 2.8.1 transitivePeerDependencies: - aws-crt @@ -16517,7 +16532,7 @@ snapshots: '@aws-sdk/types': 3.398.0 '@smithy/protocol-http': 2.0.5 '@smithy/types': 2.5.0 - tslib: 2.6.2 + tslib: 2.8.1 '@aws-sdk/middleware-host-header@3.620.0': dependencies: @@ -16536,7 +16551,7 @@ snapshots: dependencies: '@aws-sdk/types': 3.398.0 '@smithy/types': 2.5.0 - tslib: 2.6.2 + tslib: 2.8.1 '@aws-sdk/middleware-logger@3.609.0': dependencies: @@ -16549,7 +16564,7 @@ snapshots: '@aws-sdk/types': 3.398.0 '@smithy/protocol-http': 2.0.5 '@smithy/types': 2.5.0 - tslib: 2.6.2 + tslib: 2.8.1 '@aws-sdk/middleware-recursion-detection@3.620.0': dependencies: @@ -16577,7 +16592,7 @@ snapshots: '@aws-sdk/middleware-signing': 3.398.0 '@aws-sdk/types': 3.398.0 '@smithy/types': 2.5.0 - tslib: 2.6.2 + tslib: 2.8.1 '@aws-sdk/middleware-signing@3.398.0': dependencies: @@ -16587,7 +16602,7 @@ snapshots: '@smithy/signature-v4': 2.0.5 '@smithy/types': 2.5.0 '@smithy/util-middleware': 2.0.6 - tslib: 2.6.2 + tslib: 2.8.1 '@aws-sdk/middleware-signing@3.620.0': dependencies: @@ -16611,7 +16626,7 @@ snapshots: '@aws-sdk/util-endpoints': 3.398.0 '@smithy/protocol-http': 2.0.5 '@smithy/types': 2.5.0 - tslib: 2.6.2 + tslib: 2.8.1 '@aws-sdk/middleware-user-agent@3.620.0': dependencies: @@ -16691,7 +16706,7 @@ snapshots: '@smithy/util-defaults-mode-node': 2.0.15 '@smithy/util-retry': 2.0.3 '@smithy/util-utf8': 2.0.2 - tslib: 2.6.2 + tslib: 2.8.1 transitivePeerDependencies: - aws-crt @@ -16702,7 +16717,7 @@ snapshots: '@smithy/property-provider': 3.1.3 '@smithy/shared-ini-file-loader': 3.1.4 '@smithy/types': 3.3.0 - tslib: 2.6.2 + tslib: 2.8.1 '@aws-sdk/types@3.398.0': dependencies: @@ -16712,12 +16727,12 @@ snapshots: '@aws-sdk/types@3.418.0': dependencies: '@smithy/types': 2.5.0 - tslib: 2.6.2 + tslib: 2.8.1 '@aws-sdk/types@3.511.0': dependencies: '@smithy/types': 2.9.1 - tslib: 2.6.2 + tslib: 2.8.1 '@aws-sdk/types@3.609.0': dependencies: @@ -16731,7 +16746,7 @@ snapshots: '@aws-sdk/util-endpoints@3.398.0': dependencies: '@aws-sdk/types': 3.398.0 - tslib: 2.6.2 + tslib: 2.8.1 '@aws-sdk/util-endpoints@3.614.0': dependencies: @@ -16756,7 +16771,7 @@ snapshots: '@aws-sdk/types': 3.398.0 '@smithy/types': 2.5.0 bowser: 2.11.0 - tslib: 2.6.2 + tslib: 2.8.1 '@aws-sdk/util-user-agent-browser@3.609.0': dependencies: @@ -16770,7 +16785,7 @@ snapshots: '@aws-sdk/types': 3.398.0 '@smithy/node-config-provider': 2.1.5 '@smithy/types': 2.5.0 - tslib: 2.6.2 + tslib: 2.8.1 '@aws-sdk/util-user-agent-node@3.614.0': dependencies: @@ -16781,7 +16796,7 @@ snapshots: '@aws-sdk/util-utf8-browser@3.259.0': dependencies: - tslib: 2.6.2 + tslib: 2.8.1 '@aws-sdk/xml-builder@3.609.0': dependencies: @@ -16911,7 +16926,7 @@ snapshots: '@babel/code-frame@7.24.2': dependencies: '@babel/highlight': 7.24.2 - picocolors: 1.1.0 + picocolors: 1.1.1 '@babel/compat-data@7.23.5': {} @@ -16928,7 +16943,7 @@ snapshots: '@babel/traverse': 7.24.1 '@babel/types': 7.25.7 convert-source-map: 2.0.0 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.7 gensync: 1.0.0-beta.2 json5: 2.2.3 semver: 6.3.1 @@ -17026,10 +17041,14 @@ snapshots: dependencies: '@babel/types': 7.25.7 + '@babel/helper-string-parser@7.24.8': {} + '@babel/helper-string-parser@7.25.7': {} '@babel/helper-validator-identifier@7.22.20': {} + '@babel/helper-validator-identifier@7.24.7': {} + '@babel/helper-validator-identifier@7.25.7': {} '@babel/helper-validator-option@7.23.5': {} @@ -17047,7 +17066,7 @@ snapshots: '@babel/helper-validator-identifier': 7.25.7 chalk: 2.4.2 js-tokens: 4.0.0 - picocolors: 1.1.0 + picocolors: 1.1.1 '@babel/parser@7.18.4': dependencies: @@ -17055,7 +17074,11 @@ snapshots: '@babel/parser@7.24.5': dependencies: - '@babel/types': 7.25.6 + '@babel/types': 7.24.0 + + '@babel/parser@7.24.7': + dependencies: + '@babel/types': 7.25.7 '@babel/parser@7.25.7': dependencies: @@ -17198,7 +17221,7 @@ snapshots: '@babel/helper-split-export-declaration': 7.22.6 '@babel/parser': 7.25.7 '@babel/types': 7.25.7 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.7 globals: 11.12.0 transitivePeerDependencies: - supports-color @@ -17209,10 +17232,16 @@ snapshots: '@babel/helper-validator-identifier': 7.25.7 to-fast-properties: 2.0.0 + '@babel/types@7.24.0': + dependencies: + '@babel/helper-string-parser': 7.24.8 + '@babel/helper-validator-identifier': 7.24.7 + to-fast-properties: 2.0.0 + '@babel/types@7.25.6': dependencies: - '@babel/helper-string-parser': 7.25.7 - '@babel/helper-validator-identifier': 7.25.7 + '@babel/helper-string-parser': 7.24.8 + '@babel/helper-validator-identifier': 7.24.7 to-fast-properties: 2.0.0 '@babel/types@7.25.7': @@ -17330,7 +17359,7 @@ snapshots: '@emnapi/runtime@0.45.0': dependencies: - tslib: 2.6.2 + tslib: 2.8.1 optional: true '@emnapi/runtime@1.2.0': @@ -17508,7 +17537,7 @@ snapshots: '@eslint/eslintrc@1.4.1': dependencies: ajv: 6.12.6 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.7 espree: 9.6.1 globals: 13.21.0 ignore: 5.3.2 @@ -17522,7 +17551,7 @@ snapshots: '@eslint/eslintrc@2.1.4': dependencies: ajv: 6.12.6 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 espree: 9.6.1 globals: 13.21.0 ignore: 5.3.1 @@ -17618,7 +17647,7 @@ snapshots: '@humanwhocodes/config-array@0.11.10': dependencies: '@humanwhocodes/object-schema': 1.2.1 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.7 minimatch: 3.1.2 transitivePeerDependencies: - supports-color @@ -17626,7 +17655,7 @@ snapshots: '@humanwhocodes/config-array@0.11.13': dependencies: '@humanwhocodes/object-schema': 2.0.1 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 minimatch: 3.1.2 transitivePeerDependencies: - supports-color @@ -17736,7 +17765,7 @@ snapshots: '@antfu/install-pkg': 0.1.1 '@antfu/utils': 0.7.7 '@iconify/types': 2.0.0 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.7 kolorist: 1.8.0 local-pkg: 0.5.0 mlly: 1.5.0 @@ -17985,7 +18014,7 @@ snapshots: '@intlify/shared': 9.9.1 '@rollup/pluginutils': 5.1.0(rollup@4.17.2) '@vue/compiler-sfc': 3.4.27 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 fast-glob: 3.3.2 js-yaml: 4.1.0 json5: 2.2.3 @@ -18229,27 +18258,27 @@ snapshots: '@js-joda/core@5.5.3': {} - '@jsonjoy.com/base64@1.1.2(tslib@2.6.2)': + '@jsonjoy.com/base64@1.1.2(tslib@2.8.1)': dependencies: - tslib: 2.6.2 + tslib: 2.8.1 - '@jsonjoy.com/json-pack@1.1.0(tslib@2.6.2)': + '@jsonjoy.com/json-pack@1.1.0(tslib@2.8.1)': dependencies: - '@jsonjoy.com/base64': 1.1.2(tslib@2.6.2) - '@jsonjoy.com/util': 1.5.0(tslib@2.6.2) + '@jsonjoy.com/base64': 1.1.2(tslib@2.8.1) + '@jsonjoy.com/util': 1.5.0(tslib@2.8.1) hyperdyperid: 1.2.0 - thingies: 1.21.0(tslib@2.6.2) - tslib: 2.6.2 + thingies: 1.21.0(tslib@2.8.1) + tslib: 2.8.1 - '@jsonjoy.com/util@1.5.0(tslib@2.6.2)': + '@jsonjoy.com/util@1.5.0(tslib@2.8.1)': dependencies: - tslib: 2.6.2 + tslib: 2.8.1 '@kurkle/color@0.3.2': {} '@kwsites/file-exists@1.1.1': dependencies: - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.7 transitivePeerDependencies: - supports-color @@ -18777,12 +18806,12 @@ snapshots: '@nuxt/devalue@2.0.2': {} - '@nuxt/devtools-kit@1.3.1(nuxt@3.11.2(@opentelemetry/api@1.4.1)(@parcel/watcher@2.4.1)(@types/node@20.11.30)(@unocss/reset@0.58.9)(async-validator@4.2.5)(axios@1.6.8)(encoding@0.1.13)(eslint@8.56.0)(floating-vue@5.2.2(@nuxt/kit@3.13.2(magicast@0.3.4)(rollup@4.17.2)(webpack-sources@3.2.3))(vue@3.5.13(typescript@5.6.2)))(fuse.js@6.6.2)(ioredis@5.4.1)(jwt-decode@3.1.2)(nprogress@0.2.0)(optionator@0.9.3)(qrcode@1.5.3)(rollup@4.17.2)(sass@1.71.1)(sortablejs@1.15.2)(terser@5.27.0)(typescript@5.6.2)(unocss@0.58.9(@unocss/webpack@0.58.9(rollup@4.17.2)(webpack@5.91.0(esbuild@0.20.2)))(postcss@8.4.47)(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0)))(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0))(xml2js@0.6.2))(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0))': + '@nuxt/devtools-kit@1.3.1(nuxt@3.11.2(@opentelemetry/api@1.4.1)(@parcel/watcher@2.4.1)(@types/node@20.11.30)(@unocss/reset@0.58.9)(async-validator@4.2.5)(axios@1.6.8)(encoding@0.1.13)(eslint@8.56.0)(floating-vue@5.2.2(@nuxt/kit@3.13.2(magicast@0.3.4)(rollup@4.17.2)(webpack-sources@3.2.3))(vue@3.5.13(typescript@5.6.2)))(fuse.js@6.6.2)(ioredis@5.4.1)(jwt-decode@3.1.2)(nprogress@0.2.0)(optionator@0.9.3)(qrcode@1.5.3)(rollup@4.17.2)(sass@1.71.1)(sortablejs@1.15.2)(terser@5.27.0)(typescript@5.6.2)(unocss@0.58.9(@unocss/webpack@0.58.9(rollup@4.17.2)(webpack@5.91.0(@swc/core@1.9.2)(esbuild@0.20.2)))(postcss@8.4.47)(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0)))(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0))(xml2js@0.6.2))(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0))': dependencies: '@nuxt/kit': 3.11.2(rollup@4.17.2) '@nuxt/schema': 3.11.2(rollup@4.17.2) execa: 7.2.0 - nuxt: 3.11.2(@opentelemetry/api@1.4.1)(@parcel/watcher@2.4.1)(@types/node@20.11.30)(@unocss/reset@0.58.9)(async-validator@4.2.5)(axios@1.6.8)(encoding@0.1.13)(eslint@8.56.0)(floating-vue@5.2.2(@nuxt/kit@3.13.2(magicast@0.3.4)(rollup@4.17.2)(webpack-sources@3.2.3))(vue@3.5.13(typescript@5.6.2)))(fuse.js@6.6.2)(ioredis@5.4.1)(jwt-decode@3.1.2)(nprogress@0.2.0)(optionator@0.9.3)(qrcode@1.5.3)(rollup@4.17.2)(sass@1.71.1)(sortablejs@1.15.2)(terser@5.27.0)(typescript@5.6.2)(unocss@0.58.9(@unocss/webpack@0.58.9(rollup@4.17.2)(webpack@5.91.0(esbuild@0.20.2)))(postcss@8.4.47)(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0)))(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0))(xml2js@0.6.2) + nuxt: 3.11.2(@opentelemetry/api@1.4.1)(@parcel/watcher@2.4.1)(@types/node@20.11.30)(@unocss/reset@0.58.9)(async-validator@4.2.5)(axios@1.6.8)(encoding@0.1.13)(eslint@8.56.0)(floating-vue@5.2.2(@nuxt/kit@3.13.2(magicast@0.3.4)(rollup@4.17.2)(webpack-sources@3.2.3))(vue@3.5.13(typescript@5.6.2)))(fuse.js@6.6.2)(ioredis@5.4.1)(jwt-decode@3.1.2)(nprogress@0.2.0)(optionator@0.9.3)(qrcode@1.5.3)(rollup@4.17.2)(sass@1.71.1)(sortablejs@1.15.2)(terser@5.27.0)(typescript@5.6.2)(unocss@0.58.9(@unocss/webpack@0.58.9(rollup@4.17.2)(webpack@5.91.0(@swc/core@1.9.2)(esbuild@0.20.2)))(postcss@8.4.47)(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0)))(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0))(xml2js@0.6.2) vite: 5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0) transitivePeerDependencies: - rollup @@ -18801,13 +18830,13 @@ snapshots: rc9: 2.1.2 semver: 7.6.3 - '@nuxt/devtools@1.3.1(6vdhsoamisojojaysztsg76fjq)': + '@nuxt/devtools@1.3.1(ph5yn3wmkwwiivszzh7dcupmia)': dependencies: '@antfu/utils': 0.7.8 - '@nuxt/devtools-kit': 1.3.1(nuxt@3.11.2(@opentelemetry/api@1.4.1)(@parcel/watcher@2.4.1)(@types/node@20.11.30)(@unocss/reset@0.58.9)(async-validator@4.2.5)(axios@1.6.8)(encoding@0.1.13)(eslint@8.56.0)(floating-vue@5.2.2(@nuxt/kit@3.13.2(magicast@0.3.4)(rollup@4.17.2)(webpack-sources@3.2.3))(vue@3.5.13(typescript@5.6.2)))(fuse.js@6.6.2)(ioredis@5.4.1)(jwt-decode@3.1.2)(nprogress@0.2.0)(optionator@0.9.3)(qrcode@1.5.3)(rollup@4.17.2)(sass@1.71.1)(sortablejs@1.15.2)(terser@5.27.0)(typescript@5.6.2)(unocss@0.58.9(@unocss/webpack@0.58.9(rollup@4.17.2)(webpack@5.91.0(esbuild@0.20.2)))(postcss@8.4.47)(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0)))(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0))(xml2js@0.6.2))(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0)) + '@nuxt/devtools-kit': 1.3.1(nuxt@3.11.2(@opentelemetry/api@1.4.1)(@parcel/watcher@2.4.1)(@types/node@20.11.30)(@unocss/reset@0.58.9)(async-validator@4.2.5)(axios@1.6.8)(encoding@0.1.13)(eslint@8.56.0)(floating-vue@5.2.2(@nuxt/kit@3.13.2(magicast@0.3.4)(rollup@4.17.2)(webpack-sources@3.2.3))(vue@3.5.13(typescript@5.6.2)))(fuse.js@6.6.2)(ioredis@5.4.1)(jwt-decode@3.1.2)(nprogress@0.2.0)(optionator@0.9.3)(qrcode@1.5.3)(rollup@4.17.2)(sass@1.71.1)(sortablejs@1.15.2)(terser@5.27.0)(typescript@5.6.2)(unocss@0.58.9(@unocss/webpack@0.58.9(rollup@4.17.2)(webpack@5.91.0(@swc/core@1.9.2)(esbuild@0.20.2)))(postcss@8.4.47)(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0)))(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0))(xml2js@0.6.2))(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0)) '@nuxt/devtools-wizard': 1.3.1 '@nuxt/kit': 3.11.2(rollup@4.17.2) - '@vue/devtools-applet': 7.2.0(@unocss/reset@0.58.9)(async-validator@4.2.5)(axios@1.6.8)(floating-vue@5.2.2(@nuxt/kit@3.13.2(magicast@0.3.4)(rollup@4.17.2)(webpack-sources@3.2.3))(vue@3.5.13(typescript@5.6.2)))(fuse.js@6.6.2)(jwt-decode@3.1.2)(nprogress@0.2.0)(qrcode@1.5.3)(sortablejs@1.15.2)(unocss@0.58.9(@unocss/webpack@0.58.9(rollup@4.17.2)(webpack@5.91.0(esbuild@0.20.2)))(postcss@8.4.47)(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0)))(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0))(vue@3.5.13(typescript@5.6.2)) + '@vue/devtools-applet': 7.2.0(@unocss/reset@0.58.9)(async-validator@4.2.5)(axios@1.6.8)(floating-vue@5.2.2(@nuxt/kit@3.13.2(magicast@0.3.4)(rollup@4.17.2)(webpack-sources@3.2.3))(vue@3.5.13(typescript@5.6.2)))(fuse.js@6.6.2)(jwt-decode@3.1.2)(nprogress@0.2.0)(qrcode@1.5.3)(sortablejs@1.15.2)(unocss@0.58.9(@unocss/webpack@0.58.9(rollup@4.17.2)(webpack@5.91.0(@swc/core@1.9.2)(esbuild@0.20.2)))(postcss@8.4.47)(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0)))(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0))(vue@3.5.13(typescript@5.6.2)) '@vue/devtools-core': 7.2.0(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0))(vue@3.5.13(typescript@5.6.2)) '@vue/devtools-kit': 7.2.0(vue@3.5.13(typescript@5.6.2)) birpc: 0.2.17 @@ -18825,7 +18854,7 @@ snapshots: launch-editor: 2.6.1 local-pkg: 0.5.0 magicast: 0.3.4 - nuxt: 3.11.2(@opentelemetry/api@1.4.1)(@parcel/watcher@2.4.1)(@types/node@20.11.30)(@unocss/reset@0.58.9)(async-validator@4.2.5)(axios@1.6.8)(encoding@0.1.13)(eslint@8.56.0)(floating-vue@5.2.2(@nuxt/kit@3.13.2(magicast@0.3.4)(rollup@4.17.2)(webpack-sources@3.2.3))(vue@3.5.13(typescript@5.6.2)))(fuse.js@6.6.2)(ioredis@5.4.1)(jwt-decode@3.1.2)(nprogress@0.2.0)(optionator@0.9.3)(qrcode@1.5.3)(rollup@4.17.2)(sass@1.71.1)(sortablejs@1.15.2)(terser@5.27.0)(typescript@5.6.2)(unocss@0.58.9(@unocss/webpack@0.58.9(rollup@4.17.2)(webpack@5.91.0(esbuild@0.20.2)))(postcss@8.4.47)(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0)))(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0))(xml2js@0.6.2) + nuxt: 3.11.2(@opentelemetry/api@1.4.1)(@parcel/watcher@2.4.1)(@types/node@20.11.30)(@unocss/reset@0.58.9)(async-validator@4.2.5)(axios@1.6.8)(encoding@0.1.13)(eslint@8.56.0)(floating-vue@5.2.2(@nuxt/kit@3.13.2(magicast@0.3.4)(rollup@4.17.2)(webpack-sources@3.2.3))(vue@3.5.13(typescript@5.6.2)))(fuse.js@6.6.2)(ioredis@5.4.1)(jwt-decode@3.1.2)(nprogress@0.2.0)(optionator@0.9.3)(qrcode@1.5.3)(rollup@4.17.2)(sass@1.71.1)(sortablejs@1.15.2)(terser@5.27.0)(typescript@5.6.2)(unocss@0.58.9(@unocss/webpack@0.58.9(rollup@4.17.2)(webpack@5.91.0(@swc/core@1.9.2)(esbuild@0.20.2)))(postcss@8.4.47)(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0)))(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0))(xml2js@0.6.2) nypm: 0.3.8 ohash: 1.1.3 pacote: 18.0.6 @@ -19701,8 +19730,8 @@ snapshots: '@purge-icons/core@0.10.0(encoding@0.1.13)': dependencies: '@iconify/iconify': 2.1.2(encoding@0.1.13) - axios: 1.6.8(debug@4.3.4) - debug: 4.3.4(supports-color@5.5.0) + axios: 1.6.8(debug@4.3.7) + debug: 4.3.7 fast-glob: 3.3.2 fs-extra: 10.1.0 transitivePeerDependencies: @@ -19949,50 +19978,50 @@ snapshots: '@rollup/rollup-win32-x64-msvc@4.17.2': optional: true - '@rspack/binding-darwin-arm64@1.1.1': + '@rspack/binding-darwin-arm64@1.1.4': optional: true - '@rspack/binding-darwin-x64@1.1.1': + '@rspack/binding-darwin-x64@1.1.4': optional: true - '@rspack/binding-linux-arm64-gnu@1.1.1': + '@rspack/binding-linux-arm64-gnu@1.1.4': optional: true - '@rspack/binding-linux-arm64-musl@1.1.1': + '@rspack/binding-linux-arm64-musl@1.1.4': optional: true - '@rspack/binding-linux-x64-gnu@1.1.1': + '@rspack/binding-linux-x64-gnu@1.1.4': optional: true - '@rspack/binding-linux-x64-musl@1.1.1': + '@rspack/binding-linux-x64-musl@1.1.4': optional: true - '@rspack/binding-win32-arm64-msvc@1.1.1': + '@rspack/binding-win32-arm64-msvc@1.1.4': optional: true - '@rspack/binding-win32-ia32-msvc@1.1.1': + '@rspack/binding-win32-ia32-msvc@1.1.4': optional: true - '@rspack/binding-win32-x64-msvc@1.1.1': + '@rspack/binding-win32-x64-msvc@1.1.4': optional: true - '@rspack/binding@1.1.1': + '@rspack/binding@1.1.4': optionalDependencies: - '@rspack/binding-darwin-arm64': 1.1.1 - '@rspack/binding-darwin-x64': 1.1.1 - '@rspack/binding-linux-arm64-gnu': 1.1.1 - '@rspack/binding-linux-arm64-musl': 1.1.1 - '@rspack/binding-linux-x64-gnu': 1.1.1 - '@rspack/binding-linux-x64-musl': 1.1.1 - '@rspack/binding-win32-arm64-msvc': 1.1.1 - '@rspack/binding-win32-ia32-msvc': 1.1.1 - '@rspack/binding-win32-x64-msvc': 1.1.1 - - '@rspack/cli@1.1.1(@rspack/core@1.1.1)(@types/express@4.17.21)(debug@4.3.4)(webpack@5.90.1(@swc/core@1.9.2))': + '@rspack/binding-darwin-arm64': 1.1.4 + '@rspack/binding-darwin-x64': 1.1.4 + '@rspack/binding-linux-arm64-gnu': 1.1.4 + '@rspack/binding-linux-arm64-musl': 1.1.4 + '@rspack/binding-linux-x64-gnu': 1.1.4 + '@rspack/binding-linux-x64-musl': 1.1.4 + '@rspack/binding-win32-arm64-msvc': 1.1.4 + '@rspack/binding-win32-ia32-msvc': 1.1.4 + '@rspack/binding-win32-x64-msvc': 1.1.4 + + '@rspack/cli@1.1.4(@rspack/core@1.1.4)(@types/express@4.17.21)(debug@4.3.4)(webpack@5.90.1(@swc/core@1.9.2))': dependencies: '@discoveryjs/json-ext': 0.5.7 - '@rspack/core': 1.1.1 - '@rspack/dev-server': 1.0.9(@rspack/core@1.1.1)(@types/express@4.17.21)(debug@4.3.4)(webpack@5.90.1(@swc/core@1.9.2)) + '@rspack/core': 1.1.4 + '@rspack/dev-server': 1.0.9(@rspack/core@1.1.4)(@types/express@4.17.21)(debug@4.3.4)(webpack@5.90.1(@swc/core@1.9.2)) colorette: 2.0.19 exit-hook: 4.0.0 interpret: 3.1.1 @@ -20009,16 +20038,16 @@ snapshots: - webpack - webpack-cli - '@rspack/core@1.1.1': + '@rspack/core@1.1.4': dependencies: '@module-federation/runtime-tools': 0.5.1 - '@rspack/binding': 1.1.1 + '@rspack/binding': 1.1.4 '@rspack/lite-tapable': 1.0.1 caniuse-lite: 1.0.30001667 - '@rspack/dev-server@1.0.9(@rspack/core@1.1.1)(@types/express@4.17.21)(debug@4.3.4)(webpack@5.90.1(@swc/core@1.9.2))': + '@rspack/dev-server@1.0.9(@rspack/core@1.1.4)(@types/express@4.17.21)(debug@4.3.4)(webpack@5.90.1(@swc/core@1.9.2))': dependencies: - '@rspack/core': 1.1.1 + '@rspack/core': 1.1.4 chokidar: 3.6.0 connect-history-api-fallback: 2.0.0 express: 4.19.2 @@ -20255,12 +20284,12 @@ snapshots: '@smithy/abort-controller@2.0.13': dependencies: '@smithy/types': 2.9.1 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/abort-controller@2.1.1': dependencies: '@smithy/types': 2.9.1 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/abort-controller@3.1.1': dependencies: @@ -20282,7 +20311,7 @@ snapshots: '@smithy/types': 2.5.0 '@smithy/util-config-provider': 2.0.0 '@smithy/util-middleware': 2.0.6 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/config-resolver@3.0.5': dependencies: @@ -20309,7 +20338,7 @@ snapshots: '@smithy/property-provider': 2.0.14 '@smithy/types': 2.9.1 '@smithy/url-parser': 2.1.1 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/credential-provider-imds@2.0.5': dependencies: @@ -20332,21 +20361,21 @@ snapshots: '@aws-crypto/crc32': 3.0.0 '@smithy/types': 1.2.0 '@smithy/util-hex-encoding': 1.1.0 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/eventstream-codec@2.0.5': dependencies: '@aws-crypto/crc32': 3.0.0 '@smithy/types': 2.9.1 '@smithy/util-hex-encoding': 2.1.1 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/eventstream-codec@3.1.2': dependencies: '@aws-crypto/crc32': 5.2.0 '@smithy/types': 3.3.0 '@smithy/util-hex-encoding': 3.0.0 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/eventstream-serde-browser@3.0.5': dependencies: @@ -20377,7 +20406,7 @@ snapshots: '@smithy/querystring-builder': 2.0.13 '@smithy/types': 2.5.0 '@smithy/util-base64': 2.0.1 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/fetch-http-handler@2.4.1': dependencies: @@ -20385,7 +20414,7 @@ snapshots: '@smithy/querystring-builder': 2.1.1 '@smithy/types': 2.9.1 '@smithy/util-base64': 2.1.1 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/fetch-http-handler@3.2.4': dependencies: @@ -20414,7 +20443,7 @@ snapshots: '@smithy/types': 2.5.0 '@smithy/util-buffer-from': 2.0.0 '@smithy/util-utf8': 2.0.2 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/hash-node@3.0.3': dependencies: @@ -20432,7 +20461,7 @@ snapshots: '@smithy/invalid-dependency@2.0.10': dependencies: '@smithy/types': 2.5.0 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/invalid-dependency@3.0.3': dependencies: @@ -20441,15 +20470,15 @@ snapshots: '@smithy/is-array-buffer@1.1.0': dependencies: - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/is-array-buffer@2.0.0': dependencies: - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/is-array-buffer@2.1.1': dependencies: - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/is-array-buffer@3.0.0': dependencies: @@ -20465,7 +20494,7 @@ snapshots: dependencies: '@smithy/protocol-http': 3.0.9 '@smithy/types': 2.5.0 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/middleware-content-length@3.0.5': dependencies: @@ -20481,7 +20510,7 @@ snapshots: '@smithy/types': 2.5.0 '@smithy/url-parser': 2.0.13 '@smithy/util-middleware': 2.0.6 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/middleware-endpoint@3.1.0': dependencies: @@ -20501,7 +20530,7 @@ snapshots: '@smithy/types': 2.5.0 '@smithy/util-middleware': 2.0.6 '@smithy/util-retry': 2.0.3 - tslib: 2.6.2 + tslib: 2.8.1 uuid: 8.3.2 '@smithy/middleware-retry@3.0.13': @@ -20519,7 +20548,7 @@ snapshots: '@smithy/middleware-serde@2.0.13': dependencies: '@smithy/types': 2.5.0 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/middleware-serde@3.0.3': dependencies: @@ -20529,7 +20558,7 @@ snapshots: '@smithy/middleware-stack@2.0.7': dependencies: '@smithy/types': 2.5.0 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/middleware-stack@3.0.3': dependencies: @@ -20541,14 +20570,14 @@ snapshots: '@smithy/property-provider': 2.0.14 '@smithy/shared-ini-file-loader': 2.2.4 '@smithy/types': 2.5.0 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/node-config-provider@2.2.1': dependencies: '@smithy/property-provider': 2.1.1 '@smithy/shared-ini-file-loader': 2.3.1 '@smithy/types': 2.9.1 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/node-config-provider@3.1.4': dependencies: @@ -20563,7 +20592,7 @@ snapshots: '@smithy/protocol-http': 3.0.9 '@smithy/querystring-builder': 2.0.13 '@smithy/types': 2.5.0 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/node-http-handler@2.3.1': dependencies: @@ -20571,7 +20600,7 @@ snapshots: '@smithy/protocol-http': 3.1.1 '@smithy/querystring-builder': 2.1.1 '@smithy/types': 2.9.1 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/node-http-handler@3.1.4': dependencies: @@ -20584,7 +20613,7 @@ snapshots: '@smithy/property-provider@2.0.14': dependencies: '@smithy/types': 2.9.1 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/property-provider@2.0.5': dependencies: @@ -20594,7 +20623,7 @@ snapshots: '@smithy/property-provider@2.1.1': dependencies: '@smithy/types': 2.9.1 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/property-provider@3.1.3': dependencies: @@ -20604,17 +20633,17 @@ snapshots: '@smithy/protocol-http@2.0.5': dependencies: '@smithy/types': 2.5.0 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/protocol-http@3.0.9': dependencies: '@smithy/types': 2.9.1 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/protocol-http@3.1.1': dependencies: '@smithy/types': 2.9.1 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/protocol-http@4.1.0': dependencies: @@ -20625,13 +20654,13 @@ snapshots: dependencies: '@smithy/types': 2.9.1 '@smithy/util-uri-escape': 2.0.0 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/querystring-builder@2.1.1': dependencies: '@smithy/types': 2.9.1 '@smithy/util-uri-escape': 2.1.1 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/querystring-builder@3.0.3': dependencies: @@ -20642,12 +20671,12 @@ snapshots: '@smithy/querystring-parser@2.0.13': dependencies: '@smithy/types': 2.9.1 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/querystring-parser@2.1.1': dependencies: '@smithy/types': 2.9.1 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/querystring-parser@3.0.3': dependencies: @@ -20665,17 +20694,17 @@ snapshots: '@smithy/shared-ini-file-loader@2.0.5': dependencies: '@smithy/types': 2.5.0 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/shared-ini-file-loader@2.2.4': dependencies: '@smithy/types': 2.9.1 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/shared-ini-file-loader@2.3.1': dependencies: '@smithy/types': 2.9.1 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/shared-ini-file-loader@3.1.4': dependencies: @@ -20702,7 +20731,7 @@ snapshots: '@smithy/util-middleware': 2.1.1 '@smithy/util-uri-escape': 2.0.0 '@smithy/util-utf8': 2.1.1 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/signature-v4@4.1.0': dependencies: @@ -20720,7 +20749,7 @@ snapshots: '@smithy/middleware-stack': 2.0.7 '@smithy/types': 2.5.0 '@smithy/util-stream': 2.0.20 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/smithy-client@3.1.11': dependencies: @@ -20733,7 +20762,7 @@ snapshots: '@smithy/types@1.2.0': dependencies: - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/types@2.2.2': dependencies: @@ -20741,11 +20770,11 @@ snapshots: '@smithy/types@2.5.0': dependencies: - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/types@2.9.1': dependencies: - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/types@3.3.0': dependencies: @@ -20755,13 +20784,13 @@ snapshots: dependencies: '@smithy/querystring-parser': 2.0.13 '@smithy/types': 2.5.0 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/url-parser@2.1.1': dependencies: '@smithy/querystring-parser': 2.1.1 '@smithy/types': 2.9.1 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/url-parser@3.0.3': dependencies: @@ -20772,12 +20801,12 @@ snapshots: '@smithy/util-base64@2.0.1': dependencies: '@smithy/util-buffer-from': 2.0.0 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/util-base64@2.1.1': dependencies: '@smithy/util-buffer-from': 2.1.1 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/util-base64@3.0.0': dependencies: @@ -20787,7 +20816,7 @@ snapshots: '@smithy/util-body-length-browser@2.0.0': dependencies: - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/util-body-length-browser@3.0.0': dependencies: @@ -20795,7 +20824,7 @@ snapshots: '@smithy/util-body-length-node@2.1.0': dependencies: - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/util-body-length-node@3.0.0': dependencies: @@ -20804,17 +20833,17 @@ snapshots: '@smithy/util-buffer-from@1.1.0': dependencies: '@smithy/is-array-buffer': 1.1.0 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/util-buffer-from@2.0.0': dependencies: '@smithy/is-array-buffer': 2.0.0 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/util-buffer-from@2.1.1': dependencies: '@smithy/is-array-buffer': 2.1.1 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/util-buffer-from@3.0.0': dependencies: @@ -20823,7 +20852,7 @@ snapshots: '@smithy/util-config-provider@2.0.0': dependencies: - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/util-config-provider@3.0.0': dependencies: @@ -20835,7 +20864,7 @@ snapshots: '@smithy/smithy-client': 2.1.15 '@smithy/types': 2.5.0 bowser: 2.11.0 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/util-defaults-mode-browser@3.0.13': dependencies: @@ -20853,7 +20882,7 @@ snapshots: '@smithy/property-provider': 2.0.14 '@smithy/smithy-client': 2.1.15 '@smithy/types': 2.5.0 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/util-defaults-mode-node@3.0.13': dependencies: @@ -20873,15 +20902,15 @@ snapshots: '@smithy/util-hex-encoding@1.1.0': dependencies: - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/util-hex-encoding@2.0.0': dependencies: - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/util-hex-encoding@2.1.1': dependencies: - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/util-hex-encoding@3.0.0': dependencies: @@ -20889,17 +20918,17 @@ snapshots: '@smithy/util-middleware@1.1.0': dependencies: - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/util-middleware@2.0.6': dependencies: '@smithy/types': 2.9.1 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/util-middleware@2.1.1': dependencies: '@smithy/types': 2.9.1 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/util-middleware@3.0.3': dependencies: @@ -20910,7 +20939,7 @@ snapshots: dependencies: '@smithy/service-error-classification': 2.0.3 '@smithy/types': 2.5.0 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/util-retry@3.0.3': dependencies: @@ -20927,7 +20956,7 @@ snapshots: '@smithy/util-buffer-from': 2.0.0 '@smithy/util-hex-encoding': 2.0.0 '@smithy/util-utf8': 2.1.1 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/util-stream@3.1.3': dependencies: @@ -20942,29 +20971,29 @@ snapshots: '@smithy/util-uri-escape@1.1.0': dependencies: - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/util-uri-escape@2.0.0': dependencies: - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/util-uri-escape@2.1.1': dependencies: - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/util-uri-escape@3.0.0': dependencies: - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/util-utf8@1.1.0': dependencies: '@smithy/util-buffer-from': 1.1.0 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/util-utf8@2.0.2': dependencies: '@smithy/util-buffer-from': 2.0.0 - tslib: 2.6.2 + tslib: 2.8.1 '@smithy/util-utf8@2.1.1': dependencies: @@ -21503,7 +21532,7 @@ snapshots: '@types/mdast@4.0.4': dependencies: - '@types/unist': 3.0.3 + '@types/unist': 2.0.7 '@types/mime@1.3.2': {} @@ -21694,7 +21723,7 @@ snapshots: '@typescript-eslint/scope-manager': 5.62.0 '@typescript-eslint/type-utils': 5.62.0(eslint@8.56.0)(typescript@5.6.2) '@typescript-eslint/utils': 5.62.0(eslint@8.56.0)(typescript@5.6.2) - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 eslint: 8.56.0 graphemer: 1.4.0 ignore: 5.3.2 @@ -21714,7 +21743,7 @@ snapshots: '@typescript-eslint/type-utils': 6.1.0(eslint@8.33.0)(typescript@5.6.2) '@typescript-eslint/utils': 6.1.0(eslint@8.33.0)(typescript@5.6.2) '@typescript-eslint/visitor-keys': 6.1.0 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 eslint: 8.33.0 graphemer: 1.4.0 ignore: 5.2.4 @@ -21735,7 +21764,7 @@ snapshots: '@typescript-eslint/type-utils': 6.21.0(eslint@8.56.0)(typescript@5.4.5) '@typescript-eslint/utils': 6.21.0(eslint@8.56.0)(typescript@5.4.5) '@typescript-eslint/visitor-keys': 6.21.0 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 eslint: 8.56.0 graphemer: 1.4.0 ignore: 5.3.1 @@ -21752,7 +21781,7 @@ snapshots: '@typescript-eslint/scope-manager': 5.62.0 '@typescript-eslint/types': 5.62.0 '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.6.2) - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 eslint: 8.56.0 optionalDependencies: typescript: 5.6.2 @@ -21765,7 +21794,7 @@ snapshots: '@typescript-eslint/types': 6.1.0 '@typescript-eslint/typescript-estree': 6.1.0(typescript@5.6.2) '@typescript-eslint/visitor-keys': 6.1.0 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 eslint: 8.33.0 optionalDependencies: typescript: 5.6.2 @@ -21778,7 +21807,7 @@ snapshots: '@typescript-eslint/types': 6.21.0 '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.4.5) '@typescript-eslint/visitor-keys': 6.21.0 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 eslint: 8.56.0 optionalDependencies: typescript: 5.4.5 @@ -21804,7 +21833,7 @@ snapshots: dependencies: '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.6.2) '@typescript-eslint/utils': 5.62.0(eslint@8.33.0)(typescript@5.6.2) - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 eslint: 8.33.0 tsutils: 3.21.0(typescript@5.6.2) optionalDependencies: @@ -21816,7 +21845,7 @@ snapshots: dependencies: '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.4.5) '@typescript-eslint/utils': 5.62.0(eslint@8.56.0)(typescript@5.4.5) - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 eslint: 8.56.0 tsutils: 3.21.0(typescript@5.4.5) optionalDependencies: @@ -21828,7 +21857,7 @@ snapshots: dependencies: '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.6.2) '@typescript-eslint/utils': 5.62.0(eslint@8.56.0)(typescript@5.6.2) - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 eslint: 8.56.0 tsutils: 3.21.0(typescript@5.6.2) optionalDependencies: @@ -21840,7 +21869,7 @@ snapshots: dependencies: '@typescript-eslint/typescript-estree': 6.1.0(typescript@5.6.2) '@typescript-eslint/utils': 6.1.0(eslint@8.33.0)(typescript@5.6.2) - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.7 eslint: 8.33.0 ts-api-utils: 1.0.2(typescript@5.6.2) optionalDependencies: @@ -21852,7 +21881,7 @@ snapshots: dependencies: '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.4.5) '@typescript-eslint/utils': 6.21.0(eslint@8.56.0)(typescript@5.4.5) - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 eslint: 8.56.0 ts-api-utils: 1.0.2(typescript@5.4.5) optionalDependencies: @@ -21870,7 +21899,7 @@ snapshots: dependencies: '@typescript-eslint/types': 5.62.0 '@typescript-eslint/visitor-keys': 5.62.0 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.7 globby: 11.1.0 is-glob: 4.0.3 semver: 7.6.3 @@ -21884,7 +21913,7 @@ snapshots: dependencies: '@typescript-eslint/types': 5.62.0 '@typescript-eslint/visitor-keys': 5.62.0 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.7 globby: 11.1.0 is-glob: 4.0.3 semver: 7.6.3 @@ -21898,7 +21927,7 @@ snapshots: dependencies: '@typescript-eslint/types': 6.1.0 '@typescript-eslint/visitor-keys': 6.1.0 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.7 globby: 11.1.0 is-glob: 4.0.3 semver: 7.6.3 @@ -21912,7 +21941,7 @@ snapshots: dependencies: '@typescript-eslint/types': 6.21.0 '@typescript-eslint/visitor-keys': 6.21.0 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 minimatch: 9.0.3 @@ -22278,7 +22307,7 @@ snapshots: '@vitest/snapshot@1.2.2': dependencies: - magic-string: 0.30.11 + magic-string: 0.30.10 pathe: 1.1.2 pretty-format: 29.7.0 @@ -22359,19 +22388,11 @@ snapshots: '@vue/compiler-core@3.4.27': dependencies: - '@babel/parser': 7.25.7 + '@babel/parser': 7.24.7 '@vue/shared': 3.4.27 entities: 4.5.0 estree-walker: 2.0.2 - source-map-js: 1.2.1 - - '@vue/compiler-core@3.5.13': - dependencies: - '@babel/parser': 7.25.7 - '@vue/shared': 3.5.13 - entities: 4.5.0 - estree-walker: 2.0.2 - source-map-js: 1.2.1 + source-map-js: 1.2.0 '@vue/compiler-core@3.5.13': dependencies: @@ -22391,11 +22412,6 @@ snapshots: '@vue/compiler-core': 3.5.13 '@vue/shared': 3.5.13 - '@vue/compiler-dom@3.5.13': - dependencies: - '@vue/compiler-core': 3.5.13 - '@vue/shared': 3.5.13 - '@vue/compiler-sfc@3.4.27': dependencies: '@babel/parser': 7.24.5 @@ -22420,18 +22436,6 @@ snapshots: postcss: 8.4.49 source-map-js: 1.2.1 - '@vue/compiler-sfc@3.5.13': - dependencies: - '@babel/parser': 7.25.7 - '@vue/compiler-core': 3.5.13 - '@vue/compiler-dom': 3.5.13 - '@vue/compiler-ssr': 3.5.13 - '@vue/shared': 3.5.13 - estree-walker: 2.0.2 - magic-string: 0.30.11 - postcss: 8.4.49 - source-map-js: 1.2.1 - '@vue/compiler-ssr@3.4.27': dependencies: '@vue/compiler-dom': 3.4.27 @@ -22442,21 +22446,16 @@ snapshots: '@vue/compiler-dom': 3.5.13 '@vue/shared': 3.5.13 - '@vue/compiler-ssr@3.5.13': - dependencies: - '@vue/compiler-dom': 3.5.13 - '@vue/shared': 3.5.13 - '@vue/devtools-api@6.5.0': {} '@vue/devtools-api@6.6.1': {} - '@vue/devtools-applet@7.2.0(@unocss/reset@0.58.9)(async-validator@4.2.5)(axios@1.6.8)(floating-vue@5.2.2(@nuxt/kit@3.13.2(magicast@0.3.4)(rollup@4.17.2)(webpack-sources@3.2.3))(vue@3.5.13(typescript@5.6.2)))(fuse.js@6.6.2)(jwt-decode@3.1.2)(nprogress@0.2.0)(qrcode@1.5.3)(sortablejs@1.15.2)(unocss@0.58.9(@unocss/webpack@0.58.9(rollup@4.17.2)(webpack@5.91.0(esbuild@0.20.2)))(postcss@8.4.47)(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0)))(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0))(vue@3.5.13(typescript@5.6.2))': + '@vue/devtools-applet@7.2.0(@unocss/reset@0.58.9)(async-validator@4.2.5)(axios@1.6.8)(floating-vue@5.2.2(@nuxt/kit@3.13.2(magicast@0.3.4)(rollup@4.17.2)(webpack-sources@3.2.3))(vue@3.5.13(typescript@5.6.2)))(fuse.js@6.6.2)(jwt-decode@3.1.2)(nprogress@0.2.0)(qrcode@1.5.3)(sortablejs@1.15.2)(unocss@0.58.9(@unocss/webpack@0.58.9(rollup@4.17.2)(webpack@5.91.0(@swc/core@1.9.2)(esbuild@0.20.2)))(postcss@8.4.47)(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0)))(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0))(vue@3.5.13(typescript@5.6.2))': dependencies: '@vue/devtools-core': 7.2.0(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0))(vue@3.5.13(typescript@5.6.2)) '@vue/devtools-kit': 7.2.0(vue@3.5.13(typescript@5.6.2)) '@vue/devtools-shared': 7.2.0 - '@vue/devtools-ui': 7.2.0(@unocss/reset@0.58.9)(async-validator@4.2.5)(axios@1.6.8)(floating-vue@5.2.2(@nuxt/kit@3.13.2(magicast@0.3.4)(rollup@4.17.2)(webpack-sources@3.2.3))(vue@3.5.13(typescript@5.6.2)))(fuse.js@6.6.2)(jwt-decode@3.1.2)(nprogress@0.2.0)(qrcode@1.5.3)(sortablejs@1.15.2)(unocss@0.58.9(@unocss/webpack@0.58.9(rollup@4.17.2)(webpack@5.91.0(esbuild@0.20.2)))(postcss@8.4.47)(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0)))(vue@3.5.13(typescript@5.6.2)) + '@vue/devtools-ui': 7.2.0(@unocss/reset@0.58.9)(async-validator@4.2.5)(axios@1.6.8)(floating-vue@5.2.2(@nuxt/kit@3.13.2(magicast@0.3.4)(rollup@4.17.2)(webpack-sources@3.2.3))(vue@3.5.13(typescript@5.6.2)))(fuse.js@6.6.2)(jwt-decode@3.1.2)(nprogress@0.2.0)(qrcode@1.5.3)(sortablejs@1.15.2)(unocss@0.58.9(@unocss/webpack@0.58.9(rollup@4.17.2)(webpack@5.91.0(@swc/core@1.9.2)(esbuild@0.20.2)))(postcss@8.4.47)(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0)))(vue@3.5.13(typescript@5.6.2)) lodash-es: 4.17.21 perfect-debounce: 1.0.0 shiki: 1.5.2 @@ -22506,7 +22505,7 @@ snapshots: dependencies: rfdc: 1.3.1 - '@vue/devtools-ui@7.2.0(@unocss/reset@0.58.9)(async-validator@4.2.5)(axios@1.6.8)(floating-vue@5.2.2(@nuxt/kit@3.13.2(magicast@0.3.4)(rollup@4.17.2)(webpack-sources@3.2.3))(vue@3.5.13(typescript@5.6.2)))(fuse.js@6.6.2)(jwt-decode@3.1.2)(nprogress@0.2.0)(qrcode@1.5.3)(sortablejs@1.15.2)(unocss@0.58.9(@unocss/webpack@0.58.9(rollup@4.17.2)(webpack@5.91.0(esbuild@0.20.2)))(postcss@8.4.47)(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0)))(vue@3.5.13(typescript@5.6.2))': + '@vue/devtools-ui@7.2.0(@unocss/reset@0.58.9)(async-validator@4.2.5)(axios@1.6.8)(floating-vue@5.2.2(@nuxt/kit@3.13.2(magicast@0.3.4)(rollup@4.17.2)(webpack-sources@3.2.3))(vue@3.5.13(typescript@5.6.2)))(fuse.js@6.6.2)(jwt-decode@3.1.2)(nprogress@0.2.0)(qrcode@1.5.3)(sortablejs@1.15.2)(unocss@0.58.9(@unocss/webpack@0.58.9(rollup@4.17.2)(webpack@5.91.0(@swc/core@1.9.2)(esbuild@0.20.2)))(postcss@8.4.47)(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0)))(vue@3.5.13(typescript@5.6.2))': dependencies: '@unocss/reset': 0.58.9 '@vue/devtools-shared': 7.2.0 @@ -22516,7 +22515,7 @@ snapshots: colord: 2.9.3 floating-vue: 5.2.2(@nuxt/kit@3.13.2(magicast@0.3.4)(rollup@4.17.2)(webpack-sources@3.2.3))(vue@3.5.13(typescript@5.6.2)) focus-trap: 7.5.4 - unocss: 0.58.9(@unocss/webpack@0.58.9(rollup@4.17.2)(webpack@5.91.0(esbuild@0.20.2)))(postcss@8.4.47)(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0)) + unocss: 0.58.9(@unocss/webpack@0.58.9(rollup@4.17.2)(webpack@5.91.0(@swc/core@1.9.2)(esbuild@0.20.2)))(postcss@8.4.47)(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0)) vue: 3.5.13(typescript@5.6.2) transitivePeerDependencies: - '@vue/composition-api' @@ -22572,8 +22571,6 @@ snapshots: '@vue/shared@3.5.13': {} - '@vue/shared@3.5.13': {} - '@vue/test-utils@2.4.6': dependencies: js-beautify: 1.14.11 @@ -22635,7 +22632,7 @@ snapshots: vue-demi: 0.14.7(vue@3.5.13(typescript@5.6.2)) optionalDependencies: async-validator: 4.2.5 - axios: 1.6.8(debug@4.3.4) + axios: 1.6.8 focus-trap: 7.5.4 fuse.js: 6.6.2 jwt-decode: 3.1.2 @@ -22653,7 +22650,7 @@ snapshots: vue-demi: 0.14.10(vue@3.5.13(typescript@5.6.2)) optionalDependencies: async-validator: 4.2.5 - axios: 1.6.8(debug@4.3.4) + axios: 1.6.8 focus-trap: 7.5.4 fuse.js: 6.6.2 jwt-decode: 3.1.2 @@ -22688,13 +22685,13 @@ snapshots: - supports-color - webpack-sources - '@vueuse/nuxt@10.7.2(nuxt@3.11.2(@opentelemetry/api@1.4.1)(@parcel/watcher@2.4.1)(@types/node@20.11.30)(@unocss/reset@0.58.9)(async-validator@4.2.5)(axios@1.6.8)(encoding@0.1.13)(eslint@8.56.0)(floating-vue@5.2.2(@nuxt/kit@3.13.2(magicast@0.3.4)(rollup@4.17.2)(webpack-sources@3.2.3))(vue@3.5.13(typescript@5.6.2)))(fuse.js@6.6.2)(ioredis@5.4.1)(jwt-decode@3.1.2)(nprogress@0.2.0)(optionator@0.9.3)(qrcode@1.5.3)(rollup@4.17.2)(sass@1.71.1)(sortablejs@1.15.2)(terser@5.27.0)(typescript@5.6.2)(unocss@0.58.9(@unocss/webpack@0.58.9(rollup@4.17.2)(webpack@5.91.0(esbuild@0.20.2)))(postcss@8.4.47)(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0)))(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0))(xml2js@0.6.2))(rollup@4.17.2)(vue@3.5.13(typescript@5.6.2))': + '@vueuse/nuxt@10.7.2(nuxt@3.11.2(@opentelemetry/api@1.4.1)(@parcel/watcher@2.4.1)(@types/node@20.11.30)(@unocss/reset@0.58.9)(async-validator@4.2.5)(axios@1.6.8)(encoding@0.1.13)(eslint@8.56.0)(floating-vue@5.2.2(@nuxt/kit@3.13.2(magicast@0.3.4)(rollup@4.17.2)(webpack-sources@3.2.3))(vue@3.5.13(typescript@5.6.2)))(fuse.js@6.6.2)(ioredis@5.4.1)(jwt-decode@3.1.2)(nprogress@0.2.0)(optionator@0.9.3)(qrcode@1.5.3)(rollup@4.17.2)(sass@1.71.1)(sortablejs@1.15.2)(terser@5.27.0)(typescript@5.6.2)(unocss@0.58.9(@unocss/webpack@0.58.9(rollup@4.17.2)(webpack@5.91.0(@swc/core@1.9.2)(esbuild@0.20.2)))(postcss@8.4.47)(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0)))(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0))(xml2js@0.6.2))(rollup@4.17.2)(vue@3.5.13(typescript@5.6.2))': dependencies: '@nuxt/kit': 3.9.3(rollup@4.17.2) '@vueuse/core': 10.7.2(vue@3.5.13(typescript@5.6.2)) '@vueuse/metadata': 10.7.2 local-pkg: 0.5.0 - nuxt: 3.11.2(@opentelemetry/api@1.4.1)(@parcel/watcher@2.4.1)(@types/node@20.11.30)(@unocss/reset@0.58.9)(async-validator@4.2.5)(axios@1.6.8)(encoding@0.1.13)(eslint@8.56.0)(floating-vue@5.2.2(@nuxt/kit@3.13.2(magicast@0.3.4)(rollup@4.17.2)(webpack-sources@3.2.3))(vue@3.5.13(typescript@5.6.2)))(fuse.js@6.6.2)(ioredis@5.4.1)(jwt-decode@3.1.2)(nprogress@0.2.0)(optionator@0.9.3)(qrcode@1.5.3)(rollup@4.17.2)(sass@1.71.1)(sortablejs@1.15.2)(terser@5.27.0)(typescript@5.6.2)(unocss@0.58.9(@unocss/webpack@0.58.9(rollup@4.17.2)(webpack@5.91.0(esbuild@0.20.2)))(postcss@8.4.47)(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0)))(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0))(xml2js@0.6.2) + nuxt: 3.11.2(@opentelemetry/api@1.4.1)(@parcel/watcher@2.4.1)(@types/node@20.11.30)(@unocss/reset@0.58.9)(async-validator@4.2.5)(axios@1.6.8)(encoding@0.1.13)(eslint@8.56.0)(floating-vue@5.2.2(@nuxt/kit@3.13.2(magicast@0.3.4)(rollup@4.17.2)(webpack-sources@3.2.3))(vue@3.5.13(typescript@5.6.2)))(fuse.js@6.6.2)(ioredis@5.4.1)(jwt-decode@3.1.2)(nprogress@0.2.0)(optionator@0.9.3)(qrcode@1.5.3)(rollup@4.17.2)(sass@1.71.1)(sortablejs@1.15.2)(terser@5.27.0)(typescript@5.6.2)(unocss@0.58.9(@unocss/webpack@0.58.9(rollup@4.17.2)(webpack@5.91.0(@swc/core@1.9.2)(esbuild@0.20.2)))(postcss@8.4.47)(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0)))(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0))(xml2js@0.6.2) vue-demi: 0.14.7(vue@3.5.13(typescript@5.6.2)) transitivePeerDependencies: - '@vue/composition-api' @@ -22855,7 +22852,7 @@ snapshots: '@windicss/config@1.9.1': dependencies: - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.7 jiti: 1.21.0 windicss: 3.5.6 transitivePeerDependencies: @@ -22871,9 +22868,9 @@ snapshots: dependencies: '@antfu/utils': 0.7.6 '@windicss/config': 1.9.1 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.7 fast-glob: 3.3.2 - magic-string: 0.30.11 + magic-string: 0.30.10 micromatch: 4.0.5 windicss: 3.5.6 transitivePeerDependencies: @@ -22964,13 +22961,13 @@ snapshots: agent-base@6.0.2: dependencies: - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.7 transitivePeerDependencies: - supports-color agent-base@7.1.0: dependencies: - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.7 transitivePeerDependencies: - supports-color @@ -23150,8 +23147,8 @@ snapshots: array-includes@3.1.6: dependencies: call-bind: 1.0.7 - define-properties: 1.2.1 - es-abstract: 1.22.4 + define-properties: 1.2.0 + es-abstract: 1.22.1 get-intrinsic: 1.2.4 is-string: 1.0.7 @@ -23180,9 +23177,9 @@ snapshots: array.prototype.flat@1.3.1: dependencies: call-bind: 1.0.7 - define-properties: 1.2.1 - es-abstract: 1.22.4 - es-shim-unscopables: 1.0.2 + define-properties: 1.2.0 + es-abstract: 1.22.1 + es-shim-unscopables: 1.0.0 array.prototype.flat@1.3.2: dependencies: @@ -23194,9 +23191,9 @@ snapshots: array.prototype.flatmap@1.3.1: dependencies: call-bind: 1.0.7 - define-properties: 1.2.1 - es-abstract: 1.22.4 - es-shim-unscopables: 1.0.2 + define-properties: 1.2.0 + es-abstract: 1.22.1 + es-shim-unscopables: 1.0.0 array.prototype.flatmap@1.3.2: dependencies: @@ -23288,7 +23285,7 @@ snapshots: autoprefixer@10.4.19(postcss@8.4.47): dependencies: browserslist: 4.23.0 - caniuse-lite: 1.0.30001618 + caniuse-lite: 1.0.30001667 fraction.js: 4.3.7 normalize-range: 0.1.2 picocolors: 1.1.0 @@ -23324,6 +23321,14 @@ snapshots: transitivePeerDependencies: - debug + axios@1.6.8: + dependencies: + follow-redirects: 1.15.6 + form-data: 4.0.0 + proxy-from-env: 1.1.0 + transitivePeerDependencies: + - debug + axios@1.6.8(debug@4.3.4): dependencies: follow-redirects: 1.15.6(debug@4.3.4) @@ -23332,6 +23337,14 @@ snapshots: transitivePeerDependencies: - debug + axios@1.6.8(debug@4.3.7): + dependencies: + follow-redirects: 1.15.6(debug@4.3.7) + form-data: 4.0.0 + proxy-from-env: 1.1.0 + transitivePeerDependencies: + - debug + b4a@1.6.4: {} babel-jest@29.7.0(@babel/core@7.24.3): @@ -23540,7 +23553,7 @@ snapshots: browserslist@4.23.0: dependencies: - caniuse-lite: 1.0.30001588 + caniuse-lite: 1.0.30001667 electron-to-chromium: 1.4.673 node-releases: 2.0.14 update-browserslist-db: 1.0.13(browserslist@4.23.0) @@ -23769,15 +23782,11 @@ snapshots: caniuse-api@3.0.0: dependencies: - browserslist: 4.24.0 + browserslist: 4.23.0 caniuse-lite: 1.0.30001667 lodash.memoize: 4.1.2 lodash.uniq: 4.5.0 - caniuse-lite@1.0.30001588: {} - - caniuse-lite@1.0.30001618: {} - caniuse-lite@1.0.30001667: {} case-anything@2.1.13: {} @@ -24364,7 +24373,7 @@ snapshots: cross-inspect@1.0.0: dependencies: - tslib: 2.6.2 + tslib: 2.8.1 optional: true cross-spawn@6.0.5: @@ -24534,7 +24543,7 @@ snapshots: cssnano-preset-default@7.0.2(postcss@8.4.47): dependencies: - browserslist: 4.24.0 + browserslist: 4.23.0 css-declaration-sorter: 7.2.0(postcss@8.4.47) cssnano-utils: 5.0.0(postcss@8.4.47) postcss: 8.4.47 @@ -24694,6 +24703,10 @@ snapshots: dependencies: ms: 2.1.3 + debug@4.3.4: + dependencies: + ms: 2.1.2 + debug@4.3.4(supports-color@5.5.0): dependencies: ms: 2.1.2 @@ -25005,7 +25018,7 @@ snapshots: engine.io-client@6.5.3: dependencies: '@socket.io/component-emitter': 3.1.0 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.7 engine.io-parser: 5.2.1 ws: 8.11.0 xmlhttprequest-ssl: 2.0.0 @@ -25025,7 +25038,7 @@ snapshots: base64id: 2.0.0 cookie: 0.4.2 cors: 2.8.5 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.7 engine.io-parser: 5.2.1 ws: 8.11.0 transitivePeerDependencies: @@ -25208,6 +25221,10 @@ snapshots: has-tostringtag: 1.0.2 hasown: 2.0.1 + es-shim-unscopables@1.0.0: + dependencies: + has: 1.0.3 + es-shim-unscopables@1.0.2: dependencies: hasown: 2.0.1 @@ -25429,6 +25446,15 @@ snapshots: transitivePeerDependencies: - supports-color + eslint-module-utils@2.8.0(eslint-import-resolver-node@0.3.9)(eslint@8.56.0): + dependencies: + debug: 3.2.7 + optionalDependencies: + eslint: 8.56.0 + eslint-import-resolver-node: 0.3.9 + transitivePeerDependencies: + - supports-color + eslint-plugin-antfu@0.26.3(eslint@8.56.0)(typescript@5.6.2): dependencies: '@typescript-eslint/utils': 5.62.0(eslint@8.56.0)(typescript@5.6.2) @@ -25580,6 +25606,31 @@ snapshots: - eslint-import-resolver-webpack - supports-color + eslint-plugin-import@2.29.1(eslint@8.56.0): + dependencies: + 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 + doctrine: 2.1.0 + eslint: 8.56.0 + eslint-import-resolver-node: 0.3.9 + eslint-module-utils: 2.8.0(eslint-import-resolver-node@0.3.9)(eslint@8.56.0) + hasown: 2.0.1 + is-core-module: 2.13.1 + is-glob: 4.0.3 + minimatch: 3.1.2 + object.fromentries: 2.0.7 + object.groupby: 1.0.1 + object.values: 1.1.7 + semver: 6.3.1 + tsconfig-paths: 3.15.0 + transitivePeerDependencies: + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack + - supports-color + eslint-plugin-json@3.1.0: dependencies: lodash: 4.17.21 @@ -25613,7 +25664,7 @@ snapshots: is-core-module: 2.13.1 minimatch: 3.1.2 resolve: 1.22.4 - semver: 7.6.3 + semver: 7.6.2 eslint-plugin-prettier@4.2.1(eslint-config-prettier@6.15.0(eslint@8.33.0))(eslint@8.33.0)(prettier@2.8.8): dependencies: @@ -25670,7 +25721,7 @@ snapshots: read-pkg-up: 7.0.1 regexp-tree: 0.1.27 safe-regex: 2.1.1 - semver: 7.6.3 + semver: 7.6.2 strip-indent: 3.0.0 eslint-plugin-vue@9.21.1(eslint@8.56.0): @@ -25680,7 +25731,7 @@ snapshots: natural-compare: 1.4.0 nth-check: 2.1.1 postcss-selector-parser: 6.0.15 - semver: 7.6.3 + semver: 7.6.2 vue-eslint-parser: 9.4.2(eslint@8.56.0) xml-name-validator: 4.0.0 transitivePeerDependencies: @@ -25688,7 +25739,7 @@ snapshots: eslint-plugin-yml@1.12.2(eslint@8.56.0): dependencies: - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 eslint: 8.56.0 eslint-compat-utils: 0.4.1(eslint@8.56.0) lodash: 4.17.21 @@ -25736,7 +25787,7 @@ snapshots: ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.3 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 doctrine: 3.0.0 escape-string-regexp: 4.0.0 eslint-scope: 7.2.2 @@ -25784,7 +25835,7 @@ snapshots: ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.3 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 doctrine: 3.0.0 escape-string-regexp: 4.0.0 eslint-scope: 7.2.2 @@ -26241,9 +26292,15 @@ snapshots: follow-redirects@1.15.4: {} + follow-redirects@1.15.6: {} + follow-redirects@1.15.6(debug@4.3.4): optionalDependencies: - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 + + follow-redirects@1.15.6(debug@4.3.7): + optionalDependencies: + debug: 4.3.7 for-each@0.3.3: dependencies: @@ -26990,7 +27047,7 @@ snapshots: dependencies: '@tootallnate/once': 1.1.2 agent-base: 6.0.2 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.7 transitivePeerDependencies: - supports-color optional: true @@ -26999,14 +27056,14 @@ snapshots: dependencies: '@tootallnate/once': 2.0.0 agent-base: 6.0.2 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.7 transitivePeerDependencies: - supports-color http-proxy-agent@7.0.0: dependencies: agent-base: 7.1.0 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.7 transitivePeerDependencies: - supports-color @@ -27045,14 +27102,14 @@ snapshots: https-proxy-agent@5.0.1: dependencies: agent-base: 6.0.2 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 transitivePeerDependencies: - supports-color https-proxy-agent@7.0.2: dependencies: agent-base: 7.1.0 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.7 transitivePeerDependencies: - supports-color @@ -27178,7 +27235,7 @@ snapshots: promzard: 1.0.0 read: 2.1.0 read-package-json: 6.0.4 - semver: 7.6.3 + semver: 7.6.2 validate-npm-package-license: 3.0.4 validate-npm-package-name: 5.0.0 @@ -27222,6 +27279,12 @@ snapshots: dependencies: '@interactjs/types': 1.10.18 + internal-slot@1.0.5: + dependencies: + get-intrinsic: 1.2.4 + has: 1.0.3 + side-channel: 1.0.4 + internal-slot@1.0.7: dependencies: es-errors: 1.3.0 @@ -27257,7 +27320,7 @@ snapshots: dependencies: '@ioredis/commands': 1.2.0 cluster-key-slot: 1.1.2 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 denque: 2.1.0 lodash.defaults: 4.2.0 lodash.isarguments: 3.1.0 @@ -27645,7 +27708,7 @@ snapshots: istanbul-lib-source-maps@4.0.1: dependencies: - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.7 istanbul-lib-coverage: 3.2.0 source-map: 0.6.1 transitivePeerDependencies: @@ -28142,7 +28205,7 @@ snapshots: acorn: 8.11.3 eslint-visitor-keys: 3.4.3 espree: 9.6.1 - semver: 7.6.3 + semver: 7.6.2 jsonc-parser@3.2.0: {} @@ -28186,7 +28249,7 @@ snapshots: dependencies: array-includes: 3.1.7 array.prototype.flat: 1.3.2 - object.assign: 4.1.5 + object.assign: 4.1.4 object.values: 1.1.7 junk@4.0.1: {} @@ -28231,7 +28294,7 @@ snapshots: dependencies: colorette: 2.0.19 commander: 9.5.0 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 escalade: 3.1.1 esm: 3.2.25 get-package-type: 0.1.0 @@ -28254,7 +28317,7 @@ snapshots: dependencies: colorette: 2.0.19 commander: 9.5.0 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 escalade: 3.1.1 esm: 3.2.25 get-package-type: 0.1.0 @@ -28278,8 +28341,8 @@ snapshots: dependencies: colorette: 2.0.19 commander: 10.0.1 - debug: 4.3.4(supports-color@5.5.0) - escalade: 3.1.1 + debug: 4.3.4 + escalade: 3.2.0 esm: 3.2.25 get-package-type: 0.1.0 getopts: 2.3.0 @@ -28430,7 +28493,7 @@ snapshots: npm-package-arg: 10.1.0 npm-registry-fetch: 14.0.5 proc-log: 3.0.0 - semver: 7.6.3 + semver: 7.6.2 sigstore: 1.9.0 ssri: 10.0.5 transitivePeerDependencies: @@ -28461,7 +28524,7 @@ snapshots: cli-truncate: 3.1.0 colorette: 2.0.20 commander: 9.5.0 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 execa: 6.1.0 lilconfig: 2.0.5 listr2: 4.0.5(enquirer@2.4.1) @@ -28709,7 +28772,7 @@ snapshots: magic-string@0.30.10: dependencies: - '@jridgewell/sourcemap-codec': 1.5.0 + '@jridgewell/sourcemap-codec': 1.4.15 magic-string@0.30.11: dependencies: @@ -28891,10 +28954,10 @@ snapshots: memfs@4.14.0: dependencies: - '@jsonjoy.com/json-pack': 1.1.0(tslib@2.6.2) - '@jsonjoy.com/util': 1.5.0(tslib@2.6.2) - tree-dump: 1.0.2(tslib@2.6.2) - tslib: 2.6.2 + '@jsonjoy.com/json-pack': 1.1.0(tslib@2.8.1) + '@jsonjoy.com/util': 1.5.0(tslib@2.8.1) + tree-dump: 1.0.2(tslib@2.8.1) + tslib: 2.8.1 memory-fs@0.5.0: dependencies: @@ -29053,7 +29116,7 @@ snapshots: micromark@2.11.4: dependencies: - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.7 parse-entities: 2.0.0 transitivePeerDependencies: - supports-color @@ -29061,7 +29124,7 @@ snapshots: micromark@4.0.0: dependencies: '@types/debug': 4.1.12 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.7 decode-named-character-reference: 1.0.2 devlop: 1.1.0 micromark-core-commonmark: 2.0.1 @@ -29261,7 +29324,7 @@ snapshots: mlly@1.5.0: dependencies: - acorn: 8.12.1 + acorn: 8.11.3 pathe: 1.1.2 pkg-types: 1.0.3 ufo: 1.5.3 @@ -29275,7 +29338,7 @@ snapshots: mlly@1.7.0: dependencies: - acorn: 8.12.1 + acorn: 8.11.3 pathe: 1.1.2 pkg-types: 1.1.1 ufo: 1.5.3 @@ -29368,7 +29431,7 @@ snapshots: dependencies: '@tediousjs/connection-string': 0.5.0 commander: 11.1.0 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 rfdc: 1.3.1 tarn: 3.0.2 tedious: 16.6.1 @@ -29788,7 +29851,7 @@ snapshots: npm-package-arg@8.1.1: dependencies: hosted-git-info: 3.0.8 - semver: 7.6.3 + semver: 7.6.2 validate-npm-package-name: 3.0.0 npm-packlist@5.1.1: @@ -29912,10 +29975,10 @@ snapshots: - supports-color - vite - nuxt@3.11.2(@opentelemetry/api@1.4.1)(@parcel/watcher@2.4.1)(@types/node@20.11.30)(@unocss/reset@0.58.9)(async-validator@4.2.5)(axios@1.6.8)(encoding@0.1.13)(eslint@8.56.0)(floating-vue@5.2.2(@nuxt/kit@3.13.2(magicast@0.3.4)(rollup@4.17.2)(webpack-sources@3.2.3))(vue@3.5.13(typescript@5.6.2)))(fuse.js@6.6.2)(ioredis@5.4.1)(jwt-decode@3.1.2)(nprogress@0.2.0)(optionator@0.9.3)(qrcode@1.5.3)(rollup@4.17.2)(sass@1.71.1)(sortablejs@1.15.2)(terser@5.27.0)(typescript@5.6.2)(unocss@0.58.9(@unocss/webpack@0.58.9(rollup@4.17.2)(webpack@5.91.0(esbuild@0.20.2)))(postcss@8.4.47)(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0)))(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0))(xml2js@0.6.2): + nuxt@3.11.2(@opentelemetry/api@1.4.1)(@parcel/watcher@2.4.1)(@types/node@20.11.30)(@unocss/reset@0.58.9)(async-validator@4.2.5)(axios@1.6.8)(encoding@0.1.13)(eslint@8.56.0)(floating-vue@5.2.2(@nuxt/kit@3.13.2(magicast@0.3.4)(rollup@4.17.2)(webpack-sources@3.2.3))(vue@3.5.13(typescript@5.6.2)))(fuse.js@6.6.2)(ioredis@5.4.1)(jwt-decode@3.1.2)(nprogress@0.2.0)(optionator@0.9.3)(qrcode@1.5.3)(rollup@4.17.2)(sass@1.71.1)(sortablejs@1.15.2)(terser@5.27.0)(typescript@5.6.2)(unocss@0.58.9(@unocss/webpack@0.58.9(rollup@4.17.2)(webpack@5.91.0(@swc/core@1.9.2)(esbuild@0.20.2)))(postcss@8.4.47)(rollup@4.17.2)(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0)))(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0))(xml2js@0.6.2): dependencies: '@nuxt/devalue': 2.0.2 - '@nuxt/devtools': 1.3.1(6vdhsoamisojojaysztsg76fjq) + '@nuxt/devtools': 1.3.1(ph5yn3wmkwwiivszzh7dcupmia) '@nuxt/kit': 3.11.2(rollup@4.17.2) '@nuxt/schema': 3.11.2(rollup@4.17.2) '@nuxt/telemetry': 2.5.3(rollup@4.17.2) @@ -30036,7 +30099,7 @@ snapshots: '@yarnpkg/lockfile': 1.1.0 '@yarnpkg/parsers': 3.0.0-rc.46 '@zkochan/js-yaml': 0.0.6 - axios: 1.6.8(debug@4.3.4) + axios: 1.6.8 chalk: 4.1.2 cli-cursor: 3.1.0 cli-spinners: 2.6.1 @@ -30115,6 +30178,13 @@ snapshots: dependencies: buffer: 6.0.3 + object.assign@4.1.4: + dependencies: + call-bind: 1.0.7 + define-properties: 1.2.0 + has-symbols: 1.0.3 + object-keys: 1.1.1 + object.assign@4.1.5: dependencies: call-bind: 1.0.7 @@ -30157,8 +30227,8 @@ snapshots: object.values@1.1.6: dependencies: call-bind: 1.0.7 - define-properties: 1.2.1 - es-abstract: 1.22.4 + define-properties: 1.2.0 + es-abstract: 1.22.1 object.values@1.1.7: dependencies: @@ -30630,6 +30700,8 @@ snapshots: picocolors@1.0.0: {} + picocolors@1.0.1: {} + picocolors@1.1.0: {} picocolors@1.1.1: {} @@ -30759,7 +30831,7 @@ snapshots: postcss-calc@10.0.0(postcss@8.4.47): dependencies: postcss: 8.4.47 - postcss-selector-parser: 6.1.0 + postcss-selector-parser: 6.0.16 postcss-value-parser: 4.2.0 postcss-calc@9.0.1(postcss@8.4.47): @@ -30778,7 +30850,7 @@ snapshots: postcss-colormin@7.0.0(postcss@8.4.47): dependencies: - browserslist: 4.24.0 + browserslist: 4.23.0 caniuse-api: 3.0.0 colord: 2.9.3 postcss: 8.4.47 @@ -30792,7 +30864,7 @@ snapshots: postcss-convert-values@7.0.0(postcss@8.4.47): dependencies: - browserslist: 4.24.0 + browserslist: 4.23.0 postcss: 8.4.47 postcss-value-parser: 4.2.0 @@ -30854,7 +30926,7 @@ snapshots: postcss-merge-rules@7.0.1(postcss@8.4.47): dependencies: - browserslist: 4.24.0 + browserslist: 4.23.0 caniuse-api: 3.0.0 cssnano-utils: 5.0.0(postcss@8.4.47) postcss: 8.4.47 @@ -30893,7 +30965,7 @@ snapshots: postcss-minify-params@7.0.0(postcss@8.4.47): dependencies: - browserslist: 4.24.0 + browserslist: 4.23.0 cssnano-utils: 5.0.0(postcss@8.4.47) postcss: 8.4.47 postcss-value-parser: 4.2.0 @@ -30911,7 +30983,7 @@ snapshots: postcss-nested@6.0.1(postcss@8.4.47): dependencies: postcss: 8.4.47 - postcss-selector-parser: 6.1.0 + postcss-selector-parser: 6.0.16 postcss-normalize-charset@6.0.2(postcss@8.4.47): dependencies: @@ -30979,7 +31051,7 @@ snapshots: postcss-normalize-unicode@7.0.0(postcss@8.4.47): dependencies: - browserslist: 4.24.0 + browserslist: 4.23.0 postcss: 8.4.47 postcss-value-parser: 4.2.0 @@ -31023,7 +31095,7 @@ snapshots: postcss-reduce-initial@7.0.0(postcss@8.4.47): dependencies: - browserslist: 4.24.0 + browserslist: 4.23.0 caniuse-api: 3.0.0 postcss: 8.4.47 @@ -31042,6 +31114,11 @@ snapshots: cssesc: 3.0.0 util-deprecate: 1.0.2 + postcss-selector-parser@6.0.16: + dependencies: + cssesc: 3.0.0 + util-deprecate: 1.0.2 + postcss-selector-parser@6.1.0: dependencies: cssesc: 3.0.0 @@ -31074,8 +31151,8 @@ snapshots: postcss@8.4.38: dependencies: nanoid: 3.3.7 - picocolors: 1.1.0 - source-map-js: 1.2.1 + picocolors: 1.0.1 + source-map-js: 1.2.0 postcss@8.4.47: dependencies: @@ -31089,12 +31166,6 @@ snapshots: picocolors: 1.1.1 source-map-js: 1.2.1 - postcss@8.4.49: - dependencies: - nanoid: 3.3.7 - picocolors: 1.1.1 - source-map-js: 1.2.1 - postgres-array@2.0.0: {} postgres-bytea@1.0.0: {} @@ -31550,6 +31621,12 @@ snapshots: regexp-tree@0.1.27: {} + regexp.prototype.flags@1.5.0: + dependencies: + call-bind: 1.0.7 + define-properties: 1.2.0 + functions-have-names: 1.2.3 + regexp.prototype.flags@1.5.2: dependencies: call-bind: 1.0.7 @@ -31872,7 +31949,7 @@ snapshots: schema-utils@4.2.0: dependencies: - '@types/json-schema': 7.0.12 + '@types/json-schema': 7.0.15 ajv: 8.12.0 ajv-formats: 2.1.1(ajv@8.12.0) ajv-keywords: 5.1.0(ajv@8.12.0) @@ -32127,7 +32204,7 @@ snapshots: dependencies: '@kwsites/file-exists': 1.1.1 '@kwsites/promise-deferred': 1.1.1 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.7 transitivePeerDependencies: - supports-color @@ -32200,7 +32277,7 @@ snapshots: socket.io-client@4.7.5: dependencies: '@socket.io/component-emitter': 3.1.0 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 engine.io-client: 6.5.3 socket.io-parser: 4.2.4 transitivePeerDependencies: @@ -32211,7 +32288,7 @@ snapshots: socket.io-parser@4.2.4: dependencies: '@socket.io/component-emitter': 3.1.0 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.7 transitivePeerDependencies: - supports-color @@ -32220,7 +32297,7 @@ snapshots: accepts: 1.3.8 base64id: 2.0.0 cors: 2.8.5 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 engine.io: 6.5.2 socket.io-adapter: 2.5.2 socket.io-parser: 4.2.4 @@ -32238,7 +32315,7 @@ snapshots: socks-proxy-agent@6.2.1: dependencies: agent-base: 6.0.2 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.7 socks: 2.7.1 transitivePeerDependencies: - supports-color @@ -32247,7 +32324,7 @@ snapshots: socks-proxy-agent@7.0.0: dependencies: agent-base: 6.0.2 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.7 socks: 2.7.1 transitivePeerDependencies: - supports-color @@ -32255,7 +32332,7 @@ snapshots: socks-proxy-agent@8.0.2: dependencies: agent-base: 7.1.0 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.7 socks: 2.7.1 transitivePeerDependencies: - supports-color @@ -32315,7 +32392,7 @@ snapshots: spdy-transport@3.0.0: dependencies: - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.7 detect-node: 2.1.0 hpack.js: 2.1.6 obuf: 1.1.2 @@ -32326,7 +32403,7 @@ snapshots: spdy@4.0.2: dependencies: - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.7 handle-thing: 2.0.1 http-deceiver: 1.2.7 select-hose: 2.0.0 @@ -32497,8 +32574,8 @@ snapshots: es-abstract: 1.22.4 get-intrinsic: 1.2.4 has-symbols: 1.0.3 - internal-slot: 1.0.7 - regexp.prototype.flags: 1.5.2 + internal-slot: 1.0.5 + regexp.prototype.flags: 1.5.0 set-function-name: 2.0.2 side-channel: 1.0.4 @@ -32608,7 +32685,7 @@ snapshots: stylehacks@7.0.1(postcss@8.4.47): dependencies: - browserslist: 4.24.0 + browserslist: 4.23.0 postcss: 8.4.47 postcss-selector-parser: 6.1.0 @@ -32629,7 +32706,7 @@ snapshots: dependencies: component-emitter: 1.3.0 cookiejar: 2.1.4 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.7 fast-safe-stringify: 2.1.1 form-data: 4.0.0 formidable: 2.1.2 @@ -32842,9 +32919,9 @@ snapshots: promise: 8.3.0 qs: 6.11.2 - thingies@1.21.0(tslib@2.6.2): + thingies@1.21.0(tslib@2.8.1): dependencies: - tslib: 2.6.2 + tslib: 2.8.1 throttle-debounce@3.0.1: {} @@ -32916,9 +32993,9 @@ snapshots: dependencies: punycode: 2.3.1 - tree-dump@1.0.2(tslib@2.6.2): + tree-dump@1.0.2(tslib@2.8.1): dependencies: - tslib: 2.6.2 + tslib: 2.8.1 tree-kill@1.2.2: {} @@ -33068,7 +33145,7 @@ snapshots: tuf-js@1.1.7: dependencies: '@tufjs/models': 1.0.4 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.7 make-fetch-happen: 11.1.1 transitivePeerDependencies: - supports-color @@ -33076,7 +33153,7 @@ snapshots: tuf-js@2.2.0: dependencies: '@tufjs/models': 2.0.0 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.7 make-fetch-happen: 13.0.0 transitivePeerDependencies: - supports-color @@ -33241,7 +33318,7 @@ snapshots: dependencies: acorn: 8.11.3 estree-walker: 3.0.3 - magic-string: 0.30.11 + magic-string: 0.30.10 unplugin: 1.10.0 undefsafe@2.0.5: {} @@ -33309,7 +33386,7 @@ snapshots: estree-walker: 3.0.3 fast-glob: 3.3.2 local-pkg: 0.5.0 - magic-string: 0.30.11 + magic-string: 0.30.10 mlly: 1.6.1 pathe: 1.1.2 pkg-types: 1.0.3 @@ -33415,7 +33492,7 @@ snapshots: '@antfu/install-pkg': 0.3.1 '@antfu/utils': 0.7.7 '@iconify/utils': 2.1.22 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 kolorist: 1.8.0 local-pkg: 0.5.0 unplugin: 1.7.1 @@ -33429,7 +33506,7 @@ snapshots: '@antfu/utils': 0.7.6 '@rollup/pluginutils': 5.1.0(rollup@4.17.2) chokidar: 3.6.0 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 fast-glob: 3.3.2 local-pkg: 0.4.3 magic-string: 0.30.7 @@ -33467,7 +33544,7 @@ snapshots: unplugin@1.10.0: dependencies: - acorn: 8.12.1 + acorn: 8.11.3 chokidar: 3.6.0 webpack-sources: 3.2.3 webpack-virtual-modules: 0.6.1 @@ -33586,7 +33663,7 @@ snapshots: dependencies: browserslist: 4.23.0 escalade: 3.2.0 - picocolors: 1.1.0 + picocolors: 1.1.1 update-browserslist-db@1.1.1(browserslist@4.24.0): dependencies: @@ -33692,7 +33769,7 @@ snapshots: vite-node@1.2.2(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0): dependencies: cac: 6.7.14 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.7 pathe: 1.1.2 picocolors: 1.1.0 vite: 5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0) @@ -33709,7 +33786,7 @@ snapshots: vite-node@1.6.0(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0): dependencies: cac: 6.7.14 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.7 pathe: 1.1.2 picocolors: 1.1.0 vite: 5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0) @@ -33750,7 +33827,7 @@ snapshots: dependencies: '@antfu/utils': 0.7.8 '@rollup/pluginutils': 5.1.0(rollup@4.17.2) - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.7 error-stack-parser-es: 0.1.1 fs-extra: 11.2.0 open: 10.1.0 @@ -33796,7 +33873,7 @@ snapshots: vite-plugin-windicss@1.9.1(vite@5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0)): dependencies: '@windicss/plugin-utils': 1.9.1 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.7 kolorist: 1.8.0 vite: 5.2.11(@types/node@20.11.30)(sass@1.71.1)(terser@5.27.0) windicss: 3.5.6 @@ -33835,7 +33912,7 @@ snapshots: acorn-walk: 8.3.2 cac: 6.7.14 chai: 4.4.1 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.4 execa: 8.0.1 local-pkg: 0.5.0 magic-string: 0.30.5 @@ -33947,7 +34024,7 @@ snapshots: vue-eslint-parser@9.4.2(eslint@8.56.0): dependencies: - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.7 eslint: 8.56.0 eslint-scope: 7.2.2 eslint-visitor-keys: 3.4.3 @@ -34387,7 +34464,7 @@ snapshots: windicss-webpack-plugin@1.7.8: dependencies: '@windicss/plugin-utils': 1.9.1 - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.7 get-port: 6.1.2 loader-utils: 2.0.4 lodash: 4.17.21 @@ -34609,7 +34686,7 @@ snapshots: youtube-player@5.6.0: dependencies: - debug: 4.3.4(supports-color@5.5.0) + debug: 4.3.7 load-script: 1.0.0 sister: 3.0.2 transitivePeerDependencies: