diff --git a/.env b/.env index c8947a2..09344c1 100644 --- a/.env +++ b/.env @@ -1,2 +1,5 @@ # 平台本地运行端口号 VITE_PORT = 8848 + +# 是否隐藏首页 隐藏 true 不隐藏 false (勿删除,VITE_HIDE_HOME只需在.env文件配置) +VITE_HIDE_HOME = false diff --git a/.env.staging b/.env.staging index f037699..1cecd7a 100644 --- a/.env.staging +++ b/.env.staging @@ -13,4 +13,4 @@ VITE_CDN = true # 是否启用gzip压缩或brotli压缩(分两种情况,删除原始文件和不删除原始文件) # 压缩时不删除原始文件的配置:gzip、brotli、both(同时开启 gzip 与 brotli 压缩)、none(不开启压缩,默认) # 压缩时删除原始文件的配置:gzip-clear、brotli-clear、both-clear(同时开启 gzip 与 brotli 压缩)、none(不开启压缩,默认) -VITE_COMPRESSION = "both-clear" +VITE_COMPRESSION = "none" diff --git a/.stylelintignore b/.stylelintignore index 8e46e10..0c34e61 100644 --- a/.stylelintignore +++ b/.stylelintignore @@ -1,3 +1,4 @@ /dist/* /public/* -public/* \ No newline at end of file +public/* +src/style/reset.scss \ No newline at end of file diff --git a/LICENSE b/LICENSE index 28358eb..6d4889d 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2023 pure-admin +Copyright (c) 2020-present, pure-admin Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.en-US.md b/README.en-US.md index aa4ba12..fcf6cc0 100644 --- a/README.en-US.md +++ b/README.en-US.md @@ -49,3 +49,5 @@ bilibili: https://www.bilibili.com/video/BV1534y1S7HV/ ## License In principle, no fees and copyrights are charged, and you can use it with confidence, but if you need secondary open source, please contact the author for permission! + +[MIT © 2020-present, pure-admin](./LICENSE) diff --git a/README.md b/README.md index da8abb6..5b1404a 100644 --- a/README.md +++ b/README.md @@ -64,4 +64,4 @@ pnpm remove 包名 原则上不收取任何费用及版权,可以放心使用,不过如需二次开源(比如用此平台二次开发并开源)请联系作者获取许可! -[MIT © xiaoxian521-2023](./LICENSE) +[MIT © 2020-present, pure-admin](./LICENSE) diff --git a/build/index.ts b/build/index.ts index 462e70e..f125097 100644 --- a/build/index.ts +++ b/build/index.ts @@ -6,6 +6,7 @@ const warpperEnv = (envConf: Recordable): ViteEnv => { VITE_PUBLIC_PATH: "", VITE_ROUTER_HISTORY: "", VITE_CDN: false, + VITE_HIDE_HOME: "false", VITE_COMPRESSION: "none" }; diff --git a/build/info.ts b/build/info.ts index d64b790..7ef3f11 100644 --- a/build/info.ts +++ b/build/info.ts @@ -1,8 +1,8 @@ import type { Plugin } from "vite"; import dayjs, { Dayjs } from "dayjs"; +import utils from "@pureadmin/utils"; import duration from "dayjs/plugin/duration"; import { green, blue, bold } from "picocolors"; -import { getPackageSize } from "@pureadmin/utils"; dayjs.extend(duration); export function viteBuildInfo(): Plugin { @@ -33,7 +33,7 @@ export function viteBuildInfo(): Plugin { closeBundle() { if (config.command === "build") { endTime = dayjs(new Date()); - getPackageSize({ + utils.getPackageSize({ folder: outDir, callback: (size: string) => { console.log( diff --git a/build/optimize.ts b/build/optimize.ts index 6c9c279..4f58ae2 100644 --- a/build/optimize.ts +++ b/build/optimize.ts @@ -10,9 +10,9 @@ const include = [ "dayjs", "axios", "pinia", - "echarts", "vue-i18n", "js-cookie", + "sortablejs", "@vueuse/core", "@pureadmin/utils", "responsive-storage", diff --git a/build/plugins.ts b/build/plugins.ts index 5e04ef4..ccdfa96 100644 --- a/build/plugins.ts +++ b/build/plugins.ts @@ -11,7 +11,6 @@ import { visualizer } from "rollup-plugin-visualizer"; import removeConsole from "vite-plugin-remove-console"; import themePreprocessorPlugin from "@pureadmin/theme"; import VueI18nPlugin from "@intlify/unplugin-vue-i18n/vite"; -import DefineOptions from "unplugin-vue-define-options/vite"; import { genScssMultipleScopeVars } from "../src/layout/theme"; export function getPluginsList( @@ -23,7 +22,6 @@ export function getPluginsList( const lifecycle = process.env.npm_lifecycle_event; return [ vue(), - // https://github.com/intlify/bundle-tools/tree/main/packages/vite-plugin-vue-i18n VueI18nPlugin({ runtimeOnly: true, compositionOnly: true, @@ -33,7 +31,6 @@ export function getPluginsList( vueJsx(), VITE_CDN ? cdn : null, configCompressPlugin(VITE_COMPRESSION), - DefineOptions(), // 线上环境删除console removeConsole({ external: ["src/assets/iconfont/iconfont.js"] }), viteBuildInfo(), diff --git a/index.html b/index.html index f8a332e..f7f6135 100644 --- a/index.html +++ b/index.html @@ -21,54 +21,54 @@ html, body, #app { - width: 100%; - height: 100%; - display: flex; position: relative; - justify-content: center; + display: flex; align-items: center; + justify-content: center; + width: 100%; + height: 100%; overflow: hidden; } .loader, - .loader:before, - .loader:after { - border-radius: 50%; + .loader::before, + .loader::after { width: 2.5em; height: 2.5em; + border-radius: 50%; + animation: load-animation 1.8s infinite ease-in-out; animation-fill-mode: both; - animation: loadAnimation 1.8s infinite ease-in-out; } .loader { - color: #406eeb; - font-size: 10px; - margin: 80px auto; position: relative; + top: 0; + margin: 80px auto; + font-size: 10px; + color: #406eeb; text-indent: -9999em; transform: translateZ(0); - animation-delay: -0.16s; - top: 0; transform: translate(-50%, 0); + animation-delay: -0.16s; } - .loader:before, - .loader:after { - content: ""; + .loader::before, + .loader::after { position: absolute; top: 0; + content: ""; } - .loader:before { + .loader::before { left: -3.5em; animation-delay: -0.32s; } - .loader:after { + .loader::after { left: 3.5em; } - @keyframes loadAnimation { + @keyframes load-animation { 0%, 80%, 100% { diff --git a/package.json b/package.json index 37796f1..d436e44 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "pure-admin-thin", - "version": "3.9.7", + "version": "4.1.0", "private": true, "scripts": { "dev": "NODE_OPTIONS=--max-old-space-size=4096 vite", @@ -15,8 +15,8 @@ "cloc": "NODE_OPTIONS=--max-old-space-size=4096 cloc . --exclude-dir=node_modules --exclude-lang=YAML", "clean:cache": "rm -rf node_modules && rm -rf .eslintcache && pnpm install", "lint:eslint": "eslint --cache --max-warnings 0 \"{src,mock,build}/**/*.{vue,js,ts,tsx}\" --fix", - "lint:prettier": "prettier --write \"src/**/*.{js,ts,json,tsx,css,less,scss,vue,html,md}\"", - "lint:stylelint": "stylelint --cache --fix \"**/*.{vue,css,scss,postcss,less}\" --cache --cache-location node_modules/.cache/stylelint/", + "lint:prettier": "prettier --write \"src/**/*.{js,ts,json,tsx,css,scss,vue,html,md}\"", + "lint:stylelint": "stylelint --cache --fix \"**/*.{html,vue,css,scss}\" --cache --cache-location node_modules/.cache/stylelint/", "lint:lint-staged": "lint-staged -c ./.husky/lintstagedrc.js", "lint:pretty": "pretty-quick --staged", "lint": "pnpm lint:eslint && pnpm lint:prettier && pnpm lint:stylelint", @@ -29,98 +29,109 @@ "not op_mini all" ], "dependencies": { - "@pureadmin/descriptions": "^1.1.0", - "@pureadmin/table": "^2.0.0", - "@pureadmin/utils": "^1.8.5", - "@vueuse/core": "^9.13.0", + "@pureadmin/descriptions": "^1.1.1", + "@pureadmin/table": "^2.1.0", + "@pureadmin/utils": "^1.8.9", + "@vueuse/core": "^10.1.2", "@vueuse/motion": "2.0.0-beta.12", "animate.css": "^4.1.1", - "axios": "1.2.2", + "axios": "^1.4.0", "dayjs": "^1.11.7", - "echarts": "^5.4.1", - "element-plus": "^2.2.32", + "echarts": "^5.4.2", + "element-plus": "^2.3.4", "element-resize-detector": "^1.2.4", - "js-cookie": "^3.0.1", + "js-cookie": "^3.0.5", "mitt": "^3.0.0", "mockjs": "^1.1.0", "nprogress": "^0.2.0", "path": "^0.12.7", - "pinia": "^2.0.32", - "qs": "^6.11.0", + "pinia": "^2.0.36", + "qs": "^6.11.1", "responsive-storage": "^2.2.0", - "vue": "^3.2.47", + "sortablejs": "^1.15.0", + "vue": "^3.3.1", "vue-i18n": "^9.2.2", "vue-router": "^4.1.6", "vue-types": "^5.0.2" }, "devDependencies": { - "@commitlint/cli": "13.1.0", - "@commitlint/config-conventional": "13.1.0", - "@iconify-icons/ep": "^1.2.10", - "@iconify-icons/ri": "^1.2.4", - "@iconify/vue": "^4.1.0", - "@intlify/unplugin-vue-i18n": "^0.8.2", + "@commitlint/cli": "^17.6.3", + "@commitlint/config-conventional": "^17.6.3", + "@iconify-icons/ep": "^1.2.11", + "@iconify-icons/ri": "^1.2.7", + "@iconify/vue": "^4.1.1", + "@intlify/unplugin-vue-i18n": "^0.10.0", "@pureadmin/theme": "^3.0.0", "@types/element-resize-detector": "1.1.3", - "@types/js-cookie": "^3.0.1", + "@types/js-cookie": "^3.0.3", "@types/mockjs": "^1.0.7", - "@types/node": "^18.11.9", + "@types/node": "^18.15.12", "@types/nprogress": "0.2.0", "@types/qs": "^6.9.7", - "@typescript-eslint/eslint-plugin": "^5.43.0", - "@typescript-eslint/parser": "^5.43.0", - "@vitejs/plugin-vue": "^4.0.0", - "@vitejs/plugin-vue-jsx": "^3.0.0", - "@vue/eslint-config-prettier": "^7.0.0", - "@vue/eslint-config-typescript": "^11.0.2", - "autoprefixer": "^10.4.13", + "@types/sortablejs": "^1.15.1", + "@typescript-eslint/eslint-plugin": "^5.59.5", + "@typescript-eslint/parser": "^5.59.5", + "@vitejs/plugin-vue": "^4.2.2", + "@vitejs/plugin-vue-jsx": "^3.0.1", + "@vue/eslint-config-prettier": "^7.1.0", + "@vue/eslint-config-typescript": "^11.0.3", + "autoprefixer": "^10.4.14", "cloc": "^2.11.0", - "cssnano": "^5.1.14", - "eslint": "^8.8.0", - "eslint-plugin-prettier": "^4.0.0", - "eslint-plugin-vue": "^9.9.0", - "husky": "^7.0.4", - "lint-staged": "11.1.2", + "cssnano": "^6.0.1", + "eslint": "^8.40.0", + "eslint-plugin-prettier": "^4.2.1", + "eslint-plugin-vue": "^9.12.0", + "husky": "^8.0.3", + "lint-staged": "^13.2.2", "picocolors": "^1.0.0", - "postcss": "^8.4.21", + "postcss": "^8.4.23", "postcss-html": "^1.5.0", "postcss-import": "^15.1.0", "postcss-scss": "^4.0.6", - "prettier": "^2.5.1", + "prettier": "^2.8.7", "pretty-quick": "3.1.1", - "rimraf": "3.0.2", + "rimraf": "^5.0.0", "rollup-plugin-visualizer": "^5.9.0", - "sass": "^1.57.1", - "sass-loader": "^13.2.0", - "stylelint": "^14.3.0", - "stylelint-config-html": "^1.0.0", - "stylelint-config-prettier": "^9.0.3", - "stylelint-config-recommended": "^9.0.0", - "stylelint-config-standard": "^29.0.0", - "stylelint-order": "^5.0.0", + "sass": "^1.62.1", + "sass-loader": "^13.2.2", + "stylelint": "^15.6.1", + "stylelint-config-html": "^1.1.0", + "stylelint-config-recess-order": "^4.0.0", + "stylelint-config-recommended": "^12.0.0", + "stylelint-config-recommended-scss": "^11.0.0", + "stylelint-config-recommended-vue": "^1.4.0", + "stylelint-config-standard": "^33.0.0", + "stylelint-config-standard-scss": "^9.0.0", + "stylelint-order": "^6.0.3", + "stylelint-prettier": "^3.0.0", + "stylelint-scss": "^5.0.0", "svgo": "^3.0.2", - "tailwindcss": "^3.2.7", - "terser": "^5.16.1", - "typescript": "^4.9.5", - "unplugin-vue-define-options": "^1.0.0", - "vite": "^4.1.4", + "tailwindcss": "^3.3.2", + "terser": "^5.17.1", + "typescript": "^5.0.4", + "vite": "^4.3.5", "vite-plugin-cdn-import": "^0.3.5", "vite-plugin-compression": "^0.5.1", "vite-plugin-mock": "^2.9.6", - "vite-plugin-remove-console": "^2.1.0", + "vite-plugin-remove-console": "^2.1.1", "vite-svg-loader": "^4.0.0", - "vue-eslint-parser": "^9.1.0", - "vue-tsc": "^1.2.0" + "vue-eslint-parser": "^9.2.1", + "vue-tsc": "^1.6.4" }, "pnpm": { "peerDependencyRules": { "ignoreMissing": [ "rollup", - "webpack" + "webpack", + "core-js" ] + }, + "allowedDeprecatedVersions": { + "sourcemap-codec": "*", + "stable": "*" } }, - "repository": "git@github.com:pure-admin/pure-admin-thin.git", + "repository": "git@github.com:pure-admin/vue-pure-admin.git", "author": "xiaoxian521", "license": "MIT" } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index e260e81..7ada347 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,218 +1,238 @@ lockfileVersion: 5.4 specifiers: - "@commitlint/cli": 13.1.0 - "@commitlint/config-conventional": 13.1.0 - "@iconify-icons/ep": ^1.2.10 - "@iconify-icons/ri": ^1.2.4 - "@iconify/vue": ^4.1.0 - "@intlify/unplugin-vue-i18n": ^0.8.2 - "@pureadmin/descriptions": ^1.1.0 - "@pureadmin/table": ^2.0.0 + "@commitlint/cli": ^17.6.3 + "@commitlint/config-conventional": ^17.6.3 + "@iconify-icons/ep": ^1.2.11 + "@iconify-icons/ri": ^1.2.7 + "@iconify/vue": ^4.1.1 + "@intlify/unplugin-vue-i18n": ^0.10.0 + "@pureadmin/descriptions": ^1.1.1 + "@pureadmin/table": ^2.1.0 "@pureadmin/theme": ^3.0.0 - "@pureadmin/utils": ^1.8.5 + "@pureadmin/utils": ^1.8.9 "@types/element-resize-detector": 1.1.3 - "@types/js-cookie": ^3.0.1 + "@types/js-cookie": ^3.0.3 "@types/mockjs": ^1.0.7 - "@types/node": ^18.11.9 + "@types/node": ^18.15.12 "@types/nprogress": 0.2.0 "@types/qs": ^6.9.7 - "@typescript-eslint/eslint-plugin": ^5.43.0 - "@typescript-eslint/parser": ^5.43.0 - "@vitejs/plugin-vue": ^4.0.0 - "@vitejs/plugin-vue-jsx": ^3.0.0 - "@vue/eslint-config-prettier": ^7.0.0 - "@vue/eslint-config-typescript": ^11.0.2 - "@vueuse/core": ^9.13.0 + "@types/sortablejs": ^1.15.1 + "@typescript-eslint/eslint-plugin": ^5.59.5 + "@typescript-eslint/parser": ^5.59.5 + "@vitejs/plugin-vue": ^4.2.2 + "@vitejs/plugin-vue-jsx": ^3.0.1 + "@vue/eslint-config-prettier": ^7.1.0 + "@vue/eslint-config-typescript": ^11.0.3 + "@vueuse/core": ^10.1.2 "@vueuse/motion": 2.0.0-beta.12 animate.css: ^4.1.1 - autoprefixer: ^10.4.13 - axios: 1.2.2 + autoprefixer: ^10.4.14 + axios: ^1.4.0 cloc: ^2.11.0 - cssnano: ^5.1.14 + cssnano: ^6.0.1 dayjs: ^1.11.7 - echarts: ^5.4.1 - element-plus: ^2.2.32 + echarts: ^5.4.2 + element-plus: ^2.3.4 element-resize-detector: ^1.2.4 - eslint: ^8.8.0 - eslint-plugin-prettier: ^4.0.0 - eslint-plugin-vue: ^9.9.0 - husky: ^7.0.4 - js-cookie: ^3.0.1 - lint-staged: 11.1.2 + eslint: ^8.40.0 + eslint-plugin-prettier: ^4.2.1 + eslint-plugin-vue: ^9.12.0 + husky: ^8.0.3 + js-cookie: ^3.0.5 + lint-staged: ^13.2.2 mitt: ^3.0.0 mockjs: ^1.1.0 nprogress: ^0.2.0 path: ^0.12.7 picocolors: ^1.0.0 - pinia: ^2.0.32 - postcss: ^8.4.21 + pinia: ^2.0.36 + postcss: ^8.4.23 postcss-html: ^1.5.0 postcss-import: ^15.1.0 postcss-scss: ^4.0.6 - prettier: ^2.5.1 + prettier: ^2.8.7 pretty-quick: 3.1.1 - qs: ^6.11.0 + qs: ^6.11.1 responsive-storage: ^2.2.0 - rimraf: 3.0.2 + rimraf: ^5.0.0 rollup-plugin-visualizer: ^5.9.0 - sass: ^1.57.1 - sass-loader: ^13.2.0 - stylelint: ^14.3.0 - stylelint-config-html: ^1.0.0 - stylelint-config-prettier: ^9.0.3 - stylelint-config-recommended: ^9.0.0 - stylelint-config-standard: ^29.0.0 - stylelint-order: ^5.0.0 + sass: ^1.62.1 + sass-loader: ^13.2.2 + sortablejs: ^1.15.0 + stylelint: ^15.6.1 + stylelint-config-html: ^1.1.0 + stylelint-config-recess-order: ^4.0.0 + stylelint-config-recommended: ^12.0.0 + stylelint-config-recommended-scss: ^11.0.0 + stylelint-config-recommended-vue: ^1.4.0 + stylelint-config-standard: ^33.0.0 + stylelint-config-standard-scss: ^9.0.0 + stylelint-order: ^6.0.3 + stylelint-prettier: ^3.0.0 + stylelint-scss: ^5.0.0 svgo: ^3.0.2 - tailwindcss: ^3.2.7 - terser: ^5.16.1 - typescript: ^4.9.5 - unplugin-vue-define-options: ^1.0.0 - vite: ^4.1.4 + tailwindcss: ^3.3.2 + terser: ^5.17.1 + typescript: ^5.0.4 + vite: ^4.3.5 vite-plugin-cdn-import: ^0.3.5 vite-plugin-compression: ^0.5.1 vite-plugin-mock: ^2.9.6 - vite-plugin-remove-console: ^2.1.0 + vite-plugin-remove-console: ^2.1.1 vite-svg-loader: ^4.0.0 - vue: ^3.2.47 - vue-eslint-parser: ^9.1.0 + vue: ^3.3.1 + vue-eslint-parser: ^9.2.1 vue-i18n: ^9.2.2 vue-router: ^4.1.6 - vue-tsc: ^1.2.0 + vue-tsc: ^1.6.4 vue-types: ^5.0.2 dependencies: - "@pureadmin/descriptions": 1.1.1_element-plus@2.2.32 - "@pureadmin/table": 2.0.0_element-plus@2.2.32 - "@pureadmin/utils": 1.8.5_echarts@5.4.1+vue@3.2.47 - "@vueuse/core": 9.13.0_vue@3.2.47 - "@vueuse/motion": 2.0.0-beta.12_vue@3.2.47 + "@pureadmin/descriptions": 1.1.1_element-plus@2.3.4 + "@pureadmin/table": 2.1.0_element-plus@2.3.4 + "@pureadmin/utils": 1.8.9_echarts@5.4.2+vue@3.3.1 + "@vueuse/core": 10.1.2_vue@3.3.1 + "@vueuse/motion": 2.0.0-beta.12_vue@3.3.1 animate.css: 4.1.1 - axios: 1.2.2 + axios: 1.4.0 dayjs: 1.11.7 - echarts: 5.4.1 - element-plus: 2.2.32_vue@3.2.47 + echarts: 5.4.2 + element-plus: 2.3.4_vue@3.3.1 element-resize-detector: 1.2.4 - js-cookie: 3.0.1 + js-cookie: 3.0.5 mitt: 3.0.0 mockjs: 1.1.0 nprogress: 0.2.0 path: 0.12.7 - pinia: 2.0.32_hmuptsblhheur2tugfgucj7gc4 - qs: 6.11.0 + pinia: 2.0.36_typescript@5.0.4+vue@3.3.1 + qs: 6.11.1 responsive-storage: 2.2.0 - vue: 3.2.47 - vue-i18n: 9.2.2_vue@3.2.47 - vue-router: 4.1.6_vue@3.2.47 - vue-types: 5.0.2_vue@3.2.47 + sortablejs: 1.15.0 + vue: 3.3.1 + vue-i18n: 9.2.2_vue@3.3.1 + vue-router: 4.2.0_vue@3.3.1 + vue-types: 5.0.2_vue@3.3.1 devDependencies: - "@commitlint/cli": 13.1.0 - "@commitlint/config-conventional": 13.1.0 - "@iconify-icons/ep": 1.2.10 - "@iconify-icons/ri": 1.2.4 - "@iconify/vue": 4.1.0_vue@3.2.47 - "@intlify/unplugin-vue-i18n": 0.8.2_vue-i18n@9.2.2 + "@commitlint/cli": 17.6.3 + "@commitlint/config-conventional": 17.6.3 + "@iconify-icons/ep": 1.2.11 + "@iconify-icons/ri": 1.2.7 + "@iconify/vue": 4.1.1_vue@3.3.1 + "@intlify/unplugin-vue-i18n": 0.10.0_vue-i18n@9.2.2 "@pureadmin/theme": 3.0.0 "@types/element-resize-detector": 1.1.3 "@types/js-cookie": 3.0.3 "@types/mockjs": 1.0.7 - "@types/node": 18.14.2 + "@types/node": 18.16.8 "@types/nprogress": 0.2.0 "@types/qs": 6.9.7 - "@typescript-eslint/eslint-plugin": 5.54.0_6mj2wypvdnknez7kws2nfdgupi - "@typescript-eslint/parser": 5.54.0_ycpbpc6yetojsgtrx3mwntkhsu - "@vitejs/plugin-vue": 4.0.0_vite@4.1.4+vue@3.2.47 - "@vitejs/plugin-vue-jsx": 3.0.0_vite@4.1.4+vue@3.2.47 - "@vue/eslint-config-prettier": 7.1.0_rlq4czn2p5niyau36qwtjimf2y - "@vue/eslint-config-typescript": 11.0.2_mwzft5yawf6e3vmm364a6avhx4 - autoprefixer: 10.4.13_postcss@8.4.21 + "@types/sortablejs": 1.15.1 + "@typescript-eslint/eslint-plugin": 5.59.5_zaj6dsh3leplki3sfxgbx2w2za + "@typescript-eslint/parser": 5.59.5_3qfatcekpgbllh6uk5ivyhkbxq + "@vitejs/plugin-vue": 4.2.2_vite@4.3.5+vue@3.3.1 + "@vitejs/plugin-vue-jsx": 3.0.1_vite@4.3.5+vue@3.3.1 + "@vue/eslint-config-prettier": 7.1.0_aq37wtubambsjkbuajxtwljxa4 + "@vue/eslint-config-typescript": 11.0.3_nhvncizgwdwdw3lhirpwnri2za + autoprefixer: 10.4.14_postcss@8.4.23 cloc: 2.11.0 - cssnano: 5.1.15_postcss@8.4.21 - eslint: 8.35.0 - eslint-plugin-prettier: 4.2.1_rlq4czn2p5niyau36qwtjimf2y - eslint-plugin-vue: 9.9.0_eslint@8.35.0 - husky: 7.0.4 - lint-staged: 11.1.2 + cssnano: 6.0.1_postcss@8.4.23 + eslint: 8.40.0 + eslint-plugin-prettier: 4.2.1_aq37wtubambsjkbuajxtwljxa4 + eslint-plugin-vue: 9.12.0_eslint@8.40.0 + husky: 8.0.3 + lint-staged: 13.2.2 picocolors: 1.0.0 - postcss: 8.4.21 + postcss: 8.4.23 postcss-html: 1.5.0 - postcss-import: 15.1.0_postcss@8.4.21 - postcss-scss: 4.0.6_postcss@8.4.21 - prettier: 2.8.4 - pretty-quick: 3.1.1_prettier@2.8.4 - rimraf: 3.0.2 + postcss-import: 15.1.0_postcss@8.4.23 + postcss-scss: 4.0.6_postcss@8.4.23 + prettier: 2.8.8 + pretty-quick: 3.1.1_prettier@2.8.8 + rimraf: 5.0.0 rollup-plugin-visualizer: 5.9.0 - sass: 1.58.3 - sass-loader: 13.2.0_sass@1.58.3 - stylelint: 14.16.1 - stylelint-config-html: 1.1.0_kbto3rg3njmczth2rrsgfnlsqa - stylelint-config-prettier: 9.0.5_stylelint@14.16.1 - stylelint-config-recommended: 9.0.0_stylelint@14.16.1 - stylelint-config-standard: 29.0.0_stylelint@14.16.1 - stylelint-order: 5.0.0_stylelint@14.16.1 + sass: 1.62.1 + sass-loader: 13.2.2_sass@1.62.1 + stylelint: 15.6.1 + stylelint-config-html: 1.1.0_bx3pbyxam4kma26m7u4sje7r2a + stylelint-config-recess-order: 4.0.0_stylelint@15.6.1 + stylelint-config-recommended: 12.0.0_stylelint@15.6.1 + stylelint-config-recommended-scss: 11.0.0_frbqpip5ildlr3fpnrzbl6etee + stylelint-config-recommended-vue: 1.4.0_bx3pbyxam4kma26m7u4sje7r2a + stylelint-config-standard: 33.0.0_stylelint@15.6.1 + stylelint-config-standard-scss: 9.0.0_frbqpip5ildlr3fpnrzbl6etee + stylelint-order: 6.0.3_stylelint@15.6.1 + stylelint-prettier: 3.0.0_ydhac4dv5nk3447o7ol4jd6c7a + stylelint-scss: 5.0.0_stylelint@15.6.1 svgo: 3.0.2 - tailwindcss: 3.2.7_postcss@8.4.21 - terser: 5.16.5 - typescript: 4.9.5 - unplugin-vue-define-options: 1.2.3_vue@3.2.47 - vite: 4.1.4_fmyp3kkbhzlhfkonroyoepdmjy + tailwindcss: 3.3.2 + terser: 5.17.3 + typescript: 5.0.4 + vite: 4.3.5_wshwf6lyytunybtggckvwapi7u vite-plugin-cdn-import: 0.3.5 - vite-plugin-compression: 0.5.1_vite@4.1.4 - vite-plugin-mock: 2.9.6_mockjs@1.1.0+vite@4.1.4 - vite-plugin-remove-console: 2.1.0 + vite-plugin-compression: 0.5.1_vite@4.3.5 + vite-plugin-mock: 2.9.8_mockjs@1.1.0+vite@4.3.5 + vite-plugin-remove-console: 2.1.1 vite-svg-loader: 4.0.0 - vue-eslint-parser: 9.1.0_eslint@8.35.0 - vue-tsc: 1.2.0_typescript@4.9.5 + vue-eslint-parser: 9.2.1_eslint@8.40.0 + vue-tsc: 1.6.4_typescript@5.0.4 packages: - /@ampproject/remapping/2.2.0: + /@alloc/quick-lru/5.2.0: resolution: { - integrity: sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w== + integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw== + } + engines: { node: ">=10" } + dev: true + + /@ampproject/remapping/2.2.1: + resolution: + { + integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg== } engines: { node: ">=6.0.0" } dependencies: - "@jridgewell/gen-mapping": 0.1.1 - "@jridgewell/trace-mapping": 0.3.17 + "@jridgewell/gen-mapping": 0.3.3 + "@jridgewell/trace-mapping": 0.3.18 dev: true - /@babel/code-frame/7.18.6: + /@babel/code-frame/7.21.4: resolution: { - integrity: sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q== + integrity: sha512-LYvhNKfwWSPpocw8GI7gpK2nq3HSDuEPC/uSYaALSJu9xjsalaaYFOq0Pwt5KmVqwEbZlDu81aLXwBOmD/Fv9g== } engines: { node: ">=6.9.0" } dependencies: "@babel/highlight": 7.18.6 dev: true - /@babel/compat-data/7.21.0: + /@babel/compat-data/7.21.7: resolution: { - integrity: sha512-gMuZsmsgxk/ENC3O/fRw5QY8A9/uxQbbCEypnLIiYYc/qVJtEV7ouxC3EllIIwNzMqAQee5tanFabWsUOutS7g== + integrity: sha512-KYMqFYTaenzMK4yUtf4EW9wc4N9ef80FsbMtkwool5zpwl4YrT1SdWYSTRcT94KO4hannogdS+LxY7L+arP3gA== } engines: { node: ">=6.9.0" } dev: true - /@babel/core/7.21.0: + /@babel/core/7.21.8: resolution: { - integrity: sha512-PuxUbxcW6ZYe656yL3EAhpy7qXKq0DmYsrJLpbB8XrsCP9Nm+XCg9XFMb5vIDliPD7+U/+M+QJlH17XOcB7eXA== + integrity: sha512-YeM22Sondbo523Sz0+CirSPnbj9bG3P0CdHcBZdqUuaeOaYEFbOLoGU7lebvGP6P5J/WE9wOn7u7C4J9HvS1xQ== } engines: { node: ">=6.9.0" } dependencies: - "@ampproject/remapping": 2.2.0 - "@babel/code-frame": 7.18.6 - "@babel/generator": 7.21.1 - "@babel/helper-compilation-targets": 7.20.7_@babel+core@7.21.0 - "@babel/helper-module-transforms": 7.21.2 - "@babel/helpers": 7.21.0 - "@babel/parser": 7.21.2 + "@ampproject/remapping": 2.2.1 + "@babel/code-frame": 7.21.4 + "@babel/generator": 7.21.5 + "@babel/helper-compilation-targets": 7.21.5_@babel+core@7.21.8 + "@babel/helper-module-transforms": 7.21.5 + "@babel/helpers": 7.21.5 + "@babel/parser": 7.21.8 "@babel/template": 7.20.7 - "@babel/traverse": 7.21.2 - "@babel/types": 7.21.2 + "@babel/traverse": 7.21.5 + "@babel/types": 7.21.5 convert-source-map: 1.9.0 debug: 4.3.4 gensync: 1.0.0-beta.2 @@ -222,16 +242,16 @@ packages: - supports-color dev: true - /@babel/generator/7.21.1: + /@babel/generator/7.21.5: resolution: { - integrity: sha512-1lT45bAYlQhFn/BHivJs43AiW2rg3/UbLyShGfF3C0KmHvO5fSghWd5kBJy30kpRRucGzXStvnnCFniCR2kXAA== + integrity: sha512-SrKK/sRv8GesIW1bDagf9cCG38IOMYZusoe1dfg0D8aiUe3Amvoj1QtjTPAWcfrZFvIwlleLb0gxzQidL9w14w== } engines: { node: ">=6.9.0" } dependencies: - "@babel/types": 7.21.2 - "@jridgewell/gen-mapping": 0.3.2 - "@jridgewell/trace-mapping": 0.3.17 + "@babel/types": 7.21.5 + "@jridgewell/gen-mapping": 0.3.3 + "@jridgewell/trace-mapping": 0.3.18 jsesc: 2.5.2 dev: true @@ -242,52 +262,53 @@ packages: } engines: { node: ">=6.9.0" } dependencies: - "@babel/types": 7.21.2 + "@babel/types": 7.21.5 dev: true - /@babel/helper-compilation-targets/7.20.7_@babel+core@7.21.0: + /@babel/helper-compilation-targets/7.21.5_@babel+core@7.21.8: resolution: { - integrity: sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ== + integrity: sha512-1RkbFGUKex4lvsB9yhIfWltJM5cZKUftB2eNajaDv3dCMEp49iBG0K14uH8NnX9IPux2+mK7JGEOB0jn48/J6w== } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0 dependencies: - "@babel/compat-data": 7.21.0 - "@babel/core": 7.21.0 + "@babel/compat-data": 7.21.7 + "@babel/core": 7.21.8 "@babel/helper-validator-option": 7.21.0 browserslist: 4.21.5 lru-cache: 5.1.1 semver: 6.3.0 dev: true - /@babel/helper-create-class-features-plugin/7.21.0_@babel+core@7.21.0: + /@babel/helper-create-class-features-plugin/7.21.8_@babel+core@7.21.8: resolution: { - integrity: sha512-Q8wNiMIdwsv5la5SPxNYzzkPnjgC0Sy0i7jLkVOCdllu/xcVNkr3TeZzbHBJrj+XXRqzX5uCyCoV9eu6xUG7KQ== + integrity: sha512-+THiN8MqiH2AczyuZrnrKL6cAxFRRQDKW9h1YkBvbgKmAm6mwiacig1qT73DHIWMGo40GRnsEfN3LA+E6NtmSw== } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0 dependencies: - "@babel/core": 7.21.0 + "@babel/core": 7.21.8 "@babel/helper-annotate-as-pure": 7.18.6 - "@babel/helper-environment-visitor": 7.18.9 + "@babel/helper-environment-visitor": 7.21.5 "@babel/helper-function-name": 7.21.0 - "@babel/helper-member-expression-to-functions": 7.21.0 + "@babel/helper-member-expression-to-functions": 7.21.5 "@babel/helper-optimise-call-expression": 7.18.6 - "@babel/helper-replace-supers": 7.20.7 + "@babel/helper-replace-supers": 7.21.5 "@babel/helper-skip-transparent-expression-wrappers": 7.20.0 "@babel/helper-split-export-declaration": 7.18.6 + semver: 6.3.0 transitivePeerDependencies: - supports-color dev: true - /@babel/helper-environment-visitor/7.18.9: + /@babel/helper-environment-visitor/7.21.5: resolution: { - integrity: sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg== + integrity: sha512-IYl4gZ3ETsWocUWgsFZLM5i1BYx9SoemminVEXadgLBa9TdeorzgLKm8wWLA6J1N/kT3Kch8XIk1laNzYoHKvQ== } engines: { node: ">=6.9.0" } dev: true @@ -300,7 +321,7 @@ packages: engines: { node: ">=6.9.0" } dependencies: "@babel/template": 7.20.7 - "@babel/types": 7.21.2 + "@babel/types": 7.21.5 dev: true /@babel/helper-hoist-variables/7.18.6: @@ -310,44 +331,44 @@ packages: } engines: { node: ">=6.9.0" } dependencies: - "@babel/types": 7.21.2 + "@babel/types": 7.21.5 dev: true - /@babel/helper-member-expression-to-functions/7.21.0: + /@babel/helper-member-expression-to-functions/7.21.5: resolution: { - integrity: sha512-Muu8cdZwNN6mRRNG6lAYErJ5X3bRevgYR2O8wN0yn7jJSnGDu6eG59RfT29JHxGUovyfrh6Pj0XzmR7drNVL3Q== + integrity: sha512-nIcGfgwpH2u4n9GG1HpStW5Ogx7x7ekiFHbjjFRKXbn5zUvqO9ZgotCO4x1aNbKn/x/xOUaXEhyNHCwtFCpxWg== } engines: { node: ">=6.9.0" } dependencies: - "@babel/types": 7.21.2 + "@babel/types": 7.21.5 dev: true - /@babel/helper-module-imports/7.18.6: + /@babel/helper-module-imports/7.21.4: resolution: { - integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA== + integrity: sha512-orajc5T2PsRYUN3ZryCEFeMDYwyw09c/pZeaQEZPH0MpKzSvn3e0uXsDBu3k03VI+9DBiRo+l22BfKTpKwa/Wg== } engines: { node: ">=6.9.0" } dependencies: - "@babel/types": 7.21.2 + "@babel/types": 7.21.5 dev: true - /@babel/helper-module-transforms/7.21.2: + /@babel/helper-module-transforms/7.21.5: resolution: { - integrity: sha512-79yj2AR4U/Oqq/WOV7Lx6hUjau1Zfo4cI+JLAVYeMV5XIlbOhmjEk5ulbTc9fMpmlojzZHkUUxAiK+UKn+hNQQ== + integrity: sha512-bI2Z9zBGY2q5yMHoBvJ2a9iX3ZOAzJPm7Q8Yz6YeoUjU/Cvhmi2G4QyTNyPBqqXSgTjUxRg3L0xV45HvkNWWBw== } engines: { node: ">=6.9.0" } dependencies: - "@babel/helper-environment-visitor": 7.18.9 - "@babel/helper-module-imports": 7.18.6 - "@babel/helper-simple-access": 7.20.2 + "@babel/helper-environment-visitor": 7.21.5 + "@babel/helper-module-imports": 7.21.4 + "@babel/helper-simple-access": 7.21.5 "@babel/helper-split-export-declaration": 7.18.6 "@babel/helper-validator-identifier": 7.19.1 "@babel/template": 7.20.7 - "@babel/traverse": 7.21.2 - "@babel/types": 7.21.2 + "@babel/traverse": 7.21.5 + "@babel/types": 7.21.5 transitivePeerDependencies: - supports-color dev: true @@ -359,42 +380,42 @@ packages: } engines: { node: ">=6.9.0" } dependencies: - "@babel/types": 7.21.2 + "@babel/types": 7.21.5 dev: true - /@babel/helper-plugin-utils/7.20.2: + /@babel/helper-plugin-utils/7.21.5: resolution: { - integrity: sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ== + integrity: sha512-0WDaIlXKOX/3KfBK/dwP1oQGiPh6rjMkT7HIRv7i5RR2VUMwrx5ZL0dwBkKx7+SW1zwNdgjHd34IMk5ZjTeHVg== } engines: { node: ">=6.9.0" } dev: true - /@babel/helper-replace-supers/7.20.7: + /@babel/helper-replace-supers/7.21.5: resolution: { - integrity: sha512-vujDMtB6LVfNW13jhlCrp48QNslK6JXi7lQG736HVbHz/mbf4Dc7tIRh1Xf5C0rF7BP8iiSxGMCmY6Ci1ven3A== + integrity: sha512-/y7vBgsr9Idu4M6MprbOVUfH3vs7tsIfnVWv/Ml2xgwvyH6LTngdfbf5AdsKwkJy4zgy1X/kuNrEKvhhK28Yrg== } engines: { node: ">=6.9.0" } dependencies: - "@babel/helper-environment-visitor": 7.18.9 - "@babel/helper-member-expression-to-functions": 7.21.0 + "@babel/helper-environment-visitor": 7.21.5 + "@babel/helper-member-expression-to-functions": 7.21.5 "@babel/helper-optimise-call-expression": 7.18.6 "@babel/template": 7.20.7 - "@babel/traverse": 7.21.2 - "@babel/types": 7.21.2 + "@babel/traverse": 7.21.5 + "@babel/types": 7.21.5 transitivePeerDependencies: - supports-color dev: true - /@babel/helper-simple-access/7.20.2: + /@babel/helper-simple-access/7.21.5: resolution: { - integrity: sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA== + integrity: sha512-ENPDAMC1wAjR0uaCUwliBdiSl1KBJAVnMTzXqi64c2MG8MPR6ii4qf7bSXDqSFbr4W6W028/rf5ivoHop5/mkg== } engines: { node: ">=6.9.0" } dependencies: - "@babel/types": 7.21.2 + "@babel/types": 7.21.5 dev: true /@babel/helper-skip-transparent-expression-wrappers/7.20.0: @@ -404,7 +425,7 @@ packages: } engines: { node: ">=6.9.0" } dependencies: - "@babel/types": 7.21.2 + "@babel/types": 7.21.5 dev: true /@babel/helper-split-export-declaration/7.18.6: @@ -414,13 +435,13 @@ packages: } engines: { node: ">=6.9.0" } dependencies: - "@babel/types": 7.21.2 + "@babel/types": 7.21.5 dev: true - /@babel/helper-string-parser/7.19.4: + /@babel/helper-string-parser/7.21.5: resolution: { - integrity: sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw== + integrity: sha512-5pTUx3hAJaZIdW99sJ6ZUUgWq/Y+Hja7TowEnLNMm1VivRgZQL3vpBY3qUACVsvw+yQU6+YgfBVmcbLaZtrA1w== } engines: { node: ">=6.9.0" } @@ -439,16 +460,16 @@ packages: engines: { node: ">=6.9.0" } dev: true - /@babel/helpers/7.21.0: + /@babel/helpers/7.21.5: resolution: { - integrity: sha512-XXve0CBtOW0pd7MRzzmoyuSj0e3SEzj8pgyFxnTT1NJZL38BD1MK7yYrm8yefRPIDvNNe14xR4FdbHwpInD4rA== + integrity: sha512-BSY+JSlHxOmGsPTydUkPf1MdMQ3M81x5xGCOVgWM3G8XH77sJ292Y2oqcp0CbbgxhqBuI46iUz1tT7hqP7EfgA== } engines: { node: ">=6.9.0" } dependencies: "@babel/template": 7.20.7 - "@babel/traverse": 7.21.2 - "@babel/types": 7.21.2 + "@babel/traverse": 7.21.5 + "@babel/types": 7.21.5 transitivePeerDependencies: - supports-color dev: true @@ -465,55 +486,56 @@ packages: js-tokens: 4.0.0 dev: true - /@babel/parser/7.21.2: + /@babel/parser/7.21.8: resolution: { - integrity: sha512-URpaIJQwEkEC2T9Kn+Ai6Xe/02iNaVCuT/PtoRz3GPVJVDpPd7mLo+VddTbhCRU9TXqW5mSrQfXZyi8kDKOVpQ== + integrity: sha512-6zavDGdzG3gUqAdWvlLFfk+36RilI+Pwyuuh7HItyeScCWP3k6i8vKclAQ0bM/0y/Kz/xiwvxhMv9MgTJP5gmA== } engines: { node: ">=6.0.0" } hasBin: true dependencies: - "@babel/types": 7.21.2 + "@babel/types": 7.21.5 - /@babel/plugin-syntax-jsx/7.18.6_@babel+core@7.21.0: + /@babel/plugin-syntax-jsx/7.21.4_@babel+core@7.21.8: resolution: { - integrity: sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q== + integrity: sha512-5hewiLct5OKyh6PLKEYaFclcqtIgCb6bmELouxjF6up5q3Sov7rOayW4RwhbaBL0dit8rA80GNfY+UuDp2mBbQ== } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.21.0 - "@babel/helper-plugin-utils": 7.20.2 + "@babel/core": 7.21.8 + "@babel/helper-plugin-utils": 7.21.5 dev: true - /@babel/plugin-syntax-typescript/7.20.0_@babel+core@7.21.0: + /@babel/plugin-syntax-typescript/7.21.4_@babel+core@7.21.8: resolution: { - integrity: sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ== + integrity: sha512-xz0D39NvhQn4t4RNsHmDnnsaQizIlUkdtYvLs8La1BlfjQ6JEwxkJGeqJMW2tAXx+q6H+WFuUTXNdYVpEya0YA== } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.21.0 - "@babel/helper-plugin-utils": 7.20.2 + "@babel/core": 7.21.8 + "@babel/helper-plugin-utils": 7.21.5 dev: true - /@babel/plugin-transform-typescript/7.21.0_@babel+core@7.21.0: + /@babel/plugin-transform-typescript/7.21.3_@babel+core@7.21.8: resolution: { - integrity: sha512-xo///XTPp3mDzTtrqXoBlK9eiAYW3wv9JXglcn/u1bi60RW11dEUxIgA8cbnDhutS1zacjMRmAwxE0gMklLnZg== + integrity: sha512-RQxPz6Iqt8T0uw/WsJNReuBpWpBqs/n7mNo18sKLoTbMp+UrEekhH+pKSVC7gWz+DNjo9gryfV8YzCiT45RgMw== } engines: { node: ">=6.9.0" } peerDependencies: "@babel/core": ^7.0.0-0 dependencies: - "@babel/core": 7.21.0 - "@babel/helper-create-class-features-plugin": 7.21.0_@babel+core@7.21.0 - "@babel/helper-plugin-utils": 7.20.2 - "@babel/plugin-syntax-typescript": 7.20.0_@babel+core@7.21.0 + "@babel/core": 7.21.8 + "@babel/helper-annotate-as-pure": 7.18.6 + "@babel/helper-create-class-features-plugin": 7.21.8_@babel+core@7.21.8 + "@babel/helper-plugin-utils": 7.21.5 + "@babel/plugin-syntax-typescript": 7.21.4_@babel+core@7.21.8 transitivePeerDependencies: - supports-color dev: true @@ -525,287 +547,341 @@ packages: } engines: { node: ">=6.9.0" } dependencies: - "@babel/code-frame": 7.18.6 - "@babel/parser": 7.21.2 - "@babel/types": 7.21.2 + "@babel/code-frame": 7.21.4 + "@babel/parser": 7.21.8 + "@babel/types": 7.21.5 dev: true - /@babel/traverse/7.21.2: + /@babel/traverse/7.21.5: resolution: { - integrity: sha512-ts5FFU/dSUPS13tv8XiEObDu9K+iagEKME9kAbaP7r0Y9KtZJZ+NGndDvWoRAYNpeWafbpFeki3q9QoMD6gxyw== + integrity: sha512-AhQoI3YjWi6u/y/ntv7k48mcrCXmus0t79J9qPNlk/lAsFlCiJ047RmbfMOawySTHtywXhbXgpx/8nXMYd+oFw== } engines: { node: ">=6.9.0" } dependencies: - "@babel/code-frame": 7.18.6 - "@babel/generator": 7.21.1 - "@babel/helper-environment-visitor": 7.18.9 + "@babel/code-frame": 7.21.4 + "@babel/generator": 7.21.5 + "@babel/helper-environment-visitor": 7.21.5 "@babel/helper-function-name": 7.21.0 "@babel/helper-hoist-variables": 7.18.6 "@babel/helper-split-export-declaration": 7.18.6 - "@babel/parser": 7.21.2 - "@babel/types": 7.21.2 + "@babel/parser": 7.21.8 + "@babel/types": 7.21.5 debug: 4.3.4 globals: 11.12.0 transitivePeerDependencies: - supports-color dev: true - /@babel/types/7.21.2: + /@babel/types/7.21.5: resolution: { - integrity: sha512-3wRZSs7jiFaB8AjxiiD+VqN5DTG2iRvJGQ+qYFrs/654lg6kGTQWIOFjlBo5RaXuAZjBmP3+OQH4dmhqiiyYxw== + integrity: sha512-m4AfNvVF2mVC/F7fDEdH2El3HzUg9It/XsCxZiOTTA3m3qYfcSVSbTfM6Q9xG+hYDniZssYhlXKKUMD5m8tF4Q== } engines: { node: ">=6.9.0" } dependencies: - "@babel/helper-string-parser": 7.19.4 + "@babel/helper-string-parser": 7.21.5 "@babel/helper-validator-identifier": 7.19.1 to-fast-properties: 2.0.0 - /@commitlint/cli/13.1.0: + /@commitlint/cli/17.6.3: resolution: { - integrity: sha512-xN/uNYWtGTva5OMSd+xA6e6/c2jk8av7MUbdd6w2cw89u6z3fAWoyiH87X0ewdSMNYmW/6B3L/2dIVGHRDID5w== + integrity: sha512-ItSz2fd4F+CujgIbQOfNNerDF1eFlsBGEfp9QcCb1kxTYMuKTYZzA6Nu1YRRrIaaWwe2E7awUGpIMrPoZkOG3A== } - engines: { node: ">=v12" } + engines: { node: ">=v14" } hasBin: true dependencies: - "@commitlint/format": 13.2.0 - "@commitlint/lint": 13.2.0 - "@commitlint/load": 13.2.1 - "@commitlint/read": 13.2.0 - "@commitlint/types": 13.2.0 - lodash: 4.17.21 + "@commitlint/format": 17.4.4 + "@commitlint/lint": 17.6.3 + "@commitlint/load": 17.5.0 + "@commitlint/read": 17.5.1 + "@commitlint/types": 17.4.4 + execa: 5.1.1 + lodash.isfunction: 3.0.9 resolve-from: 5.0.0 resolve-global: 1.0.0 - yargs: 17.7.1 + yargs: 17.7.2 + transitivePeerDependencies: + - "@swc/core" + - "@swc/wasm" dev: true - /@commitlint/config-conventional/13.1.0: + /@commitlint/config-conventional/17.6.3: resolution: { - integrity: sha512-zukJXqdr6jtMiVRy3tTHmwgKcUMGfqKDEskRigc5W3k2aYF4gBAtCEjMAJGZgSQE4DMcHeok0pEV2ANmTpb0cw== + integrity: sha512-bLyHEjjRWqlLQWIgYFHmUPbEFMOOLXeF3QbUinDIJev/u9e769tkoTH9YPknEywiuIrAgZaVo+OfzAIsJP0fsw== } - engines: { node: ">=v12" } + engines: { node: ">=v14" } dependencies: - conventional-changelog-conventionalcommits: 4.6.3 + conventional-changelog-conventionalcommits: 5.0.0 dev: true - /@commitlint/ensure/13.2.0: + /@commitlint/config-validator/17.4.4: resolution: { - integrity: sha512-rqhT62RehdLTRBu8OrPHnRCCd/7RmHEE4TiTlT4BLlr5ls5jlZhecOQWJ8np872uCNirrJ5NFjnjYYdbkNoW9Q== + integrity: sha512-bi0+TstqMiqoBAQDvdEP4AFh0GaKyLFlPPEObgI29utoKEYoPQTvF0EYqIwYYLEoJYhj5GfMIhPHJkTJhagfeg== } - engines: { node: ">=v12" } + engines: { node: ">=v14" } dependencies: - "@commitlint/types": 13.2.0 - lodash: 4.17.21 + "@commitlint/types": 17.4.4 + ajv: 8.12.0 + dev: true + + /@commitlint/ensure/17.4.4: + resolution: + { + integrity: sha512-AHsFCNh8hbhJiuZ2qHv/m59W/GRE9UeOXbkOqxYMNNg9pJ7qELnFcwj5oYpa6vzTSHtPGKf3C2yUFNy1GGHq6g== + } + engines: { node: ">=v14" } + dependencies: + "@commitlint/types": 17.4.4 + lodash.camelcase: 4.3.0 + lodash.kebabcase: 4.1.1 + lodash.snakecase: 4.1.1 + lodash.startcase: 4.4.0 + lodash.upperfirst: 4.3.1 dev: true - /@commitlint/execute-rule/13.2.0: + /@commitlint/execute-rule/17.4.0: resolution: { - integrity: sha512-6nPwpN0hwTYmsH3WM4hCdN+NrMopgRIuQ0aqZa+jnwMoS/g6ljliQNYfL+m5WO306BaIu1W3yYpbW5aI8gEr0g== + integrity: sha512-LIgYXuCSO5Gvtc0t9bebAMSwd68ewzmqLypqI2Kke1rqOqqDbMpYcYfoPfFlv9eyLIh4jocHWwCK5FS7z9icUA== } - engines: { node: ">=v12" } + engines: { node: ">=v14" } dev: true - /@commitlint/format/13.2.0: + /@commitlint/format/17.4.4: resolution: { - integrity: sha512-yNBQJe6YFhM1pJAta4LvzQxccSKof6axJH7ALYjuhQqfT8AKlad7Y/2SuJ07ioyreNIqwOTuF2UfU8yJ7JzEIQ== + integrity: sha512-+IS7vpC4Gd/x+uyQPTAt3hXs5NxnkqAZ3aqrHd5Bx/R9skyCAWusNlNbw3InDbAK6j166D9asQM8fnmYIa+CXQ== } - engines: { node: ">=v12" } + engines: { node: ">=v14" } dependencies: - "@commitlint/types": 13.2.0 + "@commitlint/types": 17.4.4 chalk: 4.1.2 dev: true - /@commitlint/is-ignored/13.2.0: + /@commitlint/is-ignored/17.6.3: resolution: { - integrity: sha512-onnx4WctHFPPkHGFFAZBIWRSaNwuhixIIfbwPhcZ6IewwQX5n4jpjwM1GokA7vhlOnQ57W7AavbKUGjzIVtnRQ== + integrity: sha512-LQbNdnPbxrpbcrVKR5yf51SvquqktpyZJwqXx3lUMF6+nT9PHB8xn3wLy8pi2EQv5Zwba484JnUwDE1ygVYNQA== } - engines: { node: ">=v12" } + engines: { node: ">=v14" } dependencies: - "@commitlint/types": 13.2.0 - semver: 7.3.5 + "@commitlint/types": 17.4.4 + semver: 7.5.0 dev: true - /@commitlint/lint/13.2.0: + /@commitlint/lint/17.6.3: resolution: { - integrity: sha512-5XYkh0e9ehHjA7BxAHFpjPgr1qqbFY8OFG1wpBiAhycbYBtJnQmculA2wcwqTM40YCUBqEvWFdq86jTG8fbkMw== + integrity: sha512-fBlXwt6SHJFgm3Tz+luuo3DkydAx9HNC5y4eBqcKuDuMVqHd2ugMNr+bQtx6riv9mXFiPoKp7nE4Xn/ls3iVDA== } - engines: { node: ">=v12" } + engines: { node: ">=v14" } dependencies: - "@commitlint/is-ignored": 13.2.0 - "@commitlint/parse": 13.2.0 - "@commitlint/rules": 13.2.0 - "@commitlint/types": 13.2.0 + "@commitlint/is-ignored": 17.6.3 + "@commitlint/parse": 17.4.4 + "@commitlint/rules": 17.6.1 + "@commitlint/types": 17.4.4 dev: true - /@commitlint/load/13.2.1: + /@commitlint/load/17.5.0: resolution: { - integrity: sha512-qlaJkj0hfa9gtWRfCfbgFBTK3GYQRmjZhba4l9mUu4wV9lEZ4ICFlrLtd/8kaLXf/8xbrPhkAPkVFOAqM0YwUQ== + integrity: sha512-l+4W8Sx4CD5rYFsrhHH8HP01/8jEP7kKf33Xlx2Uk2out/UKoKPYMOIRcDH5ppT8UXLMV+x6Wm5osdRKKgaD1Q== } - engines: { node: ">=v12" } + engines: { node: ">=v14" } dependencies: - "@commitlint/execute-rule": 13.2.0 - "@commitlint/resolve-extends": 13.2.0 - "@commitlint/types": 13.2.0 - "@endemolshinegroup/cosmiconfig-typescript-loader": 3.0.2_prdn7pc7mycjsinmi5fnyv4we4 + "@commitlint/config-validator": 17.4.4 + "@commitlint/execute-rule": 17.4.0 + "@commitlint/resolve-extends": 17.4.4 + "@commitlint/types": 17.4.4 + "@types/node": 18.16.8 chalk: 4.1.2 - cosmiconfig: 7.1.0 - lodash: 4.17.21 + cosmiconfig: 8.1.3 + cosmiconfig-typescript-loader: 4.3.0_n5kxjilisypmeyxi43a7iwpe7e + lodash.isplainobject: 4.0.6 + lodash.merge: 4.6.2 + lodash.uniq: 4.5.0 resolve-from: 5.0.0 - typescript: 4.9.5 + ts-node: 10.9.1_2mf6xdw3sorfzkegf5qcc7fqyy + typescript: 5.0.4 + transitivePeerDependencies: + - "@swc/core" + - "@swc/wasm" dev: true - /@commitlint/message/13.2.0: + /@commitlint/message/17.4.2: resolution: { - integrity: sha512-+LlErJj2F2AC86xJb33VJIvSt25xqSF1I0b0GApSgoUtQBeJhx4SxIj1BLvGcLVmbRmbgTzAFq/QylwLId7EhA== + integrity: sha512-3XMNbzB+3bhKA1hSAWPCQA3lNxR4zaeQAQcHj0Hx5sVdO6ryXtgUBGGv+1ZCLMgAPRixuc6en+iNAzZ4NzAa8Q== } - engines: { node: ">=v12" } + engines: { node: ">=v14" } dev: true - /@commitlint/parse/13.2.0: + /@commitlint/parse/17.4.4: resolution: { - integrity: sha512-AtfKSQJQADbDhW+kuC5PxOyBANsYCuuJlZRZ2PYslOz2rvWwZ93zt+nKjM4g7C9ETbz0uq4r7/EoOsTJ2nJqfQ== + integrity: sha512-EKzz4f49d3/OU0Fplog7nwz/lAfXMaDxtriidyGF9PtR+SRbgv4FhsfF310tKxs6EPj8Y+aWWuX3beN5s+yqGg== } - engines: { node: ">=v12" } + engines: { node: ">=v14" } dependencies: - "@commitlint/types": 13.2.0 + "@commitlint/types": 17.4.4 conventional-changelog-angular: 5.0.13 conventional-commits-parser: 3.2.4 dev: true - /@commitlint/read/13.2.0: + /@commitlint/read/17.5.1: resolution: { - integrity: sha512-7db5e1Bn3re6hQN0SqygTMF/QX6/MQauoJn3wJiUHE93lvwO6aFQxT3qAlYeyBPwfWsmDz/uSH454jtrSsv3Uw== + integrity: sha512-7IhfvEvB//p9aYW09YVclHbdf1u7g7QhxeYW9ZHSO8Huzp8Rz7m05aCO1mFG7G8M+7yfFnXB5xOmG18brqQIBg== } - engines: { node: ">=v12" } + engines: { node: ">=v14" } dependencies: - "@commitlint/top-level": 13.2.0 - "@commitlint/types": 13.2.0 - fs-extra: 10.1.0 + "@commitlint/top-level": 17.4.0 + "@commitlint/types": 17.4.4 + fs-extra: 11.1.1 git-raw-commits: 2.0.11 + minimist: 1.2.8 dev: true - /@commitlint/resolve-extends/13.2.0: + /@commitlint/resolve-extends/17.4.4: resolution: { - integrity: sha512-HLCMkqMKtvl1yYLZ1Pm0UpFvd0kYjsm1meLOGZ7VkOd9G/XX+Fr1S2G5AT2zeiDw7WUVYK8lGVMNa319bnV+aw== + integrity: sha512-znXr1S0Rr8adInptHw0JeLgumS11lWbk5xAWFVno+HUFVN45875kUtqjrI6AppmD3JI+4s0uZlqqlkepjJd99A== } - engines: { node: ">=v12" } + engines: { node: ">=v14" } dependencies: + "@commitlint/config-validator": 17.4.4 + "@commitlint/types": 17.4.4 import-fresh: 3.3.0 - lodash: 4.17.21 + lodash.mergewith: 4.6.2 resolve-from: 5.0.0 resolve-global: 1.0.0 dev: true - /@commitlint/rules/13.2.0: + /@commitlint/rules/17.6.1: resolution: { - integrity: sha512-O3A9S7blOzvHfzrJrUQe9JxdtGy154ol/GXHwvd8WfMJ10y5ryBB4b6+0YZ1XhItWzrEASOfOKbD++EdLV90dQ== + integrity: sha512-lUdHw6lYQ1RywExXDdLOKxhpp6857/4c95Dc/1BikrHgdysVUXz26yV0vp1GL7Gv+avx9WqZWTIVB7pNouxlfw== } - engines: { node: ">=v12" } + engines: { node: ">=v14" } dependencies: - "@commitlint/ensure": 13.2.0 - "@commitlint/message": 13.2.0 - "@commitlint/to-lines": 13.2.0 - "@commitlint/types": 13.2.0 + "@commitlint/ensure": 17.4.4 + "@commitlint/message": 17.4.2 + "@commitlint/to-lines": 17.4.0 + "@commitlint/types": 17.4.4 execa: 5.1.1 dev: true - /@commitlint/to-lines/13.2.0: + /@commitlint/to-lines/17.4.0: resolution: { - integrity: sha512-ZfWZix2y/CzewReCrj5g0nKOEfj5HW9eBMDrqjJJMPApve00CWv0tYrFCGXuGlv244lW4uvWJt6J/0HLRWsfyg== + integrity: sha512-LcIy/6ZZolsfwDUWfN1mJ+co09soSuNASfKEU5sCmgFCvX5iHwRYLiIuoqXzOVDYOy7E7IcHilr/KS0e5T+0Hg== } - engines: { node: ">=v12" } + engines: { node: ">=v14" } dev: true - /@commitlint/top-level/13.2.0: + /@commitlint/top-level/17.4.0: resolution: { - integrity: sha512-knBvWYbIq6VV6VPHrVeDsxDiJq4Zq6cv5NIYU3iesKAsmK2KlLfsZPa+Ig96Y4AqAPU3zNJwjHxYkz9qxdBbfA== + integrity: sha512-/1loE/g+dTTQgHnjoCy0AexKAEFyHsR2zRB4NWrZ6lZSMIxAhBJnmCqwao7b4H8888PsfoTBCLBYIw8vGnej8g== } - engines: { node: ">=v12" } + engines: { node: ">=v14" } dependencies: find-up: 5.0.0 dev: true - /@commitlint/types/13.2.0: + /@commitlint/types/17.4.4: resolution: { - integrity: sha512-RRVHEqmk1qn/dIaSQhvuca6k/6Z54G+r/KyimZ8gnAFielGiGUpsFRhIY3qhd5rXClVxDaa3nlcyTWckSccotQ== + integrity: sha512-amRN8tRLYOsxRr6mTnGGGvB5EmW/4DDjLMgiwK3CCVEmN6Sr/6xePGEpWaspKkckILuUORCwe6VfDBw6uj4axQ== } - engines: { node: ">=v12" } + engines: { node: ">=v14" } dependencies: chalk: 4.1.2 dev: true - /@csstools/selector-specificity/2.1.1_wajs5nedgkikc5pcuwett7legi: + /@cspotcode/source-map-support/0.8.1: + resolution: + { + integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw== + } + engines: { node: ">=12" } + dependencies: + "@jridgewell/trace-mapping": 0.3.9 + dev: true + + /@csstools/css-parser-algorithms/2.1.1_gdfqdfecdiaxr4x3xd7wxrvuhq: resolution: { - integrity: sha512-jwx+WCqszn53YHOfvFMJJRd/B2GqkCBt+1MJSG6o5/s8+ytHMvDZXsJgUEWLk12UnLd7HYKac4BYU5i/Ron1Cw== + integrity: sha512-viRnRh02AgO4mwIQb2xQNJju0i+Fh9roNgmbR5xEuG7J3TGgxjnE95HnBLgsFJOJOksvcfxOUCgODcft6Y07cA== } engines: { node: ^14 || ^16 || >=18 } peerDependencies: - postcss: ^8.4 - postcss-selector-parser: ^6.0.10 + "@csstools/css-tokenizer": ^2.1.1 dependencies: - postcss: 8.4.21 - postcss-selector-parser: 6.0.11 + "@csstools/css-tokenizer": 2.1.1 dev: true - /@ctrl/tinycolor/3.6.0: + /@csstools/css-tokenizer/2.1.1: resolution: { - integrity: sha512-/Z3l6pXthq0JvMYdUFyX9j0MaCltlIn6mfh9jLyQwg5aPKxkyNa0PTHtU1AlFXLNk55ZuAeJRcpvq+tmLfKmaQ== + integrity: sha512-GbrTj2Z8MCTUv+52GE0RbFGM527xuXZ0Xa5g0Z+YN573uveS4G0qi6WNOMyz3yrFM/jaILTTwJ0+umx81EzqfA== } - engines: { node: ">=10" } - dev: false + engines: { node: ^14 || ^16 || >=18 } + dev: true - /@element-plus/icons-vue/2.0.10_vue@3.2.47: + /@csstools/media-query-list-parser/2.0.4_rffw2jz5u7v47thsjhdr4x67vi: resolution: { - integrity: sha512-ygEZ1mwPjcPo/OulhzLE7mtDrQBWI8vZzEWSNB2W/RNCRjoQGwbaK4N8lV4rid7Ts4qvySU3njMN7YCiSlSaTQ== + integrity: sha512-GyYot6jHgcSDZZ+tLSnrzkR7aJhF2ZW6d+CXH66mjy5WpAQhZD4HDke2OQ36SivGRWlZJpAz7TzbW6OKlEpxAA== } + engines: { node: ^14 || ^16 || >=18 } peerDependencies: - vue: ^3.2.0 + "@csstools/css-parser-algorithms": ^2.1.1 + "@csstools/css-tokenizer": ^2.1.1 dependencies: - vue: 3.2.47 - dev: false + "@csstools/css-parser-algorithms": 2.1.1_gdfqdfecdiaxr4x3xd7wxrvuhq + "@csstools/css-tokenizer": 2.1.1 + dev: true - /@endemolshinegroup/cosmiconfig-typescript-loader/3.0.2_prdn7pc7mycjsinmi5fnyv4we4: + /@csstools/selector-specificity/2.2.0_i42hiwwcp5l3eeahmzszdaagtq: resolution: { - integrity: sha512-QRVtqJuS1mcT56oHpVegkKBlgtWjXw/gHNWO3eL9oyB5Sc7HBoc2OLG/nYpVfT/Jejvo3NUrD0Udk7XgoyDKkA== + integrity: sha512-+OJ9konv95ClSTOJCmMZqpd5+YGsB2S+x6w3E1oaM8UuR5j8nTNHYSz8c9BEPGDOCMQYIEEGlVPj/VY64iTbGw== } - engines: { node: ">=10.0.0" } + engines: { node: ^14 || ^16 || >=18 } peerDependencies: - cosmiconfig: ">=6" + postcss-selector-parser: ^6.0.10 dependencies: - cosmiconfig: 7.1.0 - lodash.get: 4.4.2 - make-error: 1.3.6 - ts-node: 9.1.1_typescript@4.9.5 - tslib: 2.5.0 - transitivePeerDependencies: - - typescript + postcss-selector-parser: 6.0.12 dev: true - /@esbuild/android-arm/0.16.17: + /@ctrl/tinycolor/3.6.0: + resolution: + { + integrity: sha512-/Z3l6pXthq0JvMYdUFyX9j0MaCltlIn6mfh9jLyQwg5aPKxkyNa0PTHtU1AlFXLNk55ZuAeJRcpvq+tmLfKmaQ== + } + engines: { node: ">=10" } + dev: false + + /@element-plus/icons-vue/2.1.0_vue@3.3.1: + resolution: + { + integrity: sha512-PSBn3elNoanENc1vnCfh+3WA9fimRC7n+fWkf3rE5jvv+aBohNHABC/KAR5KWPecxWxDTVT1ERpRbOMRcOV/vA== + } + peerDependencies: + vue: ^3.2.0 + dependencies: + vue: 3.3.1 + dev: false + + /@esbuild/android-arm/0.17.18: resolution: { - integrity: sha512-N9x1CMXVhtWEAMS7pNNONyA14f71VPQN9Cnavj1XQh6T7bskqiLLrSca4O0Vr8Wdcga943eThxnVp3JLnBMYtw== + integrity: sha512-EmwL+vUBZJ7mhFCs5lA4ZimpUH3WMAoqvOIYhVQwdIgSpHC8ImHdsRyhHAVxpDYUSm0lWvd63z0XH1IlImS2Qw== } engines: { node: ">=12" } cpu: [arm] @@ -814,10 +890,10 @@ packages: dev: true optional: true - /@esbuild/android-arm64/0.16.17: + /@esbuild/android-arm64/0.17.18: resolution: { - integrity: sha512-MIGl6p5sc3RDTLLkYL1MyL8BMRN4tLMRCn+yRJJmEDvYZ2M7tmAf80hx1kbNEUX2KJ50RRtxZ4JHLvCfuB6kBg== + integrity: sha512-/iq0aK0eeHgSC3z55ucMAHO05OIqmQehiGay8eP5l/5l+iEr4EIbh4/MI8xD9qRFjqzgkc0JkX0LculNC9mXBw== } engines: { node: ">=12" } cpu: [arm64] @@ -826,10 +902,10 @@ packages: dev: true optional: true - /@esbuild/android-x64/0.16.17: + /@esbuild/android-x64/0.17.18: resolution: { - integrity: sha512-a3kTv3m0Ghh4z1DaFEuEDfz3OLONKuFvI4Xqczqx4BqLyuFaFkuaG4j2MtA6fuWEFeC5x9IvqnX7drmRq/fyAQ== + integrity: sha512-x+0efYNBF3NPW2Xc5bFOSFW7tTXdAcpfEg2nXmxegm4mJuVeS+i109m/7HMiOQ6M12aVGGFlqJX3RhNdYM2lWg== } engines: { node: ">=12" } cpu: [x64] @@ -838,10 +914,10 @@ packages: dev: true optional: true - /@esbuild/darwin-arm64/0.16.17: + /@esbuild/darwin-arm64/0.17.18: resolution: { - integrity: sha512-/2agbUEfmxWHi9ARTX6OQ/KgXnOWfsNlTeLcoV7HSuSTv63E4DqtAc+2XqGw1KHxKMHGZgbVCZge7HXWX9Vn+w== + integrity: sha512-6tY+djEAdF48M1ONWnQb1C+6LiXrKjmqjzPNPWXhu/GzOHTHX2nh8Mo2ZAmBFg0kIodHhciEgUBtcYCAIjGbjQ== } engines: { node: ">=12" } cpu: [arm64] @@ -850,10 +926,10 @@ packages: dev: true optional: true - /@esbuild/darwin-x64/0.16.17: + /@esbuild/darwin-x64/0.17.18: resolution: { - integrity: sha512-2By45OBHulkd9Svy5IOCZt376Aa2oOkiE9QWUK9fe6Tb+WDr8hXL3dpqi+DeLiMed8tVXspzsTAvd0jUl96wmg== + integrity: sha512-Qq84ykvLvya3dO49wVC9FFCNUfSrQJLbxhoQk/TE1r6MjHo3sFF2tlJCwMjhkBVq3/ahUisj7+EpRSz0/+8+9A== } engines: { node: ">=12" } cpu: [x64] @@ -862,10 +938,10 @@ packages: dev: true optional: true - /@esbuild/freebsd-arm64/0.16.17: + /@esbuild/freebsd-arm64/0.17.18: resolution: { - integrity: sha512-mt+cxZe1tVx489VTb4mBAOo2aKSnJ33L9fr25JXpqQqzbUIw/yzIzi+NHwAXK2qYV1lEFp4OoVeThGjUbmWmdw== + integrity: sha512-fw/ZfxfAzuHfaQeMDhbzxp9mc+mHn1Y94VDHFHjGvt2Uxl10mT4CDavHm+/L9KG441t1QdABqkVYwakMUeyLRA== } engines: { node: ">=12" } cpu: [arm64] @@ -874,10 +950,10 @@ packages: dev: true optional: true - /@esbuild/freebsd-x64/0.16.17: + /@esbuild/freebsd-x64/0.17.18: resolution: { - integrity: sha512-8ScTdNJl5idAKjH8zGAsN7RuWcyHG3BAvMNpKOBaqqR7EbUhhVHOqXRdL7oZvz8WNHL2pr5+eIT5c65kA6NHug== + integrity: sha512-FQFbRtTaEi8ZBi/A6kxOC0V0E9B/97vPdYjY9NdawyLd4Qk5VD5g2pbWN2VR1c0xhzcJm74HWpObPszWC+qTew== } engines: { node: ">=12" } cpu: [x64] @@ -886,10 +962,10 @@ packages: dev: true optional: true - /@esbuild/linux-arm/0.16.17: + /@esbuild/linux-arm/0.17.18: resolution: { - integrity: sha512-iihzrWbD4gIT7j3caMzKb/RsFFHCwqqbrbH9SqUSRrdXkXaygSZCZg1FybsZz57Ju7N/SHEgPyaR0LZ8Zbe9gQ== + integrity: sha512-jW+UCM40LzHcouIaqv3e/oRs0JM76JfhHjCavPxMUti7VAPh8CaGSlS7cmyrdpzSk7A+8f0hiedHqr/LMnfijg== } engines: { node: ">=12" } cpu: [arm] @@ -898,10 +974,10 @@ packages: dev: true optional: true - /@esbuild/linux-arm64/0.16.17: + /@esbuild/linux-arm64/0.17.18: resolution: { - integrity: sha512-7S8gJnSlqKGVJunnMCrXHU9Q8Q/tQIxk/xL8BqAP64wchPCTzuM6W3Ra8cIa1HIflAvDnNOt2jaL17vaW+1V0g== + integrity: sha512-R7pZvQZFOY2sxUG8P6A21eq6q+eBv7JPQYIybHVf1XkQYC+lT7nDBdC7wWKTrbvMXKRaGudp/dzZCwL/863mZQ== } engines: { node: ">=12" } cpu: [arm64] @@ -910,10 +986,10 @@ packages: dev: true optional: true - /@esbuild/linux-ia32/0.16.17: + /@esbuild/linux-ia32/0.17.18: resolution: { - integrity: sha512-kiX69+wcPAdgl3Lonh1VI7MBr16nktEvOfViszBSxygRQqSpzv7BffMKRPMFwzeJGPxcio0pdD3kYQGpqQ2SSg== + integrity: sha512-ygIMc3I7wxgXIxk6j3V00VlABIjq260i967Cp9BNAk5pOOpIXmd1RFQJQX9Io7KRsthDrQYrtcx7QCof4o3ZoQ== } engines: { node: ">=12" } cpu: [ia32] @@ -922,10 +998,22 @@ packages: dev: true optional: true - /@esbuild/linux-loong64/0.16.17: + /@esbuild/linux-loong64/0.14.54: + resolution: + { + integrity: sha512-bZBrLAIX1kpWelV0XemxBZllyRmM6vgFQQG2GdNb+r3Fkp0FOh1NJSvekXDs7jq70k4euu1cryLMfU+mTXlEpw== + } + engines: { node: ">=12" } + cpu: [loong64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-loong64/0.17.18: resolution: { - integrity: sha512-dTzNnQwembNDhd654cA4QhbS9uDdXC3TKqMJjgOWsC0yNCbpzfWoXdZvp0mY7HU6nzk5E0zpRGGx3qoQg8T2DQ== + integrity: sha512-bvPG+MyFs5ZlwYclCG1D744oHk1Pv7j8psF5TfYx7otCVmcJsEXgFEhQkbhNW8otDHL1a2KDINW20cfCgnzgMQ== } engines: { node: ">=12" } cpu: [loong64] @@ -934,10 +1022,10 @@ packages: dev: true optional: true - /@esbuild/linux-mips64el/0.16.17: + /@esbuild/linux-mips64el/0.17.18: resolution: { - integrity: sha512-ezbDkp2nDl0PfIUn0CsQ30kxfcLTlcx4Foz2kYv8qdC6ia2oX5Q3E/8m6lq84Dj/6b0FrkgD582fJMIfHhJfSw== + integrity: sha512-oVqckATOAGuiUOa6wr8TXaVPSa+6IwVJrGidmNZS1cZVx0HqkTMkqFGD2HIx9H1RvOwFeWYdaYbdY6B89KUMxA== } engines: { node: ">=12" } cpu: [mips64el] @@ -946,10 +1034,10 @@ packages: dev: true optional: true - /@esbuild/linux-ppc64/0.16.17: + /@esbuild/linux-ppc64/0.17.18: resolution: { - integrity: sha512-dzS678gYD1lJsW73zrFhDApLVdM3cUF2MvAa1D8K8KtcSKdLBPP4zZSLy6LFZ0jYqQdQ29bjAHJDgz0rVbLB3g== + integrity: sha512-3dLlQO+b/LnQNxgH4l9rqa2/IwRJVN9u/bK63FhOPB4xqiRqlQAU0qDU3JJuf0BmaH0yytTBdoSBHrb2jqc5qQ== } engines: { node: ">=12" } cpu: [ppc64] @@ -958,10 +1046,10 @@ packages: dev: true optional: true - /@esbuild/linux-riscv64/0.16.17: + /@esbuild/linux-riscv64/0.17.18: resolution: { - integrity: sha512-ylNlVsxuFjZK8DQtNUwiMskh6nT0vI7kYl/4fZgV1llP5d6+HIeL/vmmm3jpuoo8+NuXjQVZxmKuhDApK0/cKw== + integrity: sha512-/x7leOyDPjZV3TcsdfrSI107zItVnsX1q2nho7hbbQoKnmoeUWjs+08rKKt4AUXju7+3aRZSsKrJtaRmsdL1xA== } engines: { node: ">=12" } cpu: [riscv64] @@ -970,10 +1058,10 @@ packages: dev: true optional: true - /@esbuild/linux-s390x/0.16.17: + /@esbuild/linux-s390x/0.17.18: resolution: { - integrity: sha512-gzy7nUTO4UA4oZ2wAMXPNBGTzZFP7mss3aKR2hH+/4UUkCOyqmjXiKpzGrY2TlEUhbbejzXVKKGazYcQTZWA/w== + integrity: sha512-cX0I8Q9xQkL/6F5zWdYmVf5JSQt+ZfZD2bJudZrWD+4mnUvoZ3TDDXtDX2mUaq6upMFv9FlfIh4Gfun0tbGzuw== } engines: { node: ">=12" } cpu: [s390x] @@ -982,10 +1070,10 @@ packages: dev: true optional: true - /@esbuild/linux-x64/0.16.17: + /@esbuild/linux-x64/0.17.18: resolution: { - integrity: sha512-mdPjPxfnmoqhgpiEArqi4egmBAMYvaObgn4poorpUaqmvzzbvqbowRllQ+ZgzGVMGKaPkqUmPDOOFQRUFDmeUw== + integrity: sha512-66RmRsPlYy4jFl0vG80GcNRdirx4nVWAzJmXkevgphP1qf4dsLQCpSKGM3DUQCojwU1hnepI63gNZdrr02wHUA== } engines: { node: ">=12" } cpu: [x64] @@ -994,10 +1082,10 @@ packages: dev: true optional: true - /@esbuild/netbsd-x64/0.16.17: + /@esbuild/netbsd-x64/0.17.18: resolution: { - integrity: sha512-/PzmzD/zyAeTUsduZa32bn0ORug+Jd1EGGAUJvqfeixoEISYpGnAezN6lnJoskauoai0Jrs+XSyvDhppCPoKOA== + integrity: sha512-95IRY7mI2yrkLlTLb1gpDxdC5WLC5mZDi+kA9dmM5XAGxCME0F8i4bYH4jZreaJ6lIZ0B8hTrweqG1fUyW7jbg== } engines: { node: ">=12" } cpu: [x64] @@ -1006,10 +1094,10 @@ packages: dev: true optional: true - /@esbuild/openbsd-x64/0.16.17: + /@esbuild/openbsd-x64/0.17.18: resolution: { - integrity: sha512-2yaWJhvxGEz2RiftSk0UObqJa/b+rIAjnODJgv2GbGGpRwAfpgzyrg1WLK8rqA24mfZa9GvpjLcBBg8JHkoodg== + integrity: sha512-WevVOgcng+8hSZ4Q3BKL3n1xTv5H6Nb53cBrtzzEjDbbnOmucEVcZeGCsCOi9bAOcDYEeBZbD2SJNBxlfP3qiA== } engines: { node: ">=12" } cpu: [x64] @@ -1018,10 +1106,10 @@ packages: dev: true optional: true - /@esbuild/sunos-x64/0.16.17: + /@esbuild/sunos-x64/0.17.18: resolution: { - integrity: sha512-xtVUiev38tN0R3g8VhRfN7Zl42YCJvyBhRKw1RJjwE1d2emWTVToPLNEQj/5Qxc6lVFATDiy6LjVHYhIPrLxzw== + integrity: sha512-Rzf4QfQagnwhQXVBS3BYUlxmEbcV7MY+BH5vfDZekU5eYpcffHSyjU8T0xucKVuOcdCsMo+Ur5wmgQJH2GfNrg== } engines: { node: ">=12" } cpu: [x64] @@ -1030,10 +1118,10 @@ packages: dev: true optional: true - /@esbuild/win32-arm64/0.16.17: + /@esbuild/win32-arm64/0.17.18: resolution: { - integrity: sha512-ga8+JqBDHY4b6fQAmOgtJJue36scANy4l/rL97W+0wYmijhxKetzZdKOJI7olaBaMhWt8Pac2McJdZLxXWUEQw== + integrity: sha512-Kb3Ko/KKaWhjeAm2YoT/cNZaHaD1Yk/pa3FTsmqo9uFh1D1Rfco7BBLIPdDOozrObj2sahslFuAQGvWbgWldAg== } engines: { node: ">=12" } cpu: [arm64] @@ -1042,10 +1130,10 @@ packages: dev: true optional: true - /@esbuild/win32-ia32/0.16.17: + /@esbuild/win32-ia32/0.17.18: resolution: { - integrity: sha512-WnsKaf46uSSF/sZhwnqE4L/F89AYNMiD4YtEcYekBt9Q7nj0DiId2XH2Ng2PHM54qi5oPrQ8luuzGszqi/veig== + integrity: sha512-0/xUMIdkVHwkvxfbd5+lfG7mHOf2FRrxNbPiKWg9C4fFrB8H0guClmaM3BFiRUYrznVoyxTIyC/Ou2B7QQSwmw== } engines: { node: ">=12" } cpu: [ia32] @@ -1054,10 +1142,10 @@ packages: dev: true optional: true - /@esbuild/win32-x64/0.16.17: + /@esbuild/win32-x64/0.17.18: resolution: { - integrity: sha512-y+EHuSchhL7FjHgvQL/0fnnFmO4T1bhvWANX6gcnqTjtnKWbTvUMCpGnv2+t+31d7RzyEAYAd4u2fnIhHL6N/Q== + integrity: sha512-qU25Ma1I3NqTSHJUOKi9sAH1/Mzuvlke0ioMJRthLXKm7JiSKVwFghlGbDLOO2sARECGhja4xYfRAZNPAkooYg== } engines: { node: ">=12" } cpu: [x64] @@ -1066,16 +1154,37 @@ packages: dev: true optional: true - /@eslint/eslintrc/2.0.0: + /@eslint-community/eslint-utils/4.4.0_eslint@8.40.0: + resolution: + { + integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA== + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 + dependencies: + eslint: 8.40.0 + eslint-visitor-keys: 3.4.1 + dev: true + + /@eslint-community/regexpp/4.5.1: + resolution: + { + integrity: sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ== + } + engines: { node: ^12.0.0 || ^14.0.0 || >=16.0.0 } + dev: true + + /@eslint/eslintrc/2.0.3: resolution: { - integrity: sha512-fluIaaV+GyV24CCu/ggiHdV+j4RNh85yQnAYS/G2mZODZgGmmlrgCydjUcV3YvxCm9x8nMAfThsqTni4KiXT4A== + integrity: sha512-+5gy6OQfk+xx3q0d6jGZZC3f3KzAkXc/IanVxd1is/VIIziRqqt3ongQz0FiTUXqTk0c7aDB3OaFuKnuSoJicQ== } engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } dependencies: ajv: 6.12.6 debug: 4.3.4 - espree: 9.4.1 + espree: 9.5.2 globals: 13.20.0 ignore: 5.2.4 import-fresh: 3.3.0 @@ -1086,28 +1195,28 @@ packages: - supports-color dev: true - /@eslint/js/8.35.0: + /@eslint/js/8.40.0: resolution: { - integrity: sha512-JXdzbRiWclLVoD8sNUjR443VVlYqiYmDVT6rGUEIEHU5YJW0gaVZwV2xgM7D4arkvASqD0IlLUVjHiFuxaftRw== + integrity: sha512-ElyB54bJIhXQYVKjDSvCkPO1iU1tSAeVQJbllWJq1XQSmmA4dgFk8CbiBGpiOPxleE48vDogxCtmMYku4HSVLA== } engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } dev: true - /@floating-ui/core/1.2.1: + /@floating-ui/core/1.2.6: resolution: { - integrity: sha512-LSqwPZkK3rYfD7GKoIeExXOyYx6Q1O4iqZWwIehDNuv3Dv425FIAE8PRwtAx1imEolFTHgBEcoFHm9MDnYgPCg== + integrity: sha512-EvYTiXet5XqweYGClEmpu3BoxmsQ4hkj3QaYA6qEnigCWffTP3vNRwBReTdrwDwo7OoJ3wM8Uoe9Uk4n+d4hfg== } dev: false - /@floating-ui/dom/1.2.1: + /@floating-ui/dom/1.2.7: resolution: { - integrity: sha512-Rt45SmRiV8eU+xXSB9t0uMYiQ/ZWGE/jumse2o3i5RGlyvcbqOF4q+1qBnzLE2kZ5JGhq0iMkcGXUKbFe7MpTA== + integrity: sha512-DyqylONj1ZaBnzj+uBnVfzdjjCkFCL2aA9ESHLyUOGSqb03RpbLMImP1ekIQXYs4KLk9jAjJfZAU8hXfWSahEg== } dependencies: - "@floating-ui/core": 1.2.1 + "@floating-ui/core": 1.2.6 dev: false /@humanwhocodes/config-array/0.11.8: @@ -1139,19 +1248,19 @@ packages: } dev: true - /@iconify-icons/ep/1.2.10: + /@iconify-icons/ep/1.2.11: resolution: { - integrity: sha512-slLhiMM5snJi+Mbzj02UPkK1Ym5SK9U4l1CSbA5V6YGjzL1Pk60fGPB6b7Js3jObftONWji6bpJKFjOGYyPk/g== + integrity: sha512-6wBR3xVbWpEfxlkriDG27PT3Z0t09Z/G/IH05Ql7XlhVRs8v2bKFPslNHkwBnZXaaR9hTB+5J+MBR5rrK16vcw== } dependencies: "@iconify/types": 2.0.0 dev: true - /@iconify-icons/ri/1.2.4: + /@iconify-icons/ri/1.2.7: resolution: { - integrity: sha512-hTYFsUMEYU62Eu8YEtNPvGRusvUXQPs3kT+Vvl6VJc9TwfX+W8SNo4eL7e35QeNZh2JWAwG6cYCoWFQQSFpFHg== + integrity: sha512-HUgj7x6VJRRvdXVQ+ABE/F+IOclYTV4MaH8HHIAFHF2F+PrmC/mAx77GTtZTRosKziORf2YfiaXY2Gx7w24vgw== } dependencies: "@iconify/types": 2.0.0 @@ -1164,22 +1273,22 @@ packages: } dev: true - /@iconify/vue/4.1.0_vue@3.2.47: + /@iconify/vue/4.1.1_vue@3.3.1: resolution: { - integrity: sha512-rBQVxNoSDooqgWkQg2MqkIHkH/huNuvXGqui5wijc1zLnU7TKzbBHW9VGmbnV4asNTmIHmqV4Nvt0M2rZ/9nHA== + integrity: sha512-RL85Bm/DAe8y6rT6pux7D2FJSiUEM/TPfyK7GrbAOfTSwrhvwJW+S5yijdGcmtXouA8MtuH9C7l4hiSE4mLMjg== } peerDependencies: vue: ">=3" dependencies: "@iconify/types": 2.0.0 - vue: 3.2.47 + vue: 3.3.1 dev: true - /@intlify/bundle-utils/4.0.0_vue-i18n@9.2.2: + /@intlify/bundle-utils/5.5.0_vue-i18n@9.2.2: resolution: { - integrity: sha512-klXrYT9VXyKEXsD6UY3pShg0O5MPC07n0TZ5RrSs5ry6T1eZVolIFGJi9c3qcDrh1qjJxgikRnPBmD7qGDqbjw== + integrity: sha512-k5xe8oAoPXiH6unXvyyyCRbq+LtLn1tSi/6r5f6mF+MsX7mcOMtgYbyAQINsjFrf7EDu5Pg4BY00VWSt8bI9XQ== } engines: { node: ">= 12" } peerDependencies: @@ -1191,11 +1300,15 @@ packages: vue-i18n: optional: true dependencies: - "@intlify/message-compiler": 9.3.0-beta.16 - "@intlify/shared": 9.3.0-beta.16 + "@intlify/message-compiler": 9.3.0-beta.17 + "@intlify/shared": 9.3.0-beta.17 + acorn: 8.8.2 + escodegen: 2.0.0 + estree-walker: 2.0.2 jsonc-eslint-parser: 1.4.1 + magic-string: 0.30.0 source-map: 0.6.1 - vue-i18n: 9.2.2_vue@3.2.47 + vue-i18n: 9.2.2_vue@3.3.1 yaml-eslint-parser: 0.3.2 dev: true @@ -1230,14 +1343,14 @@ packages: "@intlify/shared": 9.2.2 source-map: 0.6.1 - /@intlify/message-compiler/9.3.0-beta.16: + /@intlify/message-compiler/9.3.0-beta.17: resolution: { - integrity: sha512-CGQI3xRcs1ET75eDQ0DUy3MRYOqTauRIIgaMoISKiF83gqRWg93FqN8lGMKcpBqaF4tI0JhsfosCaGiBL9+dnw== + integrity: sha512-i7hvVIRk1Ax2uKa9xLRJCT57to08OhFMhFXXjWN07rmx5pWQYQ23MfX1xgggv9drnWTNhqEiD+u4EJeHoS5+Ww== } engines: { node: ">= 14" } dependencies: - "@intlify/shared": 9.3.0-beta.16 + "@intlify/shared": 9.3.0-beta.17 source-map: 0.6.1 dev: true @@ -1248,18 +1361,18 @@ packages: } engines: { node: ">= 14" } - /@intlify/shared/9.3.0-beta.16: + /@intlify/shared/9.3.0-beta.17: resolution: { - integrity: sha512-kXbm4svALe3lX+EjdJxfnabOphqS4yQ1Ge/iIlR8tvUiYRCoNz3hig1M4336iY++Dfx5ytEQJPNjIcknNIuvig== + integrity: sha512-mscf7RQsUTOil35jTij4KGW1RC9SWQjYScwLxP53Ns6g24iEd5HN7ksbt9O6FvTmlQuX77u+MXpBdfJsGqizLQ== } engines: { node: ">= 14" } dev: true - /@intlify/unplugin-vue-i18n/0.8.2_vue-i18n@9.2.2: + /@intlify/unplugin-vue-i18n/0.10.0_vue-i18n@9.2.2: resolution: { - integrity: sha512-cRnzPqSEZQOmTD+p4pwc3RTS9HxreLqfID0keoqZDZweCy/CGRMLLTNd15S4TUf1vSBhPF03DItEFDr1F+8MDA== + integrity: sha512-Sf8fe26/d8rBNcg+zBSb7RA1uyhrG9zhIM+CRX6lqcznMDjLRr/1tuVaJ9E6xqJkzjfPgRzNcCqwMt6rpNkL7Q== } engines: { node: ">= 14.16" } peerDependencies: @@ -1274,10 +1387,10 @@ packages: vue-i18n-bridge: optional: true dependencies: - "@intlify/bundle-utils": 4.0.0_vue-i18n@9.2.2 - "@intlify/shared": 9.3.0-beta.16 - "@rollup/pluginutils": 4.2.1 - "@vue/compiler-sfc": 3.2.47 + "@intlify/bundle-utils": 5.5.0_vue-i18n@9.2.2 + "@intlify/shared": 9.3.0-beta.17 + "@rollup/pluginutils": 5.0.2 + "@vue/compiler-sfc": 3.3.1 debug: 4.3.4 fast-glob: 3.2.12 js-yaml: 4.1.0 @@ -1285,9 +1398,10 @@ packages: pathe: 1.1.0 picocolors: 1.0.0 source-map: 0.6.1 - unplugin: 1.1.0 - vue-i18n: 9.2.2_vue@3.2.47 + unplugin: 1.3.1 + vue-i18n: 9.2.2_vue@3.3.1 transitivePeerDependencies: + - rollup - supports-color dev: true @@ -1301,27 +1415,31 @@ packages: "@intlify/core-base": 9.2.2 "@intlify/shared": 9.2.2 - /@jridgewell/gen-mapping/0.1.1: + /@isaacs/cliui/8.0.2: resolution: { - integrity: sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w== + integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA== } - engines: { node: ">=6.0.0" } + engines: { node: ">=12" } dependencies: - "@jridgewell/set-array": 1.1.2 - "@jridgewell/sourcemap-codec": 1.4.14 + string-width: 5.1.2 + string-width-cjs: /string-width/4.2.3 + strip-ansi: 7.0.1 + strip-ansi-cjs: /strip-ansi/6.0.1 + wrap-ansi: 8.1.0 + wrap-ansi-cjs: /wrap-ansi/7.0.0 dev: true - /@jridgewell/gen-mapping/0.3.2: + /@jridgewell/gen-mapping/0.3.3: resolution: { - integrity: sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A== + integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ== } engines: { node: ">=6.0.0" } dependencies: "@jridgewell/set-array": 1.1.2 - "@jridgewell/sourcemap-codec": 1.4.14 - "@jridgewell/trace-mapping": 0.3.17 + "@jridgewell/sourcemap-codec": 1.4.15 + "@jridgewell/trace-mapping": 0.3.18 dev: true /@jridgewell/resolve-uri/3.1.0: @@ -1332,6 +1450,14 @@ packages: engines: { node: ">=6.0.0" } dev: true + /@jridgewell/resolve-uri/3.1.1: + resolution: + { + integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA== + } + engines: { node: ">=6.0.0" } + dev: true + /@jridgewell/set-array/1.1.2: resolution: { @@ -1340,14 +1466,14 @@ packages: engines: { node: ">=6.0.0" } dev: true - /@jridgewell/source-map/0.3.2: + /@jridgewell/source-map/0.3.3: resolution: { - integrity: sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw== + integrity: sha512-b+fsZXeLYi9fEULmfBrhxn4IrPlINf8fiNarzTof004v3lFdntdwa9PF7vFJqm3mg7s+ScJMxXaE3Acp1irZcg== } dependencies: - "@jridgewell/gen-mapping": 0.3.2 - "@jridgewell/trace-mapping": 0.3.17 + "@jridgewell/gen-mapping": 0.3.3 + "@jridgewell/trace-mapping": 0.3.18 dev: true /@jridgewell/sourcemap-codec/1.4.14: @@ -1357,16 +1483,32 @@ packages: } dev: true - /@jridgewell/trace-mapping/0.3.17: + /@jridgewell/sourcemap-codec/1.4.15: + resolution: + { + integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== + } + + /@jridgewell/trace-mapping/0.3.18: resolution: { - integrity: sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g== + integrity: sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA== } dependencies: "@jridgewell/resolve-uri": 3.1.0 "@jridgewell/sourcemap-codec": 1.4.14 dev: true + /@jridgewell/trace-mapping/0.3.9: + resolution: + { + integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ== + } + dependencies: + "@jridgewell/resolve-uri": 3.1.1 + "@jridgewell/sourcemap-codec": 1.4.15 + dev: true + /@nodelib/fs.scandir/2.1.5: resolution: { @@ -1397,7 +1539,17 @@ packages: fastq: 1.15.0 dev: true - /@pureadmin/descriptions/1.1.1_element-plus@2.2.32: + /@pkgjs/parseargs/0.11.0: + resolution: + { + integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg== + } + engines: { node: ">=14" } + requiresBuild: true + dev: true + optional: true + + /@pureadmin/descriptions/1.1.1_element-plus@2.3.4: resolution: { integrity: sha512-4BHLKomLU/LxGs5EUA+h+aKNrJEkhrU6+QE8VoWfJZ8VTU6ddvFLT/Pi4WuO5CWNXM9ZjqvHLFFVwEPlKntqtg== @@ -1405,21 +1557,21 @@ packages: peerDependencies: element-plus: ^2.0.0 dependencies: - "@element-plus/icons-vue": 2.0.10_vue@3.2.47 - element-plus: 2.2.32_vue@3.2.47 - vue: 3.2.47 + "@element-plus/icons-vue": 2.1.0_vue@3.3.1 + element-plus: 2.3.4_vue@3.3.1 + vue: 3.3.1 dev: false - /@pureadmin/table/2.0.0_element-plus@2.2.32: + /@pureadmin/table/2.1.0_element-plus@2.3.4: resolution: { - integrity: sha512-B5+vniSskCOjXLbQA+quPtySoOdwrhQOV93ruSwaUUZvRXxbfro1C3tAhUk/xYSeg8CbGrjoKdXYtN+yGjn6YA== + integrity: sha512-svPWYqT/7XScfaM/LFYd1bXIq/kMbOeRQ/5pi79XvxtO4CyA9Y6uiFxQzW1m8rwPDGc2wfs5DiiayyS53Bdv9A== } peerDependencies: element-plus: ^2.0.0 dependencies: - element-plus: 2.2.32_vue@3.2.47 - vue: 3.2.47 + element-plus: 2.3.4_vue@3.3.1 + vue: 3.3.1 dev: false /@pureadmin/theme/3.0.0: @@ -1433,10 +1585,10 @@ packages: string-hash: 1.1.3 dev: true - /@pureadmin/utils/1.8.5_echarts@5.4.1+vue@3.2.47: + /@pureadmin/utils/1.8.9_echarts@5.4.2+vue@3.3.1: resolution: { - integrity: sha512-dUJUYemELZdp4rpOnlQXU5GH2YWtf22vnw3Ekdn1ksoZu3cv30C6J9TCMsFjJhYhH8ZkfYowjfCx137eByjXXw== + integrity: sha512-P+MfCuCImwHXeXmZuKQVEYdx7O0FDTuhSUD0HaXamPRerbd5LTuwSV0MN2pMsNUCYrHySHKRPkmah2wXl0XDjw== } peerDependencies: echarts: "*" @@ -1447,47 +1599,10 @@ packages: vue: optional: true dependencies: - echarts: 5.4.1 - vue: 3.2.47 + echarts: 5.4.2 + vue: 3.3.1 dev: false - /@rollup/plugin-node-resolve/13.3.0: - resolution: - { - integrity: sha512-Lus8rbUo1eEcnS4yTFKLZrVumLPY+YayBdWXgFSHYhTT2iJbMhoaaBL3xl5NCdeRytErGr8tZ0L71BMRmnlwSw== - } - engines: { node: ">= 10.0.0" } - peerDependencies: - rollup: ^2.42.0 - peerDependenciesMeta: - rollup: - optional: true - dependencies: - "@rollup/pluginutils": 3.1.0 - "@types/resolve": 1.17.1 - deepmerge: 4.3.0 - is-builtin-module: 3.2.1 - is-module: 1.0.0 - resolve: 1.22.1 - dev: true - - /@rollup/pluginutils/3.1.0: - resolution: - { - integrity: sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg== - } - engines: { node: ">= 8.0.0" } - peerDependencies: - rollup: ^1.20.0||^2.0.0 - peerDependenciesMeta: - rollup: - optional: true - dependencies: - "@types/estree": 0.0.39 - estree-walker: 1.0.1 - picomatch: 2.3.1 - dev: true - /@rollup/pluginutils/4.2.1: resolution: { @@ -1511,7 +1626,7 @@ packages: rollup: optional: true dependencies: - "@types/estree": 1.0.0 + "@types/estree": 1.0.1 estree-walker: 2.0.2 picomatch: 2.3.1 dev: true @@ -1531,24 +1646,45 @@ packages: engines: { node: ">=10.13.0" } dev: true - /@types/element-resize-detector/1.1.3: + /@tsconfig/node10/1.0.9: resolution: { - integrity: sha512-rqmeHxzNMPar/3IbdQRm+mydv8KlEXUtcp5M47rbZUEjslTjg+bT5+OXCknTCIy1AfvNR0Kio44iMY2zUH65CQ== + integrity: sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA== + } + dev: true + + /@tsconfig/node12/1.0.11: + resolution: + { + integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag== + } + dev: true + + /@tsconfig/node14/1.0.3: + resolution: + { + integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow== + } + dev: true + + /@tsconfig/node16/1.0.4: + resolution: + { + integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA== } dev: true - /@types/estree/0.0.39: + /@types/element-resize-detector/1.1.3: resolution: { - integrity: sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw== + integrity: sha512-rqmeHxzNMPar/3IbdQRm+mydv8KlEXUtcp5M47rbZUEjslTjg+bT5+OXCknTCIy1AfvNR0Kio44iMY2zUH65CQ== } dev: true - /@types/estree/1.0.0: + /@types/estree/1.0.1: resolution: { - integrity: sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ== + integrity: sha512-LG4opVs2ANWZ1TJoKc937iMmNstM/d0ae1vNbnBvBhqCSezgVUOzcLCqbI5elV8Vy6WKwKjaqR+zO9VKirBBCA== } dev: true @@ -1566,19 +1702,19 @@ packages: } dev: true - /@types/lodash-es/4.17.6: + /@types/lodash-es/4.17.7: resolution: { - integrity: sha512-R+zTeVUKDdfoRxpAryaQNRKk3105Rrgx2CFRClIgRGaqDTdjsm8h6IYA8ir584W3ePzkZfst5xIgDwYrlh9HLg== + integrity: sha512-z0ptr6UI10VlU6l5MYhGwS4mC8DZyYer2mCoyysZtSF7p26zOX8UpbrV0YpNYLGS8K4PUFIyEr62IMFFjveSiQ== } dependencies: - "@types/lodash": 4.14.191 + "@types/lodash": 4.14.194 dev: false - /@types/lodash/4.14.191: + /@types/lodash/4.14.194: resolution: { - integrity: sha512-BdZ5BCCvho3EIXw6wUCXHe7rS53AIDPLE+JzwgT+OsJk53oBfbSmZZ7CX4VaRoN78N+TJpFi9QPlfIVNmJYWxQ== + integrity: sha512-r22s9tAS7imvBt2lyHC9B8AGwWnXaYb1tY09oyLkXDs4vArpYJzw09nj8MLx5VfciBPGIb+ZwG0ssYnEPJxn/g== } dev: false @@ -1603,10 +1739,10 @@ packages: } dev: true - /@types/node/18.14.2: + /@types/node/18.16.8: resolution: { - integrity: sha512-1uEQxww3DaghA0RxqHx0O0ppVlo43pJhepY51OxuQIKHpjbnYLA7vcdwioNPzIqmC2u3I/dmylcqjlh0e7AyUA== + integrity: sha512-p0iAXcfWCOTCBbsExHIDFCfwsqFwBTgETJveKMT+Ci3LY9YqQCI91F5S+TB20+aRCXpcWfvx5Qr5EccnwCm2NA== } dev: true @@ -1624,13 +1760,6 @@ packages: } dev: true - /@types/parse-json/4.0.0: - resolution: - { - integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA== - } - dev: true - /@types/qs/6.9.7: resolution: { @@ -1638,19 +1767,17 @@ packages: } dev: true - /@types/resolve/1.17.1: + /@types/semver/7.5.0: resolution: { - integrity: sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw== + integrity: sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw== } - dependencies: - "@types/node": 18.14.2 dev: true - /@types/semver/7.3.13: + /@types/sortablejs/1.15.1: resolution: { - integrity: sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw== + integrity: sha512-g/JwBNToh6oCTAwNS8UGVmjO7NLDKsejVhvE4x1eWiPTC3uCuNsa/TD4ssvX3du+MLiM+SHPNDuijp8y76JzLQ== } dev: true @@ -1668,10 +1795,17 @@ packages: } dev: false - /@typescript-eslint/eslint-plugin/5.54.0_6mj2wypvdnknez7kws2nfdgupi: + /@types/web-bluetooth/0.0.17: + resolution: + { + integrity: sha512-4p9vcSmxAayx72yn70joFoL44c9MO/0+iVEBIQXe3v2h2SiAsEIo/G5v6ObFWvNKRFjbrVadNf9LqEEZeQPzdA== + } + dev: false + + /@typescript-eslint/eslint-plugin/5.59.5_zaj6dsh3leplki3sfxgbx2w2za: resolution: { - integrity: sha512-+hSN9BdSr629RF02d7mMtXhAJvDTyCbprNYJKrXETlul/Aml6YZwd90XioVbjejQeHbb3R8Dg0CkRgoJDxo8aw== + integrity: sha512-feA9xbVRWJZor+AnLNAr7A8JRWeZqHUf4T9tlP+TN04b05pFVhO5eN7/O93Y/1OUlLMHKbnJisgDURs/qvtqdg== } engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } peerDependencies: @@ -1682,27 +1816,27 @@ packages: typescript: optional: true dependencies: - "@typescript-eslint/parser": 5.54.0_ycpbpc6yetojsgtrx3mwntkhsu - "@typescript-eslint/scope-manager": 5.54.0 - "@typescript-eslint/type-utils": 5.54.0_ycpbpc6yetojsgtrx3mwntkhsu - "@typescript-eslint/utils": 5.54.0_ycpbpc6yetojsgtrx3mwntkhsu + "@eslint-community/regexpp": 4.5.1 + "@typescript-eslint/parser": 5.59.5_3qfatcekpgbllh6uk5ivyhkbxq + "@typescript-eslint/scope-manager": 5.59.5 + "@typescript-eslint/type-utils": 5.59.5_3qfatcekpgbllh6uk5ivyhkbxq + "@typescript-eslint/utils": 5.59.5_3qfatcekpgbllh6uk5ivyhkbxq debug: 4.3.4 - eslint: 8.35.0 + eslint: 8.40.0 grapheme-splitter: 1.0.4 ignore: 5.2.4 natural-compare-lite: 1.4.0 - regexpp: 3.2.0 - semver: 7.3.8 - tsutils: 3.21.0_typescript@4.9.5 - typescript: 4.9.5 + semver: 7.5.0 + tsutils: 3.21.0_typescript@5.0.4 + typescript: 5.0.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/parser/5.54.0_ycpbpc6yetojsgtrx3mwntkhsu: + /@typescript-eslint/parser/5.59.5_3qfatcekpgbllh6uk5ivyhkbxq: resolution: { - integrity: sha512-aAVL3Mu2qTi+h/r04WI/5PfNWvO6pdhpeMRWk9R7rEV4mwJNzoWf5CCU5vDKBsPIFQFjEq1xg7XBI2rjiMXQbQ== + integrity: sha512-NJXQC4MRnF9N9yWqQE2/KLRSOLvrrlZb48NGVfBa+RuPMN6B7ZcK5jZOvhuygv4D64fRKnZI4L4p8+M+rfeQuw== } engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } peerDependencies: @@ -1712,31 +1846,31 @@ packages: typescript: optional: true dependencies: - "@typescript-eslint/scope-manager": 5.54.0 - "@typescript-eslint/types": 5.54.0 - "@typescript-eslint/typescript-estree": 5.54.0_typescript@4.9.5 + "@typescript-eslint/scope-manager": 5.59.5 + "@typescript-eslint/types": 5.59.5 + "@typescript-eslint/typescript-estree": 5.59.5_typescript@5.0.4 debug: 4.3.4 - eslint: 8.35.0 - typescript: 4.9.5 + eslint: 8.40.0 + typescript: 5.0.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/scope-manager/5.54.0: + /@typescript-eslint/scope-manager/5.59.5: resolution: { - integrity: sha512-VTPYNZ7vaWtYna9M4oD42zENOBrb+ZYyCNdFs949GcN8Miwn37b8b7eMj+EZaq7VK9fx0Jd+JhmkhjFhvnovhg== + integrity: sha512-jVecWwnkX6ZgutF+DovbBJirZcAxgxC0EOHYt/niMROf8p4PwxxG32Qdhj/iIQQIuOflLjNkxoXyArkcIP7C3A== } engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } dependencies: - "@typescript-eslint/types": 5.54.0 - "@typescript-eslint/visitor-keys": 5.54.0 + "@typescript-eslint/types": 5.59.5 + "@typescript-eslint/visitor-keys": 5.59.5 dev: true - /@typescript-eslint/type-utils/5.54.0_ycpbpc6yetojsgtrx3mwntkhsu: + /@typescript-eslint/type-utils/5.59.5_3qfatcekpgbllh6uk5ivyhkbxq: resolution: { - integrity: sha512-WI+WMJ8+oS+LyflqsD4nlXMsVdzTMYTxl16myXPaCXnSgc7LWwMsjxQFZCK/rVmTZ3FN71Ct78ehO9bRC7erYQ== + integrity: sha512-4eyhS7oGym67/pSxA2mmNq7X164oqDYNnZCUayBwJZIRVvKpBCMBzFnFxjeoDeShjtO6RQBHBuwybuX3POnDqg== } engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } peerDependencies: @@ -1746,28 +1880,28 @@ packages: typescript: optional: true dependencies: - "@typescript-eslint/typescript-estree": 5.54.0_typescript@4.9.5 - "@typescript-eslint/utils": 5.54.0_ycpbpc6yetojsgtrx3mwntkhsu + "@typescript-eslint/typescript-estree": 5.59.5_typescript@5.0.4 + "@typescript-eslint/utils": 5.59.5_3qfatcekpgbllh6uk5ivyhkbxq debug: 4.3.4 - eslint: 8.35.0 - tsutils: 3.21.0_typescript@4.9.5 - typescript: 4.9.5 + eslint: 8.40.0 + tsutils: 3.21.0_typescript@5.0.4 + typescript: 5.0.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/types/5.54.0: + /@typescript-eslint/types/5.59.5: resolution: { - integrity: sha512-nExy+fDCBEgqblasfeE3aQ3NuafBUxZxgxXcYfzYRZFHdVvk5q60KhCSkG0noHgHRo/xQ/BOzURLZAafFpTkmQ== + integrity: sha512-xkfRPHbqSH4Ggx4eHRIO/eGL8XL4Ysb4woL8c87YuAo8Md7AUjyWKa9YMwTL519SyDPrfEgKdewjkxNCVeJW7w== } engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } dev: true - /@typescript-eslint/typescript-estree/5.54.0_typescript@4.9.5: + /@typescript-eslint/typescript-estree/5.59.5_typescript@5.0.4: resolution: { - integrity: sha512-X2rJG97Wj/VRo5YxJ8Qx26Zqf0RRKsVHd4sav8NElhbZzhpBI8jU54i6hfo9eheumj4oO4dcRN1B/zIVEqR/MQ== + integrity: sha512-+XXdLN2CZLZcD/mO7mQtJMvCkzRfmODbeSKuMY/yXbGkzvA9rJyDY5qDYNoiz2kP/dmyAxXquL2BvLQLJFPQIg== } engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } peerDependencies: @@ -1776,156 +1910,143 @@ packages: typescript: optional: true dependencies: - "@typescript-eslint/types": 5.54.0 - "@typescript-eslint/visitor-keys": 5.54.0 + "@typescript-eslint/types": 5.59.5 + "@typescript-eslint/visitor-keys": 5.59.5 debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 - semver: 7.3.8 - tsutils: 3.21.0_typescript@4.9.5 - typescript: 4.9.5 + semver: 7.5.0 + tsutils: 3.21.0_typescript@5.0.4 + typescript: 5.0.4 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/utils/5.54.0_ycpbpc6yetojsgtrx3mwntkhsu: + /@typescript-eslint/utils/5.59.5_3qfatcekpgbllh6uk5ivyhkbxq: resolution: { - integrity: sha512-cuwm8D/Z/7AuyAeJ+T0r4WZmlnlxQ8wt7C7fLpFlKMR+dY6QO79Cq1WpJhvZbMA4ZeZGHiRWnht7ZJ8qkdAunw== + integrity: sha512-sCEHOiw+RbyTii9c3/qN74hYDPNORb8yWCoPLmB7BIflhplJ65u2PBpdRla12e3SSTJ2erRkPjz7ngLHhUegxA== } engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: + "@eslint-community/eslint-utils": 4.4.0_eslint@8.40.0 "@types/json-schema": 7.0.11 - "@types/semver": 7.3.13 - "@typescript-eslint/scope-manager": 5.54.0 - "@typescript-eslint/types": 5.54.0 - "@typescript-eslint/typescript-estree": 5.54.0_typescript@4.9.5 - eslint: 8.35.0 + "@types/semver": 7.5.0 + "@typescript-eslint/scope-manager": 5.59.5 + "@typescript-eslint/types": 5.59.5 + "@typescript-eslint/typescript-estree": 5.59.5_typescript@5.0.4 + eslint: 8.40.0 eslint-scope: 5.1.1 - eslint-utils: 3.0.0_eslint@8.35.0 - semver: 7.3.8 + semver: 7.5.0 transitivePeerDependencies: - supports-color - typescript dev: true - /@typescript-eslint/visitor-keys/5.54.0: + /@typescript-eslint/visitor-keys/5.59.5: resolution: { - integrity: sha512-xu4wT7aRCakGINTLGeyGqDn+78BwFlggwBjnHa1ar/KaGagnmwLYmlrXIrgAaQ3AE1Vd6nLfKASm7LrFHNbKGA== + integrity: sha512-qL+Oz+dbeBRTeyJTIy0eniD3uvqU7x+y1QceBismZ41hd4aBSRh8UAw4pZP0+XzLuPZmx4raNMq/I+59W2lXKA== } engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } dependencies: - "@typescript-eslint/types": 5.54.0 - eslint-visitor-keys: 3.3.0 + "@typescript-eslint/types": 5.59.5 + eslint-visitor-keys: 3.4.1 dev: true - /@vitejs/plugin-vue-jsx/3.0.0_vite@4.1.4+vue@3.2.47: + /@vitejs/plugin-vue-jsx/3.0.1_vite@4.3.5+vue@3.3.1: resolution: { - integrity: sha512-vurkuzgac5SYuxd2HUZqAFAWGTF10diKBwJNbCvnWijNZfXd+7jMtqjPFbGt7idOJUn584fP1Ar9j/GN2jQ3Ew== + integrity: sha512-+Jb7ggL48FSPS1uhPnJbJwWa9Sr90vQ+d0InW+AhBM22n+cfuYqJZDckBc+W3QSHe1WDvewMZfa4wZOtk5pRgw== } engines: { node: ^14.18.0 || >=16.0.0 } peerDependencies: vite: ^4.0.0 vue: ^3.0.0 dependencies: - "@babel/core": 7.21.0 - "@babel/plugin-transform-typescript": 7.21.0_@babel+core@7.21.0 - "@vue/babel-plugin-jsx": 1.1.1_@babel+core@7.21.0 - vite: 4.1.4_fmyp3kkbhzlhfkonroyoepdmjy - vue: 3.2.47 + "@babel/core": 7.21.8 + "@babel/plugin-transform-typescript": 7.21.3_@babel+core@7.21.8 + "@vue/babel-plugin-jsx": 1.1.1_@babel+core@7.21.8 + vite: 4.3.5_wshwf6lyytunybtggckvwapi7u + vue: 3.3.1 transitivePeerDependencies: - supports-color dev: true - /@vitejs/plugin-vue/4.0.0_vite@4.1.4+vue@3.2.47: + /@vitejs/plugin-vue/4.2.2_vite@4.3.5+vue@3.3.1: resolution: { - integrity: sha512-e0X4jErIxAB5oLtDqbHvHpJe/uWNkdpYV83AOG2xo2tEVSzCzewgJMtREZM30wXnM5ls90hxiOtAuVU6H5JgbA== + integrity: sha512-kNH4wMAqs13UiZe/2If1ioO0Mjz71rr2oALTl2c5ajBIox9Vz/UGW/wGkr7GA3SC6Eb29c1HtzAtxdGfbXAkfQ== } engines: { node: ^14.18.0 || >=16.0.0 } peerDependencies: vite: ^4.0.0 vue: ^3.2.25 dependencies: - vite: 4.1.4_fmyp3kkbhzlhfkonroyoepdmjy - vue: 3.2.47 + vite: 4.3.5_wshwf6lyytunybtggckvwapi7u + vue: 3.3.1 dev: true - /@volar/language-core/1.3.0-alpha.0: + /@volar/language-core/1.4.1: resolution: { - integrity: sha512-W3uMzecHPcbwddPu4SJpUcPakRBK/y/BP+U0U6NiPpUX1tONLC4yCawt+QBJqtgJ+sfD6ztf5PyvPL3hQRqfOA== + integrity: sha512-EIY+Swv+TjsWpxOxujjMf1ZXqOjg9MT2VMXZ+1dKva0wD8W0L6EtptFFcCJdBbcKmGMFkr57Qzz9VNMWhs3jXQ== } dependencies: - "@volar/source-map": 1.3.0-alpha.0 + "@volar/source-map": 1.4.1 dev: true - /@volar/source-map/1.3.0-alpha.0: + /@volar/source-map/1.4.1: resolution: { - integrity: sha512-jSdizxWFvDTvkPYZnO6ew3sBZUnS0abKCbuopkc0JrIlFbznWC/fPH3iPFIMS8/IIkRxq1Jh9VVG60SmtsdaMQ== + integrity: sha512-bZ46ad72dsbzuOWPUtJjBXkzSQzzSejuR3CT81+GvTEI2E994D8JPXzM3tl98zyCNnjgs4OkRyliImL1dvJ5BA== } dependencies: muggle-string: 0.2.2 dev: true - /@volar/typescript/1.3.0-alpha.0: + /@volar/typescript/1.4.1_typescript@5.0.4: resolution: { - integrity: sha512-5UItyW2cdH2mBLu4RrECRNJRgtvvzKrSCn2y3v/D61QwIDkGx4aeil6x8RFuUL5TFtV6QvVHXnsOHxNgd+sCow== + integrity: sha512-phTy6p9yG6bgMIKQWEeDOi/aeT0njZsb1a/G1mrEuDsLmAn24Le4gDwSsGNhea6Uhu+3gdpUZn2PmZXa+WG2iQ== } + peerDependencies: + typescript: "*" dependencies: - "@volar/language-core": 1.3.0-alpha.0 + "@volar/language-core": 1.4.1 + typescript: 5.0.4 dev: true - /@volar/vue-language-core/1.2.0: + /@volar/vue-language-core/1.6.4: resolution: { - integrity: sha512-w7yEiaITh2WzKe6u8ZdeLKCUz43wdmY/OqAmsB/PGDvvhTcVhCJ6f0W/RprZL1IhqH8wALoWiwEh/Wer7ZviMQ== + integrity: sha512-1o+cAtN2DIDNAX/HS8rkjZc8wTMTK+zCab/qtYbvEVlmokhZiDrQeoD9/l0Ug7YCNg+mVuMNHKNBY7pX8U2/Jw== } dependencies: - "@volar/language-core": 1.3.0-alpha.0 - "@volar/source-map": 1.3.0-alpha.0 - "@vue/compiler-dom": 3.2.47 - "@vue/compiler-sfc": 3.2.47 - "@vue/reactivity": 3.2.47 - "@vue/shared": 3.2.47 - minimatch: 6.2.0 + "@volar/language-core": 1.4.1 + "@volar/source-map": 1.4.1 + "@vue/compiler-dom": 3.3.1 + "@vue/compiler-sfc": 3.3.1 + "@vue/reactivity": 3.3.1 + "@vue/shared": 3.3.1 + minimatch: 9.0.0 muggle-string: 0.2.2 vue-template-compiler: 2.7.14 dev: true - /@volar/vue-typescript/1.2.0: - resolution: - { - integrity: sha512-zjmRi9y3J1EkG+pfuHp8IbHmibihrKK485cfzsHjiuvJMGrpkWvlO5WVEk8oslMxxeGC5XwBFE9AOlvh378EPA== - } - dependencies: - "@volar/typescript": 1.3.0-alpha.0 - "@volar/vue-language-core": 1.2.0 - dev: true - - /@vue-macros/common/1.1.0_vue@3.2.47: + /@volar/vue-typescript/1.6.4_typescript@5.0.4: resolution: { - integrity: sha512-BvreSru0kh6q/PFAt4erTY29buoVzLoUfXp1nW2cS9PQ589Y76iACw0NcjflXUUxGPRxQkQK+iRx/c4pUj0eeQ== + integrity: sha512-qKwgP0KVQR/aaH/SN3AP7RB8NnXPWDn3tjyXP6IT6etxkDeZLBLsXWUD9KMak/RvV1DgbXDuz4F9yuZlbt29rA== } - engines: { node: ">=14.19.0" } peerDependencies: - vue: ^2.7.0 || ^3.2.25 - peerDependenciesMeta: - vue: - optional: true + typescript: "*" dependencies: - "@babel/types": 7.21.2 - "@vue/compiler-sfc": 3.2.47 - local-pkg: 0.4.3 - magic-string: 0.29.0 - vue: 3.2.47 + "@volar/typescript": 1.4.1_typescript@5.0.4 + "@volar/vue-language-core": 1.6.4 + typescript: 5.0.4 dev: true /@vue/babel-helper-vue-transform-on/1.0.2: @@ -1935,71 +2056,71 @@ packages: } dev: true - /@vue/babel-plugin-jsx/1.1.1_@babel+core@7.21.0: + /@vue/babel-plugin-jsx/1.1.1_@babel+core@7.21.8: resolution: { integrity: sha512-j2uVfZjnB5+zkcbc/zsOc0fSNGCMMjaEXP52wdwdIfn0qjFfEYpYZBFKFg+HHnQeJCVrjOeO0YxgaL7DMrym9w== } dependencies: - "@babel/helper-module-imports": 7.18.6 - "@babel/plugin-syntax-jsx": 7.18.6_@babel+core@7.21.0 + "@babel/helper-module-imports": 7.21.4 + "@babel/plugin-syntax-jsx": 7.21.4_@babel+core@7.21.8 "@babel/template": 7.20.7 - "@babel/traverse": 7.21.2 - "@babel/types": 7.21.2 + "@babel/traverse": 7.21.5 + "@babel/types": 7.21.5 "@vue/babel-helper-vue-transform-on": 1.0.2 camelcase: 6.3.0 - html-tags: 3.2.0 + html-tags: 3.3.1 svg-tags: 1.0.0 transitivePeerDependencies: - "@babel/core" - supports-color dev: true - /@vue/compiler-core/3.2.47: + /@vue/compiler-core/3.3.1: resolution: { - integrity: sha512-p4D7FDnQb7+YJmO2iPEv0SQNeNzcbHdGByJDsT4lynf63AFkOTFN07HsiRSvjGo0QrxR/o3d0hUyNCUnBU2Tig== + integrity: sha512-5le1qYSBgLWg2jdLrbydlhnPJkkzMw46UrRUvTnOKlfg6pThtm9ohhqBhNPHbr0RcM1MCbK5WZe/3Ghz0SZjpQ== } dependencies: - "@babel/parser": 7.21.2 - "@vue/shared": 3.2.47 + "@babel/parser": 7.21.8 + "@vue/shared": 3.3.1 estree-walker: 2.0.2 - source-map: 0.6.1 + source-map-js: 1.0.2 - /@vue/compiler-dom/3.2.47: + /@vue/compiler-dom/3.3.1: resolution: { - integrity: sha512-dBBnEHEPoftUiS03a4ggEig74J2YBZ2UIeyfpcRM2tavgMWo4bsEfgCGsu+uJIL/vax9S+JztH8NmQerUo7shQ== + integrity: sha512-VmgIsoLivCft3+oNc5KM7b9wd0nZxP/g2qilMwi1hJyGA624KWnNKHn4hzBQs4FpzydUVpNy+TWVT8KiRCh3MQ== } dependencies: - "@vue/compiler-core": 3.2.47 - "@vue/shared": 3.2.47 + "@vue/compiler-core": 3.3.1 + "@vue/shared": 3.3.1 - /@vue/compiler-sfc/3.2.47: + /@vue/compiler-sfc/3.3.1: resolution: { - integrity: sha512-rog05W+2IFfxjMcFw10tM9+f7i/+FFpZJJ5XHX72NP9eC2uRD+42M3pYcQqDXVYoj74kHMSEdQ/WmCjt8JFksQ== + integrity: sha512-G+FPwBbXSLaA4+Ry5/bdD9Oda+sRslQcE9o6JSZaougRiT4OjVL0vtkbQHPrGRTULZV28OcrAjRfSZOSB0OTXQ== } dependencies: - "@babel/parser": 7.21.2 - "@vue/compiler-core": 3.2.47 - "@vue/compiler-dom": 3.2.47 - "@vue/compiler-ssr": 3.2.47 - "@vue/reactivity-transform": 3.2.47 - "@vue/shared": 3.2.47 + "@babel/parser": 7.21.8 + "@vue/compiler-core": 3.3.1 + "@vue/compiler-dom": 3.3.1 + "@vue/compiler-ssr": 3.3.1 + "@vue/reactivity-transform": 3.3.1 + "@vue/shared": 3.3.1 estree-walker: 2.0.2 - magic-string: 0.25.9 - postcss: 8.4.21 - source-map: 0.6.1 + magic-string: 0.30.0 + postcss: 8.4.23 + source-map-js: 1.0.2 - /@vue/compiler-ssr/3.2.47: + /@vue/compiler-ssr/3.3.1: resolution: { - integrity: sha512-wVXC+gszhulcMD8wpxMsqSOpvDZ6xKXSVWkf50Guf/S+28hTAXPDYRTbLQ3EDkOP5Xz/+SY37YiwDquKbJOgZw== + integrity: sha512-QOQWGNCWuSeyKx4KvWSJlnIMGg+/2oCHgkFUYo7aJ+9Uaaz45yRgKQ+FNigy50NYBQIhpXn2e4OSR8GXh4knrQ== } dependencies: - "@vue/compiler-dom": 3.2.47 - "@vue/shared": 3.2.47 + "@vue/compiler-dom": 3.3.1 + "@vue/shared": 3.3.1 /@vue/devtools-api/6.5.0: resolution: @@ -2007,7 +2128,7 @@ packages: integrity: sha512-o9KfBeaBmCKl10usN4crU53fYtC1r7jJwdGKjPT24t348rHxgfpZ0xL3Xm/gLUYnc0oTp8LAmrxOeLyu6tbk2Q== } - /@vue/eslint-config-prettier/7.1.0_rlq4czn2p5niyau36qwtjimf2y: + /@vue/eslint-config-prettier/7.1.0_aq37wtubambsjkbuajxtwljxa4: resolution: { integrity: sha512-Pv/lVr0bAzSIHLd9iz0KnvAr4GKyCEl+h52bc4e5yWuDVtLgFwycF7nrbWTAQAS+FU6q1geVd07lc6EWfJiWKQ== @@ -2016,16 +2137,16 @@ packages: eslint: ">= 7.28.0" prettier: ">= 2.0.0" dependencies: - eslint: 8.35.0 - eslint-config-prettier: 8.6.0_eslint@8.35.0 - eslint-plugin-prettier: 4.2.1_u2zha4kiojzs42thzpgwygphmy - prettier: 2.8.4 + eslint: 8.40.0 + eslint-config-prettier: 8.8.0_eslint@8.40.0 + eslint-plugin-prettier: 4.2.1_mnhdxnhvwtt24ndv5d2pwtkrna + prettier: 2.8.8 dev: true - /@vue/eslint-config-typescript/11.0.2_mwzft5yawf6e3vmm364a6avhx4: + /@vue/eslint-config-typescript/11.0.3_nhvncizgwdwdw3lhirpwnri2za: resolution: { - integrity: sha512-EiKud1NqlWmSapBFkeSrE994qpKx7/27uCGnhdqzllYDpQZroyX/O6bwjEpeuyKamvLbsGdO6PMR2faIf+zFnw== + integrity: sha512-dkt6W0PX6H/4Xuxg/BlFj5xHvksjpSlVjtkQCpaYJBIEuKj2hOVU7r+TIe+ysCwRYFz/lGqvklntRkCAibsbPw== } engines: { node: ^14.17.0 || >=16.0.0 } peerDependencies: @@ -2036,74 +2157,89 @@ packages: typescript: optional: true dependencies: - "@typescript-eslint/eslint-plugin": 5.54.0_6mj2wypvdnknez7kws2nfdgupi - "@typescript-eslint/parser": 5.54.0_ycpbpc6yetojsgtrx3mwntkhsu - eslint: 8.35.0 - eslint-plugin-vue: 9.9.0_eslint@8.35.0 - typescript: 4.9.5 - vue-eslint-parser: 9.1.0_eslint@8.35.0 + "@typescript-eslint/eslint-plugin": 5.59.5_zaj6dsh3leplki3sfxgbx2w2za + "@typescript-eslint/parser": 5.59.5_3qfatcekpgbllh6uk5ivyhkbxq + eslint: 8.40.0 + eslint-plugin-vue: 9.12.0_eslint@8.40.0 + typescript: 5.0.4 + vue-eslint-parser: 9.2.1_eslint@8.40.0 transitivePeerDependencies: - supports-color dev: true - /@vue/reactivity-transform/3.2.47: + /@vue/reactivity-transform/3.3.1: resolution: { - integrity: sha512-m8lGXw8rdnPVVIdIFhf0LeQ/ixyHkH5plYuS83yop5n7ggVJU+z5v0zecwEnX7fa7HNLBhh2qngJJkxpwEEmYA== + integrity: sha512-MkOrJauAGH4MNdxGW/PmrDegMyOGX0wGIdKUZJRBXOTpotDONg7/TPJe2QeGeBCow/5v9iOqZOWCfvmOWIaDMg== } dependencies: - "@babel/parser": 7.21.2 - "@vue/compiler-core": 3.2.47 - "@vue/shared": 3.2.47 + "@babel/parser": 7.21.8 + "@vue/compiler-core": 3.3.1 + "@vue/shared": 3.3.1 estree-walker: 2.0.2 - magic-string: 0.25.9 + magic-string: 0.30.0 - /@vue/reactivity/3.2.47: + /@vue/reactivity/3.3.1: resolution: { - integrity: sha512-7khqQ/75oyyg+N/e+iwV6lpy1f5wq759NdlS1fpAhFXa8VeAIKGgk2E/C4VF59lx5b+Ezs5fpp/5WsRYXQiKxQ== + integrity: sha512-zCfmazOtyUdC1NS/EPiSYJ4RqojqmTAviJyBbyVvY8zAv5NhK44Yfw0E1tt+m5vz0ZO1ptI9jDKBr3MWIEkpgw== } dependencies: - "@vue/shared": 3.2.47 + "@vue/shared": 3.3.1 - /@vue/runtime-core/3.2.47: + /@vue/runtime-core/3.3.1: resolution: { - integrity: sha512-RZxbLQIRB/K0ev0K9FXhNbBzT32H9iRtYbaXb0ZIz2usLms/D55dJR2t6cIEUn6vyhS3ALNvNthI+Q95C+NOpA== + integrity: sha512-Ljb37LYafhQqKIasc0r32Cva8gIh6VeSMjlwO6V03tCjHd18gmjP0F4UD+8/a59sGTysAgA8Rb9lIC2DVxRz2Q== } dependencies: - "@vue/reactivity": 3.2.47 - "@vue/shared": 3.2.47 + "@vue/reactivity": 3.3.1 + "@vue/shared": 3.3.1 - /@vue/runtime-dom/3.2.47: + /@vue/runtime-dom/3.3.1: resolution: { - integrity: sha512-ArXrFTjS6TsDei4qwNvgrdmHtD930KgSKGhS5M+j8QxXrDJYLqYw4RRcDy1bz1m1wMmb6j+zGLifdVHtkXA7gA== + integrity: sha512-NBjYbQPtMklb7lsJsM2Juv5Ygry6mvZP7PdH1GZqrzfLkvlplQT3qCtQMd/sib6yiy8t9m/Y4hVU7X9nzb9Oeg== } dependencies: - "@vue/runtime-core": 3.2.47 - "@vue/shared": 3.2.47 - csstype: 2.6.21 + "@vue/runtime-core": 3.3.1 + "@vue/shared": 3.3.1 + csstype: 3.1.2 - /@vue/server-renderer/3.2.47_vue@3.2.47: + /@vue/server-renderer/3.3.1_vue@3.3.1: resolution: { - integrity: sha512-dN9gc1i8EvmP9RCzvneONXsKfBRgqFeFZLurmHOveL7oH6HiFXJw5OGu294n1nHc/HMgTy6LulU/tv5/A7f/LA== + integrity: sha512-sod8ggOwbkQXw3lBjfzrbdxRS9lw/lNHoMaXghHawNYowf+4WoaLWD5ouz6fPZadUqNKAsqK95p8DYb1vcVfPA== } peerDependencies: - vue: 3.2.47 + vue: 3.3.1 dependencies: - "@vue/compiler-ssr": 3.2.47 - "@vue/shared": 3.2.47 - vue: 3.2.47 + "@vue/compiler-ssr": 3.3.1 + "@vue/shared": 3.3.1 + vue: 3.3.1 + + /@vue/shared/3.3.1: + resolution: + { + integrity: sha512-ybDBtQ+479HL/bkeIOIAwgpeAEACzztkvulJLbK3JMFuTOv4qDivmV3AIsR8RHYJ+RD9tQxcHWBsX4GqEcYrfw== + } - /@vue/shared/3.2.47: + /@vueuse/core/10.1.2_vue@3.3.1: resolution: { - integrity: sha512-BHGyyGN3Q97EZx0taMQ+OLNuZcW3d37ZEVmEAyeoA9ERdGvm9Irc/0Fua8SNyOtV1w6BS4q25wbMzJujO9HIfQ== + integrity: sha512-roNn8WuerI56A5uiTyF/TEYX0Y+VKlhZAF94unUfdhbDUI+NfwQMn4FUnUscIRUhv3344qvAghopU4bzLPNFlA== } + dependencies: + "@types/web-bluetooth": 0.0.17 + "@vueuse/metadata": 10.1.2 + "@vueuse/shared": 10.1.2_vue@3.3.1 + vue-demi: 0.14.1_vue@3.3.1 + transitivePeerDependencies: + - "@vue/composition-api" + - vue + dev: false - /@vueuse/core/8.9.4_vue@3.2.47: + /@vueuse/core/8.9.4_vue@3.3.1: resolution: { integrity: sha512-B/Mdj9TK1peFyWaPof+Zf/mP9XuGAngaJZBwPaXBvU3aCTZlx3ltlrFFFyMV4iGBwsjSCeUCgZrtkEj9dS2Y3Q== @@ -2119,12 +2255,12 @@ packages: dependencies: "@types/web-bluetooth": 0.0.14 "@vueuse/metadata": 8.9.4 - "@vueuse/shared": 8.9.4_vue@3.2.47 - vue: 3.2.47 - vue-demi: 0.13.11_vue@3.2.47 + "@vueuse/shared": 8.9.4_vue@3.3.1 + vue: 3.3.1 + vue-demi: 0.14.1_vue@3.3.1 dev: false - /@vueuse/core/9.13.0_vue@3.2.47: + /@vueuse/core/9.13.0_vue@3.3.1: resolution: { integrity: sha512-pujnclbeHWxxPRqXWmdkKV5OX4Wk4YeK7wusHqRwU0Q7EFusHoqNA/aPhB6KCh9hEqJkLAJo7bb0Lh9b+OIVzw== @@ -2132,13 +2268,20 @@ packages: dependencies: "@types/web-bluetooth": 0.0.16 "@vueuse/metadata": 9.13.0 - "@vueuse/shared": 9.13.0_vue@3.2.47 - vue-demi: 0.13.11_vue@3.2.47 + "@vueuse/shared": 9.13.0_vue@3.3.1 + vue-demi: 0.14.1_vue@3.3.1 transitivePeerDependencies: - "@vue/composition-api" - vue dev: false + /@vueuse/metadata/10.1.2: + resolution: + { + integrity: sha512-3mc5BqN9aU2SqBeBuWE7ne4OtXHoHKggNgxZR2K+zIW4YLsy6xoZ4/9vErQs6tvoKDX6QAqm3lvsrv0mczAwIQ== + } + dev: false + /@vueuse/metadata/8.9.4: resolution: { @@ -2153,7 +2296,7 @@ packages: } dev: false - /@vueuse/motion/2.0.0-beta.12_vue@3.2.47: + /@vueuse/motion/2.0.0-beta.12_vue@3.3.1: resolution: { integrity: sha512-cAZqXexLX6xo+H1N1Mv+wBSSqG4wB+BdjIuHQ50jwlelXCDxSi8gj0K/9nDS+aUZtWh6YMwS6UGCKg58jMVglA== @@ -2165,16 +2308,28 @@ packages: "@vue/composition-api": optional: true dependencies: - "@vueuse/core": 8.9.4_vue@3.2.47 - "@vueuse/shared": 8.9.4_vue@3.2.47 + "@vueuse/core": 8.9.4_vue@3.3.1 + "@vueuse/shared": 8.9.4_vue@3.3.1 framesync: 6.1.2 popmotion: 11.0.5 style-value-types: 5.1.2 - vue: 3.2.47 - vue-demi: 0.13.11_vue@3.2.47 + vue: 3.3.1 + vue-demi: 0.14.1_vue@3.3.1 + dev: false + + /@vueuse/shared/10.1.2_vue@3.3.1: + resolution: + { + integrity: sha512-1uoUTPBlgyscK9v6ScGeVYDDzlPSFXBlxuK7SfrDGyUTBiznb3mNceqhwvZHjtDRELZEN79V5uWPTF1VDV8svA== + } + dependencies: + vue-demi: 0.14.1_vue@3.3.1 + transitivePeerDependencies: + - "@vue/composition-api" + - vue dev: false - /@vueuse/shared/8.9.4_vue@3.2.47: + /@vueuse/shared/8.9.4_vue@3.3.1: resolution: { integrity: sha512-wt+T30c4K6dGRMVqPddexEVLa28YwxW5OFIPmzUHICjphfAuBFTTdDoyqREZNDOFJZ44ARH1WWQNCUK8koJ+Ag== @@ -2188,17 +2343,17 @@ packages: vue: optional: true dependencies: - vue: 3.2.47 - vue-demi: 0.13.11_vue@3.2.47 + vue: 3.3.1 + vue-demi: 0.14.1_vue@3.3.1 dev: false - /@vueuse/shared/9.13.0_vue@3.2.47: + /@vueuse/shared/9.13.0_vue@3.3.1: resolution: { integrity: sha512-UrnhU+Cnufu4S6JLCPZnkWh0WwZGUp72ktOF2DFptMlOs3TOdVv8xJN53zhHGARmVOsz5KqOls09+J1NR6sBKw== } dependencies: - vue-demi: 0.13.11_vue@3.2.47 + vue-demi: 0.14.1_vue@3.3.1 transitivePeerDependencies: - "@vue/composition-api" - vue @@ -2214,11 +2369,11 @@ packages: dependencies: cac: 6.7.14 color: 4.2.3 - cssnano: 5.1.15_postcss@8.4.21 - cssnano-preset-lite: 2.1.3_postcss@8.4.21 + cssnano: 5.1.15_postcss@8.4.23 + cssnano-preset-lite: 2.1.3_postcss@8.4.23 fs-extra: 10.1.0 - postcss: 8.4.21 - prettier: 2.8.4 + postcss: 8.4.23 + prettier: 2.8.8 uuid: 8.3.2 dev: true @@ -2255,21 +2410,10 @@ packages: acorn: 8.8.2 dev: true - /acorn-node/1.8.2: - resolution: - { - integrity: sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A== - } - dependencies: - acorn: 7.4.1 - acorn-walk: 7.2.0 - xtend: 4.0.2 - dev: true - - /acorn-walk/7.2.0: + /acorn-walk/8.2.0: resolution: { - integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA== + integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA== } engines: { node: ">=0.4.0" } dev: true @@ -2334,14 +2478,6 @@ packages: } dev: false - /ansi-colors/4.1.3: - resolution: - { - integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw== - } - engines: { node: ">=6" } - dev: true - /ansi-escapes/4.3.2: resolution: { @@ -2360,6 +2496,14 @@ packages: engines: { node: ">=8" } dev: true + /ansi-regex/6.0.1: + resolution: + { + integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA== + } + engines: { node: ">=12" } + dev: true + /ansi-styles/3.2.1: resolution: { @@ -2380,6 +2524,21 @@ packages: color-convert: 2.0.1 dev: true + /ansi-styles/6.2.1: + resolution: + { + integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug== + } + engines: { node: ">=12" } + dev: true + + /any-promise/1.3.0: + resolution: + { + integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A== + } + dev: true + /anymatch/3.1.3: resolution: { @@ -2451,17 +2610,6 @@ packages: engines: { node: ">=8" } dev: true - /ast-walker-scope/0.4.0: - resolution: - { - integrity: sha512-THVisYmmqkcopZXJDniGgVW6BRKtjutRLytqAgw0XDabYZmxC0GfFggTFZouMhvNT7jPBkx0vOy/2Y+udCDwgg== - } - engines: { node: ">=14.19.0" } - dependencies: - "@babel/parser": 7.21.2 - "@babel/types": 7.21.2 - dev: true - /astral-regex/2.0.0: resolution: { @@ -2484,10 +2632,10 @@ packages: } dev: false - /autoprefixer/10.4.13_postcss@8.4.21: + /autoprefixer/10.4.14_postcss@8.4.23: resolution: { - integrity: sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg== + integrity: sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ== } engines: { node: ^10 || ^12 || >=14 } hasBin: true @@ -2495,18 +2643,18 @@ packages: postcss: ^8.1.0 dependencies: browserslist: 4.21.5 - caniuse-lite: 1.0.30001458 + caniuse-lite: 1.0.30001486 fraction.js: 4.2.0 normalize-range: 0.1.2 picocolors: 1.0.0 - postcss: 8.4.21 + postcss: 8.4.23 postcss-value-parser: 4.2.0 dev: true - /axios/1.2.2: + /axios/1.4.0: resolution: { - integrity: sha512-bz/J4gS2S3I7mpN/YZfGFTqhXTYzRho8Ay38w2otuuDR322KzFIWm/4W2K6gIwvWaws5n+mnb7D1lN9uD+QH6Q== + integrity: sha512-S4XCWMEmzvo64T9GfvQDOXgYRDJ/wsSZc7Jvdgx5u1sd0JwsuPLqb3SYmusag+edF6ziyMensPVqLTSc1PiSEA== } dependencies: follow-redirects: 1.15.2 @@ -2589,10 +2737,10 @@ packages: engines: { node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 } hasBin: true dependencies: - caniuse-lite: 1.0.30001458 - electron-to-chromium: 1.4.313 + caniuse-lite: 1.0.30001486 + electron-to-chromium: 1.4.392 node-releases: 2.0.10 - update-browserslist-db: 1.0.10_browserslist@4.21.5 + update-browserslist-db: 1.0.11_browserslist@4.21.5 dev: true /buffer-from/1.1.2: @@ -2602,18 +2750,10 @@ packages: } dev: true - /builtin-modules/3.3.0: + /cac/6.7.14: resolution: { - integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw== - } - engines: { node: ">=6" } - dev: true - - /cac/6.7.14: - resolution: - { - integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ== + integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ== } engines: { node: ">=8" } dev: true @@ -2679,15 +2819,15 @@ packages: } dependencies: browserslist: 4.21.5 - caniuse-lite: 1.0.30001458 + caniuse-lite: 1.0.30001486 lodash.memoize: 4.1.2 lodash.uniq: 4.5.0 dev: true - /caniuse-lite/1.0.30001458: + /caniuse-lite/1.0.30001486: resolution: { - integrity: sha512-lQ1VlUUq5q9ro9X+5gOEyH7i3vm+AYVT1WDCVB69XOZ17KZRhnZ9J0Sqz7wTHQaLBJccNCHq8/Ww5LlOIZbB0w== + integrity: sha512-uv7/gXuHi10Whlj0pp5q/tsK/32J2QSqVRKQhs2j8VsDCjgyruAh/eEXHF822VqO9yT6iZKw3nRwZRSPBE9OQg== } dev: true @@ -2725,6 +2865,14 @@ packages: supports-color: 7.2.0 dev: true + /chalk/5.2.0: + resolution: + { + integrity: sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA== + } + engines: { node: ^12.17.0 || ^14.13 || >=16.0.0 } + dev: true + /chokidar/3.5.3: resolution: { @@ -2772,6 +2920,17 @@ packages: string-width: 4.2.3 dev: true + /cli-truncate/3.1.0: + resolution: + { + integrity: sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA== + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + dependencies: + slice-ansi: 5.0.0 + string-width: 5.1.2 + dev: true + /cliui/8.0.1: resolution: { @@ -2853,10 +3012,10 @@ packages: } dev: true - /colorette/2.0.19: + /colorette/2.0.20: resolution: { - integrity: sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ== + integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w== } dev: true @@ -2870,10 +3029,10 @@ packages: delayed-stream: 1.0.0 dev: false - /commander/10.0.0: + /commander/10.0.1: resolution: { - integrity: sha512-zS5PnTI22FIRM6ylNW8G4Ap0IEOyk62fhLSD0+uHRT9McRCLGpkVNvao4bjimpK/GShynyQkFFxHhwMcETmduA== + integrity: sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug== } engines: { node: ">=14" } @@ -2884,6 +3043,14 @@ packages: } dev: true + /commander/4.1.1: + resolution: + { + integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA== + } + engines: { node: ">= 6" } + dev: true + /commander/7.2.0: resolution: { @@ -2935,10 +3102,10 @@ packages: q: 1.5.1 dev: true - /conventional-changelog-conventionalcommits/4.6.3: + /conventional-changelog-conventionalcommits/5.0.0: resolution: { - integrity: sha512-LTTQV4fwOM4oLPad317V/QNQ1FY4Hju5qeBIM1uTHbrnCE+Eg4CdRZ3gO2pUeR+tzWdp80M2j3qFFEDWVqOV4g== + integrity: sha512-lCDbA+ZqVFQGUj7h9QBKoIpLhl8iihkO0nCTyRNzuXtcd7ubODpYB04IFy31JloiJgG0Uovu8ot8oxRzn7Nwtw== } engines: { node: ">=10" } dependencies: @@ -2970,18 +3137,35 @@ packages: } dev: true - /cosmiconfig/7.1.0: + /cosmiconfig-typescript-loader/4.3.0_n5kxjilisypmeyxi43a7iwpe7e: resolution: { - integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA== + integrity: sha512-NTxV1MFfZDLPiBMjxbHRwSh5LaLcPMwNdCutmnHJCKoVnlvldPWlllonKwrsRJ5pYZBIBGRWWU2tfvzxgeSW5Q== } - engines: { node: ">=10" } + engines: { node: ">=12", npm: ">=6" } + peerDependencies: + "@types/node": "*" + cosmiconfig: ">=7" + ts-node: ">=10" + typescript: ">=3" + dependencies: + "@types/node": 18.16.8 + cosmiconfig: 8.1.3 + ts-node: 10.9.1_2mf6xdw3sorfzkegf5qcc7fqyy + typescript: 5.0.4 + dev: true + + /cosmiconfig/8.1.3: + resolution: + { + integrity: sha512-/UkO2JKI18b5jVMJUp0lvKFMpa/Gye+ZgZjKD+DGEN9y7NRcf/nK1A0sp67ONmKtnDCNMS44E6jrk0Yc3bDuUw== + } + engines: { node: ">=14" } dependencies: - "@types/parse-json": 4.0.0 import-fresh: 3.3.0 + js-yaml: 4.1.0 parse-json: 5.2.0 path-type: 4.0.0 - yaml: 1.10.2 dev: true /create-require/1.1.1: @@ -3003,16 +3187,16 @@ packages: which: 2.0.2 dev: true - /css-declaration-sorter/6.3.1_postcss@8.4.21: + /css-declaration-sorter/6.4.0_postcss@8.4.23: resolution: { - integrity: sha512-fBffmak0bPAnyqc/HO8C3n2sHrp9wcqQz6ES9koRF2/mLOVAx9zIQ3Y7R29sYCteTPqMCwns4WYQoCX91Xl3+w== + integrity: sha512-jDfsatwWMWN0MODAFuHszfjphEXfNw9JUAhmY4pLu3TyTU+ohUpsbVtbU+1MZn4a47D9kqh03i4eyOm+74+zew== } engines: { node: ^10 || ^12 || >=14 } peerDependencies: postcss: ^8.0.9 dependencies: - postcss: 8.4.21 + postcss: 8.4.23 dev: true /css-functions-list/3.1.0: @@ -3045,7 +3229,7 @@ packages: boolbase: 1.0.0 css-what: 6.1.0 domhandler: 5.0.3 - domutils: 3.0.1 + domutils: 3.1.0 nth-check: 2.1.1 dev: true @@ -3099,7 +3283,7 @@ packages: hasBin: true dev: true - /cssnano-preset-default/5.2.14_postcss@8.4.21: + /cssnano-preset-default/5.2.14_postcss@8.4.23: resolution: { integrity: sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A== @@ -3108,39 +3292,80 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - css-declaration-sorter: 6.3.1_postcss@8.4.21 - cssnano-utils: 3.1.0_postcss@8.4.21 - postcss: 8.4.21 - postcss-calc: 8.2.4_postcss@8.4.21 - postcss-colormin: 5.3.1_postcss@8.4.21 - postcss-convert-values: 5.1.3_postcss@8.4.21 - postcss-discard-comments: 5.1.2_postcss@8.4.21 - postcss-discard-duplicates: 5.1.0_postcss@8.4.21 - postcss-discard-empty: 5.1.1_postcss@8.4.21 - postcss-discard-overridden: 5.1.0_postcss@8.4.21 - postcss-merge-longhand: 5.1.7_postcss@8.4.21 - postcss-merge-rules: 5.1.4_postcss@8.4.21 - postcss-minify-font-values: 5.1.0_postcss@8.4.21 - postcss-minify-gradients: 5.1.1_postcss@8.4.21 - postcss-minify-params: 5.1.4_postcss@8.4.21 - postcss-minify-selectors: 5.2.1_postcss@8.4.21 - postcss-normalize-charset: 5.1.0_postcss@8.4.21 - postcss-normalize-display-values: 5.1.0_postcss@8.4.21 - postcss-normalize-positions: 5.1.1_postcss@8.4.21 - postcss-normalize-repeat-style: 5.1.1_postcss@8.4.21 - postcss-normalize-string: 5.1.0_postcss@8.4.21 - postcss-normalize-timing-functions: 5.1.0_postcss@8.4.21 - postcss-normalize-unicode: 5.1.1_postcss@8.4.21 - postcss-normalize-url: 5.1.0_postcss@8.4.21 - postcss-normalize-whitespace: 5.1.1_postcss@8.4.21 - postcss-ordered-values: 5.1.3_postcss@8.4.21 - postcss-reduce-initial: 5.1.2_postcss@8.4.21 - postcss-reduce-transforms: 5.1.0_postcss@8.4.21 - postcss-svgo: 5.1.0_postcss@8.4.21 - postcss-unique-selectors: 5.1.1_postcss@8.4.21 - dev: true - - /cssnano-preset-lite/2.1.3_postcss@8.4.21: + css-declaration-sorter: 6.4.0_postcss@8.4.23 + cssnano-utils: 3.1.0_postcss@8.4.23 + postcss: 8.4.23 + postcss-calc: 8.2.4_postcss@8.4.23 + postcss-colormin: 5.3.1_postcss@8.4.23 + postcss-convert-values: 5.1.3_postcss@8.4.23 + postcss-discard-comments: 5.1.2_postcss@8.4.23 + postcss-discard-duplicates: 5.1.0_postcss@8.4.23 + postcss-discard-empty: 5.1.1_postcss@8.4.23 + postcss-discard-overridden: 5.1.0_postcss@8.4.23 + postcss-merge-longhand: 5.1.7_postcss@8.4.23 + postcss-merge-rules: 5.1.4_postcss@8.4.23 + postcss-minify-font-values: 5.1.0_postcss@8.4.23 + postcss-minify-gradients: 5.1.1_postcss@8.4.23 + postcss-minify-params: 5.1.4_postcss@8.4.23 + postcss-minify-selectors: 5.2.1_postcss@8.4.23 + postcss-normalize-charset: 5.1.0_postcss@8.4.23 + postcss-normalize-display-values: 5.1.0_postcss@8.4.23 + postcss-normalize-positions: 5.1.1_postcss@8.4.23 + postcss-normalize-repeat-style: 5.1.1_postcss@8.4.23 + postcss-normalize-string: 5.1.0_postcss@8.4.23 + postcss-normalize-timing-functions: 5.1.0_postcss@8.4.23 + postcss-normalize-unicode: 5.1.1_postcss@8.4.23 + postcss-normalize-url: 5.1.0_postcss@8.4.23 + postcss-normalize-whitespace: 5.1.1_postcss@8.4.23 + postcss-ordered-values: 5.1.3_postcss@8.4.23 + postcss-reduce-initial: 5.1.2_postcss@8.4.23 + postcss-reduce-transforms: 5.1.0_postcss@8.4.23 + postcss-svgo: 5.1.0_postcss@8.4.23 + postcss-unique-selectors: 5.1.1_postcss@8.4.23 + dev: true + + /cssnano-preset-default/6.0.1_postcss@8.4.23: + resolution: + { + integrity: sha512-7VzyFZ5zEB1+l1nToKyrRkuaJIx0zi/1npjvZfbBwbtNTzhLtlvYraK/7/uqmX2Wb2aQtd983uuGw79jAjLSuQ== + } + engines: { node: ^14 || ^16 || >=18.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + css-declaration-sorter: 6.4.0_postcss@8.4.23 + cssnano-utils: 4.0.0_postcss@8.4.23 + postcss: 8.4.23 + postcss-calc: 9.0.1_postcss@8.4.23 + postcss-colormin: 6.0.0_postcss@8.4.23 + postcss-convert-values: 6.0.0_postcss@8.4.23 + postcss-discard-comments: 6.0.0_postcss@8.4.23 + postcss-discard-duplicates: 6.0.0_postcss@8.4.23 + postcss-discard-empty: 6.0.0_postcss@8.4.23 + postcss-discard-overridden: 6.0.0_postcss@8.4.23 + postcss-merge-longhand: 6.0.0_postcss@8.4.23 + postcss-merge-rules: 6.0.1_postcss@8.4.23 + postcss-minify-font-values: 6.0.0_postcss@8.4.23 + postcss-minify-gradients: 6.0.0_postcss@8.4.23 + postcss-minify-params: 6.0.0_postcss@8.4.23 + postcss-minify-selectors: 6.0.0_postcss@8.4.23 + postcss-normalize-charset: 6.0.0_postcss@8.4.23 + postcss-normalize-display-values: 6.0.0_postcss@8.4.23 + postcss-normalize-positions: 6.0.0_postcss@8.4.23 + postcss-normalize-repeat-style: 6.0.0_postcss@8.4.23 + postcss-normalize-string: 6.0.0_postcss@8.4.23 + postcss-normalize-timing-functions: 6.0.0_postcss@8.4.23 + postcss-normalize-unicode: 6.0.0_postcss@8.4.23 + postcss-normalize-url: 6.0.0_postcss@8.4.23 + postcss-normalize-whitespace: 6.0.0_postcss@8.4.23 + postcss-ordered-values: 6.0.0_postcss@8.4.23 + postcss-reduce-initial: 6.0.0_postcss@8.4.23 + postcss-reduce-transforms: 6.0.0_postcss@8.4.23 + postcss-svgo: 6.0.0_postcss@8.4.23 + postcss-unique-selectors: 6.0.0_postcss@8.4.23 + dev: true + + /cssnano-preset-lite/2.1.3_postcss@8.4.23: resolution: { integrity: sha512-samvnCll/DUVZu0Qc+JH36nt7dlaOT7WjOgg8SbLJ78sp51JZ12s2hyerxrarjPBG4O53rErUtOY2IYLYgBGEQ== @@ -3149,14 +3374,14 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - cssnano-utils: 3.1.0_postcss@8.4.21 - postcss: 8.4.21 - postcss-discard-comments: 5.1.2_postcss@8.4.21 - postcss-discard-empty: 5.1.1_postcss@8.4.21 - postcss-normalize-whitespace: 5.1.1_postcss@8.4.21 + cssnano-utils: 3.1.0_postcss@8.4.23 + postcss: 8.4.23 + postcss-discard-comments: 5.1.2_postcss@8.4.23 + postcss-discard-empty: 5.1.1_postcss@8.4.23 + postcss-normalize-whitespace: 5.1.1_postcss@8.4.23 dev: true - /cssnano-utils/3.1.0_postcss@8.4.21: + /cssnano-utils/3.1.0_postcss@8.4.23: resolution: { integrity: sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA== @@ -3165,10 +3390,22 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.21 + postcss: 8.4.23 + dev: true + + /cssnano-utils/4.0.0_postcss@8.4.23: + resolution: + { + integrity: sha512-Z39TLP+1E0KUcd7LGyF4qMfu8ZufI0rDzhdyAMsa/8UyNUU8wpS0fhdBxbQbv32r64ea00h4878gommRVg2BHw== + } + engines: { node: ^14 || ^16 || >=18.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.23 dev: true - /cssnano/5.1.15_postcss@8.4.21: + /cssnano/5.1.15_postcss@8.4.23: resolution: { integrity: sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw== @@ -3177,12 +3414,26 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - cssnano-preset-default: 5.2.14_postcss@8.4.21 - lilconfig: 2.0.6 - postcss: 8.4.21 + cssnano-preset-default: 5.2.14_postcss@8.4.23 + lilconfig: 2.1.0 + postcss: 8.4.23 yaml: 1.10.2 dev: true + /cssnano/6.0.1_postcss@8.4.23: + resolution: + { + integrity: sha512-fVO1JdJ0LSdIGJq68eIxOqFpIJrZqXUsBt8fkrBcztCQqAjQD51OhZp7tc0ImcbwXD4k7ny84QTV90nZhmqbkg== + } + engines: { node: ^14 || ^16 || >=18.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + cssnano-preset-default: 6.0.1_postcss@8.4.23 + lilconfig: 2.1.0 + postcss: 8.4.23 + dev: true + /csso/4.2.0: resolution: { @@ -3203,10 +3454,10 @@ packages: css-tree: 2.2.1 dev: true - /csstype/2.6.21: + /csstype/3.1.2: resolution: { - integrity: sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w== + integrity: sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ== } /dargs/7.0.0: @@ -3286,14 +3537,6 @@ packages: } dev: true - /deepmerge/4.3.0: - resolution: - { - integrity: sha512-z2wJZXrmeHdvYJp/Ux55wIjqo81G5Bp4c+oELTW+7ar6SogWHajt5a9gO3s3IDaGSAXjDk0vlQKN3rms8ab3og== - } - engines: { node: ">=0.10.0" } - dev: true - /define-lazy-prop/2.0.0: resolution: { @@ -3302,13 +3545,6 @@ packages: engines: { node: ">=8" } dev: true - /defined/1.0.1: - resolution: - { - integrity: sha512-hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q== - } - dev: true - /delayed-stream/1.0.0: resolution: { @@ -3317,19 +3553,6 @@ packages: engines: { node: ">=0.4.0" } dev: false - /detective/5.2.1: - resolution: - { - integrity: sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw== - } - engines: { node: ">=0.8.0" } - hasBin: true - dependencies: - acorn-node: 1.8.2 - defined: 1.0.1 - minimist: 1.2.8 - dev: true - /didyoumean/1.2.2: resolution: { @@ -3391,7 +3614,7 @@ packages: dependencies: domelementtype: 2.3.0 domhandler: 5.0.3 - entities: 4.4.0 + entities: 4.5.0 dev: true /domelementtype/2.3.0: @@ -3432,10 +3655,10 @@ packages: domhandler: 4.3.1 dev: true - /domutils/3.0.1: + /domutils/3.1.0: resolution: { - integrity: sha512-z08c1l761iKhDFtfXO04C7kTdPBLi41zwOZl00WS8b5eiaebNpY00HKbztwBq+e3vyqWNwWF3mP9YLUeqIrF+Q== + integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA== } dependencies: dom-serializer: 2.0.0 @@ -3453,14 +3676,21 @@ packages: is-obj: 2.0.0 dev: true - /echarts/5.4.1: + /eastasianwidth/0.2.0: + resolution: + { + integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA== + } + dev: true + + /echarts/5.4.2: resolution: { - integrity: sha512-9ltS3M2JB0w2EhcYjCdmtrJ+6haZcW6acBolMGIuf01Hql1yrIV01L1aRj7jsaaIULJslEP9Z3vKlEmnJaWJVQ== + integrity: sha512-2W3vw3oI2tWJdyAz+b8DuWS0nfXtSDqlDmqgin/lfzbkB01cuMEN66KWBlmur3YMp5nEDEEt5s23pllnAzB4EA== } dependencies: tslib: 2.3.0 - zrender: 5.4.1 + zrender: 5.4.3 dev: false /ee-first/1.1.1: @@ -3470,37 +3700,37 @@ packages: } dev: true - /electron-to-chromium/1.4.313: + /electron-to-chromium/1.4.392: resolution: { - integrity: sha512-QckB9OVqr2oybjIrbMI99uF+b9+iTja5weFe0ePbqLb5BHqXOJUO1SG6kDj/1WtWPRIBr51N153AEq8m7HuIaA== + integrity: sha512-TXQOMW9tnhIms3jGy/lJctLjICOgyueZFJ1KUtm6DTQ+QpxX3p7ZBwB6syuZ9KBuT5S4XX7bgY1ECPgfxKUdOg== } dev: true - /element-plus/2.2.32_vue@3.2.47: + /element-plus/2.3.4_vue@3.3.1: resolution: { - integrity: sha512-DTJMhYOy6MApbmh6z/95hPTK5WrBiNHGzV4IN+uEkup1WoimQ+Qyt8RxKdTe/X1LWEJ8YgWv/Cl8P4ocrt5z5g== + integrity: sha512-SQr0J9z7N4z48WYk/l9NE2tizl8Q7j2OhqlpTc42k4pGncry3+rVX6dsmcsglFynn6vt3NzYxWJqmLFyDKQq+g== } peerDependencies: vue: ^3.2.0 dependencies: "@ctrl/tinycolor": 3.6.0 - "@element-plus/icons-vue": 2.0.10_vue@3.2.47 - "@floating-ui/dom": 1.2.1 + "@element-plus/icons-vue": 2.1.0_vue@3.3.1 + "@floating-ui/dom": 1.2.7 "@popperjs/core": /@sxzz/popperjs-es/2.11.7 - "@types/lodash": 4.14.191 - "@types/lodash-es": 4.17.6 - "@vueuse/core": 9.13.0_vue@3.2.47 + "@types/lodash": 4.14.194 + "@types/lodash-es": 4.17.7 + "@vueuse/core": 9.13.0_vue@3.3.1 async-validator: 4.2.5 dayjs: 1.11.7 escape-html: 1.0.3 lodash: 4.17.21 lodash-es: 4.17.21 - lodash-unified: 1.0.3_3ib2ivapxullxkx3xftsimdk7u + lodash-unified: 1.0.3_tknf7errc3xdqocd3ryzzla7vq memoize-one: 6.0.0 normalize-wheel-es: 1.2.0 - vue: 3.2.47 + vue: 3.3.1 transitivePeerDependencies: - "@vue/composition-api" dev: false @@ -3521,6 +3751,13 @@ packages: } dev: true + /emoji-regex/9.2.2: + resolution: + { + integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== + } + dev: true + /encodeurl/1.0.2: resolution: { @@ -3538,16 +3775,6 @@ packages: once: 1.4.0 dev: true - /enquirer/2.3.6: - resolution: - { - integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg== - } - engines: { node: ">=8.6" } - dependencies: - ansi-colors: 4.1.3 - dev: true - /entities/2.2.0: resolution: { @@ -3555,10 +3782,10 @@ packages: } dev: true - /entities/4.4.0: + /entities/4.5.0: resolution: { - integrity: sha512-oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA== + integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw== } engines: { node: ">=0.12" } dev: true @@ -3572,243 +3799,502 @@ packages: is-arrayish: 0.2.1 dev: true - /esbuild/0.11.3: + /esbuild-android-64/0.14.54: resolution: { - integrity: sha512-BzVRHcCtFepjS9WcqRjqoIxLqgpK21a8J4Zi4msSGxDxiXVO1IbcqT1KjhdDDnJxKfe7bvzZrvMEX+bVO0Elcw== + integrity: sha512-Tz2++Aqqz0rJ7kYBfz+iqyE3QMycD4vk7LBRyWaAVFgFtQ/O8EJOnVmTOiDWYZ/uYzB4kvP+bqejYdVKzE5lAQ== } - hasBin: true + engines: { node: ">=12" } + cpu: [x64] + os: [android] requiresBuild: true dev: true + optional: true - /esbuild/0.16.17: + /esbuild-android-arm64/0.14.54: resolution: { - integrity: sha512-G8LEkV0XzDMNwXKgM0Jwu3nY3lSTwSGY6XbxM9cr9+s0T/qSV1q1JVPBGzm3dcjhCic9+emZDmMffkwgPeOeLg== + integrity: sha512-F9E+/QDi9sSkLaClO8SOV6etqPd+5DgJje1F9lOWoNncDdOBL2YF59IhsWATSt0TLZbYCf3pNlTHvVV5VfHdvg== } engines: { node: ">=12" } - hasBin: true + cpu: [arm64] + os: [android] requiresBuild: true - optionalDependencies: - "@esbuild/android-arm": 0.16.17 - "@esbuild/android-arm64": 0.16.17 - "@esbuild/android-x64": 0.16.17 - "@esbuild/darwin-arm64": 0.16.17 - "@esbuild/darwin-x64": 0.16.17 - "@esbuild/freebsd-arm64": 0.16.17 - "@esbuild/freebsd-x64": 0.16.17 - "@esbuild/linux-arm": 0.16.17 - "@esbuild/linux-arm64": 0.16.17 - "@esbuild/linux-ia32": 0.16.17 - "@esbuild/linux-loong64": 0.16.17 - "@esbuild/linux-mips64el": 0.16.17 - "@esbuild/linux-ppc64": 0.16.17 - "@esbuild/linux-riscv64": 0.16.17 - "@esbuild/linux-s390x": 0.16.17 - "@esbuild/linux-x64": 0.16.17 - "@esbuild/netbsd-x64": 0.16.17 - "@esbuild/openbsd-x64": 0.16.17 - "@esbuild/sunos-x64": 0.16.17 - "@esbuild/win32-arm64": 0.16.17 - "@esbuild/win32-ia32": 0.16.17 - "@esbuild/win32-x64": 0.16.17 dev: true + optional: true - /escalade/3.1.1: + /esbuild-darwin-64/0.14.54: resolution: { - integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== + integrity: sha512-jtdKWV3nBviOd5v4hOpkVmpxsBy90CGzebpbO9beiqUYVMBtSc0AL9zGftFuBon7PNDcdvNCEuQqw2x0wP9yug== } - engines: { node: ">=6" } + engines: { node: ">=12" } + cpu: [x64] + os: [darwin] + requiresBuild: true dev: true + optional: true - /escape-html/1.0.3: + /esbuild-darwin-arm64/0.14.54: resolution: { - integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow== + integrity: sha512-OPafJHD2oUPyvJMrsCvDGkRrVCar5aVyHfWGQzY1dWnzErjrDuSETxwA2HSsyg2jORLY8yBfzc1MIpUkXlctmw== } + engines: { node: ">=12" } + cpu: [arm64] + os: [darwin] + requiresBuild: true + dev: true + optional: true - /escape-string-regexp/1.0.5: + /esbuild-freebsd-64/0.14.54: resolution: { - integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== + integrity: sha512-OKwd4gmwHqOTp4mOGZKe/XUlbDJ4Q9TjX0hMPIDBUWWu/kwhBAudJdBoxnjNf9ocIB6GN6CPowYpR/hRCbSYAg== } - engines: { node: ">=0.8.0" } + engines: { node: ">=12" } + cpu: [x64] + os: [freebsd] + requiresBuild: true dev: true + optional: true - /escape-string-regexp/4.0.0: + /esbuild-freebsd-arm64/0.14.54: resolution: { - integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== + integrity: sha512-sFwueGr7OvIFiQT6WeG0jRLjkjdqWWSrfbVwZp8iMP+8UHEHRBvlaxL6IuKNDwAozNUmbb8nIMXa7oAOARGs1Q== } - engines: { node: ">=10" } + engines: { node: ">=12" } + cpu: [arm64] + os: [freebsd] + requiresBuild: true dev: true + optional: true - /eslint-config-prettier/8.6.0_eslint@8.35.0: + /esbuild-linux-32/0.14.54: resolution: { - integrity: sha512-bAF0eLpLVqP5oEVUFKpMA+NnRFICwn9X8B5jrR9FcqnYBuPbqWEjTEspPWMj5ye6czoSLDweCzSo3Ko7gGrZaA== + integrity: sha512-1ZuY+JDI//WmklKlBgJnglpUL1owm2OX+8E1syCD6UAxcMM/XoWd76OHSjl/0MR0LisSAXDqgjT3uJqT67O3qw== } - hasBin: true - peerDependencies: - eslint: ">=7.0.0" - dependencies: - eslint: 8.35.0 + engines: { node: ">=12" } + cpu: [ia32] + os: [linux] + requiresBuild: true dev: true + optional: true - /eslint-plugin-prettier/4.2.1_rlq4czn2p5niyau36qwtjimf2y: + /esbuild-linux-64/0.14.54: resolution: { - integrity: sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ== + integrity: sha512-EgjAgH5HwTbtNsTqQOXWApBaPVdDn7XcK+/PtJwZLT1UmpLoznPd8c5CxqsH2dQK3j05YsB3L17T8vE7cp4cCg== } - engines: { node: ">=12.0.0" } - peerDependencies: - eslint: ">=7.28.0" - eslint-config-prettier: "*" - prettier: ">=2.0.0" - peerDependenciesMeta: - eslint-config-prettier: - optional: true - dependencies: - eslint: 8.35.0 - prettier: 2.8.4 - prettier-linter-helpers: 1.0.0 + engines: { node: ">=12" } + cpu: [x64] + os: [linux] + requiresBuild: true dev: true + optional: true - /eslint-plugin-prettier/4.2.1_u2zha4kiojzs42thzpgwygphmy: + /esbuild-linux-arm/0.14.54: resolution: { - integrity: sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ== + integrity: sha512-qqz/SjemQhVMTnvcLGoLOdFpCYbz4v4fUo+TfsWG+1aOu70/80RV6bgNpR2JCrppV2moUQkww+6bWxXRL9YMGw== } - engines: { node: ">=12.0.0" } - peerDependencies: - eslint: ">=7.28.0" - eslint-config-prettier: "*" - prettier: ">=2.0.0" - peerDependenciesMeta: - eslint-config-prettier: - optional: true - dependencies: - eslint: 8.35.0 - eslint-config-prettier: 8.6.0_eslint@8.35.0 - prettier: 2.8.4 - prettier-linter-helpers: 1.0.0 + engines: { node: ">=12" } + cpu: [arm] + os: [linux] + requiresBuild: true dev: true + optional: true - /eslint-plugin-vue/9.9.0_eslint@8.35.0: + /esbuild-linux-arm64/0.14.54: resolution: { - integrity: sha512-YbubS7eK0J7DCf0U2LxvVP7LMfs6rC6UltihIgval3azO3gyDwEGVgsCMe1TmDiEkl6GdMKfRpaME6QxIYtzDQ== + integrity: sha512-WL71L+0Rwv+Gv/HTmxTEmpv0UgmxYa5ftZILVi2QmZBgX3q7+tDeOQNqGtdXSdsL8TQi1vIaVFHUPDe0O0kdig== } - engines: { node: ^14.17.0 || >=16.0.0 } - peerDependencies: - eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 - dependencies: - eslint: 8.35.0 - eslint-utils: 3.0.0_eslint@8.35.0 - natural-compare: 1.4.0 - nth-check: 2.1.1 - postcss-selector-parser: 6.0.11 - semver: 7.3.8 - vue-eslint-parser: 9.1.0_eslint@8.35.0 - xml-name-validator: 4.0.0 - transitivePeerDependencies: - - supports-color + engines: { node: ">=12" } + cpu: [arm64] + os: [linux] + requiresBuild: true dev: true + optional: true - /eslint-scope/5.1.1: + /esbuild-linux-mips64le/0.14.54: resolution: { - integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== + integrity: sha512-qTHGQB8D1etd0u1+sB6p0ikLKRVuCWhYQhAHRPkO+OF3I/iSlTKNNS0Lh2Oc0g0UFGguaFZZiPJdJey3AGpAlw== } - engines: { node: ">=8.0.0" } - dependencies: - esrecurse: 4.3.0 - estraverse: 4.3.0 + engines: { node: ">=12" } + cpu: [mips64el] + os: [linux] + requiresBuild: true dev: true + optional: true - /eslint-scope/7.1.1: + /esbuild-linux-ppc64le/0.14.54: resolution: { - integrity: sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw== + integrity: sha512-j3OMlzHiqwZBDPRCDFKcx595XVfOfOnv68Ax3U4UKZ3MTYQB5Yz3X1mn5GnodEVYzhtZgxEBidLWeIs8FDSfrQ== } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } - dependencies: - esrecurse: 4.3.0 - estraverse: 5.3.0 + engines: { node: ">=12" } + cpu: [ppc64] + os: [linux] + requiresBuild: true dev: true + optional: true - /eslint-utils/2.1.0: + /esbuild-linux-riscv64/0.14.54: resolution: { - integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg== + integrity: sha512-y7Vt7Wl9dkOGZjxQZnDAqqn+XOqFD7IMWiewY5SPlNlzMX39ocPQlOaoxvT4FllA5viyV26/QzHtvTjVNOxHZg== } - engines: { node: ">=6" } - dependencies: - eslint-visitor-keys: 1.3.0 + engines: { node: ">=12" } + cpu: [riscv64] + os: [linux] + requiresBuild: true dev: true + optional: true - /eslint-utils/3.0.0_eslint@8.35.0: + /esbuild-linux-s390x/0.14.54: resolution: { - integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA== + integrity: sha512-zaHpW9dziAsi7lRcyV4r8dhfG1qBidQWUXweUjnw+lliChJqQr+6XD71K41oEIC3Mx1KStovEmlzm+MkGZHnHA== } - engines: { node: ^10.0.0 || ^12.0.0 || >= 14.0.0 } - peerDependencies: - eslint: ">=5" - dependencies: - eslint: 8.35.0 - eslint-visitor-keys: 2.1.0 + engines: { node: ">=12" } + cpu: [s390x] + os: [linux] + requiresBuild: true dev: true + optional: true - /eslint-visitor-keys/1.3.0: + /esbuild-netbsd-64/0.14.54: resolution: { - integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ== + integrity: sha512-PR01lmIMnfJTgeU9VJTDY9ZerDWVFIUzAtJuDHwwceppW7cQWjBBqP48NdeRtoP04/AtO9a7w3viI+PIDr6d+w== } - engines: { node: ">=4" } + engines: { node: ">=12" } + cpu: [x64] + os: [netbsd] + requiresBuild: true dev: true + optional: true - /eslint-visitor-keys/2.1.0: + /esbuild-openbsd-64/0.14.54: resolution: { - integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw== + integrity: sha512-Qyk7ikT2o7Wu76UsvvDS5q0amJvmRzDyVlL0qf5VLsLchjCa1+IAvd8kTBgUxD7VBUUVgItLkk609ZHUc1oCaw== } - engines: { node: ">=10" } + engines: { node: ">=12" } + cpu: [x64] + os: [openbsd] + requiresBuild: true dev: true + optional: true - /eslint-visitor-keys/3.3.0: + /esbuild-sunos-64/0.14.54: resolution: { - integrity: sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA== + integrity: sha512-28GZ24KmMSeKi5ueWzMcco6EBHStL3B6ubM7M51RmPwXQGLe0teBGJocmWhgwccA1GeFXqxzILIxXpHbl9Q/Kw== } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + engines: { node: ">=12" } + cpu: [x64] + os: [sunos] + requiresBuild: true dev: true + optional: true - /eslint/8.35.0: + /esbuild-windows-32/0.14.54: resolution: { - integrity: sha512-BxAf1fVL7w+JLRQhWl2pzGeSiGqbWumV4WNvc9Rhp6tiCtm4oHnyPBSEtMGZwrQgudFQ+otqzWoPB7x+hxoWsw== + integrity: sha512-T+rdZW19ql9MjS7pixmZYVObd9G7kcaZo+sETqNH4RCkuuYSuv9AGHUVnPoP9hhuE1WM1ZimHz1CIBHBboLU7w== } - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } - hasBin: true - dependencies: - "@eslint/eslintrc": 2.0.0 - "@eslint/js": 8.35.0 - "@humanwhocodes/config-array": 0.11.8 - "@humanwhocodes/module-importer": 1.0.1 - "@nodelib/fs.walk": 1.2.8 - ajv: 6.12.6 - chalk: 4.1.2 - cross-spawn: 7.0.3 + engines: { node: ">=12" } + cpu: [ia32] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /esbuild-windows-64/0.14.54: + resolution: + { + integrity: sha512-AoHTRBUuYwXtZhjXZbA1pGfTo8cJo3vZIcWGLiUcTNgHpJJMC1rVA44ZereBHMJtotyN71S8Qw0npiCIkW96cQ== + } + engines: { node: ">=12" } + cpu: [x64] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /esbuild-windows-arm64/0.14.54: + resolution: + { + integrity: sha512-M0kuUvXhot1zOISQGXwWn6YtS+Y/1RT9WrVIOywZnJHo3jCDyewAc79aKNQWFCQm+xNHVTq9h8dZKvygoXQQRg== + } + engines: { node: ">=12" } + cpu: [arm64] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /esbuild/0.14.54: + resolution: + { + integrity: sha512-Cy9llcy8DvET5uznocPyqL3BFRrFXSVqbgpMJ9Wz8oVjZlh/zUSNbPRbov0VX7VxN2JH1Oa0uNxZ7eLRb62pJA== + } + engines: { node: ">=12" } + hasBin: true + requiresBuild: true + optionalDependencies: + "@esbuild/linux-loong64": 0.14.54 + esbuild-android-64: 0.14.54 + esbuild-android-arm64: 0.14.54 + esbuild-darwin-64: 0.14.54 + esbuild-darwin-arm64: 0.14.54 + esbuild-freebsd-64: 0.14.54 + esbuild-freebsd-arm64: 0.14.54 + esbuild-linux-32: 0.14.54 + esbuild-linux-64: 0.14.54 + esbuild-linux-arm: 0.14.54 + esbuild-linux-arm64: 0.14.54 + esbuild-linux-mips64le: 0.14.54 + esbuild-linux-ppc64le: 0.14.54 + esbuild-linux-riscv64: 0.14.54 + esbuild-linux-s390x: 0.14.54 + esbuild-netbsd-64: 0.14.54 + esbuild-openbsd-64: 0.14.54 + esbuild-sunos-64: 0.14.54 + esbuild-windows-32: 0.14.54 + esbuild-windows-64: 0.14.54 + esbuild-windows-arm64: 0.14.54 + dev: true + + /esbuild/0.17.18: + resolution: + { + integrity: sha512-z1lix43jBs6UKjcZVKOw2xx69ffE2aG0PygLL5qJ9OS/gy0Ewd1gW/PUQIOIQGXBHWNywSc0floSKoMFF8aK2w== + } + engines: { node: ">=12" } + hasBin: true + requiresBuild: true + optionalDependencies: + "@esbuild/android-arm": 0.17.18 + "@esbuild/android-arm64": 0.17.18 + "@esbuild/android-x64": 0.17.18 + "@esbuild/darwin-arm64": 0.17.18 + "@esbuild/darwin-x64": 0.17.18 + "@esbuild/freebsd-arm64": 0.17.18 + "@esbuild/freebsd-x64": 0.17.18 + "@esbuild/linux-arm": 0.17.18 + "@esbuild/linux-arm64": 0.17.18 + "@esbuild/linux-ia32": 0.17.18 + "@esbuild/linux-loong64": 0.17.18 + "@esbuild/linux-mips64el": 0.17.18 + "@esbuild/linux-ppc64": 0.17.18 + "@esbuild/linux-riscv64": 0.17.18 + "@esbuild/linux-s390x": 0.17.18 + "@esbuild/linux-x64": 0.17.18 + "@esbuild/netbsd-x64": 0.17.18 + "@esbuild/openbsd-x64": 0.17.18 + "@esbuild/sunos-x64": 0.17.18 + "@esbuild/win32-arm64": 0.17.18 + "@esbuild/win32-ia32": 0.17.18 + "@esbuild/win32-x64": 0.17.18 + dev: true + + /escalade/3.1.1: + resolution: + { + integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== + } + engines: { node: ">=6" } + dev: true + + /escape-html/1.0.3: + resolution: + { + integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow== + } + + /escape-string-regexp/1.0.5: + resolution: + { + integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== + } + engines: { node: ">=0.8.0" } + dev: true + + /escape-string-regexp/4.0.0: + resolution: + { + integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== + } + engines: { node: ">=10" } + dev: true + + /escodegen/2.0.0: + resolution: + { + integrity: sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw== + } + engines: { node: ">=6.0" } + hasBin: true + dependencies: + esprima: 4.0.1 + estraverse: 5.3.0 + esutils: 2.0.3 + optionator: 0.8.3 + optionalDependencies: + source-map: 0.6.1 + dev: true + + /eslint-config-prettier/8.8.0_eslint@8.40.0: + resolution: + { + integrity: sha512-wLbQiFre3tdGgpDv67NQKnJuTlcUVYHas3k+DZCc2U2BadthoEY4B7hLPvAxaqdyOGCzuLfii2fqGph10va7oA== + } + hasBin: true + peerDependencies: + eslint: ">=7.0.0" + dependencies: + eslint: 8.40.0 + dev: true + + /eslint-plugin-prettier/4.2.1_aq37wtubambsjkbuajxtwljxa4: + resolution: + { + integrity: sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ== + } + engines: { node: ">=12.0.0" } + peerDependencies: + eslint: ">=7.28.0" + eslint-config-prettier: "*" + prettier: ">=2.0.0" + peerDependenciesMeta: + eslint-config-prettier: + optional: true + dependencies: + eslint: 8.40.0 + prettier: 2.8.8 + prettier-linter-helpers: 1.0.0 + dev: true + + /eslint-plugin-prettier/4.2.1_mnhdxnhvwtt24ndv5d2pwtkrna: + resolution: + { + integrity: sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ== + } + engines: { node: ">=12.0.0" } + peerDependencies: + eslint: ">=7.28.0" + eslint-config-prettier: "*" + prettier: ">=2.0.0" + peerDependenciesMeta: + eslint-config-prettier: + optional: true + dependencies: + eslint: 8.40.0 + eslint-config-prettier: 8.8.0_eslint@8.40.0 + prettier: 2.8.8 + prettier-linter-helpers: 1.0.0 + dev: true + + /eslint-plugin-vue/9.12.0_eslint@8.40.0: + resolution: + { + integrity: sha512-xH8PgpDW2WwmFSmRfs/3iWogef1CJzQqX264I65zz77jDuxF2yLy7+GA2diUM8ZNATuSl1+UehMQkb5YEyau5w== + } + engines: { node: ^14.17.0 || >=16.0.0 } + peerDependencies: + eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 + dependencies: + "@eslint-community/eslint-utils": 4.4.0_eslint@8.40.0 + eslint: 8.40.0 + natural-compare: 1.4.0 + nth-check: 2.1.1 + postcss-selector-parser: 6.0.12 + semver: 7.5.0 + vue-eslint-parser: 9.2.1_eslint@8.40.0 + xml-name-validator: 4.0.0 + transitivePeerDependencies: + - supports-color + dev: true + + /eslint-scope/5.1.1: + resolution: + { + integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== + } + engines: { node: ">=8.0.0" } + dependencies: + esrecurse: 4.3.0 + estraverse: 4.3.0 + dev: true + + /eslint-scope/7.2.0: + resolution: + { + integrity: sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw== + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + dependencies: + esrecurse: 4.3.0 + estraverse: 5.3.0 + dev: true + + /eslint-utils/2.1.0: + resolution: + { + integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg== + } + engines: { node: ">=6" } + dependencies: + eslint-visitor-keys: 1.3.0 + dev: true + + /eslint-visitor-keys/1.3.0: + resolution: + { + integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ== + } + engines: { node: ">=4" } + dev: true + + /eslint-visitor-keys/3.4.1: + resolution: + { + integrity: sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA== + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + dev: true + + /eslint/8.40.0: + resolution: + { + integrity: sha512-bvR+TsP9EHL3TqNtj9sCNJVAFK3fBN8Q7g5waghxyRsPLIMwL73XSKnZFK0hk/O2ANC+iAoq6PWMQ+IfBAJIiQ== + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + hasBin: true + dependencies: + "@eslint-community/eslint-utils": 4.4.0_eslint@8.40.0 + "@eslint-community/regexpp": 4.5.1 + "@eslint/eslintrc": 2.0.3 + "@eslint/js": 8.40.0 + "@humanwhocodes/config-array": 0.11.8 + "@humanwhocodes/module-importer": 1.0.1 + "@nodelib/fs.walk": 1.2.8 + ajv: 6.12.6 + chalk: 4.1.2 + cross-spawn: 7.0.3 debug: 4.3.4 doctrine: 3.0.0 escape-string-regexp: 4.0.0 - eslint-scope: 7.1.1 - eslint-utils: 3.0.0_eslint@8.35.0 - eslint-visitor-keys: 3.3.0 - espree: 9.4.1 - esquery: 1.4.2 + eslint-scope: 7.2.0 + eslint-visitor-keys: 3.4.1 + espree: 9.5.2 + esquery: 1.5.0 esutils: 2.0.3 fast-deep-equal: 3.1.3 file-entry-cache: 6.0.1 @@ -3821,7 +4307,7 @@ packages: imurmurhash: 0.1.4 is-glob: 4.0.3 is-path-inside: 3.0.3 - js-sdsl: 4.3.0 + js-sdsl: 4.4.0 js-yaml: 4.1.0 json-stable-stringify-without-jsonify: 1.0.1 levn: 0.4.1 @@ -3829,7 +4315,6 @@ packages: minimatch: 3.1.2 natural-compare: 1.4.0 optionator: 0.9.1 - regexpp: 3.2.0 strip-ansi: 6.0.1 strip-json-comments: 3.1.1 text-table: 0.2.0 @@ -3849,22 +4334,31 @@ packages: eslint-visitor-keys: 1.3.0 dev: true - /espree/9.4.1: + /espree/9.5.2: resolution: { - integrity: sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg== + integrity: sha512-7OASN1Wma5fum5SrNhFMAMJxOUAbhyfQ8dQ//PJaJbNw0URTPWqIghHWt1MmAANKhHZIYOHruW4Kw4ruUWOdGw== } engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } dependencies: acorn: 8.8.2 acorn-jsx: 5.3.2_acorn@8.8.2 - eslint-visitor-keys: 3.3.0 + eslint-visitor-keys: 3.4.1 + dev: true + + /esprima/4.0.1: + resolution: + { + integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== + } + engines: { node: ">=4" } + hasBin: true dev: true - /esquery/1.4.2: + /esquery/1.5.0: resolution: { - integrity: sha512-JVSoLdTlTDkmjFmab7H/9SL9qGSyjElT3myyKp7krqjVFQCDLmj1QFaCLRFBszBKI0XVZaiiXvuPIX3ZwHe1Ng== + integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg== } engines: { node: ">=0.10" } dependencies: @@ -3897,13 +4391,6 @@ packages: engines: { node: ">=4.0" } dev: true - /estree-walker/1.0.1: - resolution: - { - integrity: sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg== - } - dev: true - /estree-walker/2.0.2: resolution: { @@ -3954,6 +4441,24 @@ packages: strip-final-newline: 2.0.0 dev: true + /execa/7.1.1: + resolution: + { + integrity: sha512-wH0eMf/UXckdUYnO21+HDztteVv05rq2GXksxT4fCGeHkBhw1DROXh40wcjMcRqDOWE7iPJ4n3M7e2+YFP+76Q== + } + engines: { node: ^14.18.0 || ^16.14.0 || >=18.0.0 } + dependencies: + cross-spawn: 7.0.3 + get-stream: 6.0.1 + human-signals: 4.3.1 + is-stream: 3.0.0 + merge-stream: 2.0.0 + npm-run-path: 5.1.0 + onetime: 6.0.0 + signal-exit: 3.0.7 + strip-final-newline: 3.0.0 + dev: true + /fast-deep-equal/3.1.3: resolution: { @@ -4104,6 +4609,17 @@ packages: optional: true dev: false + /foreground-child/3.1.1: + resolution: + { + integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg== + } + engines: { node: ">=14" } + dependencies: + cross-spawn: 7.0.3 + signal-exit: 4.0.2 + dev: true + /form-data/4.0.0: resolution: { @@ -4139,7 +4655,19 @@ packages: } engines: { node: ">=12" } dependencies: - graceful-fs: 4.2.10 + graceful-fs: 4.2.11 + jsonfile: 6.1.0 + universalify: 2.0.0 + dev: true + + /fs-extra/11.1.1: + resolution: + { + integrity: sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ== + } + engines: { node: ">=14.14" } + dependencies: + graceful-fs: 4.2.11 jsonfile: 6.1.0 universalify: 2.0.0 dev: true @@ -4195,13 +4723,6 @@ packages: has-symbols: 1.0.3 dev: false - /get-own-enumerable-property-symbols/3.0.2: - resolution: - { - integrity: sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g== - } - dev: true - /get-stream/5.2.0: resolution: { @@ -4255,6 +4776,35 @@ packages: is-glob: 4.0.3 dev: true + /glob/10.2.3: + resolution: + { + integrity: sha512-Kb4rfmBVE3eQTAimgmeqc2LwSnN0wIOkkUL6HmxEFxNJ4fHghYHVbFba/HcGcRjE6s9KoMNK3rSOwkL4PioZjg== + } + engines: { node: ">=16 || 14 >=14.17" } + hasBin: true + dependencies: + foreground-child: 3.1.1 + jackspeak: 2.2.0 + minimatch: 9.0.0 + minipass: 5.0.0 + path-scurry: 1.8.0 + dev: true + + /glob/7.1.6: + resolution: + { + integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== + } + dependencies: + fs.realpath: 1.0.0 + inflight: 1.0.6 + inherits: 2.0.4 + minimatch: 3.1.2 + once: 1.4.0 + path-is-absolute: 1.0.1 + dev: true + /glob/7.2.3: resolution: { @@ -4341,10 +4891,10 @@ packages: } dev: true - /graceful-fs/4.2.10: + /graceful-fs/4.2.11: resolution: { - integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA== + integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== } dev: true @@ -4428,24 +4978,24 @@ packages: lru-cache: 6.0.0 dev: true - /html-tags/3.2.0: + /html-tags/3.3.1: resolution: { - integrity: sha512-vy7ClnArOZwCnqZgvv+ddgHgJiAFXe3Ge9ML5/mBctVJoUoYPCdxVucOywjDARn6CVoh3dRSFdPHy2sX80L0Wg== + integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ== } engines: { node: ">=8" } dev: true - /htmlparser2/8.0.1: + /htmlparser2/8.0.2: resolution: { - integrity: sha512-4lVbmc1diZC7GUJQtRQ5yBAeUCL1exyMwmForWkRLnwyzWBFxN633SALPMGYaWZvKe9j1pRZJpauvmxENSp/EA== + integrity: sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA== } dependencies: domelementtype: 2.3.0 domhandler: 5.0.3 - domutils: 3.0.1 - entities: 4.4.0 + domutils: 3.1.0 + entities: 4.5.0 dev: true /human-signals/1.1.1: @@ -4464,12 +5014,20 @@ packages: engines: { node: ">=10.17.0" } dev: true - /husky/7.0.4: + /human-signals/4.3.1: resolution: { - integrity: sha512-vbaCKN2QLtP/vD4yvs6iz6hBEo6wkSzs8HpRah1Z6aGmF2KW5PdYuAd7uX5a+OyBZHBhd+TFLqgjUgytQr4RvQ== + integrity: sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ== } - engines: { node: ">=12" } + engines: { node: ">=14.18.0" } + dev: true + + /husky/8.0.3: + resolution: + { + integrity: sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg== + } + engines: { node: ">=14" } hasBin: true dev: true @@ -4481,10 +5039,10 @@ packages: engines: { node: ">= 4" } dev: true - /immutable/4.2.4: + /immutable/4.3.0: resolution: { - integrity: sha512-WDxL3Hheb1JkRN3sQkyujNlL/xRjAo3rJtaU5xeufUauG66JdMr32bLj4gF+vWl84DIA3Zxw7tiAjneYzRRw+w== + integrity: sha512-0AOCmOip+xgJwEVTQj1EfiDDOkPmuyllDuTuEX+DDXUgapLAsBIfkg3sxCYyCEA8mQqZrrxPUGjcOQ2JS3WLkg== } dev: true @@ -4578,20 +5136,10 @@ packages: binary-extensions: 2.2.0 dev: true - /is-builtin-module/3.2.1: - resolution: - { - integrity: sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A== - } - engines: { node: ">=6" } - dependencies: - builtin-modules: 3.3.0 - dev: true - - /is-core-module/2.11.0: + /is-core-module/2.12.0: resolution: { - integrity: sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw== + integrity: sha512-RECHCBCd/viahWmwj6enj19sKbHfJrddi/6cBDsNTKbNq0f7VeaUkBo60BqzvPqo/W54ChS62Z5qyun7cfOMqQ== } dependencies: has: 1.0.3 @@ -4622,21 +5170,22 @@ packages: engines: { node: ">=8" } dev: true - /is-glob/4.0.3: + /is-fullwidth-code-point/4.0.0: resolution: { - integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== + integrity: sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ== } - engines: { node: ">=0.10.0" } - dependencies: - is-extglob: 2.1.1 + engines: { node: ">=12" } dev: true - /is-module/1.0.0: + /is-glob/4.0.3: resolution: { - integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g== + integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== } + engines: { node: ">=0.10.0" } + dependencies: + is-extglob: 2.1.1 dev: true /is-number/7.0.0: @@ -4647,14 +5196,6 @@ packages: engines: { node: ">=0.12.0" } dev: true - /is-obj/1.0.1: - resolution: - { - integrity: sha512-l4RyHgRqGN4Y3+9JHVrNqO+tN0rV5My76uW5/nuO4K1b6vw5G8d/cmFjP9tRfEsdhZNt0IFdZuK/c2Vr4Nb+Qg== - } - engines: { node: ">=0.10.0" } - dev: true - /is-obj/2.0.0: resolution: { @@ -4692,23 +5233,23 @@ packages: integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ== } dependencies: - "@types/estree": 1.0.0 + "@types/estree": 1.0.1 dev: true - /is-regexp/1.0.0: + /is-stream/2.0.1: resolution: { - integrity: sha512-7zjFAPO4/gwyQAAgRRmqeEeyIICSdmCqa3tsVHMdBzaXXRiqopZL4Cyghg/XulGWrtABTpbnYYzzIRffLkP4oA== + integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== } - engines: { node: ">=0.10.0" } + engines: { node: ">=8" } dev: true - /is-stream/2.0.1: + /is-stream/3.0.0: resolution: { - integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== + integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA== } - engines: { node: ">=8" } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } dev: true /is-text-path/1.0.1: @@ -4721,14 +5262,6 @@ packages: text-extensions: 1.9.0 dev: true - /is-unicode-supported/0.1.0: - resolution: - { - integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw== - } - engines: { node: ">=10" } - dev: true - /is-wsl/2.2.0: resolution: { @@ -4746,18 +5279,38 @@ packages: } dev: true - /js-cookie/3.0.1: + /jackspeak/2.2.0: resolution: { - integrity: sha512-+0rgsUXZu4ncpPxRL+lNEptWMOWl9etvPHc/koSRp6MPwpRYAhmk0dUG00J4bxVV3r9uUzfo24wW0knS07SKSw== + integrity: sha512-r5XBrqIJfwRIjRt/Xr5fv9Wh09qyhHfKnYddDlpM+ibRR20qrYActpCAgU6U+d53EOEjzkvxPMVHSlgR7leXrQ== } - engines: { node: ">=12" } + engines: { node: ">=14" } + dependencies: + "@isaacs/cliui": 8.0.2 + optionalDependencies: + "@pkgjs/parseargs": 0.11.0 + dev: true + + /jiti/1.18.2: + resolution: + { + integrity: sha512-QAdOptna2NYiSSpv0O/BwoHBSmz4YhpzJHyi+fnMRTXFjp7B8i/YG5Z8IfusxB1ufjcD2Sre1F3R+nX3fvy7gg== + } + hasBin: true + dev: true + + /js-cookie/3.0.5: + resolution: + { + integrity: sha512-cEiJEAEoIbWfCZYKWhVwFuvPX1gETRYPw6LlaTKoxD3s2AkXzkCjnp6h0V77ozyqj0jakteJ4YqDJT830+lVGw== + } + engines: { node: ">=14" } dev: false - /js-sdsl/4.3.0: + /js-sdsl/4.4.0: resolution: { - integrity: sha512-mifzlm2+5nZ+lEcLJMoBK0/IH/bDg8XnJfd/Wq6IP+xoCjLZsTOnV2QpxlVbX9bMnkl5PdEjNtBJ9Cj1NjifhQ== + integrity: sha512-FfVSdx6pJ41Oa+CF7RDaFmTnCaFhua+SNYQX74riGOpl96x+2jQCqEfQ2bnXu/5DPCqlRuiqyvTJM0Qjz26IVg== } dev: true @@ -4853,7 +5406,7 @@ packages: dependencies: universalify: 2.0.0 optionalDependencies: - graceful-fs: 4.2.10 + graceful-fs: 4.2.11 dev: true /jsonparse/1.3.1: @@ -4880,11 +5433,22 @@ packages: engines: { node: ">= 8" } dev: true - /known-css-properties/0.26.0: + /known-css-properties/0.27.0: + resolution: + { + integrity: sha512-uMCj6+hZYDoffuvAJjFAPz56E9uoowFHmTkqRtRq5WyC5Q6Cu/fTZKNQpX/RbzChBYLLl3lo8CjFZBAZXq9qFg== + } + dev: true + + /levn/0.3.0: resolution: { - integrity: sha512-5FZRzrZzNTBruuurWpvZnvP9pum+fe0HcK8z/ooo+U+Hmp4vtbyp1/QDsqmufirXy4egGzbaH/y2uCZf+6W5Kg== + integrity: sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA== } + engines: { node: ">= 0.8.0" } + dependencies: + prelude-ls: 1.1.2 + type-check: 0.3.2 dev: true /levn/0.4.1: @@ -4898,10 +5462,10 @@ packages: type-check: 0.4.0 dev: true - /lilconfig/2.0.6: + /lilconfig/2.1.0: resolution: { - integrity: sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg== + integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ== } engines: { node: ">=10" } dev: true @@ -4913,37 +5477,38 @@ packages: } dev: true - /lint-staged/11.1.2: + /lint-staged/13.2.2: resolution: { - integrity: sha512-6lYpNoA9wGqkL6Hew/4n1H6lRqF3qCsujVT0Oq5Z4hiSAM7S6NksPJ3gnr7A7R52xCtiZMcEUNNQ6d6X5Bvh9w== + integrity: sha512-71gSwXKy649VrSU09s10uAT0rWCcY3aewhMaHyl2N84oBk4Xs9HgxvUp3AYu+bNsK4NrOYYxvSgg7FyGJ+jGcA== } + engines: { node: ^14.13.1 || >=16.0.0 } hasBin: true dependencies: - chalk: 4.1.2 - cli-truncate: 2.1.0 - commander: 7.2.0 - cosmiconfig: 7.1.0 + chalk: 5.2.0 + cli-truncate: 3.1.0 + commander: 10.0.1 debug: 4.3.4 - enquirer: 2.3.6 - execa: 5.1.1 - listr2: 3.14.0_enquirer@2.3.6 - log-symbols: 4.1.0 + execa: 7.1.1 + lilconfig: 2.1.0 + listr2: 5.0.8 micromatch: 4.0.5 normalize-path: 3.0.0 - please-upgrade-node: 3.2.0 - string-argv: 0.3.1 - stringify-object: 3.3.0 + object-inspect: 1.12.3 + pidtree: 0.6.0 + string-argv: 0.3.2 + yaml: 2.2.2 transitivePeerDependencies: + - enquirer - supports-color dev: true - /listr2/3.14.0_enquirer@2.3.6: + /listr2/5.0.8: resolution: { - integrity: sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g== + integrity: sha512-mC73LitKHj9w6v30nLNGPetZIlfpUniNSsxxrbaPcWOjDb92SHPzJPi/t+v1YC/lxKz/AJ9egOjww0qUuFxBpA== } - engines: { node: ">=10.0.0" } + engines: { node: ^14.13.1 || >=16.0.0 } peerDependencies: enquirer: ">= 2.3.0 < 3" peerDependenciesMeta: @@ -4951,24 +5516,15 @@ packages: optional: true dependencies: cli-truncate: 2.1.0 - colorette: 2.0.19 - enquirer: 2.3.6 + colorette: 2.0.20 log-update: 4.0.0 p-map: 4.0.0 rfdc: 1.3.0 - rxjs: 7.8.0 + rxjs: 7.8.1 through: 2.3.8 wrap-ansi: 7.0.0 dev: true - /local-pkg/0.4.3: - resolution: - { - integrity: sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g== - } - engines: { node: ">=14" } - dev: true - /locate-path/5.0.0: resolution: { @@ -4996,7 +5552,7 @@ packages: } dev: false - /lodash-unified/1.0.3_3ib2ivapxullxkx3xftsimdk7u: + /lodash-unified/1.0.3_tknf7errc3xdqocd3ryzzla7vq: resolution: { integrity: sha512-WK9qSozxXOD7ZJQlpSqOT+om2ZfcT4yO+03FuzAHD0wF6S0l0090LRPDx3vhTTLZ8cFKpBn+IOcVXK6qOcIlfQ== @@ -5006,15 +5562,36 @@ packages: lodash: "*" lodash-es: "*" dependencies: - "@types/lodash-es": 4.17.6 + "@types/lodash-es": 4.17.7 lodash: 4.17.21 lodash-es: 4.17.21 dev: false - /lodash.get/4.4.2: + /lodash.camelcase/4.3.0: + resolution: + { + integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA== + } + dev: true + + /lodash.isfunction/3.0.9: + resolution: + { + integrity: sha512-AirXNj15uRIMMPihnkInB4i3NHeb4iBtNg9WRWuK2o31S+ePwwNmDPaTL3o7dTJ+VXNZim7rFs4rxN4YU1oUJw== + } + dev: true + + /lodash.isplainobject/4.0.6: resolution: { - integrity: sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ== + integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA== + } + dev: true + + /lodash.kebabcase/4.1.1: + resolution: + { + integrity: sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g== } dev: true @@ -5032,6 +5609,27 @@ packages: } dev: true + /lodash.mergewith/4.6.2: + resolution: + { + integrity: sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ== + } + dev: true + + /lodash.snakecase/4.1.1: + resolution: + { + integrity: sha512-QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw== + } + dev: true + + /lodash.startcase/4.4.0: + resolution: + { + integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg== + } + dev: true + /lodash.truncate/4.4.2: resolution: { @@ -5046,22 +5644,18 @@ packages: } dev: true - /lodash/4.17.21: + /lodash.upperfirst/4.3.1: resolution: { - integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== + integrity: sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg== } + dev: true - /log-symbols/4.1.0: + /lodash/4.17.21: resolution: { - integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg== + integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== } - engines: { node: ">=10" } - dependencies: - chalk: 4.1.2 - is-unicode-supported: 0.1.0 - dev: true /log-update/4.0.0: resolution: @@ -5095,6 +5689,14 @@ packages: yallist: 4.0.0 dev: true + /lru-cache/9.1.1: + resolution: + { + integrity: sha512-65/Jky17UwSb0BuB9V+MyDpsOtXKmYwzhyl+cOa9XUiI4uV2Ouy/2voFP3+al0BjZbJgMBD8FojMpAf+Z+qn4A== + } + engines: { node: 14 || >=16.14 } + dev: true + /magic-string/0.25.9: resolution: { @@ -5102,16 +5704,16 @@ packages: } dependencies: sourcemap-codec: 1.4.8 + dev: true - /magic-string/0.29.0: + /magic-string/0.30.0: resolution: { - integrity: sha512-WcfidHrDjMY+eLjlU+8OvwREqHwpgCeKVBUpQ3OhYYuvfaYCUgcbuBzappNzZvg/v8onU3oQj+BYpkOJe9Iw4Q== + integrity: sha512-LA+31JYDJLs82r2ScLrlz1GjSgu66ZV518eyWT+S8VhyQn/JL0u9MeBOvQMGYiPk1DBiSN9DDMOcXvigJZaViQ== } engines: { node: ">=12" } dependencies: - "@jridgewell/sourcemap-codec": 1.4.14 - dev: true + "@jridgewell/sourcemap-codec": 1.4.15 /make-error/1.3.6: resolution: @@ -5264,6 +5866,14 @@ packages: engines: { node: ">=6" } dev: true + /mimic-fn/4.0.0: + resolution: + { + integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw== + } + engines: { node: ">=12" } + dev: true + /min-indent/1.0.1: resolution: { @@ -5281,12 +5891,12 @@ packages: brace-expansion: 1.1.11 dev: true - /minimatch/6.2.0: + /minimatch/9.0.0: resolution: { - integrity: sha512-sauLxniAmvnhhRjFwPNnJKaPFYyddAgbYdeUpHULtCT/GhzdCx/MDNy+Y40lBxTQUrMzDE8e0S43Z5uqfO0REg== + integrity: sha512-0jJj8AvgKqWN05mrwuqi8QYKx1WmYSUoKSxu5Qhs9prezTz10sxAHGNZe9J9cqIJzta8DWsleh2KaVaLl6Ru2w== } - engines: { node: ">=10" } + engines: { node: ">=16 || 14 >=14.17" } dependencies: brace-expansion: 2.0.1 dev: true @@ -5310,6 +5920,14 @@ packages: } dev: true + /minipass/5.0.0: + resolution: + { + integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ== + } + engines: { node: ">=8" } + dev: true + /mitt/3.0.0: resolution: { @@ -5324,7 +5942,7 @@ packages: } hasBin: true dependencies: - commander: 10.0.0 + commander: 10.0.1 /mri/1.2.0: resolution: @@ -5369,10 +5987,21 @@ packages: minimatch: 3.1.2 dev: true - /nanoid/3.3.4: + /mz/2.7.0: + resolution: + { + integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q== + } + dependencies: + any-promise: 1.3.0 + object-assign: 4.1.1 + thenify-all: 1.6.0 + dev: true + + /nanoid/3.3.6: resolution: { - integrity: sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw== + integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA== } engines: { node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 } hasBin: true @@ -5412,7 +6041,7 @@ packages: } dependencies: hosted-git-info: 2.8.9 - resolve: 1.22.1 + resolve: 1.22.2 semver: 5.7.1 validate-npm-package-license: 3.0.4 dev: true @@ -5425,8 +6054,8 @@ packages: engines: { node: ">=10" } dependencies: hosted-git-info: 4.1.0 - is-core-module: 2.11.0 - semver: 7.3.8 + is-core-module: 2.12.0 + semver: 7.5.0 validate-npm-package-license: 3.0.4 dev: true @@ -5471,6 +6100,16 @@ packages: path-key: 3.1.1 dev: true + /npm-run-path/5.1.0: + resolution: + { + integrity: sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q== + } + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + dependencies: + path-key: 4.0.0 + dev: true + /nprogress/0.2.0: resolution: { @@ -5487,6 +6126,14 @@ packages: boolbase: 1.0.0 dev: true + /object-assign/4.1.1: + resolution: + { + integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== + } + engines: { node: ">=0.10.0" } + dev: true + /object-hash/3.0.0: resolution: { @@ -5500,7 +6147,6 @@ packages: { integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g== } - dev: false /on-finished/2.3.0: resolution: @@ -5531,6 +6177,16 @@ packages: mimic-fn: 2.1.0 dev: true + /onetime/6.0.0: + resolution: + { + integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ== + } + engines: { node: ">=12" } + dependencies: + mimic-fn: 4.0.0 + dev: true + /open/8.4.2: resolution: { @@ -5543,6 +6199,21 @@ packages: is-wsl: 2.2.0 dev: true + /optionator/0.8.3: + resolution: + { + integrity: sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA== + } + engines: { node: ">= 0.8.0" } + dependencies: + deep-is: 0.1.4 + fast-levenshtein: 2.0.6 + levn: 0.3.0 + prelude-ls: 1.1.2 + type-check: 0.3.2 + word-wrap: 1.2.3 + dev: true + /optionator/0.9.1: resolution: { @@ -5633,7 +6304,7 @@ packages: } engines: { node: ">=8" } dependencies: - "@babel/code-frame": 7.18.6 + "@babel/code-frame": 7.21.4 error-ex: 1.3.2 json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 @@ -5671,6 +6342,14 @@ packages: engines: { node: ">=8" } dev: true + /path-key/4.0.0: + resolution: + { + integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ== + } + engines: { node: ">=12" } + dev: true + /path-parse/1.0.7: resolution: { @@ -5678,6 +6357,17 @@ packages: } dev: true + /path-scurry/1.8.0: + resolution: + { + integrity: sha512-IjTrKseM404/UAWA8bBbL3Qp6O2wXkanuIE3seCxBH7ctRuvH1QRawy1N3nVDHGkdeZsjOsSe/8AQBL/VQCy2g== + } + engines: { node: ">=16 || 14 >=14.17" } + dependencies: + lru-cache: 9.1.1 + minipass: 5.0.0 + dev: true + /path-to-regexp/6.2.1: resolution: { @@ -5724,6 +6414,15 @@ packages: engines: { node: ">=8.6" } dev: true + /pidtree/0.6.0: + resolution: + { + integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g== + } + engines: { node: ">=0.10" } + hasBin: true + dev: true + /pify/2.3.0: resolution: { @@ -5732,10 +6431,10 @@ packages: engines: { node: ">=0.10.0" } dev: true - /pinia/2.0.32_hmuptsblhheur2tugfgucj7gc4: + /pinia/2.0.36_typescript@5.0.4+vue@3.3.1: resolution: { - integrity: sha512-8Tw4OrpCSJ028UUyp0gYPP/wyjigLoEceuO/x1G+FlHVf73337e5vLm4uDmrRIoBG1hvaed/eSHnrCFjOc4nkA== + integrity: sha512-4UKApwjlmJH+VuHKgA+zQMddcCb3ezYnyewQ9NVrsDqZ/j9dMv5+rh+1r48whKNdpFkZAWVxhBp5ewYaYX9JcQ== } peerDependencies: "@vue/composition-api": ^1.4.0 @@ -5748,18 +6447,17 @@ packages: optional: true dependencies: "@vue/devtools-api": 6.5.0 - typescript: 4.9.5 - vue: 3.2.47 - vue-demi: 0.13.11_vue@3.2.47 + typescript: 5.0.4 + vue: 3.3.1 + vue-demi: 0.14.1_vue@3.3.1 dev: false - /please-upgrade-node/3.2.0: + /pirates/4.0.5: resolution: { - integrity: sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg== + integrity: sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ== } - dependencies: - semver-compare: 1.0.0 + engines: { node: ">= 6" } dev: true /popmotion/11.0.5: @@ -5774,7 +6472,7 @@ packages: tslib: 2.4.0 dev: false - /postcss-calc/8.2.4_postcss@8.4.21: + /postcss-calc/8.2.4_postcss@8.4.23: resolution: { integrity: sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q== @@ -5782,12 +6480,26 @@ packages: peerDependencies: postcss: ^8.2.2 dependencies: - postcss: 8.4.21 - postcss-selector-parser: 6.0.11 + postcss: 8.4.23 + postcss-selector-parser: 6.0.12 postcss-value-parser: 4.2.0 dev: true - /postcss-colormin/5.3.1_postcss@8.4.21: + /postcss-calc/9.0.1_postcss@8.4.23: + resolution: + { + integrity: sha512-TipgjGyzP5QzEhsOZUaIkeO5mKeMFpebWzRogWG/ysonUlnHcq5aJe0jOjpfzUU8PeSaBQnrE8ehR0QA5vs8PQ== + } + engines: { node: ^14 || ^16 || >=18.0 } + peerDependencies: + postcss: ^8.2.2 + dependencies: + postcss: 8.4.23 + postcss-selector-parser: 6.0.12 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-colormin/5.3.1_postcss@8.4.23: resolution: { integrity: sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ== @@ -5799,11 +6511,27 @@ packages: browserslist: 4.21.5 caniuse-api: 3.0.0 colord: 2.9.3 - postcss: 8.4.21 + postcss: 8.4.23 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-colormin/6.0.0_postcss@8.4.23: + resolution: + { + integrity: sha512-EuO+bAUmutWoZYgHn2T1dG1pPqHU6L4TjzPlu4t1wZGXQ/fxV16xg2EJmYi0z+6r+MGV1yvpx1BHkUaRrPa2bw== + } + engines: { node: ^14 || ^16 || >=18.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + browserslist: 4.21.5 + caniuse-api: 3.0.0 + colord: 2.9.3 + postcss: 8.4.23 postcss-value-parser: 4.2.0 dev: true - /postcss-convert-values/5.1.3_postcss@8.4.21: + /postcss-convert-values/5.1.3_postcss@8.4.23: resolution: { integrity: sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA== @@ -5813,11 +6541,25 @@ packages: postcss: ^8.2.15 dependencies: browserslist: 4.21.5 - postcss: 8.4.21 + postcss: 8.4.23 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-convert-values/6.0.0_postcss@8.4.23: + resolution: + { + integrity: sha512-U5D8QhVwqT++ecmy8rnTb+RL9n/B806UVaS3m60lqle4YDFcpbS3ae5bTQIh3wOGUSDHSEtMYLs/38dNG7EYFw== + } + engines: { node: ^14 || ^16 || >=18.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + browserslist: 4.21.5 + postcss: 8.4.23 postcss-value-parser: 4.2.0 dev: true - /postcss-discard-comments/5.1.2_postcss@8.4.21: + /postcss-discard-comments/5.1.2_postcss@8.4.23: resolution: { integrity: sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ== @@ -5826,10 +6568,22 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.21 + postcss: 8.4.23 + dev: true + + /postcss-discard-comments/6.0.0_postcss@8.4.23: + resolution: + { + integrity: sha512-p2skSGqzPMZkEQvJsgnkBhCn8gI7NzRH2683EEjrIkoMiwRELx68yoUJ3q3DGSGuQ8Ug9Gsn+OuDr46yfO+eFw== + } + engines: { node: ^14 || ^16 || >=18.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.23 dev: true - /postcss-discard-duplicates/5.1.0_postcss@8.4.21: + /postcss-discard-duplicates/5.1.0_postcss@8.4.23: resolution: { integrity: sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw== @@ -5838,10 +6592,22 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.21 + postcss: 8.4.23 + dev: true + + /postcss-discard-duplicates/6.0.0_postcss@8.4.23: + resolution: + { + integrity: sha512-bU1SXIizMLtDW4oSsi5C/xHKbhLlhek/0/yCnoMQany9k3nPBq+Ctsv/9oMmyqbR96HYHxZcHyK2HR5P/mqoGA== + } + engines: { node: ^14 || ^16 || >=18.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.23 dev: true - /postcss-discard-empty/5.1.1_postcss@8.4.21: + /postcss-discard-empty/5.1.1_postcss@8.4.23: resolution: { integrity: sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A== @@ -5850,10 +6616,22 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.21 + postcss: 8.4.23 dev: true - /postcss-discard-overridden/5.1.0_postcss@8.4.21: + /postcss-discard-empty/6.0.0_postcss@8.4.23: + resolution: + { + integrity: sha512-b+h1S1VT6dNhpcg+LpyiUrdnEZfICF0my7HAKgJixJLW7BnNmpRH34+uw/etf5AhOlIhIAuXApSzzDzMI9K/gQ== + } + engines: { node: ^14 || ^16 || >=18.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.23 + dev: true + + /postcss-discard-overridden/5.1.0_postcss@8.4.23: resolution: { integrity: sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw== @@ -5862,38 +6640,35 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.21 + postcss: 8.4.23 dev: true - /postcss-html/1.5.0: + /postcss-discard-overridden/6.0.0_postcss@8.4.23: resolution: { - integrity: sha512-kCMRWJRHKicpA166kc2lAVUGxDZL324bkj/pVOb6RhjB0Z5Krl7mN0AsVkBhVIRZZirY0lyQXG38HCVaoKVNoA== + integrity: sha512-4VELwssYXDFigPYAZ8vL4yX4mUepF/oCBeeIT4OXsJPYOtvJumyz9WflmJWTfDwCUcpDR+z0zvCWBXgTx35SVw== } - engines: { node: ^12 || >=14 } + engines: { node: ^14 || ^16 || >=18.0 } + peerDependencies: + postcss: ^8.2.15 dependencies: - htmlparser2: 8.0.1 - js-tokens: 8.0.1 - postcss: 8.4.21 - postcss-safe-parser: 6.0.0_postcss@8.4.21 + postcss: 8.4.23 dev: true - /postcss-import/14.1.0_postcss@8.4.21: + /postcss-html/1.5.0: resolution: { - integrity: sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw== + integrity: sha512-kCMRWJRHKicpA166kc2lAVUGxDZL324bkj/pVOb6RhjB0Z5Krl7mN0AsVkBhVIRZZirY0lyQXG38HCVaoKVNoA== } - engines: { node: ">=10.0.0" } - peerDependencies: - postcss: ^8.0.0 + engines: { node: ^12 || >=14 } dependencies: - postcss: 8.4.21 - postcss-value-parser: 4.2.0 - read-cache: 1.0.0 - resolve: 1.22.1 + htmlparser2: 8.0.2 + js-tokens: 8.0.1 + postcss: 8.4.23 + postcss-safe-parser: 6.0.0_postcss@8.4.23 dev: true - /postcss-import/15.1.0_postcss@8.4.21: + /postcss-import/15.1.0_postcss@8.4.23: resolution: { integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew== @@ -5902,13 +6677,13 @@ packages: peerDependencies: postcss: ^8.0.0 dependencies: - postcss: 8.4.21 + postcss: 8.4.23 postcss-value-parser: 4.2.0 read-cache: 1.0.0 - resolve: 1.22.1 + resolve: 1.22.2 dev: true - /postcss-js/4.0.1_postcss@8.4.21: + /postcss-js/4.0.1_postcss@8.4.23: resolution: { integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw== @@ -5918,15 +6693,15 @@ packages: postcss: ^8.4.21 dependencies: camelcase-css: 2.0.1 - postcss: 8.4.21 + postcss: 8.4.23 dev: true - /postcss-load-config/3.1.4_postcss@8.4.21: + /postcss-load-config/4.0.1_postcss@8.4.23: resolution: { - integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg== + integrity: sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA== } - engines: { node: ">= 10" } + engines: { node: ">= 14" } peerDependencies: postcss: ">=8.0.9" ts-node: ">=9.0.0" @@ -5936,9 +6711,9 @@ packages: ts-node: optional: true dependencies: - lilconfig: 2.0.6 - postcss: 8.4.21 - yaml: 1.10.2 + lilconfig: 2.1.0 + postcss: 8.4.23 + yaml: 2.2.2 dev: true /postcss-media-query-parser/0.2.3: @@ -5948,7 +6723,7 @@ packages: } dev: true - /postcss-merge-longhand/5.1.7_postcss@8.4.21: + /postcss-merge-longhand/5.1.7_postcss@8.4.23: resolution: { integrity: sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ== @@ -5957,12 +6732,26 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.21 + postcss: 8.4.23 postcss-value-parser: 4.2.0 - stylehacks: 5.1.1_postcss@8.4.21 + stylehacks: 5.1.1_postcss@8.4.23 dev: true - /postcss-merge-rules/5.1.4_postcss@8.4.21: + /postcss-merge-longhand/6.0.0_postcss@8.4.23: + resolution: + { + integrity: sha512-4VSfd1lvGkLTLYcxFuISDtWUfFS4zXe0FpF149AyziftPFQIWxjvFSKhA4MIxMe4XM3yTDgQMbSNgzIVxChbIg== + } + engines: { node: ^14 || ^16 || >=18.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.23 + postcss-value-parser: 4.2.0 + stylehacks: 6.0.0_postcss@8.4.23 + dev: true + + /postcss-merge-rules/5.1.4_postcss@8.4.23: resolution: { integrity: sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g== @@ -5973,12 +6762,28 @@ packages: dependencies: browserslist: 4.21.5 caniuse-api: 3.0.0 - cssnano-utils: 3.1.0_postcss@8.4.21 - postcss: 8.4.21 - postcss-selector-parser: 6.0.11 + cssnano-utils: 3.1.0_postcss@8.4.23 + postcss: 8.4.23 + postcss-selector-parser: 6.0.12 dev: true - /postcss-minify-font-values/5.1.0_postcss@8.4.21: + /postcss-merge-rules/6.0.1_postcss@8.4.23: + resolution: + { + integrity: sha512-a4tlmJIQo9SCjcfiCcCMg/ZCEe0XTkl/xK0XHBs955GWg9xDX3NwP9pwZ78QUOWB8/0XCjZeJn98Dae0zg6AAw== + } + engines: { node: ^14 || ^16 || >=18.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + browserslist: 4.21.5 + caniuse-api: 3.0.0 + cssnano-utils: 4.0.0_postcss@8.4.23 + postcss: 8.4.23 + postcss-selector-parser: 6.0.12 + dev: true + + /postcss-minify-font-values/5.1.0_postcss@8.4.23: resolution: { integrity: sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA== @@ -5987,11 +6792,24 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.21 + postcss: 8.4.23 postcss-value-parser: 4.2.0 dev: true - /postcss-minify-gradients/5.1.1_postcss@8.4.21: + /postcss-minify-font-values/6.0.0_postcss@8.4.23: + resolution: + { + integrity: sha512-zNRAVtyh5E8ndZEYXA4WS8ZYsAp798HiIQ1V2UF/C/munLp2r1UGHwf1+6JFu7hdEhJFN+W1WJQKBrtjhFgEnA== + } + engines: { node: ^14 || ^16 || >=18.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.23 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-minify-gradients/5.1.1_postcss@8.4.23: resolution: { integrity: sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw== @@ -6001,12 +6819,27 @@ packages: postcss: ^8.2.15 dependencies: colord: 2.9.3 - cssnano-utils: 3.1.0_postcss@8.4.21 - postcss: 8.4.21 + cssnano-utils: 3.1.0_postcss@8.4.23 + postcss: 8.4.23 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-minify-gradients/6.0.0_postcss@8.4.23: + resolution: + { + integrity: sha512-wO0F6YfVAR+K1xVxF53ueZJza3L+R3E6cp0VwuXJQejnNUH0DjcAFe3JEBeTY1dLwGa0NlDWueCA1VlEfiKgAA== + } + engines: { node: ^14 || ^16 || >=18.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + colord: 2.9.3 + cssnano-utils: 4.0.0_postcss@8.4.23 + postcss: 8.4.23 postcss-value-parser: 4.2.0 dev: true - /postcss-minify-params/5.1.4_postcss@8.4.21: + /postcss-minify-params/5.1.4_postcss@8.4.23: resolution: { integrity: sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw== @@ -6016,12 +6849,27 @@ packages: postcss: ^8.2.15 dependencies: browserslist: 4.21.5 - cssnano-utils: 3.1.0_postcss@8.4.21 - postcss: 8.4.21 + cssnano-utils: 3.1.0_postcss@8.4.23 + postcss: 8.4.23 postcss-value-parser: 4.2.0 dev: true - /postcss-minify-selectors/5.2.1_postcss@8.4.21: + /postcss-minify-params/6.0.0_postcss@8.4.23: + resolution: + { + integrity: sha512-Fz/wMQDveiS0n5JPcvsMeyNXOIMrwF88n7196puSuQSWSa+/Ofc1gDOSY2xi8+A4PqB5dlYCKk/WfqKqsI+ReQ== + } + engines: { node: ^14 || ^16 || >=18.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + browserslist: 4.21.5 + cssnano-utils: 4.0.0_postcss@8.4.23 + postcss: 8.4.23 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-minify-selectors/5.2.1_postcss@8.4.23: resolution: { integrity: sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg== @@ -6030,24 +6878,37 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.21 - postcss-selector-parser: 6.0.11 + postcss: 8.4.23 + postcss-selector-parser: 6.0.12 + dev: true + + /postcss-minify-selectors/6.0.0_postcss@8.4.23: + resolution: + { + integrity: sha512-ec/q9JNCOC2CRDNnypipGfOhbYPuUkewGwLnbv6omue/PSASbHSU7s6uSQ0tcFRVv731oMIx8k0SP4ZX6be/0g== + } + engines: { node: ^14 || ^16 || >=18.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.23 + postcss-selector-parser: 6.0.12 dev: true - /postcss-nested/6.0.0_postcss@8.4.21: + /postcss-nested/6.0.1_postcss@8.4.23: resolution: { - integrity: sha512-0DkamqrPcmkBDsLn+vQDIrtkSbNkv5AD/M322ySo9kqFkCIYklym2xEmWkwo+Y3/qZo34tzEPNUw4y7yMCdv5w== + integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ== } engines: { node: ">=12.0" } peerDependencies: postcss: ^8.2.14 dependencies: - postcss: 8.4.21 - postcss-selector-parser: 6.0.11 + postcss: 8.4.23 + postcss-selector-parser: 6.0.12 dev: true - /postcss-normalize-charset/5.1.0_postcss@8.4.21: + /postcss-normalize-charset/5.1.0_postcss@8.4.23: resolution: { integrity: sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg== @@ -6056,10 +6917,22 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.21 + postcss: 8.4.23 dev: true - /postcss-normalize-display-values/5.1.0_postcss@8.4.21: + /postcss-normalize-charset/6.0.0_postcss@8.4.23: + resolution: + { + integrity: sha512-cqundwChbu8yO/gSWkuFDmKrCZ2vJzDAocheT2JTd0sFNA4HMGoKMfbk2B+J0OmO0t5GUkiAkSM5yF2rSLUjgQ== + } + engines: { node: ^14 || ^16 || >=18.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.23 + dev: true + + /postcss-normalize-display-values/5.1.0_postcss@8.4.23: resolution: { integrity: sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA== @@ -6068,11 +6941,24 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.21 + postcss: 8.4.23 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-normalize-display-values/6.0.0_postcss@8.4.23: + resolution: + { + integrity: sha512-Qyt5kMrvy7dJRO3OjF7zkotGfuYALETZE+4lk66sziWSPzlBEt7FrUshV6VLECkI4EN8Z863O6Nci4NXQGNzYw== + } + engines: { node: ^14 || ^16 || >=18.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.23 postcss-value-parser: 4.2.0 dev: true - /postcss-normalize-positions/5.1.1_postcss@8.4.21: + /postcss-normalize-positions/5.1.1_postcss@8.4.23: resolution: { integrity: sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg== @@ -6081,11 +6967,24 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.21 + postcss: 8.4.23 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-normalize-positions/6.0.0_postcss@8.4.23: + resolution: + { + integrity: sha512-mPCzhSV8+30FZyWhxi6UoVRYd3ZBJgTRly4hOkaSifo0H+pjDYcii/aVT4YE6QpOil15a5uiv6ftnY3rm0igPg== + } + engines: { node: ^14 || ^16 || >=18.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.23 postcss-value-parser: 4.2.0 dev: true - /postcss-normalize-repeat-style/5.1.1_postcss@8.4.21: + /postcss-normalize-repeat-style/5.1.1_postcss@8.4.23: resolution: { integrity: sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g== @@ -6094,11 +6993,24 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.21 + postcss: 8.4.23 postcss-value-parser: 4.2.0 dev: true - /postcss-normalize-string/5.1.0_postcss@8.4.21: + /postcss-normalize-repeat-style/6.0.0_postcss@8.4.23: + resolution: + { + integrity: sha512-50W5JWEBiOOAez2AKBh4kRFm2uhrT3O1Uwdxz7k24aKtbD83vqmcVG7zoIwo6xI2FZ/HDlbrCopXhLeTpQib1A== + } + engines: { node: ^14 || ^16 || >=18.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.23 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-normalize-string/5.1.0_postcss@8.4.23: resolution: { integrity: sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w== @@ -6107,11 +7019,24 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.21 + postcss: 8.4.23 postcss-value-parser: 4.2.0 dev: true - /postcss-normalize-timing-functions/5.1.0_postcss@8.4.21: + /postcss-normalize-string/6.0.0_postcss@8.4.23: + resolution: + { + integrity: sha512-KWkIB7TrPOiqb8ZZz6homet2KWKJwIlysF5ICPZrXAylGe2hzX/HSf4NTX2rRPJMAtlRsj/yfkrWGavFuB+c0w== + } + engines: { node: ^14 || ^16 || >=18.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.23 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-normalize-timing-functions/5.1.0_postcss@8.4.23: resolution: { integrity: sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg== @@ -6120,11 +7045,24 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.21 + postcss: 8.4.23 postcss-value-parser: 4.2.0 dev: true - /postcss-normalize-unicode/5.1.1_postcss@8.4.21: + /postcss-normalize-timing-functions/6.0.0_postcss@8.4.23: + resolution: + { + integrity: sha512-tpIXWciXBp5CiFs8sem90IWlw76FV4oi6QEWfQwyeREVwUy39VSeSqjAT7X0Qw650yAimYW5gkl2Gd871N5SQg== + } + engines: { node: ^14 || ^16 || >=18.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.23 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-normalize-unicode/5.1.1_postcss@8.4.23: resolution: { integrity: sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA== @@ -6134,11 +7072,25 @@ packages: postcss: ^8.2.15 dependencies: browserslist: 4.21.5 - postcss: 8.4.21 + postcss: 8.4.23 postcss-value-parser: 4.2.0 dev: true - /postcss-normalize-url/5.1.0_postcss@8.4.21: + /postcss-normalize-unicode/6.0.0_postcss@8.4.23: + resolution: + { + integrity: sha512-ui5crYkb5ubEUDugDc786L/Me+DXp2dLg3fVJbqyAl0VPkAeALyAijF2zOsnZyaS1HyfPuMH0DwyY18VMFVNkg== + } + engines: { node: ^14 || ^16 || >=18.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + browserslist: 4.21.5 + postcss: 8.4.23 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-normalize-url/5.1.0_postcss@8.4.23: resolution: { integrity: sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew== @@ -6148,11 +7100,24 @@ packages: postcss: ^8.2.15 dependencies: normalize-url: 6.1.0 - postcss: 8.4.21 + postcss: 8.4.23 postcss-value-parser: 4.2.0 dev: true - /postcss-normalize-whitespace/5.1.1_postcss@8.4.21: + /postcss-normalize-url/6.0.0_postcss@8.4.23: + resolution: + { + integrity: sha512-98mvh2QzIPbb02YDIrYvAg4OUzGH7s1ZgHlD3fIdTHLgPLRpv1ZTKJDnSAKr4Rt21ZQFzwhGMXxpXlfrUBKFHw== + } + engines: { node: ^14 || ^16 || >=18.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.23 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-normalize-whitespace/5.1.1_postcss@8.4.23: resolution: { integrity: sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA== @@ -6161,11 +7126,24 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.21 + postcss: 8.4.23 postcss-value-parser: 4.2.0 dev: true - /postcss-ordered-values/5.1.3_postcss@8.4.21: + /postcss-normalize-whitespace/6.0.0_postcss@8.4.23: + resolution: + { + integrity: sha512-7cfE1AyLiK0+ZBG6FmLziJzqQCpTQY+8XjMhMAz8WSBSCsCNNUKujgIgjCAmDT3cJ+3zjTXFkoD15ZPsckArVw== + } + engines: { node: ^14 || ^16 || >=18.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.23 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-ordered-values/5.1.3_postcss@8.4.23: resolution: { integrity: sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ== @@ -6174,12 +7152,26 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - cssnano-utils: 3.1.0_postcss@8.4.21 - postcss: 8.4.21 + cssnano-utils: 3.1.0_postcss@8.4.23 + postcss: 8.4.23 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-ordered-values/6.0.0_postcss@8.4.23: + resolution: + { + integrity: sha512-K36XzUDpvfG/nWkjs6d1hRBydeIxGpKS2+n+ywlKPzx1nMYDYpoGbcjhj5AwVYJK1qV2/SDoDEnHzlPD6s3nMg== + } + engines: { node: ^14 || ^16 || >=18.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + cssnano-utils: 4.0.0_postcss@8.4.23 + postcss: 8.4.23 postcss-value-parser: 4.2.0 dev: true - /postcss-reduce-initial/5.1.2_postcss@8.4.21: + /postcss-reduce-initial/5.1.2_postcss@8.4.23: resolution: { integrity: sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg== @@ -6190,10 +7182,24 @@ packages: dependencies: browserslist: 4.21.5 caniuse-api: 3.0.0 - postcss: 8.4.21 + postcss: 8.4.23 dev: true - /postcss-reduce-transforms/5.1.0_postcss@8.4.21: + /postcss-reduce-initial/6.0.0_postcss@8.4.23: + resolution: + { + integrity: sha512-s2UOnidpVuXu6JiiI5U+fV2jamAw5YNA9Fdi/GRK0zLDLCfXmSGqQtzpUPtfN66RtCbb9fFHoyZdQaxOB3WxVA== + } + engines: { node: ^14 || ^16 || >=18.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + browserslist: 4.21.5 + caniuse-api: 3.0.0 + postcss: 8.4.23 + dev: true + + /postcss-reduce-transforms/5.1.0_postcss@8.4.23: resolution: { integrity: sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ== @@ -6202,7 +7208,20 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.21 + postcss: 8.4.23 + postcss-value-parser: 4.2.0 + dev: true + + /postcss-reduce-transforms/6.0.0_postcss@8.4.23: + resolution: + { + integrity: sha512-FQ9f6xM1homnuy1wLe9lP1wujzxnwt1EwiigtWwuyf8FsqqXUDUp2Ulxf9A5yjlUOTdCJO6lonYjg1mgqIIi2w== + } + engines: { node: ^14 || ^16 || >=18.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.23 postcss-value-parser: 4.2.0 dev: true @@ -6213,7 +7232,7 @@ packages: } dev: true - /postcss-safe-parser/6.0.0_postcss@8.4.21: + /postcss-safe-parser/6.0.0_postcss@8.4.23: resolution: { integrity: sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ== @@ -6222,10 +7241,10 @@ packages: peerDependencies: postcss: ^8.3.3 dependencies: - postcss: 8.4.21 + postcss: 8.4.23 dev: true - /postcss-scss/4.0.6_postcss@8.4.21: + /postcss-scss/4.0.6_postcss@8.4.23: resolution: { integrity: sha512-rLDPhJY4z/i4nVFZ27j9GqLxj1pwxE80eAzUNRMXtcpipFYIeowerzBgG3yJhMtObGEXidtIgbUpQ3eLDsf5OQ== @@ -6234,13 +7253,13 @@ packages: peerDependencies: postcss: ^8.4.19 dependencies: - postcss: 8.4.21 + postcss: 8.4.23 dev: true - /postcss-selector-parser/6.0.11: + /postcss-selector-parser/6.0.12: resolution: { - integrity: sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g== + integrity: sha512-NdxGCAZdRrwVI1sy59+Wzrh+pMMHxapGnpfenDVlMEXoOcvt4pGE0JLK9YY2F5dLxcFYA/YbVQKhcGU+FtSYQg== } engines: { node: ">=4" } dependencies: @@ -6248,18 +7267,18 @@ packages: util-deprecate: 1.0.2 dev: true - /postcss-sorting/7.0.1_postcss@8.4.21: + /postcss-sorting/8.0.2_postcss@8.4.23: resolution: { - integrity: sha512-iLBFYz6VRYyLJEJsBJ8M3TCqNcckVzz4wFounSc5Oez35ogE/X+aoC5fFu103Ot7NyvjU3/xqIXn93Gp3kJk4g== + integrity: sha512-M9dkSrmU00t/jK7rF6BZSZauA5MAaBW4i5EnJXspMwt4iqTh/L9j6fgMnbElEOfyRyfLfVbIHj/R52zHzAPe1Q== } peerDependencies: - postcss: ^8.3.9 + postcss: ^8.4.20 dependencies: - postcss: 8.4.21 + postcss: 8.4.23 dev: true - /postcss-svgo/5.1.0_postcss@8.4.21: + /postcss-svgo/5.1.0_postcss@8.4.23: resolution: { integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA== @@ -6268,12 +7287,26 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.21 + postcss: 8.4.23 postcss-value-parser: 4.2.0 svgo: 2.8.0 dev: true - /postcss-unique-selectors/5.1.1_postcss@8.4.21: + /postcss-svgo/6.0.0_postcss@8.4.23: + resolution: + { + integrity: sha512-r9zvj/wGAoAIodn84dR/kFqwhINp5YsJkLoujybWG59grR/IHx+uQ2Zo+IcOwM0jskfYX3R0mo+1Kip1VSNcvw== + } + engines: { node: ^14 || ^16 || >= 18 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.23 + postcss-value-parser: 4.2.0 + svgo: 3.0.2 + dev: true + + /postcss-unique-selectors/5.1.1_postcss@8.4.23: resolution: { integrity: sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA== @@ -6282,8 +7315,21 @@ packages: peerDependencies: postcss: ^8.2.15 dependencies: - postcss: 8.4.21 - postcss-selector-parser: 6.0.11 + postcss: 8.4.23 + postcss-selector-parser: 6.0.12 + dev: true + + /postcss-unique-selectors/6.0.0_postcss@8.4.23: + resolution: + { + integrity: sha512-EPQzpZNxOxP7777t73RQpZE5e9TrnCrkvp7AH7a0l89JmZiPnS82y216JowHXwpBCQitfyxrof9TK3rYbi7/Yw== + } + engines: { node: ^14 || ^16 || >=18.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + postcss: 8.4.23 + postcss-selector-parser: 6.0.12 dev: true /postcss-value-parser/4.2.0: @@ -6293,17 +7339,25 @@ packages: } dev: true - /postcss/8.4.21: + /postcss/8.4.23: resolution: { - integrity: sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg== + integrity: sha512-bQ3qMcpF6A/YjR55xtoTr0jGOlnPOKAIMdOWiv0EIT6HVPEaJiJB4NLljSbiHoC2RX7DN5Uvjtpbg1NPdwv1oA== } engines: { node: ^10 || ^12 || >=14 } dependencies: - nanoid: 3.3.4 + nanoid: 3.3.6 picocolors: 1.0.0 source-map-js: 1.0.2 + /prelude-ls/1.1.2: + resolution: + { + integrity: sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w== + } + engines: { node: ">= 0.8.0" } + dev: true + /prelude-ls/1.2.1: resolution: { @@ -6322,16 +7376,16 @@ packages: fast-diff: 1.2.0 dev: true - /prettier/2.8.4: + /prettier/2.8.8: resolution: { - integrity: sha512-vIS4Rlc2FNh0BySk3Wkd6xmwxB0FpOndW5fisM5H8hsZSxU2VWVB5CWIkIjWvrHjIhxk2g3bfMKM87zNTrZddw== + integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q== } engines: { node: ">=10.13.0" } hasBin: true dev: true - /pretty-quick/3.1.1_prettier@2.8.4: + /pretty-quick/3.1.1_prettier@2.8.8: resolution: { integrity: sha512-ZYLGiMoV2jcaas3vTJrLvKAYsxDoXQBUn8OSTxkl67Fyov9lyXivJTl0+2WVh+y6EovGcw7Lm5ThYpH+Sh3XxQ== @@ -6347,7 +7401,7 @@ packages: ignore: 5.2.4 mri: 1.2.0 multimatch: 4.0.0 - prettier: 2.8.4 + prettier: 2.8.8 dev: true /process/0.11.10: @@ -6391,10 +7445,10 @@ packages: engines: { node: ">=0.6.0", teleport: ">=0.2.0" } dev: true - /qs/6.11.0: + /qs/6.11.1: resolution: { - integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q== + integrity: sha512-0wsrzgTz/kAVIeuxSjnpGC56rzYtr6JT/2BwEvMaPhFIoYa1aGO8LbzuU1R0uUYQkLpWBTOj0l/CLAJB64J6nQ== } engines: { node: ">=0.6" } dependencies: @@ -6416,14 +7470,6 @@ packages: engines: { node: ">=8" } dev: true - /quick-lru/5.1.1: - resolution: - { - integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA== - } - engines: { node: ">=10" } - dev: true - /read-cache/1.0.0: resolution: { @@ -6458,10 +7504,10 @@ packages: type-fest: 0.6.0 dev: true - /readable-stream/3.6.1: + /readable-stream/3.6.2: resolution: { - integrity: sha512-+rQmrWMYGA90yenhTYsLWAsLsqVC8osOw6PKE1HDYiO0gdPeKe/xDHNzIAIn4C91YQ6oenEhfYqqc1883qHbjQ== + integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== } engines: { node: ">= 6" } dependencies: @@ -6491,14 +7537,6 @@ packages: strip-indent: 3.0.0 dev: true - /regexpp/3.2.0: - resolution: - { - integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg== - } - engines: { node: ">=8" } - dev: true - /require-directory/2.1.1: resolution: { @@ -6541,14 +7579,14 @@ packages: global-dirs: 0.1.1 dev: true - /resolve/1.22.1: + /resolve/1.22.2: resolution: { - integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw== + integrity: sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g== } hasBin: true dependencies: - is-core-module: 2.11.0 + is-core-module: 2.12.0 path-parse: 1.0.7 supports-preserve-symlinks-flag: 1.0.0 dev: true @@ -6596,6 +7634,17 @@ packages: glob: 7.2.3 dev: true + /rimraf/5.0.0: + resolution: + { + integrity: sha512-Jf9llaP+RvaEVS5nPShYFhtXIrb3LRKP281ib3So0KkeZKo2wIKyq0Re7TOSwanasA423PSr6CCIL4bP6T040g== + } + engines: { node: ">=14" } + hasBin: true + dependencies: + glob: 10.2.3 + dev: true + /rollup-plugin-external-globals/0.6.1: resolution: { @@ -6629,13 +7678,13 @@ packages: open: 8.4.2 picomatch: 2.3.1 source-map: 0.7.4 - yargs: 17.7.1 + yargs: 17.7.2 dev: true - /rollup/3.17.3: + /rollup/3.21.6: resolution: { - integrity: sha512-p5LaCXiiOL/wrOkj8djsIDFmyU9ysUxcyW+EKRLHb6TKldJzXpImjcRSR+vgo09DBdofGcOoLOsRyxxG2n5/qQ== + integrity: sha512-SXIICxvxQxR3D4dp/3LDHZIJPC8a4anKMHd4E3Jiz2/JnY+2bEjqrOokAauc5ShGVNFHlEFjBXAXlaxkJqIqSg== } engines: { node: ">=14.18.0", npm: ">=8.0.0" } hasBin: true @@ -6652,10 +7701,10 @@ packages: queue-microtask: 1.2.3 dev: true - /rxjs/7.8.0: + /rxjs/7.8.1: resolution: { - integrity: sha512-F2+gxDshqmIub1KdvZkaEfGDwLNpPvk9Fs6LD/MyQxNgMds/WH9OdDDXOmxUZpME+iSK3rQCctkL0DYyytUqMg== + integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg== } dependencies: tslib: 2.5.0 @@ -6668,10 +7717,10 @@ packages: } dev: true - /sass-loader/13.2.0_sass@1.58.3: + /sass-loader/13.2.2_sass@1.62.1: resolution: { - integrity: sha512-JWEp48djQA4nbZxmgC02/Wh0eroSUutulROUusYJO9P9zltRbNN80JCBHqRGzjd4cmZCa/r88xgfkjGD0TXsHg== + integrity: sha512-nrIdVAAte3B9icfBiGWvmMhT/D+eCDwnk+yA7VE/76dp/WkHX+i44Q/pfo71NYbwj0Ap+PGsn0ekOuU1WFJ2AA== } engines: { node: ">= 14.15.0" } peerDependencies: @@ -6694,29 +7743,22 @@ packages: dependencies: klona: 2.0.6 neo-async: 2.6.2 - sass: 1.58.3 + sass: 1.62.1 dev: true - /sass/1.58.3: + /sass/1.62.1: resolution: { - integrity: sha512-Q7RaEtYf6BflYrQ+buPudKR26/lH+10EmO9bBqbmPh/KeLqv8bjpTNqxe71ocONqXq+jYiCbpPUmQMS+JJPk4A== + integrity: sha512-NHpxIzN29MXvWiuswfc1W3I0N8SXBd8UR26WntmDlRYf0bSADnwnOjsyMZ3lMezSlArD33Vs3YFhp7dWvL770A== } - engines: { node: ">=12.0.0" } + engines: { node: ">=14.0.0" } hasBin: true dependencies: chokidar: 3.5.3 - immutable: 4.2.4 + immutable: 4.3.0 source-map-js: 1.0.2 dev: true - /semver-compare/1.0.0: - resolution: - { - integrity: sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow== - } - dev: true - /semver/5.7.1: resolution: { @@ -6733,21 +7775,10 @@ packages: hasBin: true dev: true - /semver/7.3.5: - resolution: - { - integrity: sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ== - } - engines: { node: ">=10" } - hasBin: true - dependencies: - lru-cache: 6.0.0 - dev: true - - /semver/7.3.8: + /semver/7.5.0: resolution: { - integrity: sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A== + integrity: sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA== } engines: { node: ">=10" } hasBin: true @@ -6791,6 +7822,14 @@ packages: } dev: true + /signal-exit/4.0.2: + resolution: + { + integrity: sha512-MY2/qGx4enyjprQnFaZsHib3Yadh3IXyV2C321GY0pjGfVBu4un0uDJkwgdxqO+Rdx8JMT8IfJIRwbYVz3Ob3Q== + } + engines: { node: ">=14" } + dev: true + /simple-swizzle/0.2.2: resolution: { @@ -6832,6 +7871,24 @@ packages: is-fullwidth-code-point: 3.0.0 dev: true + /slice-ansi/5.0.0: + resolution: + { + integrity: sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ== + } + engines: { node: ">=12" } + dependencies: + ansi-styles: 6.2.1 + is-fullwidth-code-point: 4.0.0 + dev: true + + /sortablejs/1.15.0: + resolution: + { + integrity: sha512-bv9qgVMjUMf89wAvM6AxVvS/4MX3sPeN0+agqShejLU5z5GX4C75ow1O2e5k4L6XItUyAK3gH6AxSbXrOM5e8w== + } + dev: false + /source-map-js/1.0.2: resolution: { @@ -6870,15 +7927,16 @@ packages: integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA== } deprecated: Please use @jridgewell/sourcemap-codec instead + dev: true - /spdx-correct/3.1.1: + /spdx-correct/3.2.0: resolution: { - integrity: sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w== + integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA== } dependencies: spdx-expression-parse: 3.0.1 - spdx-license-ids: 3.0.12 + spdx-license-ids: 3.0.13 dev: true /spdx-exceptions/2.3.0: @@ -6895,13 +7953,13 @@ packages: } dependencies: spdx-exceptions: 2.3.0 - spdx-license-ids: 3.0.12 + spdx-license-ids: 3.0.13 dev: true - /spdx-license-ids/3.0.12: + /spdx-license-ids/3.0.13: resolution: { - integrity: sha512-rr+VVSXtRhO4OHbXUiAF7xW3Bo9DuuF6C5jH+q/x15j2jniycgKbxU09Hr0WqlSLUs4i4ltHGXqTe7VHclYWyA== + integrity: sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w== } dev: true @@ -6911,7 +7969,7 @@ packages: integrity: sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg== } dependencies: - readable-stream: 3.6.1 + readable-stream: 3.6.2 dev: true /stable/0.1.8: @@ -6930,10 +7988,10 @@ packages: engines: { node: ">= 0.6" } dev: true - /string-argv/0.3.1: + /string-argv/0.3.2: resolution: { - integrity: sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg== + integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q== } engines: { node: ">=0.6.19" } dev: true @@ -6957,25 +8015,25 @@ packages: strip-ansi: 6.0.1 dev: true - /string_decoder/1.3.0: + /string-width/5.1.2: resolution: { - integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== + integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA== } + engines: { node: ">=12" } dependencies: - safe-buffer: 5.2.1 + eastasianwidth: 0.2.0 + emoji-regex: 9.2.2 + strip-ansi: 7.0.1 dev: true - /stringify-object/3.3.0: + /string_decoder/1.3.0: resolution: { - integrity: sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw== + integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== } - engines: { node: ">=4" } dependencies: - get-own-enumerable-property-symbols: 3.0.2 - is-obj: 1.0.1 - is-regexp: 1.0.0 + safe-buffer: 5.2.1 dev: true /strip-ansi/6.0.1: @@ -6988,6 +8046,16 @@ packages: ansi-regex: 5.0.1 dev: true + /strip-ansi/7.0.1: + resolution: + { + integrity: sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw== + } + engines: { node: ">=12" } + dependencies: + ansi-regex: 6.0.1 + dev: true + /strip-final-newline/2.0.0: resolution: { @@ -6996,6 +8064,14 @@ packages: engines: { node: ">=6" } dev: true + /strip-final-newline/3.0.0: + resolution: + { + integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw== + } + engines: { node: ">=12" } + dev: true + /strip-indent/3.0.0: resolution: { @@ -7031,7 +8107,7 @@ packages: tslib: 2.4.0 dev: false - /stylehacks/5.1.1_postcss@8.4.21: + /stylehacks/5.1.1_postcss@8.4.23: resolution: { integrity: sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw== @@ -7041,11 +8117,25 @@ packages: postcss: ^8.2.15 dependencies: browserslist: 4.21.5 - postcss: 8.4.21 - postcss-selector-parser: 6.0.11 + postcss: 8.4.23 + postcss-selector-parser: 6.0.12 + dev: true + + /stylehacks/6.0.0_postcss@8.4.23: + resolution: + { + integrity: sha512-+UT589qhHPwz6mTlCLSt/vMNTJx8dopeJlZAlBMJPWA3ORqu6wmQY7FBXf+qD+FsqoBJODyqNxOUP3jdntFRdw== + } + engines: { node: ^14 || ^16 || >=18.0 } + peerDependencies: + postcss: ^8.2.15 + dependencies: + browserslist: 4.21.5 + postcss: 8.4.23 + postcss-selector-parser: 6.0.12 dev: true - /stylelint-config-html/1.1.0_kbto3rg3njmczth2rrsgfnlsqa: + /stylelint-config-html/1.1.0_bx3pbyxam4kma26m7u4sje7r2a: resolution: { integrity: sha512-IZv4IVESjKLumUGi+HWeb7skgO6/g4VMuAYrJdlqQFndgbj6WJAXPhaysvBiXefX79upBdQVumgYcdd17gCpjQ== @@ -7056,71 +8146,173 @@ packages: stylelint: ">=14.0.0" dependencies: postcss-html: 1.5.0 - stylelint: 14.16.1 + stylelint: 15.6.1 dev: true - /stylelint-config-prettier/9.0.5_stylelint@14.16.1: + /stylelint-config-recess-order/4.0.0_stylelint@15.6.1: resolution: { - integrity: sha512-U44lELgLZhbAD/xy/vncZ2Pq8sh2TnpiPvo38Ifg9+zeioR+LAkHu0i6YORIOxFafZoVg0xqQwex6e6F25S5XA== + integrity: sha512-sOb+OofMryBR91CbzgV2FavpONqiIeAE7cfrgyUHqePblWBKsYzoUuWThI5EjPRA7KKeovm6ykr7twWYLeafPQ== } - engines: { node: ">= 12" } - hasBin: true peerDependencies: - stylelint: ">= 11.x < 15" + stylelint: ">=15" dependencies: - stylelint: 14.16.1 + stylelint: 15.6.1 + stylelint-order: 6.0.3_stylelint@15.6.1 dev: true - /stylelint-config-recommended/9.0.0_stylelint@14.16.1: + /stylelint-config-recommended-scss/11.0.0_frbqpip5ildlr3fpnrzbl6etee: resolution: { - integrity: sha512-9YQSrJq4NvvRuTbzDsWX3rrFOzOlYBmZP+o513BJN/yfEmGSr0AxdvrWs0P/ilSpVV/wisamAHu5XSk8Rcf4CQ== + integrity: sha512-EDghTDU7aOv2LTsRZvcT1w8mcjUaMhuy+t38iV5I/0Qiu6ixdkRwhLEMul3K/fnB2v9Nwqvb3xpvJfPH+HduDw== } peerDependencies: - stylelint: ^14.10.0 + postcss: ^8.3.3 + stylelint: ^15.5.0 + peerDependenciesMeta: + postcss: + optional: true dependencies: - stylelint: 14.16.1 + postcss: 8.4.23 + postcss-scss: 4.0.6_postcss@8.4.23 + stylelint: 15.6.1 + stylelint-config-recommended: 12.0.0_stylelint@15.6.1 + stylelint-scss: 4.7.0_stylelint@15.6.1 dev: true - /stylelint-config-standard/29.0.0_stylelint@14.16.1: + /stylelint-config-recommended-vue/1.4.0_bx3pbyxam4kma26m7u4sje7r2a: resolution: { - integrity: sha512-uy8tZLbfq6ZrXy4JKu3W+7lYLgRQBxYTUUB88vPgQ+ZzAxdrvcaSUW9hOMNLYBnwH+9Kkj19M2DHdZ4gKwI7tg== + integrity: sha512-DVJqyX2KvMCn9U0+keL12r7xlsH26K4Vg8NrIZuq5MoF7g82DpMp326Om4E0Q+Il1o+bTHuUyejf2XAI0iD04Q== } + engines: { node: ^12 || >=14 } peerDependencies: - stylelint: ^14.14.0 + postcss-html: ^1.0.0 + stylelint: ">=14.0.0" dependencies: - stylelint: 14.16.1 - stylelint-config-recommended: 9.0.0_stylelint@14.16.1 + postcss-html: 1.5.0 + semver: 7.5.0 + stylelint: 15.6.1 + stylelint-config-html: 1.1.0_bx3pbyxam4kma26m7u4sje7r2a + stylelint-config-recommended: 12.0.0_stylelint@15.6.1 dev: true - /stylelint-order/5.0.0_stylelint@14.16.1: + /stylelint-config-recommended/12.0.0_stylelint@15.6.1: resolution: { - integrity: sha512-OWQ7pmicXufDw5BlRqzdz3fkGKJPgLyDwD1rFY3AIEfIH/LQY38Vu/85v8/up0I+VPiuGRwbc2Hg3zLAsJaiyw== + integrity: sha512-x6x8QNARrGO2sG6iURkzqL+Dp+4bJorPMMRNPScdvaUK8PsynriOcMW7AFDKqkWAS5wbue/u8fUT/4ynzcmqdQ== } peerDependencies: - stylelint: ^14.0.0 + stylelint: ^15.5.0 dependencies: - postcss: 8.4.21 - postcss-sorting: 7.0.1_postcss@8.4.21 - stylelint: 14.16.1 + stylelint: 15.6.1 dev: true - /stylelint/14.16.1: + /stylelint-config-standard-scss/9.0.0_frbqpip5ildlr3fpnrzbl6etee: resolution: { - integrity: sha512-ErlzR/T3hhbV+a925/gbfc3f3Fep9/bnspMiJPorfGEmcBbXdS+oo6LrVtoUZ/w9fqD6o6k7PtUlCOsCRdjX/A== + integrity: sha512-yPKpJsrZn4ybuQZx/DkEHuCjw7pJginErE/47dFhCnrvD48IJ4UYec8tSiCuJWMA3HRjbIa3nh5ZeSauDGuVAg== } - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } + peerDependencies: + postcss: ^8.3.3 + stylelint: ^15.5.0 + peerDependenciesMeta: + postcss: + optional: true + dependencies: + postcss: 8.4.23 + stylelint: 15.6.1 + stylelint-config-recommended-scss: 11.0.0_frbqpip5ildlr3fpnrzbl6etee + stylelint-config-standard: 33.0.0_stylelint@15.6.1 + dev: true + + /stylelint-config-standard/33.0.0_stylelint@15.6.1: + resolution: + { + integrity: sha512-eyxnLWoXImUn77+ODIuW9qXBDNM+ALN68L3wT1lN2oNspZ7D9NVGlNHb2QCUn4xDug6VZLsh0tF8NyoYzkgTzg== + } + peerDependencies: + stylelint: ^15.5.0 + dependencies: + stylelint: 15.6.1 + stylelint-config-recommended: 12.0.0_stylelint@15.6.1 + dev: true + + /stylelint-order/6.0.3_stylelint@15.6.1: + resolution: + { + integrity: sha512-1j1lOb4EU/6w49qZeT2SQVJXm0Ht+Qnq9GMfUa3pMwoyojIWfuA+JUDmoR97Bht1RLn4ei0xtLGy87M7d29B1w== + } + peerDependencies: + stylelint: ^14.0.0 || ^15.0.0 + dependencies: + postcss: 8.4.23 + postcss-sorting: 8.0.2_postcss@8.4.23 + stylelint: 15.6.1 + dev: true + + /stylelint-prettier/3.0.0_ydhac4dv5nk3447o7ol4jd6c7a: + resolution: + { + integrity: sha512-kIks1xw6np0zElokMT2kP6ar3S4MBoj6vUtPJuND1pFELMpZxVS/0uHPR4HDAVn0WAD3I5oF0IA3qBFxBpMkLg== + } + engines: { node: ^14.17.0 || >=16.0.0 } + peerDependencies: + prettier: ">=2.0.0" + stylelint: ">=14.0.0" + dependencies: + prettier: 2.8.8 + prettier-linter-helpers: 1.0.0 + stylelint: 15.6.1 + dev: true + + /stylelint-scss/4.7.0_stylelint@15.6.1: + resolution: + { + integrity: sha512-TSUgIeS0H3jqDZnby1UO1Qv3poi1N8wUYIJY6D1tuUq2MN3lwp/rITVo0wD+1SWTmRm0tNmGO0b7nKInnqF6Hg== + } + peerDependencies: + stylelint: ^14.5.1 || ^15.0.0 + dependencies: + postcss-media-query-parser: 0.2.3 + postcss-resolve-nested-selector: 0.1.1 + postcss-selector-parser: 6.0.12 + postcss-value-parser: 4.2.0 + stylelint: 15.6.1 + dev: true + + /stylelint-scss/5.0.0_stylelint@15.6.1: + resolution: + { + integrity: sha512-5Ee5kG3JIcP2jk2PMoFMiNmW/815V+wK5o37X5ke90ihWMpPXI9iyqeA6zEWipWSRXeQc0kqbd7hKqiR+wPKNA== + } + peerDependencies: + stylelint: ^14.5.1 || ^15.0.0 + dependencies: + postcss-media-query-parser: 0.2.3 + postcss-resolve-nested-selector: 0.1.1 + postcss-selector-parser: 6.0.12 + postcss-value-parser: 4.2.0 + stylelint: 15.6.1 + dev: true + + /stylelint/15.6.1: + resolution: + { + integrity: sha512-d8icFBlVl93Elf3Z5ABQNOCe4nx69is3D/NZhDLAie1eyYnpxfeKe7pCfqzT5W4F8vxHCLSDfV8nKNJzogvV2Q== + } + engines: { node: ^14.13.1 || >=16.0.0 } hasBin: true dependencies: - "@csstools/selector-specificity": 2.1.1_wajs5nedgkikc5pcuwett7legi + "@csstools/css-parser-algorithms": 2.1.1_gdfqdfecdiaxr4x3xd7wxrvuhq + "@csstools/css-tokenizer": 2.1.1 + "@csstools/media-query-list-parser": 2.0.4_rffw2jz5u7v47thsjhdr4x67vi + "@csstools/selector-specificity": 2.2.0_i42hiwwcp5l3eeahmzszdaagtq balanced-match: 2.0.0 colord: 2.9.3 - cosmiconfig: 7.1.0 + cosmiconfig: 8.1.3 css-functions-list: 3.1.0 + css-tree: 2.3.1 debug: 4.3.4 fast-glob: 3.2.12 fastest-levenshtein: 1.0.16 @@ -7128,36 +8320,53 @@ packages: global-modules: 2.0.0 globby: 11.1.0 globjoin: 0.1.4 - html-tags: 3.2.0 + html-tags: 3.3.1 ignore: 5.2.4 import-lazy: 4.0.0 imurmurhash: 0.1.4 is-plain-object: 5.0.0 - known-css-properties: 0.26.0 + known-css-properties: 0.27.0 mathml-tag-names: 2.1.3 meow: 9.0.0 micromatch: 4.0.5 normalize-path: 3.0.0 picocolors: 1.0.0 - postcss: 8.4.21 + postcss: 8.4.23 postcss-media-query-parser: 0.2.3 postcss-resolve-nested-selector: 0.1.1 - postcss-safe-parser: 6.0.0_postcss@8.4.21 - postcss-selector-parser: 6.0.11 + postcss-safe-parser: 6.0.0_postcss@8.4.23 + postcss-selector-parser: 6.0.12 postcss-value-parser: 4.2.0 resolve-from: 5.0.0 string-width: 4.2.3 strip-ansi: 6.0.1 style-search: 0.1.0 - supports-hyperlinks: 2.3.0 + supports-hyperlinks: 3.0.0 svg-tags: 1.0.0 table: 6.8.1 v8-compile-cache: 2.3.0 - write-file-atomic: 4.0.2 + write-file-atomic: 5.0.1 transitivePeerDependencies: - supports-color dev: true + /sucrase/3.32.0: + resolution: + { + integrity: sha512-ydQOU34rpSyj2TGyz4D2p8rbktIOZ8QY9s+DGLvFU1i5pWJE8vkpruCjGCMHsdXwnD7JDcS+noSwM/a7zyNFDQ== + } + engines: { node: ">=8" } + hasBin: true + dependencies: + "@jridgewell/gen-mapping": 0.3.3 + commander: 4.1.1 + glob: 7.1.6 + lines-and-columns: 1.2.4 + mz: 2.7.0 + pirates: 4.0.5 + ts-interface-checker: 0.1.13 + dev: true + /supports-color/5.5.0: resolution: { @@ -7178,12 +8387,12 @@ packages: has-flag: 4.0.0 dev: true - /supports-hyperlinks/2.3.0: + /supports-hyperlinks/3.0.0: resolution: { - integrity: sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA== + integrity: sha512-QBDPHyPQDRTy9ku4URNGY5Lah8PAaXs6tAAwp55sL5WCsSW7GIfdf6W5ixfziW+t7wh3GVvHyHHyQ1ESsoRvaA== } - engines: { node: ">=8" } + engines: { node: ">=14.18" } dependencies: has-flag: 4.0.0 supports-color: 7.2.0 @@ -7251,52 +8460,50 @@ packages: strip-ansi: 6.0.1 dev: true - /tailwindcss/3.2.7_postcss@8.4.21: + /tailwindcss/3.3.2: resolution: { - integrity: sha512-B6DLqJzc21x7wntlH/GsZwEXTBttVSl1FtCzC8WP4oBc/NKef7kaax5jeihkkCEWc831/5NDJ9gRNDK6NEioQQ== + integrity: sha512-9jPkMiIBXvPc2KywkraqsUfbfj+dHDb+JPWtSJa9MLFdrPyazI7q6WX2sUrm7R9eVR7qqv3Pas7EvQFzxKnI6w== } - engines: { node: ">=12.13.0" } + engines: { node: ">=14.0.0" } hasBin: true - peerDependencies: - postcss: ^8.0.9 dependencies: + "@alloc/quick-lru": 5.2.0 arg: 5.0.2 chokidar: 3.5.3 - color-name: 1.1.4 - detective: 5.2.1 didyoumean: 1.2.2 dlv: 1.1.3 fast-glob: 3.2.12 glob-parent: 6.0.2 is-glob: 4.0.3 - lilconfig: 2.0.6 + jiti: 1.18.2 + lilconfig: 2.1.0 micromatch: 4.0.5 normalize-path: 3.0.0 object-hash: 3.0.0 picocolors: 1.0.0 - postcss: 8.4.21 - postcss-import: 14.1.0_postcss@8.4.21 - postcss-js: 4.0.1_postcss@8.4.21 - postcss-load-config: 3.1.4_postcss@8.4.21 - postcss-nested: 6.0.0_postcss@8.4.21 - postcss-selector-parser: 6.0.11 + postcss: 8.4.23 + postcss-import: 15.1.0_postcss@8.4.23 + postcss-js: 4.0.1_postcss@8.4.23 + postcss-load-config: 4.0.1_postcss@8.4.23 + postcss-nested: 6.0.1_postcss@8.4.23 + postcss-selector-parser: 6.0.12 postcss-value-parser: 4.2.0 - quick-lru: 5.1.1 - resolve: 1.22.1 + resolve: 1.22.2 + sucrase: 3.32.0 transitivePeerDependencies: - ts-node dev: true - /terser/5.16.5: + /terser/5.17.3: resolution: { - integrity: sha512-qcwfg4+RZa3YvlFh0qjifnzBHjKGNbtDo9yivMqMFDy9Q6FSaQWSB/j1xKhsoUFJIqDOM3TsN6D5xbrMrFcHbg== + integrity: sha512-AudpAZKmZHkG9jueayypz4duuCFJMMNGRMwaPvQKWfxKedh8Z2x3OCoDqIIi1xx5+iwx1u6Au8XQcc9Lke65Yg== } engines: { node: ">=10" } hasBin: true dependencies: - "@jridgewell/source-map": 0.3.2 + "@jridgewell/source-map": 0.3.3 acorn: 8.8.2 commander: 2.20.3 source-map-support: 0.5.21 @@ -7317,6 +8524,25 @@ packages: } dev: true + /thenify-all/1.6.0: + resolution: + { + integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA== + } + engines: { node: ">=0.8" } + dependencies: + thenify: 3.3.1 + dev: true + + /thenify/3.3.1: + resolution: + { + integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw== + } + dependencies: + any-promise: 1.3.0 + dev: true + /through/2.3.8: resolution: { @@ -7330,7 +8556,7 @@ packages: integrity: sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw== } dependencies: - readable-stream: 3.6.1 + readable-stream: 3.6.2 dev: true /to-fast-properties/2.0.0: @@ -7358,22 +8584,44 @@ packages: engines: { node: ">=8" } dev: true - /ts-node/9.1.1_typescript@4.9.5: + /ts-interface-checker/0.1.13: resolution: { - integrity: sha512-hPlt7ZACERQGf03M253ytLY3dHbGNGrAq9qIHWUY9XHYl1z7wYngSr3OQ5xmui8o2AaxsONxIzjafLUiWBo1Fg== + integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA== + } + dev: true + + /ts-node/10.9.1_2mf6xdw3sorfzkegf5qcc7fqyy: + resolution: + { + integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw== } - engines: { node: ">=10.0.0" } hasBin: true peerDependencies: + "@swc/core": ">=1.2.50" + "@swc/wasm": ">=1.2.50" + "@types/node": "*" typescript: ">=2.7" + peerDependenciesMeta: + "@swc/core": + optional: true + "@swc/wasm": + optional: true dependencies: + "@cspotcode/source-map-support": 0.8.1 + "@tsconfig/node10": 1.0.9 + "@tsconfig/node12": 1.0.11 + "@tsconfig/node14": 1.0.3 + "@tsconfig/node16": 1.0.4 + "@types/node": 18.16.8 + acorn: 8.8.2 + acorn-walk: 8.2.0 arg: 4.1.3 create-require: 1.1.1 diff: 4.0.2 make-error: 1.3.6 - source-map-support: 0.5.21 - typescript: 4.9.5 + typescript: 5.0.4 + v8-compile-cache-lib: 3.0.1 yn: 3.1.1 dev: true @@ -7405,7 +8653,7 @@ packages: } dev: true - /tsutils/3.21.0_typescript@4.9.5: + /tsutils/3.21.0_typescript@5.0.4: resolution: { integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA== @@ -7415,7 +8663,17 @@ packages: typescript: ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" dependencies: tslib: 1.14.1 - typescript: 4.9.5 + typescript: 5.0.4 + dev: true + + /type-check/0.3.2: + resolution: + { + integrity: sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg== + } + engines: { node: ">= 0.8.0" } + dependencies: + prelude-ls: 1.1.2 dev: true /type-check/0.4.0: @@ -7468,12 +8726,12 @@ packages: engines: { node: ">=8" } dev: true - /typescript/4.9.5: + /typescript/5.0.4: resolution: { - integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g== + integrity: sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw== } - engines: { node: ">=4.2.0" } + engines: { node: ">=12.20" } hasBin: true /universalify/2.0.0: @@ -7492,26 +8750,10 @@ packages: engines: { node: ">= 0.8" } dev: true - /unplugin-vue-define-options/1.2.3_vue@3.2.47: - resolution: - { - integrity: sha512-ku2Z5uD8uWE2vvQ2FeUlPKPcsHhDH2crL9up1nWXDAg15dfa2ap05e3T3dYmRvBpCsYhOqrt/Mi8JDVfo8EVDw== - } - engines: { node: ">=14.19.0" } - dependencies: - "@rollup/pluginutils": 5.0.2 - "@vue-macros/common": 1.1.0_vue@3.2.47 - ast-walker-scope: 0.4.0 - unplugin: 1.1.0 - transitivePeerDependencies: - - rollup - - vue - dev: true - - /unplugin/1.1.0: + /unplugin/1.3.1: resolution: { - integrity: sha512-I8obQ8Rs/hnkxokRV6g8JKOQFgYNnTd9DL58vcSt5IJ9AkK8wbrtsnzD5hi4BJlvcY536JzfEXj9L6h7j559/A== + integrity: sha512-h4uUTIvFBQRxUKS2Wjys6ivoeofGhxzTe2sRWlooyjHXVttcVfV/JiavNd3d4+jty0SVV0dxGw9AkY9MwiaCEw== } dependencies: acorn: 8.8.2 @@ -7520,10 +8762,10 @@ packages: webpack-virtual-modules: 0.5.0 dev: true - /update-browserslist-db/1.0.10_browserslist@4.21.5: + /update-browserslist-db/1.0.11_browserslist@4.21.5: resolution: { - integrity: sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ== + integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA== } hasBin: true peerDependencies: @@ -7575,6 +8817,13 @@ packages: hasBin: true dev: true + /v8-compile-cache-lib/3.0.1: + resolution: + { + integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg== + } + dev: true + /v8-compile-cache/2.3.0: resolution: { @@ -7588,7 +8837,7 @@ packages: integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== } dependencies: - spdx-correct: 3.1.1 + spdx-correct: 3.2.0 spdx-expression-parse: 3.0.1 dev: true @@ -7603,7 +8852,7 @@ packages: - rollup dev: true - /vite-plugin-compression/0.5.1_vite@4.1.4: + /vite-plugin-compression/0.5.1_vite@4.3.5: resolution: { integrity: sha512-5QJKBDc+gNYVqL/skgFAP81Yuzo9R+EAf19d+EtsMF/i8kFUpNi3J/H01QD3Oo8zBQn+NzoCIFkpPLynoOzaJg== @@ -7614,41 +8863,39 @@ packages: chalk: 4.1.2 debug: 4.3.4 fs-extra: 10.1.0 - vite: 4.1.4_fmyp3kkbhzlhfkonroyoepdmjy + vite: 4.3.5_wshwf6lyytunybtggckvwapi7u transitivePeerDependencies: - supports-color dev: true - /vite-plugin-mock/2.9.6_mockjs@1.1.0+vite@4.1.4: + /vite-plugin-mock/2.9.8_mockjs@1.1.0+vite@4.3.5: resolution: { - integrity: sha512-/Rm59oPppe/ncbkSrUuAxIQihlI2YcBmnbR4ST1RA2VzM1C0tEQc1KlbQvnUGhXECAGTaQN2JyasiwXP6EtKgg== + integrity: sha512-YTQM5Sn7t+/DNOwTkr+W26QGTCk1PrDkhGHslTJ90lIPJhJtDTwuSkEYMAuLP9TcVQ/qExTFx/x/GE3kxJ05sw== } engines: { node: ">=12.0.0" } peerDependencies: mockjs: ">=1.1.0" vite: ">=2.0.0" dependencies: - "@rollup/plugin-node-resolve": 13.3.0 "@types/mockjs": 1.0.7 chalk: 4.1.2 chokidar: 3.5.3 connect: 3.7.0 debug: 4.3.4 - esbuild: 0.11.3 + esbuild: 0.14.54 fast-glob: 3.2.12 mockjs: 1.1.0 path-to-regexp: 6.2.1 - vite: 4.1.4_fmyp3kkbhzlhfkonroyoepdmjy + vite: 4.3.5_wshwf6lyytunybtggckvwapi7u transitivePeerDependencies: - - rollup - supports-color dev: true - /vite-plugin-remove-console/2.1.0: + /vite-plugin-remove-console/2.1.1: resolution: { - integrity: sha512-cil+h4rX3fDnnKMt73fexMGkwRSOV08+lTAzLGTRjGyxs9Ync3fqPWxnGrngJY7LyMMt3kEKf0hNOi+1DQ0j2g== + integrity: sha512-AQOsKl9+1YO82otwSchf+P8SRo4RhMvPjOvjm9DXOnkff0SBwBPAzazEn06IUjhsm/zX4miMgicCQH1hPdktrw== } dev: true @@ -7658,14 +8905,14 @@ packages: integrity: sha512-0MMf1yzzSYlV4MGePsLVAOqXsbF5IVxbn4EEzqRnWxTQl8BJg/cfwIzfQNmNQxZp5XXwd4kyRKF1LytuHZTnqA== } dependencies: - "@vue/compiler-sfc": 3.2.47 + "@vue/compiler-sfc": 3.3.1 svgo: 3.0.2 dev: true - /vite/4.1.4_fmyp3kkbhzlhfkonroyoepdmjy: + /vite/4.3.5_wshwf6lyytunybtggckvwapi7u: resolution: { - integrity: sha512-3knk/HsbSTKEin43zHu7jTwYWv81f8kgAL99G5NWBcA1LKvtvcVAC4JjBH1arBunO9kQka+1oGbrMKOjk4ZrBg== + integrity: sha512-0gEnL9wiRFxgz40o/i/eTBwm+NEbpUeTWhzKrZDSdKm6nplj+z4lKz8ANDgildxHm47Vg8EUia0aicKbawUVVA== } engines: { node: ^14.18.0 || >=16.0.0 } hasBin: true @@ -7690,21 +8937,20 @@ packages: terser: optional: true dependencies: - "@types/node": 18.14.2 - esbuild: 0.16.17 - postcss: 8.4.21 - resolve: 1.22.1 - rollup: 3.17.3 - sass: 1.58.3 - terser: 5.16.5 + "@types/node": 18.16.8 + esbuild: 0.17.18 + postcss: 8.4.23 + rollup: 3.21.6 + sass: 1.62.1 + terser: 5.17.3 optionalDependencies: fsevents: 2.3.2 dev: true - /vue-demi/0.13.11_vue@3.2.47: + /vue-demi/0.14.1_vue@3.3.1: resolution: { - integrity: sha512-IR8HoEEGM65YY3ZJYAjMlKygDQn25D5ajNFNoKh9RSDMQtlzCxtfQjdQgv9jjK+m3377SsJXY8ysq8kLCZL25A== + integrity: sha512-rt+yuCtXvscYot9SQQj3WKZJVSriPNqVkpVBNEHPzSgBv7QIYzsS410VqVgvx8f9AAPgjg+XPKvmV3vOqqkJQQ== } engines: { node: ">=12" } hasBin: true @@ -7716,31 +8962,31 @@ packages: "@vue/composition-api": optional: true dependencies: - vue: 3.2.47 + vue: 3.3.1 dev: false - /vue-eslint-parser/9.1.0_eslint@8.35.0: + /vue-eslint-parser/9.2.1_eslint@8.40.0: resolution: { - integrity: sha512-NGn/iQy8/Wb7RrRa4aRkokyCZfOUWk19OP5HP6JEozQFX5AoS/t+Z0ZN7FY4LlmWc4FNI922V7cvX28zctN8dQ== + integrity: sha512-tPOex4n6jit4E7h68auOEbDMwE58XiP4dylfaVTCOVCouR45g+QFDBjgIdEU52EXJxKyjgh91dLfN2rxUcV0bQ== } engines: { node: ^14.17.0 || >=16.0.0 } peerDependencies: eslint: ">=6.0.0" dependencies: debug: 4.3.4 - eslint: 8.35.0 - eslint-scope: 7.1.1 - eslint-visitor-keys: 3.3.0 - espree: 9.4.1 - esquery: 1.4.2 + eslint: 8.40.0 + eslint-scope: 7.2.0 + eslint-visitor-keys: 3.4.1 + espree: 9.5.2 + esquery: 1.5.0 lodash: 4.17.21 - semver: 7.3.8 + semver: 7.5.0 transitivePeerDependencies: - supports-color dev: true - /vue-i18n/9.2.2_vue@3.2.47: + /vue-i18n/9.2.2_vue@3.3.1: resolution: { integrity: sha512-yswpwtj89rTBhegUAv9Mu37LNznyu3NpyLQmozF3i1hYOhwpG8RjcjIFIIfnu+2MDZJGSZPXaKWvnQA71Yv9TQ== @@ -7753,18 +8999,18 @@ packages: "@intlify/shared": 9.2.2 "@intlify/vue-devtools": 9.2.2 "@vue/devtools-api": 6.5.0 - vue: 3.2.47 + vue: 3.3.1 - /vue-router/4.1.6_vue@3.2.47: + /vue-router/4.2.0_vue@3.3.1: resolution: { - integrity: sha512-DYWYwsG6xNPmLq/FmZn8Ip+qrhFEzA14EI12MsMgVxvHFDYvlr4NXpVF5hrRH1wVcDP8fGi5F4rxuJSl8/r+EQ== + integrity: sha512-c+usESa6ZoWsm4PPdzRSyenp5A4dsUtnDJnrI03fY1IpIihA9TK3x5ffgkFDpjhLJZewsXoKURapNLFdZjuqTg== } peerDependencies: vue: ^3.2.0 dependencies: "@vue/devtools-api": 6.5.0 - vue: 3.2.47 + vue: 3.3.1 dev: false /vue-template-compiler/2.7.14: @@ -7777,21 +9023,22 @@ packages: he: 1.2.0 dev: true - /vue-tsc/1.2.0_typescript@4.9.5: + /vue-tsc/1.6.4_typescript@5.0.4: resolution: { - integrity: sha512-rIlzqdrhyPYyLG9zxsVRa+JEseeS9s8F2BbVVVWRRsTZvJO2BbhLEb2HW3MY+DFma0378tnIqs+vfTzbcQtRFw== + integrity: sha512-8rg8S1AhRJ6/WriENQEhyqH5wsxSxuD5iaD+QnkZn2ArZ6evlhqfBAIcVN8mfSyCV9DeLkQXkOSv/MaeJiJPAQ== } hasBin: true peerDependencies: typescript: "*" dependencies: - "@volar/vue-language-core": 1.2.0 - "@volar/vue-typescript": 1.2.0 - typescript: 4.9.5 + "@volar/vue-language-core": 1.6.4 + "@volar/vue-typescript": 1.6.4_typescript@5.0.4 + semver: 7.5.0 + typescript: 5.0.4 dev: true - /vue-types/5.0.2_vue@3.2.47: + /vue-types/5.0.2_vue@3.3.1: resolution: { integrity: sha512-+/5hnQ65XOYqPs+tEUF8GGTJX95UFVH0wPQo71IJJYh5TKMfik2tGKTLkZ42JqAczANA9hGu5FrZmPgxn20nnA== @@ -7804,20 +9051,20 @@ packages: optional: true dependencies: is-plain-object: 5.0.0 - vue: 3.2.47 + vue: 3.3.1 dev: false - /vue/3.2.47: + /vue/3.3.1: resolution: { - integrity: sha512-60188y/9Dc9WVrAZeUVSDxRQOZ+z+y5nO2ts9jWXSTkMvayiWxCWOWtBQoYjLeccfXkiiPZWAHcV+WTPhkqJHQ== + integrity: sha512-3Rwy4I5idbPVSDZu6I+fFh6tdDSZbauImCTqLxE7y0LpHtiDvPeY01OI7RkFPbva1nk4hoO0sv/NzosH2h60sg== } dependencies: - "@vue/compiler-dom": 3.2.47 - "@vue/compiler-sfc": 3.2.47 - "@vue/runtime-dom": 3.2.47 - "@vue/server-renderer": 3.2.47_vue@3.2.47 - "@vue/shared": 3.2.47 + "@vue/compiler-dom": 3.3.1 + "@vue/compiler-sfc": 3.3.1 + "@vue/runtime-dom": 3.3.1 + "@vue/server-renderer": 3.3.1_vue@3.3.1 + "@vue/shared": 3.3.1 /webpack-sources/3.2.3: resolution: @@ -7887,6 +9134,18 @@ packages: strip-ansi: 6.0.1 dev: true + /wrap-ansi/8.1.0: + resolution: + { + integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ== + } + engines: { node: ">=12" } + dependencies: + ansi-styles: 6.2.1 + string-width: 5.1.2 + strip-ansi: 7.0.1 + dev: true + /wrappy/1.0.2: resolution: { @@ -7894,15 +9153,15 @@ packages: } dev: true - /write-file-atomic/4.0.2: + /write-file-atomic/5.0.1: resolution: { - integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg== + integrity: sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw== } - engines: { node: ^12.13.0 || ^14.15.0 || >=16.0.0 } + engines: { node: ^14.17.0 || ^16.13.0 || >=18.0.0 } dependencies: imurmurhash: 0.1.4 - signal-exit: 3.0.7 + signal-exit: 4.0.2 dev: true /xml-name-validator/4.0.0: @@ -7913,14 +9172,6 @@ packages: engines: { node: ">=12" } dev: true - /xtend/4.0.2: - resolution: - { - integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== - } - engines: { node: ">=0.4" } - dev: true - /y18n/5.0.8: resolution: { @@ -7962,6 +9213,14 @@ packages: engines: { node: ">= 6" } dev: true + /yaml/2.2.2: + resolution: + { + integrity: sha512-CBKFWExMn46Foo4cldiChEzn7S7SRV+wqiluAb6xmueD/fGyRHIhX8m14vVGgeFWjN540nKCNVj6P21eQjgTuA== + } + engines: { node: ">= 14" } + dev: true + /yargs-parser/20.2.9: resolution: { @@ -7978,10 +9237,10 @@ packages: engines: { node: ">=12" } dev: true - /yargs/17.7.1: + /yargs/17.7.2: resolution: { - integrity: sha512-cwiTb08Xuv5fqF4AovYacTFNxk62th7LKJ6BL9IGUpTJrWoU7/7WdQGTP2SjKf1dUNBGzDd28p/Yfs/GI6JrLw== + integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w== } engines: { node: ">=12" } dependencies: @@ -8010,10 +9269,10 @@ packages: engines: { node: ">=10" } dev: true - /zrender/5.4.1: + /zrender/5.4.3: resolution: { - integrity: sha512-M4Z05BHWtajY2241EmMPHglDQAJ1UyHQcYsxDNzD9XLSkPDqMq4bB28v9Pb4mvHnVQ0GxyTklZ/69xCFP6RXBA== + integrity: sha512-DRUM4ZLnoaT0PBVvGBDO9oWIDBKFdAVieNWxWwK0niYzJCMwGchRk21/hsE+RKkIveH3XHCyvXcJDkgLVvfizQ== } dependencies: tslib: 2.3.0 diff --git a/postcss.config.js b/postcss.config.js index 20d42d8..f479069 100644 --- a/postcss.config.js +++ b/postcss.config.js @@ -1,6 +1,7 @@ module.exports = { plugins: { "postcss-import": {}, + "tailwindcss/nesting": {}, tailwindcss: {}, autoprefixer: {}, ...(process.env.NODE_ENV === "production" ? { cssnano: {} } : {}) diff --git a/public/serverConfig.json b/public/serverConfig.json index c3c53cb..719b302 100644 --- a/public/serverConfig.json +++ b/public/serverConfig.json @@ -1,5 +1,5 @@ { - "Version": "3.9.7", + "Version": "4.1.0", "Title": "PureAdmin", "FixedHeader": true, "HiddenSideBar": false, @@ -18,5 +18,6 @@ "ShowModel": "smart", "MenuArrowIconNoTransition": true, "CachingAsyncRoutes": false, - "TooltipEffect": "light" + "TooltipEffect": "light", + "ResponsiveStorageNameSpace": "responsive-" } diff --git a/src/App.vue b/src/App.vue index b299a9e..f3cf3e3 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,6 +1,7 @@ @@ -9,10 +10,12 @@ import { defineComponent } from "vue"; import { ElConfigProvider } from "element-plus"; import zhCn from "element-plus/lib/locale/lang/zh-cn"; import en from "element-plus/lib/locale/lang/en"; +import { ReDialog } from "@/components/ReDialog"; export default defineComponent({ name: "app", components: { - [ElConfigProvider.name]: ElConfigProvider + [ElConfigProvider.name]: ElConfigProvider, + ReDialog }, computed: { currentLocale() { diff --git a/src/components/ReCol/index.ts b/src/components/ReCol/index.ts new file mode 100644 index 0000000..7a6c937 --- /dev/null +++ b/src/components/ReCol/index.ts @@ -0,0 +1,29 @@ +import { ElCol } from "element-plus"; +import { h, defineComponent } from "vue"; + +// 封装element-plus的el-col组件 +export default defineComponent({ + name: "ReCol", + props: { + value: { + type: Number, + default: 24 + } + }, + render() { + const attrs = this.$attrs; + const val = this.value; + return h( + ElCol, + { + xs: val, + sm: val, + md: val, + lg: val, + xl: val, + ...attrs + }, + { default: () => this.$slots.default() } + ); + } +}); diff --git a/src/components/ReDialog/index.ts b/src/components/ReDialog/index.ts new file mode 100644 index 0000000..377f840 --- /dev/null +++ b/src/components/ReDialog/index.ts @@ -0,0 +1,39 @@ +import { ref } from "vue"; +import reDialog from "./index.vue"; +import { useTimeoutFn } from "@vueuse/core"; +import { withInstall } from "@pureadmin/utils"; +import type { + EventType, + ArgsType, + DialogProps, + ButtonProps, + DialogOptions +} from "./type"; + +const dialogStore = ref>([]); + +const addDialog = (options: DialogOptions) => { + const open = () => + dialogStore.value.push(Object.assign(options, { visible: true })); + if (options?.openDelay) { + useTimeoutFn(() => { + open(); + }, options.openDelay); + } else { + open(); + } +}; + +const closeDialog = (options: DialogOptions, index: number, args?: any) => { + dialogStore.value.splice(index, 1); + options.closeCallBack && options.closeCallBack({ options, index, args }); +}; + +const closeAllDialog = () => { + dialogStore.value = []; +}; + +const ReDialog = withInstall(reDialog); + +export type { EventType, ArgsType, DialogProps, ButtonProps, DialogOptions }; +export { ReDialog, dialogStore, addDialog, closeDialog, closeAllDialog }; diff --git a/src/components/ReDialog/index.vue b/src/components/ReDialog/index.vue new file mode 100644 index 0000000..7e9143d --- /dev/null +++ b/src/components/ReDialog/index.vue @@ -0,0 +1,118 @@ + + + diff --git a/src/components/ReDialog/type.ts b/src/components/ReDialog/type.ts new file mode 100644 index 0000000..fe4d4a3 --- /dev/null +++ b/src/components/ReDialog/type.ts @@ -0,0 +1,216 @@ +import type { CSSProperties, VNode, Component } from "vue"; + +type DoneFn = (cancel?: boolean) => void; +type EventType = "open" | "close" | "openAutoFocus" | "closeAutoFocus"; +type ArgsType = { + /** `cancel` 点击取消按钮、`sure` 点击确定按钮、`close` 点击右上角关闭按钮或者空白页 */ + command: "cancel" | "sure" | "close"; +}; + +/** https://element-plus.org/zh-CN/component/dialog.html#attributes */ +type DialogProps = { + /** `Dialog` 的显示与隐藏 */ + visible?: boolean; + /** `Dialog` 的标题 */ + title?: string; + /** `Dialog` 的宽度,默认 `50%` */ + width?: string | number; + /** 是否为全屏 `Dialog`,默认 `false` */ + fullscreen?: boolean; + /** `Dialog CSS` 中的 `margin-top` 值,默认 `15vh` */ + top?: string; + /** 是否需要遮罩层,默认 `true` */ + modal?: boolean; + /** `Dialog` 自身是否插入至 `body` 元素上。嵌套的 `Dialog` 必须指定该属性并赋值为 `true`,默认 `false` */ + appendToBody?: boolean; + /** 是否在 `Dialog` 出现时将 `body` 滚动锁定,默认 `true` */ + lockScroll?: boolean; + /** `Dialog` 的自定义类名 */ + class?: string; + /** `Dialog` 的自定义样式 */ + style?: CSSProperties; + /** `Dialog` 打开的延时时间,单位毫秒,默认 `0` */ + openDelay?: number; + /** `Dialog` 关闭的延时时间,单位毫秒,默认 `0` */ + closeDelay?: number; + /** 是否可以通过点击 `modal` 关闭 `Dialog`,默认 `true` */ + closeOnClickModal?: boolean; + /** 是否可以通过按下 `ESC` 关闭 `Dialog`,默认 `true` */ + closeOnPressEscape?: boolean; + /** 是否显示关闭按钮,默认 `true` */ + showClose?: boolean; + /** 关闭前的回调,会暂停 `Dialog` 的关闭. 回调函数内执行 `done` 参数方法的时候才是真正关闭对话框的时候 */ + beforeClose?: (done: DoneFn) => void; + /** 为 `Dialog` 启用可拖拽功能,默认 `false` */ + draggable?: boolean; + /** 是否让 `Dialog` 的 `header` 和 `footer` 部分居中排列,默认 `false` */ + center?: boolean; + /** 是否水平垂直对齐对话框,默认 `false` */ + alignCenter?: boolean; + /** 当关闭 `Dialog` 时,销毁其中的元素,默认 `false` */ + destroyOnClose?: boolean; +}; + +type BtnClickDialog = { + options?: DialogOptions; + index?: number; +}; +type BtnClickButton = { + btn?: ButtonProps; + index?: number; +}; +/** https://element-plus.org/zh-CN/component/button.html#button-attributes */ +type ButtonProps = { + /** 按钮文字 */ + label: string; + /** 按钮尺寸 */ + size?: "large" | "default" | "small"; + /** 按钮类型 */ + type?: "primary" | "success" | "warning" | "danger" | "info"; + /** 是否为朴素按钮,默认 `false` */ + plain?: boolean; + /** 是否为文字按钮,默认 `false` */ + text?: boolean; + /** 是否显示文字按钮背景颜色,默认 `false` */ + bg?: boolean; + /** 是否为链接按钮,默认 `false` */ + link?: boolean; + /** 是否为圆角按钮,默认 `false` */ + round?: boolean; + /** 是否为圆形按钮,默认 `false` */ + circle?: boolean; + /** 是否为加载中状态,默认 `false` */ + loading?: boolean; + /** 自定义加载中状态图标组件 */ + loadingIcon?: string | Component; + /** 按钮是否为禁用状态,默认 `false` */ + disabled?: boolean; + /** 图标组件 */ + icon?: string | Component; + /** 是否开启原生 `autofocus` 属性,默认 `false` */ + autofocus?: boolean; + /** 原生 `type` 属性,默认 `button` */ + nativeType?: "button" | "submit" | "reset"; + /** 自动在两个中文字符之间插入空格 */ + autoInsertSpace?: boolean; + /** 自定义按钮颜色, 并自动计算 `hover` 和 `active` 触发后的颜色 */ + color?: string; + /** `dark` 模式, 意味着自动设置 `color` 为 `dark` 模式的颜色,默认 `false` */ + dark?: boolean; + /** 自定义元素标签 */ + tag?: string | Component; + /** 点击按钮后触发的回调 */ + btnClick?: ({ + dialog, + button + }: { + /** 当前 `Dialog` 信息 */ + dialog: BtnClickDialog; + /** 当前 `button` 信息 */ + button: BtnClickButton; + }) => void; +}; + +interface DialogOptions extends DialogProps { + /** 内容区组件的 `props`,可通过 `defineProps` 接收 */ + props?: any; + /** 是否隐藏 `Dialog` 按钮操作区的内容 */ + hideFooter?: boolean; + /** + * @description 自定义对话框标题的内容渲染器 + * @see {@link https://element-plus.org/zh-CN/component/dialog.html#%E8%87%AA%E5%AE%9A%E4%B9%89%E5%A4%B4%E9%83%A8} + */ + headerRenderer?: ({ + close, + titleId, + titleClass + }: { + close: Function; + titleId: string; + titleClass: string; + }) => VNode | Component; + /** 自定义内容渲染器 */ + contentRenderer?: ({ + options, + index + }: { + options: DialogOptions; + index: number; + }) => VNode | Component; + /** 自定义按钮操作区的内容渲染器,会覆盖`footerButtons`以及默认的 `取消` 和 `确定` 按钮 */ + footerRenderer?: ({ + options, + index + }: { + options: DialogOptions; + index: number; + }) => VNode | Component; + /** 自定义底部按钮操作 */ + footerButtons?: Array; + /** `Dialog` 打开后的回调 */ + open?: ({ + options, + index + }: { + options: DialogOptions; + index: number; + }) => void; + /** `Dialog` 关闭后的回调(只有点击右上角关闭按钮或者空白页关闭页面时才会触发) */ + close?: ({ + options, + index + }: { + options: DialogOptions; + index: number; + }) => void; + /** `Dialog` 关闭后的回调。 `args` 返回的 `command` 值解析:`cancel` 点击取消按钮、`sure` 点击确定按钮、`close` 点击右上角关闭按钮或者空白页 */ + closeCallBack?: ({ + options, + index, + args + }: { + options: DialogOptions; + index: number; + args: any; + }) => void; + /** 输入焦点聚焦在 `Dialog` 内容时的回调 */ + openAutoFocus?: ({ + options, + index + }: { + options: DialogOptions; + index: number; + }) => void; + /** 输入焦点从 `Dialog` 内容失焦时的回调 */ + closeAutoFocus?: ({ + options, + index + }: { + options: DialogOptions; + index: number; + }) => void; + /** 点击底部取消按钮的回调,会暂停 `Dialog` 的关闭. 回调函数内执行 `done` 参数方法的时候才是真正关闭对话框的时候 */ + beforeCancel?: ( + done: Function, + { + options, + index + }: { + options: DialogOptions; + index: number; + } + ) => void; + /** 点击底部确定按钮的回调,会暂停 `Dialog` 的关闭. 回调函数内执行 `done` 参数方法的时候才是真正关闭对话框的时候 */ + beforeSure?: ( + done: Function, + { + options, + index + }: { + options: DialogOptions; + index: number; + } + ) => void; +} + +export type { EventType, ArgsType, DialogProps, ButtonProps, DialogOptions }; diff --git a/src/components/RePureTableBar/index.ts b/src/components/RePureTableBar/index.ts new file mode 100644 index 0000000..31b8a16 --- /dev/null +++ b/src/components/RePureTableBar/index.ts @@ -0,0 +1,5 @@ +import pureTableBar from "./src/bar"; +import { withInstall } from "@pureadmin/utils"; + +/** 配合 `@pureadmin/table` 实现快速便捷的表格操作 https://github.com/pure-admin/pure-admin-table */ +export const PureTableBar = withInstall(pureTableBar); diff --git a/src/components/RePureTableBar/src/bar.tsx b/src/components/RePureTableBar/src/bar.tsx new file mode 100644 index 0000000..36b529f --- /dev/null +++ b/src/components/RePureTableBar/src/bar.tsx @@ -0,0 +1,339 @@ +import { useEpThemeStoreHook } from "@/store/modules/epTheme"; +import { delay, getKeyList, cloneDeep } from "@pureadmin/utils"; +import { defineComponent, ref, computed, type PropType, nextTick } from "vue"; + +import Sortable from "sortablejs"; +import DragIcon from "./svg/drag.svg?component"; +import ExpandIcon from "./svg/expand.svg?component"; +import RefreshIcon from "./svg/refresh.svg?component"; +import SettingIcon from "./svg/settings.svg?component"; +import CollapseIcon from "./svg/collapse.svg?component"; + +const props = { + /** 头部最左边的标题 */ + title: { + type: String, + default: "列表" + }, + /** 对于树形表格,如果想启用展开和折叠功能,传入当前表格的ref即可 */ + tableRef: { + type: Object as PropType + }, + /** 需要展示的列 */ + columns: { + type: Array as PropType, + default: () => [] + } +}; + +export default defineComponent({ + name: "PureTableBar", + props, + emits: ["refresh"], + setup(props, { emit, slots, attrs }) { + const buttonRef = ref(); + const size = ref("default"); + const isExpandAll = ref(true); + const loading = ref(false); + const checkAll = ref(true); + const isIndeterminate = ref(false); + let checkColumnList = getKeyList(cloneDeep(props?.columns), "label"); + const checkedColumns = ref(checkColumnList); + const dynamicColumns = ref(cloneDeep(props?.columns)); + + const getDropdownItemStyle = computed(() => { + return s => { + return { + background: + s === size.value ? useEpThemeStoreHook().epThemeColor : "", + color: s === size.value ? "#fff" : "var(--el-text-color-primary)" + }; + }; + }); + + const iconClass = computed(() => { + return [ + "text-black", + "dark:text-white", + "duration-100", + "hover:!text-primary", + "cursor-pointer", + "outline-none" + ]; + }); + + const topClass = computed(() => { + return [ + "flex", + "justify-between", + "pt-[3px]", + "px-[11px]", + "border-b-[1px]", + "border-solid", + "border-[#dcdfe6]", + "dark:border-[#303030]" + ]; + }); + + function onReFresh() { + loading.value = true; + emit("refresh"); + delay(500).then(() => (loading.value = false)); + } + + function onExpand() { + isExpandAll.value = !isExpandAll.value; + toggleRowExpansionAll(props.tableRef.data, isExpandAll.value); + } + + function toggleRowExpansionAll(data, isExpansion) { + data.forEach(item => { + props.tableRef.toggleRowExpansion(item, isExpansion); + if (item.children !== undefined && item.children !== null) { + toggleRowExpansionAll(item.children, isExpansion); + } + }); + } + + function handleCheckAllChange(val: boolean) { + checkedColumns.value = val ? checkColumnList : []; + isIndeterminate.value = false; + dynamicColumns.value.map(column => + val ? (column.hide = false) : (column.hide = true) + ); + } + + function handleCheckedColumnsChange(value: string[]) { + const checkedCount = value.length; + checkAll.value = checkedCount === checkColumnList.length; + isIndeterminate.value = + checkedCount > 0 && checkedCount < checkColumnList.length; + } + + function handleCheckColumnListChange(val: boolean, label: string) { + dynamicColumns.value.filter(item => item.label === label)[0].hide = !val; + } + + async function onReset() { + checkAll.value = true; + isIndeterminate.value = false; + dynamicColumns.value = cloneDeep(props?.columns); + checkColumnList = []; + checkColumnList = await getKeyList(cloneDeep(props?.columns), "label"); + checkedColumns.value = checkColumnList; + } + + const dropdown = { + dropdown: () => ( + + (size.value = "large")} + > + 宽松 + + (size.value = "default")} + > + 默认 + + (size.value = "small")} + > + 紧凑 + + + ) + }; + + /** 列展示拖拽排序 */ + const rowDrop = (event: { preventDefault: () => void }) => { + event.preventDefault(); + nextTick(() => { + const wrapper: HTMLElement = document.querySelector( + ".el-checkbox-group>div" + ); + Sortable.create(wrapper, { + animation: 300, + handle: ".drag-btn", + onEnd: ({ newIndex, oldIndex, item }) => { + const targetThElem = item; + const wrapperElem = targetThElem.parentNode as HTMLElement; + const oldColumn = dynamicColumns.value[oldIndex]; + const newColumn = dynamicColumns.value[newIndex]; + if (oldColumn?.fixed || newColumn?.fixed) { + // 当前列存在fixed属性 则不可拖拽 + const oldThElem = wrapperElem.children[oldIndex] as HTMLElement; + if (newIndex > oldIndex) { + wrapperElem.insertBefore(targetThElem, oldThElem); + } else { + wrapperElem.insertBefore( + targetThElem, + oldThElem ? oldThElem.nextElementSibling : oldThElem + ); + } + return; + } + const currentRow = dynamicColumns.value.splice(oldIndex, 1)[0]; + dynamicColumns.value.splice(newIndex, 0, currentRow); + } + }); + }); + }; + + const isFixedColumn = (label: string) => { + return dynamicColumns.value.filter(item => item.label === label)[0].fixed + ? true + : false; + }; + + const reference = { + reference: () => ( + (buttonRef.value = e.currentTarget)} + /> + ) + }; + + return () => ( + <> +
+
+

{props.title}

+
+ {slots?.buttons ? ( +
{slots.buttons()}
+ ) : null} + {props.tableRef?.size ? ( + <> + + onExpand()} + /> + + + + ) : null} + + onReFresh()} + /> + + + + + + + + + + +
+ handleCheckAllChange(value)} + /> + onReset()}> + 重置 + +
+ +
+ handleCheckedColumnsChange(value)} + > + + {checkColumnList.map(item => { + return ( +
+ void; + }) => rowDrop(event)} + /> + + handleCheckColumnListChange(value, item) + } + > + + {item} + + +
+ ); + })} +
+
+
+
+
+ + +
+ {slots.default({ + size: size.value, + dynamicColumns: dynamicColumns.value + })} +
+ + ); + } +}); diff --git a/src/components/RePureTableBar/src/svg/collapse.svg b/src/components/RePureTableBar/src/svg/collapse.svg new file mode 100644 index 0000000..d84f870 --- /dev/null +++ b/src/components/RePureTableBar/src/svg/collapse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/components/RePureTableBar/src/svg/drag.svg b/src/components/RePureTableBar/src/svg/drag.svg new file mode 100644 index 0000000..8c37370 --- /dev/null +++ b/src/components/RePureTableBar/src/svg/drag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/components/RePureTableBar/src/svg/expand.svg b/src/components/RePureTableBar/src/svg/expand.svg new file mode 100644 index 0000000..dbbd4ed --- /dev/null +++ b/src/components/RePureTableBar/src/svg/expand.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/components/RePureTableBar/src/svg/refresh.svg b/src/components/RePureTableBar/src/svg/refresh.svg new file mode 100644 index 0000000..140288c --- /dev/null +++ b/src/components/RePureTableBar/src/svg/refresh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/components/RePureTableBar/src/svg/settings.svg b/src/components/RePureTableBar/src/svg/settings.svg new file mode 100644 index 0000000..be23a0b --- /dev/null +++ b/src/components/RePureTableBar/src/svg/settings.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/config/index.ts b/src/config/index.ts index 9b0a372..4cd3016 100644 --- a/src/config/index.ts +++ b/src/config/index.ts @@ -49,4 +49,7 @@ export const getServerConfig = async (app: App): Promise => { }); }; -export { getConfig, setConfig }; +/** 本地响应式存储的命名空间 */ +const responsiveStorageNameSpace = () => getConfig().ResponsiveStorageNameSpace; + +export { getConfig, setConfig, responsiveStorageNameSpace }; diff --git a/src/layout/components/appMain.vue b/src/layout/components/appMain.vue index e9b5450..3f2a244 100644 --- a/src/layout/components/appMain.vue +++ b/src/layout/components/appMain.vue @@ -130,16 +130,16 @@ const transitionMain = defineComponent({ diff --git a/src/layout/components/notice/index.vue b/src/layout/components/notice/index.vue index ea0502f..125a265 100644 --- a/src/layout/components/notice/index.vue +++ b/src/layout/components/notice/index.vue @@ -46,8 +46,8 @@ notices.value.map(v => (noticesNum.value += v.list.length)); display: flex; align-items: center; justify-content: center; - height: 48px; width: 60px; + height: 48px; cursor: pointer; .header-notice-icon { @@ -59,7 +59,7 @@ notices.value.map(v => (noticesNum.value += v.list.length)); width: 330px; .noticeList-container { - padding: 15px 24px 0 24px; + padding: 15px 24px 0; } :deep(.el-tabs__header) { @@ -71,7 +71,7 @@ notices.value.map(v => (noticesNum.value += v.list.length)); } :deep(.el-tabs__nav-wrap) { - padding: 0 36px 0 36px; + padding: 0 36px; } } diff --git a/src/layout/components/notice/noticeItem.vue b/src/layout/components/notice/noticeItem.vue index 032e6ac..b7a2b14 100644 --- a/src/layout/components/notice/noticeItem.vue +++ b/src/layout/components/notice/noticeItem.vue @@ -118,6 +118,7 @@ function hoverDescription(event, description) { align-items: flex-start; justify-content: space-between; padding: 12px 0; + // border-bottom: 1px solid #f0f0f0; .notice-container-avatar { @@ -127,15 +128,15 @@ function hoverDescription(event, description) { .notice-container-text { display: flex; + flex: 1; flex-direction: column; justify-content: space-between; - flex: 1; .notice-text-title { display: flex; margin-bottom: 8px; - font-weight: 400; font-size: 14px; + font-weight: 400; line-height: 1.5715; cursor: pointer; @@ -143,8 +144,8 @@ function hoverDescription(event, description) { flex: 1; width: 200px; overflow: hidden; - white-space: nowrap; text-overflow: ellipsis; + white-space: nowrap; } .notice-title-extra { @@ -162,8 +163,8 @@ function hoverDescription(event, description) { .notice-text-description { display: -webkit-box; - text-overflow: ellipsis; overflow: hidden; + text-overflow: ellipsis; -webkit-line-clamp: 2; -webkit-box-orient: vertical; } diff --git a/src/layout/components/panel/index.vue b/src/layout/components/panel/index.vue index 85241af..d5f4f5a 100644 --- a/src/layout/components/panel/index.vue +++ b/src/layout/components/panel/index.vue @@ -60,9 +60,9 @@ emitter.on("openPanel", () => { @@ -71,23 +71,23 @@ emitter.on("openPanel", () => { position: fixed; top: 0; left: 0; + z-index: -1; + background: rgb(0 0 0 / 20%); opacity: 0; transition: opacity 0.3s cubic-bezier(0.7, 0.3, 0.1, 1); - background: rgba(0, 0, 0, 0.2); - z-index: -1; } .right-panel { - width: 100%; - max-width: 315px; - height: 100vh; position: fixed; top: 0; right: 0; - box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05); + z-index: 40000; + width: 100%; + max-width: 315px; + height: 100vh; + box-shadow: 0 0 15px 0 rgb(0 0 0 / 5%); transition: all 0.25s cubic-bezier(0.7, 0.3, 0.1, 1); transform: translate(100%); - z-index: 40000; } .show { @@ -95,9 +95,9 @@ emitter.on("openPanel", () => { .right-panel-background { z-index: 20000; - opacity: 1; width: 100%; height: 100%; + opacity: 1; } .right-panel { @@ -106,20 +106,20 @@ emitter.on("openPanel", () => { } .handle-button { - width: 48px; - height: 48px; position: absolute; + top: 45%; left: -48px; - text-align: center; - font-size: 24px; - border-radius: 6px 0 0 6px !important; z-index: 0; + width: 48px; + height: 48px; + font-size: 24px; + line-height: 48px; + color: #fff; + text-align: center; pointer-events: auto; cursor: pointer; - color: #fff; - line-height: 48px; - top: 45%; - background: rgb(24, 144, 255); + background: rgb(24 144 255); + border-radius: 6px 0 0 6px !important; i { font-size: 24px; @@ -128,24 +128,24 @@ emitter.on("openPanel", () => { } .right-panel-items { - margin-top: 60px; height: calc(100vh - 60px); + margin-top: 60px; overflow-y: auto; } .project-configuration { + position: fixed; + top: 15px; display: flex; + align-items: center; + justify-content: space-between; width: 100%; height: 30px; - position: fixed; - justify-content: space-between; - align-items: center; - top: 15px; margin-left: 10px; } :deep(.el-divider--horizontal) { width: 90%; - margin: 20px auto 0 auto; + margin: 20px auto 0; } diff --git a/src/layout/components/search/components/SearchResult.vue b/src/layout/components/search/components/SearchResult.vue index 7bdf397..f73e94c 100644 --- a/src/layout/components/search/components/SearchResult.vue +++ b/src/layout/components/search/components/SearchResult.vue @@ -84,11 +84,11 @@ function handleTo() { display: flex; align-items: center; height: 56px; - margin-top: 8px; padding: 14px; - border-radius: 4px; + margin-top: 8px; cursor: pointer; border: 0.1px solid #ccc; + border-radius: 4px; transition: all 0.3s; &-title { diff --git a/src/layout/components/setting/index.vue b/src/layout/components/setting/index.vue index 206d9bf..b7e3544 100644 --- a/src/layout/components/setting/index.vue +++ b/src/layout/components/setting/index.vue @@ -418,35 +418,35 @@ onBeforeMount(() => { li { display: flex; - justify-content: space-between; align-items: center; + justify-content: space-between; margin: 25px; } } .pure-datatheme { + display: block; width: 100%; height: 50px; - text-align: center; - display: block; padding-top: 25px; + text-align: center; } .pure-theme { - margin-top: 25px; - width: 100%; - height: 50px; display: flex; flex-wrap: wrap; justify-content: space-around; + width: 100%; + height: 50px; + margin-top: 25px; li { + position: relative; width: 18%; height: 45px; - background: #f0f2f5; - position: relative; overflow: hidden; cursor: pointer; + background: #f0f2f5; border-radius: 4px; box-shadow: 0 1px 2.5px 0 rgb(0 0 0 / 18%); @@ -459,13 +459,13 @@ onBeforeMount(() => { } &:nth-child(2) { - width: 70%; - height: 30%; + position: absolute; top: 0; right: 0; + width: 70%; + height: 30%; background: #fff; box-shadow: 0 0 1px #888; - position: absolute; } } } @@ -491,13 +491,13 @@ onBeforeMount(() => { } &:nth-child(2) { - width: 30%; - height: 70%; + position: absolute; bottom: 0; left: 0; + width: 30%; + height: 70%; background: #fff; box-shadow: 0 0 1px #888; - position: absolute; } } } @@ -505,11 +505,11 @@ onBeforeMount(() => { } .theme-color { + display: flex; + justify-content: center; width: 100%; height: 40px; margin-top: 20px; - display: flex; - justify-content: center; li { float: left; @@ -519,8 +519,8 @@ onBeforeMount(() => { margin-right: 8px; font-weight: 700; text-align: center; - border-radius: 2px; cursor: pointer; + border-radius: 2px; &:nth-child(2) { border: 1px solid #ddd; diff --git a/src/layout/components/sidebar/breadCrumb.vue b/src/layout/components/sidebar/breadCrumb.vue index 242530b..ef29bd1 100644 --- a/src/layout/components/sidebar/breadCrumb.vue +++ b/src/layout/components/sidebar/breadCrumb.vue @@ -12,12 +12,6 @@ const router = useRouter(); const routes: any = router.options.routes; const multiTags: any = useMultiTagsStoreHook().multiTags; -const isDashboard = (route: RouteLocationMatched): boolean | string => { - const name = route && (route.name as string); - if (!name) return false; - return name.trim().toLocaleLowerCase() === "Welcome".toLocaleLowerCase(); -}; - const getBreadcrumb = (): void => { // 当前路由信息 let currentRoute; @@ -35,28 +29,24 @@ const getBreadcrumb = (): void => { } }); } else { - currentRoute = findRouteByPath(router.currentRoute.value.path, multiTags); + currentRoute = findRouteByPath(router.currentRoute.value.path, routes); } + // 当前路由的父级路径组成的数组 - const parentRoutes = getParentPaths(router.currentRoute.value.path, routes); + const parentRoutes = getParentPaths( + router.currentRoute.value.name as string, + routes, + "name" + ); // 存放组成面包屑的数组 - let matched = []; + const matched = []; + // 获取每个父级路径对应的路由信息 parentRoutes.forEach(path => { if (path !== "/") matched.push(findRouteByPath(path, routes)); }); - if (currentRoute?.path !== "/welcome") matched.push(currentRoute); - - if (!isDashboard(matched[0])) { - matched = [ - { - path: "/welcome", - parentPath: "/", - meta: { title: "menus.hshome" } - } as unknown as RouteLocationMatched - ].concat(matched); - } + matched.push(currentRoute); matched.forEach((item, index) => { if (currentRoute?.query || currentRoute?.params) return; @@ -91,6 +81,9 @@ watch( () => route.path, () => { getBreadcrumb(); + }, + { + deep: true } ); diff --git a/src/layout/components/sidebar/horizontal.vue b/src/layout/components/sidebar/horizontal.vue index 6d2574f..4b14eff 100644 --- a/src/layout/components/sidebar/horizontal.vue +++ b/src/layout/components/sidebar/horizontal.vue @@ -19,7 +19,7 @@ const { title, routers, logout, - backHome, + backTopMenu, onPanel, menuSelect, username, @@ -45,7 +45,7 @@ watch( v-loading="usePermissionStoreHook().wholeMenus.length === 0" class="horizontal-header" > -
+
logo {{ title }}
@@ -156,9 +156,9 @@ watch( max-width: 120px; ::v-deep(.el-dropdown-menu__item) { - min-width: 100%; display: inline-flex; flex-wrap: wrap; + min-width: 100%; } } diff --git a/src/layout/components/sidebar/logo.vue b/src/layout/components/sidebar/logo.vue index f079b3b..78a55be 100644 --- a/src/layout/components/sidebar/logo.vue +++ b/src/layout/components/sidebar/logo.vue @@ -1,4 +1,5 @@