diff --git a/README.zh_CN.md b/README.zh_CN.md
index 8068e8292..16e54d0fe 100644
--- a/README.zh_CN.md
+++ b/README.zh_CN.md
@@ -1,6 +1,6 @@
@@ -12,11 +12,11 @@
[![gitee stars](https://gitee.com/honghuangdc/soybean-admin/badge/star.svg)](https://gitee.com/honghuangdc/soybean-admin)
> [!NOTE]
-> 如果您觉得 `Soybean Admin`对您有所帮助,或者您喜欢我们的项目,请在 GitHub 上给我们一个 ⭐️。您的支持是我们持续改进和增加新功能的动力!感谢您的支持!
+> 如果您觉得 `SoybeanAdmin`对您有所帮助,或者您喜欢我们的项目,请在 GitHub 上给我们一个 ⭐️。您的支持是我们持续改进和增加新功能的动力!感谢您的支持!
## 简介
-[`Soybean Admin`](https://github.com/soybeanjs/soybean-admin) 是一个清新优雅、高颜值且功能强大的后台管理模板,基于最新的前端技术栈,包括 Vue3, Vite5, TypeScript, Pinia 和 UnoCSS。它内置了丰富的主题配置和组件,代码规范严谨,实现了自动化的文件路由系统。此外,它还采用了基于 ApiFox 的在线Mock数据方案。`Soybean Admin` 为您提供了一站式的后台管理解决方案,无需额外配置,开箱即用。同样是一个快速学习前沿技术的最佳实践。
+[`SoybeanAdmin`](https://github.com/soybeanjs/soybean-admin) 是一个清新优雅、高颜值且功能强大的后台管理模板,基于最新的前端技术栈,包括 Vue3, Vite5, TypeScript, Pinia 和 UnoCSS。它内置了丰富的主题配置和组件,代码规范严谨,实现了自动化的文件路由系统。此外,它还采用了基于 ApiFox 的在线Mock数据方案。`SoybeanAdmin` 为您提供了一站式的后台管理解决方案,无需额外配置,开箱即用。同样是一个快速学习前沿技术的最佳实践。
## 特性
@@ -105,6 +105,15 @@ pnpm dev
pnpm build
```
+## 周边生态
+
+- [electron-mock-admin](https://github.com/lixin59/electron-mock-api): 一个 Mock Api 管理系统,帮助前端开发伙伴快速实现接口的 mock。
+- [T-Shell](https://github.com/TheBlindM/T-Shell): 是一个可配置命令提示的终端模拟器和 SSH 客户端。
+- [pea](https://github.com/haitang1894/pea) : 采用SpringBoot3.2 + JDK21、MyBatis-Plus、SpringSecurity安全框架等,适配 [soybean-admin](https://gitee.com/honghuangdc/soybean-admin) 开发的简单权限系统。
+- [MalusAdmin](https://github.com/pridejoy/MalusAdmin): 基于 Vue3/TypeScript/NaiveUI 和 NET7 & Sqlsugar 开发的后台管理框架。采用最原生最简洁的方式来实现, 前端清新优雅高颜值,后端 结构清晰,优雅易懂,功能强大。
+- [PanisAdmin](https://github.com/paynezhuang/panis-admin): 采用SpringBoot3、SaToken、MySQL等框架开发,二次修改 [soybean-admin](https://github.com/soybeanjs/soybean-admin),适配动态菜单/按钮级别的鉴权,保留原汁原味、清新优雅、高颜值的后台管理系统脚手架。
+
+
## 如何贡献
我们热烈欢迎并感谢所有形式的贡献。如果您有任何想法或建议,欢迎通过提交 [pull requests](https://github.com/soybeanjs/soybean-admin/pulls) 或创建 GitHub [issue](https://github.com/soybeanjs/soybean-admin/issues/new) 来分享。
@@ -126,6 +135,7 @@ pnpm build
[Soybean](https://github.com/honghuangdc)
+
## 贡献者
感谢以下贡献者的贡献。如果您想为本项目做出贡献,请参考 [如何贡献](#如何贡献)。
@@ -136,7 +146,7 @@ pnpm build
## 交流
-`Soybean Admin` 是完全开源免费的项目,在帮助开发者更方便地进行中大型管理系统开发,同时也提供微信和 QQ 交流群,使用问题欢迎在群内提问。
+`SoybeanAdmin` 是完全开源免费的项目,在帮助开发者更方便地进行中大型管理系统开发,同时也提供微信和 QQ 交流群,使用问题欢迎在群内提问。
QQ交流群
diff --git a/build/plugins/router.ts b/build/plugins/router.ts
index 952e15d7c..40a5ae518 100644
--- a/build/plugins/router.ts
+++ b/build/plugins/router.ts
@@ -9,7 +9,18 @@ export function setupElegantRouter() {
blank: 'src/layouts/blank-layout/index.vue'
},
customRoutes: {
- names: ['exception_403', 'exception_404', 'exception_500']
+ names: [
+ 'exception_403',
+ 'exception_404',
+ 'exception_500',
+ 'document_project',
+ 'document_project-link',
+ 'document_vue',
+ 'document_vite',
+ 'document_unocss',
+ 'document_naive',
+ 'document_antd'
+ ]
},
routePathTransformer(routeName, routePath) {
const key = routeName as RouteKey;
diff --git a/eslint.config.js b/eslint.config.js
index 6e3149c4c..cc9dfd084 100644
--- a/eslint.config.js
+++ b/eslint.config.js
@@ -7,7 +7,7 @@ export default defineConfig(
'vue/multi-word-component-names': [
'warn',
{
- ignores: ['index', 'App', '[id]']
+ ignores: ['index', 'App', '[id]', '[url]']
}
],
'vue/component-name-in-template-casing': [
diff --git a/package.json b/package.json
index 39af44ec2..6fa164b8f 100644
--- a/package.json
+++ b/package.json
@@ -1,8 +1,7 @@
{
"name": "soybean-admin",
"type": "module",
- "version": "1.0.5",
- "packageManager": "pnpm@9.0.5",
+ "version": "1.0.9",
"description": "A fresh and elegant admin template, based on Vue3、Vite3、TypeScript、NaiveUI and UnoCSS. 一个基于Vue3、Vite3、TypeScript、NaiveUI and UnoCSS的清新优雅的中后台模版。",
"author": {
"name": "Soybean",
@@ -27,6 +26,10 @@
"ant-design-vue v4",
"UnoCSS"
],
+ "engines": {
+ "node": ">=18.12.0",
+ "pnpm": ">=8.7.0"
+ },
"scripts": {
"build": "vite build --mode prod",
"build:test": "vite build --mode test",
@@ -52,25 +55,25 @@
"@sa/utils": "workspace:*",
"@vueuse/core": "10.9.0",
"clipboard": "2.0.11",
- "dayjs": "1.11.10",
+ "dayjs": "1.11.11",
"echarts": "5.5.0",
"lodash-es": "4.17.21",
- "naive-ui": "2.38.1",
+ "naive-ui": "2.38.2",
"nprogress": "0.2.0",
"pinia": "2.1.7",
- "vue": "3.4.25",
+ "vue": "3.4.26",
"vue-draggable-plus": "0.4.0",
"vue-i18n": "9.13.1",
"vue-router": "4.3.2"
},
"devDependencies": {
"@elegant-router/vue": "0.3.6",
- "@iconify/json": "2.2.204",
+ "@iconify/json": "2.2.206",
"@sa/scripts": "workspace:*",
"@sa/uno-preset": "workspace:*",
- "@soybeanjs/eslint-config": "1.3.2",
+ "@soybeanjs/eslint-config": "1.3.4",
"@types/lodash-es": "4.17.12",
- "@types/node": "20.12.7",
+ "@types/node": "20.12.8",
"@types/nprogress": "0.2.3",
"@unocss/eslint-config": "0.59.4",
"@unocss/preset-icons": "0.59.4",
@@ -80,21 +83,21 @@
"@unocss/vite": "0.59.4",
"@vitejs/plugin-vue": "5.0.4",
"@vitejs/plugin-vue-jsx": "3.1.0",
- "eslint": "9.1.1",
+ "eslint": "9.2.0",
"eslint-plugin-vue": "9.25.0",
"lint-staged": "15.2.2",
- "sass": "1.75.0",
+ "sass": "1.76.0",
"simple-git-hooks": "2.11.1",
- "tsx": "4.7.3",
+ "tsx": "4.9.1",
"typescript": "5.4.5",
- "unplugin-icons": "0.18.5",
- "unplugin-vue-components": "0.26.0",
- "vite": "5.2.10",
+ "unplugin-icons": "0.19.0",
+ "unplugin-vue-components": "0.27.0",
+ "vite": "5.2.11",
"vite-plugin-progress": "0.0.7",
"vite-plugin-svg-icons": "2.0.1",
- "vite-plugin-vue-devtools": "7.1.2",
+ "vite-plugin-vue-devtools": "7.1.3",
"vue-eslint-parser": "9.4.2",
- "vue-tsc": "2.0.14"
+ "vue-tsc": "2.0.16"
},
"simple-git-hooks": {
"commit-msg": "pnpm sa git-commit-verify",
diff --git a/packages/axios/package.json b/packages/axios/package.json
index f273ce146..776b91b7c 100644
--- a/packages/axios/package.json
+++ b/packages/axios/package.json
@@ -1,6 +1,6 @@
{
"name": "@sa/axios",
- "version": "1.0.5",
+ "version": "1.0.9",
"exports": {
".": "./src/index.ts"
},
diff --git a/packages/axios/src/index.ts b/packages/axios/src/index.ts
index 64a75c32e..08846c24e 100644
--- a/packages/axios/src/index.ts
+++ b/packages/axios/src/index.ts
@@ -48,7 +48,9 @@ function createCommonRequest
(
instance.interceptors.response.use(
async response => {
- if (opts.isBackendSuccess(response)) {
+ const responseType: ResponseType = (response.config?.responseType as ResponseType) || 'json';
+
+ if (responseType !== 'json' || opts.isBackendSuccess(response)) {
return Promise.resolve(response);
}
diff --git a/packages/color/package.json b/packages/color/package.json
index 9d9aaf30a..2ec035faf 100644
--- a/packages/color/package.json
+++ b/packages/color/package.json
@@ -1,6 +1,6 @@
{
"name": "@sa/color",
- "version": "1.0.5",
+ "version": "1.0.9",
"exports": {
".": "./src/index.ts"
},
diff --git a/packages/hooks/package.json b/packages/hooks/package.json
index 4bfe928f3..e7f047b43 100644
--- a/packages/hooks/package.json
+++ b/packages/hooks/package.json
@@ -1,6 +1,6 @@
{
"name": "@sa/hooks",
- "version": "1.0.5",
+ "version": "1.0.9",
"exports": {
".": "./src/index.ts"
},
diff --git a/packages/hooks/src/index.ts b/packages/hooks/src/index.ts
index a36c84362..a6a330bd9 100644
--- a/packages/hooks/src/index.ts
+++ b/packages/hooks/src/index.ts
@@ -7,4 +7,5 @@ import useHookTable from './use-table';
export { useBoolean, useLoading, useCountDown, useContext, useSvgIconRender, useHookTable };
+export * from './use-signal';
export * from './use-table';
diff --git a/packages/hooks/src/use-signal.ts b/packages/hooks/src/use-signal.ts
new file mode 100644
index 000000000..fa9d62650
--- /dev/null
+++ b/packages/hooks/src/use-signal.ts
@@ -0,0 +1,144 @@
+import { computed, ref, shallowRef, triggerRef } from 'vue';
+import type {
+ ComputedGetter,
+ DebuggerOptions,
+ Ref,
+ ShallowRef,
+ WritableComputedOptions,
+ WritableComputedRef
+} from 'vue';
+
+type Updater = (value: T) => T;
+type Mutator = (value: T) => void;
+
+/**
+ * Signal is a reactive value that can be set, updated or mutated
+ *
+ * @example
+ * ```ts
+ * const count = useSignal(0);
+ *
+ * // `watchEffect`
+ * watchEffect(() => {
+ * console.log(count());
+ * });
+ *
+ * // watch
+ * watch(count, value => {
+ * console.log(value);
+ * });
+ *
+ * // useComputed
+ * const double = useComputed(() => count() * 2);
+ * const writeableDouble = useComputed({
+ * get: () => count() * 2,
+ * set: value => count.set(value / 2)
+ * });
+ * ```
+ */
+export interface Signal {
+ (): Readonly;
+ /**
+ * Set the value of the signal
+ *
+ * It recommend use `set` for primitive values
+ *
+ * @param value
+ */
+ set(value: T): void;
+ /**
+ * Update the value of the signal using an updater function
+ *
+ * It recommend use `update` for non-primitive values, only the first level of the object will be reactive.
+ *
+ * @param updater
+ */
+ update(updater: Updater): void;
+ /**
+ * Mutate the value of the signal using a mutator function
+ *
+ * this action will call `triggerRef`, so the value will be tracked on `watchEffect`.
+ *
+ * It recommend use `mutate` for non-primitive values, all levels of the object will be reactive.
+ *
+ * @param mutator
+ */
+ mutate(mutator: Mutator): void;
+ /**
+ * Get the reference of the signal
+ *
+ * Sometimes it can be useful to make `v-model` work with the signal
+ *
+ * ```vue
+ *
+ *
+ * ;
+ *
+ *
+ * ```
+ */
+ getRef(): Readonly>>;
+}
+
+export interface ReadonlySignal {
+ (): Readonly;
+}
+
+export interface SignalOptions {
+ /**
+ * Whether to use `ref` to store the value
+ *
+ * @default false use `sharedRef` to store the value
+ */
+ useRef?: boolean;
+}
+
+export function useSignal(initialValue: T, options?: SignalOptions): Signal {
+ const { useRef } = options || {};
+
+ const state = useRef ? (ref(initialValue) as Ref) : shallowRef(initialValue);
+
+ return createSignal(state);
+}
+
+export function useComputed(getter: ComputedGetter, debugOptions?: DebuggerOptions): ReadonlySignal;
+export function useComputed(options: WritableComputedOptions, debugOptions?: DebuggerOptions): Signal;
+export function useComputed(
+ getterOrOptions: ComputedGetter | WritableComputedOptions,
+ debugOptions?: DebuggerOptions
+) {
+ const isGetter = typeof getterOrOptions === 'function';
+
+ const computedValue = computed(getterOrOptions as any, debugOptions);
+
+ if (isGetter) {
+ return () => computedValue.value as ReadonlySignal;
+ }
+
+ return createSignal(computedValue);
+}
+
+function createSignal(state: ShallowRef | WritableComputedRef): Signal {
+ const signal = () => state.value;
+
+ signal.set = (value: T) => {
+ state.value = value;
+ };
+
+ signal.update = (updater: Updater) => {
+ state.value = updater(state.value);
+ };
+
+ signal.mutate = (mutator: Mutator) => {
+ mutator(state.value);
+ triggerRef(state);
+ };
+
+ signal.getRef = () => state as Readonly>>;
+
+ return signal;
+}
diff --git a/packages/materials/package.json b/packages/materials/package.json
index 8a22957c9..7bd5e6356 100644
--- a/packages/materials/package.json
+++ b/packages/materials/package.json
@@ -1,6 +1,6 @@
{
"name": "@sa/materials",
- "version": "1.0.5",
+ "version": "1.0.9",
"exports": {
".": "./src/index.ts"
},
diff --git a/packages/ofetch/package.json b/packages/ofetch/package.json
index 1d0d61a63..1cf25bfb9 100644
--- a/packages/ofetch/package.json
+++ b/packages/ofetch/package.json
@@ -1,6 +1,6 @@
{
"name": "@sa/fetch",
- "version": "1.0.5",
+ "version": "1.0.9",
"exports": {
".": "./src/index.ts"
},
diff --git a/packages/scripts/package.json b/packages/scripts/package.json
index 5d2c8f1ad..97e51eb6c 100644
--- a/packages/scripts/package.json
+++ b/packages/scripts/package.json
@@ -1,6 +1,6 @@
{
"name": "@sa/scripts",
- "version": "1.0.5",
+ "version": "1.0.9",
"bin": {
"sa": "./bin.ts"
},
@@ -13,15 +13,15 @@
}
},
"devDependencies": {
- "@soybeanjs/changelog": "0.3.22",
- "bumpp": "9.4.0",
+ "@soybeanjs/changelog": "0.3.23",
+ "bumpp": "9.4.1",
"c12": "1.10.0",
"cac": "6.7.14",
"consola": "3.2.3",
"enquirer": "2.4.1",
"execa": "8.0.1",
"kolorist": "1.8.0",
- "npm-check-updates": "16.14.19",
+ "npm-check-updates": "16.14.20",
"rimraf": "5.0.5"
}
}
diff --git a/packages/scripts/src/config/index.ts b/packages/scripts/src/config/index.ts
index e5978d147..4f84e3d26 100644
--- a/packages/scripts/src/config/index.ts
+++ b/packages/scripts/src/config/index.ts
@@ -19,6 +19,7 @@ const defaultOptions: CliOption = {
['style', 'Changes that do not affect the meaning of the code'],
['refactor', 'A code change that neither fixes a bug nor adds a feature'],
['perf', 'A code change that improves performance'],
+ ['optimize', 'A code change that optimizes code quality'],
['test', 'Adding missing tests or correcting existing tests'],
['build', 'Changes that affect the build system or external dependencies'],
['ci', 'Changes to our CI configuration files and scripts'],
@@ -27,6 +28,7 @@ const defaultOptions: CliOption = {
],
gitCommitScopes: [
['projects', 'project'],
+ ['packages', 'packages'],
['components', 'components'],
['hooks', 'hook functions'],
['utils', 'utils functions'],
diff --git a/packages/uno-preset/package.json b/packages/uno-preset/package.json
index 67b4e21f1..a53147355 100644
--- a/packages/uno-preset/package.json
+++ b/packages/uno-preset/package.json
@@ -1,6 +1,6 @@
{
"name": "@sa/uno-preset",
- "version": "1.0.5",
+ "version": "1.0.9",
"exports": {
".": "./src/index.ts"
},
diff --git a/packages/utils/package.json b/packages/utils/package.json
index 1e08e6112..c4b44c92f 100644
--- a/packages/utils/package.json
+++ b/packages/utils/package.json
@@ -1,6 +1,6 @@
{
"name": "@sa/utils",
- "version": "1.0.5",
+ "version": "1.0.9",
"exports": {
".": "./src/index.ts"
},
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index d41ed623d..32801203c 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -13,7 +13,7 @@ importers:
version: 2.5.1
'@iconify/vue':
specifier: 4.1.2
- version: 4.1.2(vue@3.4.25(typescript@5.4.5))
+ version: 4.1.2(vue@3.4.26(typescript@5.4.5))
'@sa/axios':
specifier: workspace:*
version: link:packages/axios
@@ -31,13 +31,13 @@ importers:
version: link:packages/utils
'@vueuse/core':
specifier: 10.9.0
- version: 10.9.0(vue@3.4.25(typescript@5.4.5))
+ version: 10.9.0(vue@3.4.26(typescript@5.4.5))
clipboard:
specifier: 2.0.11
version: 2.0.11
dayjs:
- specifier: 1.11.10
- version: 1.11.10
+ specifier: 1.11.11
+ version: 1.11.11
echarts:
specifier: 5.5.0
version: 5.5.0
@@ -45,33 +45,33 @@ importers:
specifier: 4.17.21
version: 4.17.21
naive-ui:
- specifier: 2.38.1
- version: 2.38.1(vue@3.4.25(typescript@5.4.5))
+ specifier: 2.38.2
+ version: 2.38.2(vue@3.4.26(typescript@5.4.5))
nprogress:
specifier: 0.2.0
version: 0.2.0
pinia:
specifier: 2.1.7
- version: 2.1.7(typescript@5.4.5)(vue@3.4.25(typescript@5.4.5))
+ version: 2.1.7(typescript@5.4.5)(vue@3.4.26(typescript@5.4.5))
vue:
- specifier: 3.4.25
- version: 3.4.25(typescript@5.4.5)
+ specifier: 3.4.26
+ version: 3.4.26(typescript@5.4.5)
vue-draggable-plus:
specifier: 0.4.0
version: 0.4.0(@types/sortablejs@1.15.8)
vue-i18n:
specifier: 9.13.1
- version: 9.13.1(vue@3.4.25(typescript@5.4.5))
+ version: 9.13.1(vue@3.4.26(typescript@5.4.5))
vue-router:
specifier: 4.3.2
- version: 4.3.2(vue@3.4.25(typescript@5.4.5))
+ version: 4.3.2(vue@3.4.26(typescript@5.4.5))
devDependencies:
'@elegant-router/vue':
specifier: 0.3.6
version: 0.3.6
'@iconify/json':
- specifier: 2.2.204
- version: 2.2.204
+ specifier: 2.2.206
+ version: 2.2.206
'@sa/scripts':
specifier: workspace:*
version: link:packages/scripts
@@ -79,20 +79,20 @@ importers:
specifier: workspace:*
version: link:packages/uno-preset
'@soybeanjs/eslint-config':
- specifier: 1.3.2
- version: 1.3.2(@unocss/eslint-config@0.59.4(eslint@9.1.1)(typescript@5.4.5))(eslint-plugin-vue@9.25.0(eslint@9.1.1))(eslint@9.1.1)(typescript@5.4.5)(vue-eslint-parser@9.4.2(eslint@9.1.1))
+ specifier: 1.3.4
+ version: 1.3.4(@unocss/eslint-config@0.59.4(eslint@9.2.0)(typescript@5.4.5))(eslint-plugin-vue@9.25.0(eslint@9.2.0))(eslint@9.2.0)(typescript@5.4.5)(vue-eslint-parser@9.4.2(eslint@9.2.0))
'@types/lodash-es':
specifier: 4.17.12
version: 4.17.12
'@types/node':
- specifier: 20.12.7
- version: 20.12.7
+ specifier: 20.12.8
+ version: 20.12.8
'@types/nprogress':
specifier: 0.2.3
version: 0.2.3
'@unocss/eslint-config':
specifier: 0.59.4
- version: 0.59.4(eslint@9.1.1)(typescript@5.4.5)
+ version: 0.59.4(eslint@9.2.0)(typescript@5.4.5)
'@unocss/preset-icons':
specifier: 0.59.4
version: 0.59.4
@@ -107,58 +107,58 @@ importers:
version: 0.59.4
'@unocss/vite':
specifier: 0.59.4
- version: 0.59.4(rollup@4.16.4)(vite@5.2.10(@types/node@20.12.7)(sass@1.75.0))
+ version: 0.59.4(rollup@4.17.2)(vite@5.2.11(@types/node@20.12.8)(sass@1.76.0))
'@vitejs/plugin-vue':
specifier: 5.0.4
- version: 5.0.4(vite@5.2.10(@types/node@20.12.7)(sass@1.75.0))(vue@3.4.25(typescript@5.4.5))
+ version: 5.0.4(vite@5.2.11(@types/node@20.12.8)(sass@1.76.0))(vue@3.4.26(typescript@5.4.5))
'@vitejs/plugin-vue-jsx':
specifier: 3.1.0
- version: 3.1.0(vite@5.2.10(@types/node@20.12.7)(sass@1.75.0))(vue@3.4.25(typescript@5.4.5))
+ version: 3.1.0(vite@5.2.11(@types/node@20.12.8)(sass@1.76.0))(vue@3.4.26(typescript@5.4.5))
eslint:
- specifier: 9.1.1
- version: 9.1.1
+ specifier: 9.2.0
+ version: 9.2.0
eslint-plugin-vue:
specifier: 9.25.0
- version: 9.25.0(eslint@9.1.1)
+ version: 9.25.0(eslint@9.2.0)
lint-staged:
specifier: 15.2.2
version: 15.2.2
sass:
- specifier: 1.75.0
- version: 1.75.0
+ specifier: 1.76.0
+ version: 1.76.0
simple-git-hooks:
specifier: 2.11.1
version: 2.11.1
tsx:
- specifier: 4.7.3
- version: 4.7.3
+ specifier: 4.9.1
+ version: 4.9.1
typescript:
specifier: 5.4.5
version: 5.4.5
unplugin-icons:
- specifier: 0.18.5
- version: 0.18.5(@vue/compiler-sfc@3.4.25)(vue-template-compiler@2.7.16)
+ specifier: 0.19.0
+ version: 0.19.0(@vue/compiler-sfc@3.4.26)(vue-template-compiler@2.7.16)
unplugin-vue-components:
- specifier: 0.26.0
- version: 0.26.0(@babel/parser@7.24.4)(rollup@4.16.4)(vue@3.4.25(typescript@5.4.5))
+ specifier: 0.27.0
+ version: 0.27.0(@babel/parser@7.24.5)(rollup@4.17.2)(vue@3.4.26(typescript@5.4.5))
vite:
- specifier: 5.2.10
- version: 5.2.10(@types/node@20.12.7)(sass@1.75.0)
+ specifier: 5.2.11
+ version: 5.2.11(@types/node@20.12.8)(sass@1.76.0)
vite-plugin-progress:
specifier: 0.0.7
- version: 0.0.7(vite@5.2.10(@types/node@20.12.7)(sass@1.75.0))
+ version: 0.0.7(vite@5.2.11(@types/node@20.12.8)(sass@1.76.0))
vite-plugin-svg-icons:
specifier: 2.0.1
- version: 2.0.1(vite@5.2.10(@types/node@20.12.7)(sass@1.75.0))
+ version: 2.0.1(vite@5.2.11(@types/node@20.12.8)(sass@1.76.0))
vite-plugin-vue-devtools:
- specifier: 7.1.2
- version: 7.1.2(rollup@4.16.4)(vite@5.2.10(@types/node@20.12.7)(sass@1.75.0))(vue@3.4.25(typescript@5.4.5))
+ specifier: 7.1.3
+ version: 7.1.3(rollup@4.17.2)(vite@5.2.11(@types/node@20.12.8)(sass@1.76.0))(vue@3.4.26(typescript@5.4.5))
vue-eslint-parser:
specifier: 9.4.2
- version: 9.4.2(eslint@9.1.1)
+ version: 9.4.2(eslint@9.2.0)
vue-tsc:
- specifier: 2.0.14
- version: 2.0.14(typescript@5.4.5)
+ specifier: 2.0.16
+ version: 2.0.16(typescript@5.4.5)
packages/axios:
dependencies:
@@ -201,7 +201,7 @@ importers:
version: link:../utils
simplebar-vue:
specifier: 2.3.3
- version: 2.3.3(vue@3.4.25(typescript@5.4.5))
+ version: 2.3.3(vue@3.4.26(typescript@5.4.5))
devDependencies:
typed-css-modules:
specifier: 0.9.1
@@ -216,11 +216,11 @@ importers:
packages/scripts:
devDependencies:
'@soybeanjs/changelog':
- specifier: 0.3.22
- version: 0.3.22(@unocss/eslint-config@0.59.4(eslint@9.1.1)(typescript@5.4.5))(eslint-plugin-vue@9.25.0(eslint@9.1.1))(eslint@9.1.1)(typescript@5.4.5)(vue-eslint-parser@9.4.2(eslint@9.1.1))
+ specifier: 0.3.23
+ version: 0.3.23(@unocss/eslint-config@0.59.4(eslint@9.2.0)(typescript@5.4.5))(eslint-plugin-vue@9.25.0(eslint@9.2.0))(eslint@9.2.0)(typescript@5.4.5)(vue-eslint-parser@9.4.2(eslint@9.2.0))
bumpp:
- specifier: 9.4.0
- version: 9.4.0
+ specifier: 9.4.1
+ version: 9.4.1
c12:
specifier: 1.10.0
version: 1.10.0
@@ -240,8 +240,8 @@ importers:
specifier: 1.8.0
version: 1.8.0
npm-check-updates:
- specifier: 16.14.19
- version: 16.14.19
+ specifier: 16.14.20
+ version: 16.14.20
rimraf:
specifier: 5.0.5
version: 5.0.5
@@ -269,10 +269,6 @@ importers:
packages:
- '@aashutoshrathi/word-wrap@1.2.6':
- resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==}
- engines: {node: '>=0.10.0'}
-
'@ampproject/remapping@2.3.0':
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
engines: {node: '>=6.0.0'}
@@ -284,8 +280,8 @@ packages:
'@antfu/install-pkg@0.1.1':
resolution: {integrity: sha512-LyB/8+bSfa0DFGC06zpCEfs89/XoWZwws5ygEa5D+Xsm3OfI+aXQ86VgVG7Acyef+rSZ5HE7J8rrxzrQeM3PjQ==}
- '@antfu/install-pkg@0.3.2':
- resolution: {integrity: sha512-FFYqME8+UHlPnRlX/vn+8cTD4Wo/nG/lzRxpABs3XANBmdJdNImVz3QvjNAE/W3PSCNbG387FOz8o5WelnWOlg==}
+ '@antfu/install-pkg@0.3.3':
+ resolution: {integrity: sha512-nHHsk3NXQ6xkCfiRRC8Nfrg8pU5kkr3P3Y9s9dKqiuRmBD0Yap7fymNDjGFKeWhZQHqqbCS5CfeMy9wtExM24w==}
'@antfu/utils@0.7.7':
resolution: {integrity: sha512-gFPqTG7otEJ8uP6wrhDv6mqwGWYZKNvAcCq6u9hOj0c+IKCEsY4L1oC9trPq2SaWIzAfHvqfBDxF591JkMf+kg==}
@@ -298,12 +294,12 @@ packages:
resolution: {integrity: sha512-vg8Gih2MLK+kOkHJp4gBEIkyaIi00jgWot2D9QOmmfLC8jINSOzmCLta6Bvz/JSBCqnegV0L80jhxkol5GWNfQ==}
engines: {node: '>=6.9.0'}
- '@babel/core@7.24.4':
- resolution: {integrity: sha512-MBVlMXP+kkl5394RBLSxxk/iLTeVGuXTV3cIDXavPpMMqnSnt6apKgan/U8O3USWZCWZT/TbgfEpKa4uMgN4Dg==}
+ '@babel/core@7.24.5':
+ resolution: {integrity: sha512-tVQRucExLQ02Boi4vdPp49svNGcfL2GhdTCT9aldhXgCJVAI21EtRfBettiuLUwce/7r6bFdgs6JFkcdTiFttA==}
engines: {node: '>=6.9.0'}
- '@babel/generator@7.24.4':
- resolution: {integrity: sha512-Xd6+v6SnjWVx/nus+y0l1sxMOTOMBkyL4+BIdbALyatQnAe/SRVjANeDPSCYaX+i1iJmuGSKf3Z+E+V/va1Hvw==}
+ '@babel/generator@7.24.5':
+ resolution: {integrity: sha512-x32i4hEXvr+iI0NEoEfDKzlemF8AmtOP8CcrRaEcpzysWuoEb1KknpcvMsHKPONoKZiDuItklgWhB18xEhr9PA==}
engines: {node: '>=6.9.0'}
'@babel/helper-annotate-as-pure@7.22.5':
@@ -314,8 +310,8 @@ packages:
resolution: {integrity: sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-create-class-features-plugin@7.24.4':
- resolution: {integrity: sha512-lG75yeuUSVu0pIcbhiYMXBXANHrpUPaOfu7ryAzskCgKUHuAxRQI5ssrtmF0X9UXldPlvT0XM/A4F44OXRt6iQ==}
+ '@babel/helper-create-class-features-plugin@7.24.5':
+ resolution: {integrity: sha512-uRc4Cv8UQWnE4NXlYTIIdM7wfFkOqlFztcC/gVXDKohKoVB3OyonfelUBaJzSwpBntZ2KYGF/9S7asCHsXwW6g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
@@ -332,8 +328,8 @@ packages:
resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-member-expression-to-functions@7.23.0':
- resolution: {integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==}
+ '@babel/helper-member-expression-to-functions@7.24.5':
+ resolution: {integrity: sha512-4owRteeihKWKamtqg4JmWSsEZU445xpFRXPEwp44HbgbxdWlUV1b4Agg4lkA806Lil5XM/e+FJyS0vj5T6vmcA==}
engines: {node: '>=6.9.0'}
'@babel/helper-module-imports@7.22.15':
@@ -344,8 +340,8 @@ packages:
resolution: {integrity: sha512-viKb0F9f2s0BCS22QSF308z/+1YWKV/76mwt61NBzS5izMzDPwdq1pTrzf+Li3npBWX9KdQbkeCt1jSAM7lZqg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-module-transforms@7.23.3':
- resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==}
+ '@babel/helper-module-transforms@7.24.5':
+ resolution: {integrity: sha512-9GxeY8c2d2mdQUP1Dye0ks3VDyIMS98kt/llQ2nUId8IsWqTF0l1LkSX0/uP7l7MCDrzXS009Hyhe2gzTiGW8A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
@@ -354,8 +350,8 @@ packages:
resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-plugin-utils@7.24.0':
- resolution: {integrity: sha512-9cUznXMG0+FxRuJfvL82QlTqIzhVW9sL0KjMPHhAOOvpQGL8QtdxnBKILjBqxlHyliz0yCa1G903ZXI/FuHy2w==}
+ '@babel/helper-plugin-utils@7.24.5':
+ resolution: {integrity: sha512-xjNLDopRzW2o6ba0gKbkZq5YWEBaK3PCyTOY1K2P/O07LGMhMqlMXPxwN4S5/RhWuCobT8z0jrlKGlYmeR1OhQ==}
engines: {node: '>=6.9.0'}
'@babel/helper-replace-supers@7.24.1':
@@ -364,40 +360,40 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-simple-access@7.22.5':
- resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==}
+ '@babel/helper-simple-access@7.24.5':
+ resolution: {integrity: sha512-uH3Hmf5q5n7n8mz7arjUlDOCbttY/DW4DYhE6FUsjKJ/oYC1kQQUvwEQWxRwUpX9qQKRXeqLwWxrqilMrf32sQ==}
engines: {node: '>=6.9.0'}
'@babel/helper-skip-transparent-expression-wrappers@7.22.5':
resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==}
engines: {node: '>=6.9.0'}
- '@babel/helper-split-export-declaration@7.22.6':
- resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==}
+ '@babel/helper-split-export-declaration@7.24.5':
+ resolution: {integrity: sha512-5CHncttXohrHk8GWOFCcCl4oRD9fKosWlIRgWm4ql9VYioKm52Mk2xsmoohvm7f3JoiLSM5ZgJuRaf5QZZYd3Q==}
engines: {node: '>=6.9.0'}
'@babel/helper-string-parser@7.24.1':
resolution: {integrity: sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-validator-identifier@7.22.20':
- resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==}
+ '@babel/helper-validator-identifier@7.24.5':
+ resolution: {integrity: sha512-3q93SSKX2TWCG30M2G2kwaKeTYgEUp5Snjuj8qm729SObL6nbtUldAi37qbxkD5gg3xnBio+f9nqpSepGZMvxA==}
engines: {node: '>=6.9.0'}
'@babel/helper-validator-option@7.23.5':
resolution: {integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==}
engines: {node: '>=6.9.0'}
- '@babel/helpers@7.24.4':
- resolution: {integrity: sha512-FewdlZbSiwaVGlgT1DPANDuCHaDMiOo+D/IDYRFYjHOuv66xMSJ7fQwwODwRNAPkADIO/z1EoF/l2BCWlWABDw==}
+ '@babel/helpers@7.24.5':
+ resolution: {integrity: sha512-CiQmBMMpMQHwM5m01YnrM6imUG1ebgYJ+fAIW4FZe6m4qHTPaRHti+R8cggAwkdz4oXhtO4/K9JWlh+8hIfR2Q==}
engines: {node: '>=6.9.0'}
- '@babel/highlight@7.24.2':
- resolution: {integrity: sha512-Yac1ao4flkTxTteCDZLEvdxg2fZfz1v8M4QpaGypq/WPDqg3ijHYbDfs+LG5hvzSoqaSZ9/Z9lKSP3CjZjv+pA==}
+ '@babel/highlight@7.24.5':
+ resolution: {integrity: sha512-8lLmua6AVh/8SLJRRVD6V8p73Hir9w5mJrhE+IPpILG31KKlI9iz5zmBYKcWPS59qSfgP9RaSBQSHHE81WKuEw==}
engines: {node: '>=6.9.0'}
- '@babel/parser@7.24.4':
- resolution: {integrity: sha512-zTvEBcghmeBma9QIGunWevvBAp4/Qu9Bdq+2k0Ot4fVMD6v3dsC9WOcRSKk7tRRyBM/53yKMJko9xOatGQAwSg==}
+ '@babel/parser@7.24.5':
+ resolution: {integrity: sha512-EOv5IK8arwh3LI47dz1b0tKUb/1uhHAnHJOrjgtQMIpu1uXd9mlFrJg9IUgGUgZ41Ch0K8REPTYpO7B76b4vJg==}
engines: {node: '>=6.0.0'}
hasBin: true
@@ -436,26 +432,26 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-typescript@7.24.4':
- resolution: {integrity: sha512-79t3CQ8+oBGk/80SQ8MN3Bs3obf83zJ0YZjDmDaEZN8MqhMI760apl5z6a20kFeMXBwJX99VpKT8CKxEBp5H1g==}
+ '@babel/plugin-transform-typescript@7.24.5':
+ resolution: {integrity: sha512-E0VWu/hk83BIFUWnsKZ4D81KXjN5L3MobvevOHErASk9IPwKHOkTgvqzvNo1yP/ePJWqqK2SpUR5z+KQbl6NVw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/runtime@7.24.4':
- resolution: {integrity: sha512-dkxf7+hn8mFBwKjs9bvBlArzLVxVbS8usaPUDd5p2a9JCL9tB8OaOVN1isD4+Xyk4ns89/xeOmbQvgdK7IIVdA==}
+ '@babel/runtime@7.24.5':
+ resolution: {integrity: sha512-Nms86NXrsaeU9vbBJKni6gXiEXZ4CVpYVzEjDH9Sb8vmZ3UljyA1GSOJl/6LGPO8EHLuSF9H+IxNXHPX8QHJ4g==}
engines: {node: '>=6.9.0'}
'@babel/template@7.24.0':
resolution: {integrity: sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA==}
engines: {node: '>=6.9.0'}
- '@babel/traverse@7.24.1':
- resolution: {integrity: sha512-xuU6o9m68KeqZbQuDt2TcKSxUw/mrsvavlEqQ1leZ/B+C9tk6E4sRWy97WaXgvq5E+nU3cXMxv3WKOCanVMCmQ==}
+ '@babel/traverse@7.24.5':
+ resolution: {integrity: sha512-7aaBLeDQ4zYcUFDUD41lJc1fG8+5IU9DaNSJAgal866FGvmD5EbWQgnEC6kO1gGLsX0esNkfnJSndbTXA3r7UA==}
engines: {node: '>=6.9.0'}
- '@babel/types@7.24.0':
- resolution: {integrity: sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w==}
+ '@babel/types@7.24.5':
+ resolution: {integrity: sha512-6mQNsaLeXTw0nxYUYu+NSa4Hx4BlF1x1x8/PMFbiR+GBSr+2DkECc69b8hgy2frEodNcvPffeH8YfWd3LI6jhQ==}
engines: {node: '>=6.9.0'}
'@better-scroll/core@2.5.1':
@@ -487,276 +483,138 @@ packages:
'@emotion/hash@0.8.0':
resolution: {integrity: sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==}
- '@esbuild/aix-ppc64@0.19.12':
- resolution: {integrity: sha512-bmoCYyWdEL3wDQIVbcyzRyeKLgk2WtWLTWz1ZIAZF/EGbNOwSA6ew3PftJ1PqMiOOGu0OyFMzG53L0zqIpPeNA==}
- engines: {node: '>=12'}
- cpu: [ppc64]
- os: [aix]
-
'@esbuild/aix-ppc64@0.20.2':
resolution: {integrity: sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==}
engines: {node: '>=12'}
cpu: [ppc64]
os: [aix]
- '@esbuild/android-arm64@0.19.12':
- resolution: {integrity: sha512-P0UVNGIienjZv3f5zq0DP3Nt2IE/3plFzuaS96vihvD0Hd6H/q4WXUGpCxD/E8YrSXfNyRPbpTq+T8ZQioSuPA==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [android]
-
'@esbuild/android-arm64@0.20.2':
resolution: {integrity: sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==}
engines: {node: '>=12'}
cpu: [arm64]
os: [android]
- '@esbuild/android-arm@0.19.12':
- resolution: {integrity: sha512-qg/Lj1mu3CdQlDEEiWrlC4eaPZ1KztwGJ9B6J+/6G+/4ewxJg7gqj8eVYWvao1bXrqGiW2rsBZFSX3q2lcW05w==}
- engines: {node: '>=12'}
- cpu: [arm]
- os: [android]
-
'@esbuild/android-arm@0.20.2':
resolution: {integrity: sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==}
engines: {node: '>=12'}
cpu: [arm]
os: [android]
- '@esbuild/android-x64@0.19.12':
- resolution: {integrity: sha512-3k7ZoUW6Q6YqhdhIaq/WZ7HwBpnFBlW905Fa4s4qWJyiNOgT1dOqDiVAQFwBH7gBRZr17gLrlFCRzF6jFh7Kew==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [android]
-
'@esbuild/android-x64@0.20.2':
resolution: {integrity: sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==}
engines: {node: '>=12'}
cpu: [x64]
os: [android]
- '@esbuild/darwin-arm64@0.19.12':
- resolution: {integrity: sha512-B6IeSgZgtEzGC42jsI+YYu9Z3HKRxp8ZT3cqhvliEHovq8HSX2YX8lNocDn79gCKJXOSaEot9MVYky7AKjCs8g==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [darwin]
-
'@esbuild/darwin-arm64@0.20.2':
resolution: {integrity: sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==}
engines: {node: '>=12'}
cpu: [arm64]
os: [darwin]
- '@esbuild/darwin-x64@0.19.12':
- resolution: {integrity: sha512-hKoVkKzFiToTgn+41qGhsUJXFlIjxI/jSYeZf3ugemDYZldIXIxhvwN6erJGlX4t5h417iFuheZ7l+YVn05N3A==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [darwin]
-
'@esbuild/darwin-x64@0.20.2':
resolution: {integrity: sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==}
engines: {node: '>=12'}
cpu: [x64]
os: [darwin]
- '@esbuild/freebsd-arm64@0.19.12':
- resolution: {integrity: sha512-4aRvFIXmwAcDBw9AueDQ2YnGmz5L6obe5kmPT8Vd+/+x/JMVKCgdcRwH6APrbpNXsPz+K653Qg8HB/oXvXVukA==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [freebsd]
-
'@esbuild/freebsd-arm64@0.20.2':
resolution: {integrity: sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==}
engines: {node: '>=12'}
cpu: [arm64]
os: [freebsd]
- '@esbuild/freebsd-x64@0.19.12':
- resolution: {integrity: sha512-EYoXZ4d8xtBoVN7CEwWY2IN4ho76xjYXqSXMNccFSx2lgqOG/1TBPW0yPx1bJZk94qu3tX0fycJeeQsKovA8gg==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [freebsd]
-
'@esbuild/freebsd-x64@0.20.2':
resolution: {integrity: sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==}
engines: {node: '>=12'}
cpu: [x64]
os: [freebsd]
- '@esbuild/linux-arm64@0.19.12':
- resolution: {integrity: sha512-EoTjyYyLuVPfdPLsGVVVC8a0p1BFFvtpQDB/YLEhaXyf/5bczaGeN15QkR+O4S5LeJ92Tqotve7i1jn35qwvdA==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [linux]
-
'@esbuild/linux-arm64@0.20.2':
resolution: {integrity: sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==}
engines: {node: '>=12'}
cpu: [arm64]
os: [linux]
- '@esbuild/linux-arm@0.19.12':
- resolution: {integrity: sha512-J5jPms//KhSNv+LO1S1TX1UWp1ucM6N6XuL6ITdKWElCu8wXP72l9MM0zDTzzeikVyqFE6U8YAV9/tFyj0ti+w==}
- engines: {node: '>=12'}
- cpu: [arm]
- os: [linux]
-
'@esbuild/linux-arm@0.20.2':
resolution: {integrity: sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==}
engines: {node: '>=12'}
cpu: [arm]
os: [linux]
- '@esbuild/linux-ia32@0.19.12':
- resolution: {integrity: sha512-Thsa42rrP1+UIGaWz47uydHSBOgTUnwBwNq59khgIwktK6x60Hivfbux9iNR0eHCHzOLjLMLfUMLCypBkZXMHA==}
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [linux]
-
'@esbuild/linux-ia32@0.20.2':
resolution: {integrity: sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==}
engines: {node: '>=12'}
cpu: [ia32]
os: [linux]
- '@esbuild/linux-loong64@0.19.12':
- resolution: {integrity: sha512-LiXdXA0s3IqRRjm6rV6XaWATScKAXjI4R4LoDlvO7+yQqFdlr1Bax62sRwkVvRIrwXxvtYEHHI4dm50jAXkuAA==}
- engines: {node: '>=12'}
- cpu: [loong64]
- os: [linux]
-
'@esbuild/linux-loong64@0.20.2':
resolution: {integrity: sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==}
engines: {node: '>=12'}
cpu: [loong64]
os: [linux]
- '@esbuild/linux-mips64el@0.19.12':
- resolution: {integrity: sha512-fEnAuj5VGTanfJ07ff0gOA6IPsvrVHLVb6Lyd1g2/ed67oU1eFzL0r9WL7ZzscD+/N6i3dWumGE1Un4f7Amf+w==}
- engines: {node: '>=12'}
- cpu: [mips64el]
- os: [linux]
-
'@esbuild/linux-mips64el@0.20.2':
resolution: {integrity: sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==}
engines: {node: '>=12'}
cpu: [mips64el]
os: [linux]
- '@esbuild/linux-ppc64@0.19.12':
- resolution: {integrity: sha512-nYJA2/QPimDQOh1rKWedNOe3Gfc8PabU7HT3iXWtNUbRzXS9+vgB0Fjaqr//XNbd82mCxHzik2qotuI89cfixg==}
- engines: {node: '>=12'}
- cpu: [ppc64]
- os: [linux]
-
'@esbuild/linux-ppc64@0.20.2':
resolution: {integrity: sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==}
engines: {node: '>=12'}
cpu: [ppc64]
os: [linux]
- '@esbuild/linux-riscv64@0.19.12':
- resolution: {integrity: sha512-2MueBrlPQCw5dVJJpQdUYgeqIzDQgw3QtiAHUC4RBz9FXPrskyyU3VI1hw7C0BSKB9OduwSJ79FTCqtGMWqJHg==}
- engines: {node: '>=12'}
- cpu: [riscv64]
- os: [linux]
-
'@esbuild/linux-riscv64@0.20.2':
resolution: {integrity: sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==}
engines: {node: '>=12'}
cpu: [riscv64]
os: [linux]
- '@esbuild/linux-s390x@0.19.12':
- resolution: {integrity: sha512-+Pil1Nv3Umes4m3AZKqA2anfhJiVmNCYkPchwFJNEJN5QxmTs1uzyy4TvmDrCRNT2ApwSari7ZIgrPeUx4UZDg==}
- engines: {node: '>=12'}
- cpu: [s390x]
- os: [linux]
-
'@esbuild/linux-s390x@0.20.2':
resolution: {integrity: sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==}
engines: {node: '>=12'}
cpu: [s390x]
os: [linux]
- '@esbuild/linux-x64@0.19.12':
- resolution: {integrity: sha512-B71g1QpxfwBvNrfyJdVDexenDIt1CiDN1TIXLbhOw0KhJzE78KIFGX6OJ9MrtC0oOqMWf+0xop4qEU8JrJTwCg==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [linux]
-
'@esbuild/linux-x64@0.20.2':
resolution: {integrity: sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==}
engines: {node: '>=12'}
cpu: [x64]
os: [linux]
- '@esbuild/netbsd-x64@0.19.12':
- resolution: {integrity: sha512-3ltjQ7n1owJgFbuC61Oj++XhtzmymoCihNFgT84UAmJnxJfm4sYCiSLTXZtE00VWYpPMYc+ZQmB6xbSdVh0JWA==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [netbsd]
-
'@esbuild/netbsd-x64@0.20.2':
resolution: {integrity: sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==}
engines: {node: '>=12'}
cpu: [x64]
os: [netbsd]
- '@esbuild/openbsd-x64@0.19.12':
- resolution: {integrity: sha512-RbrfTB9SWsr0kWmb9srfF+L933uMDdu9BIzdA7os2t0TXhCRjrQyCeOt6wVxr79CKD4c+p+YhCj31HBkYcXebw==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [openbsd]
-
'@esbuild/openbsd-x64@0.20.2':
resolution: {integrity: sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==}
engines: {node: '>=12'}
cpu: [x64]
os: [openbsd]
- '@esbuild/sunos-x64@0.19.12':
- resolution: {integrity: sha512-HKjJwRrW8uWtCQnQOz9qcU3mUZhTUQvi56Q8DPTLLB+DawoiQdjsYq+j+D3s9I8VFtDr+F9CjgXKKC4ss89IeA==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [sunos]
-
'@esbuild/sunos-x64@0.20.2':
resolution: {integrity: sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==}
engines: {node: '>=12'}
cpu: [x64]
os: [sunos]
- '@esbuild/win32-arm64@0.19.12':
- resolution: {integrity: sha512-URgtR1dJnmGvX864pn1B2YUYNzjmXkuJOIqG2HdU62MVS4EHpU2946OZoTMnRUHklGtJdJZ33QfzdjGACXhn1A==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [win32]
-
'@esbuild/win32-arm64@0.20.2':
resolution: {integrity: sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==}
engines: {node: '>=12'}
cpu: [arm64]
os: [win32]
- '@esbuild/win32-ia32@0.19.12':
- resolution: {integrity: sha512-+ZOE6pUkMOJfmxmBZElNOx72NKpIa/HFOMGzu8fqzQJ5kgf6aTGrcJaFsNiVMH4JKpMipyK+7k0n2UXN7a8YKQ==}
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [win32]
-
'@esbuild/win32-ia32@0.20.2':
resolution: {integrity: sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==}
engines: {node: '>=12'}
cpu: [ia32]
os: [win32]
- '@esbuild/win32-x64@0.19.12':
- resolution: {integrity: sha512-T1QyPSDCyMXaO3pzBkF96E8xMkiRYbUEZADd29SyPGabqxMViNoii+NcK7eWJAEoU6RZyEm5lVSIjTmcdoB9HA==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [win32]
-
'@esbuild/win32-x64@0.20.2':
resolution: {integrity: sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==}
engines: {node: '>=12'}
@@ -781,8 +639,8 @@ packages:
resolution: {integrity: sha512-wV19ZEGEMAC1eHgrS7UQPqsdEiCIbTKTasEfcXAigzoXICcqZSjBZEHlZwNVvKg6UBCjSlos84XiLqsRJnIcIg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/js@9.1.1':
- resolution: {integrity: sha512-5WoDz3Y19Bg2BnErkZTp0en+c/i9PvgFS7MBe1+m60HjFr0hrphlAGp4yzI7pxpt4xShln4ZyYp4neJm8hmOkQ==}
+ '@eslint/js@9.2.0':
+ resolution: {integrity: sha512-ESiIudvhoYni+MdsI8oD7skpprZ89qKocwRM2KEvhhBJ9nl5MRh7BXU5GTod7Mdygq+AUl+QzId6iWJKR/wABA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@gar/promisify@1.1.3':
@@ -799,12 +657,12 @@ packages:
'@humanwhocodes/object-schema@2.0.3':
resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==}
- '@humanwhocodes/retry@0.2.3':
- resolution: {integrity: sha512-X38nUbachlb01YMlvPFojKoiXq+LzZvuSce70KPMPdeM1Rj03k4dR7lDslhbqXn3Ang4EU3+EAmwEAsbrjHW3g==}
+ '@humanwhocodes/retry@0.2.4':
+ resolution: {integrity: sha512-Ttl/jHpxfS3st5sxwICYfk4pOH0WrLI1SpW283GgQL7sCWU7EHIOhX4b4fkIxr3tkfzwg8+FNojtzsIEE7Ecgg==}
engines: {node: '>=18.18'}
- '@iconify/json@2.2.204':
- resolution: {integrity: sha512-sFlh+TIF54DZoEzsF5YVWY7XEzjN2ZSmCjtzvajk5EdNjvPAKr9Tvvptoyj6hcuylJsDxiU12FRDSdygW1c8bg==}
+ '@iconify/json@2.2.206':
+ resolution: {integrity: sha512-Vbi8BTvbEKZtCQDJDqMRDZenU8HYMHFtMkEx92pvyQN/Il5OfGwCNaR+bf9Sv2TkotnoiyqqickeWpdo0hllGQ==}
'@iconify/types@2.0.0':
resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==}
@@ -936,92 +794,92 @@ packages:
rollup:
optional: true
- '@rollup/rollup-android-arm-eabi@4.16.4':
- resolution: {integrity: sha512-GkhjAaQ8oUTOKE4g4gsZ0u8K/IHU1+2WQSgS1TwTcYvL+sjbaQjNHFXbOJ6kgqGHIO1DfUhI/Sphi9GkRT9K+Q==}
+ '@rollup/rollup-android-arm-eabi@4.17.2':
+ resolution: {integrity: sha512-NM0jFxY8bB8QLkoKxIQeObCaDlJKewVlIEkuyYKm5An1tdVZ966w2+MPQ2l8LBZLjR+SgyV+nRkTIunzOYBMLQ==}
cpu: [arm]
os: [android]
- '@rollup/rollup-android-arm64@4.16.4':
- resolution: {integrity: sha512-Bvm6D+NPbGMQOcxvS1zUl8H7DWlywSXsphAeOnVeiZLQ+0J6Is8T7SrjGTH29KtYkiY9vld8ZnpV3G2EPbom+w==}
+ '@rollup/rollup-android-arm64@4.17.2':
+ resolution: {integrity: sha512-yeX/Usk7daNIVwkq2uGoq2BYJKZY1JfyLTaHO/jaiSwi/lsf8fTFoQW/n6IdAsx5tx+iotu2zCJwz8MxI6D/Bw==}
cpu: [arm64]
os: [android]
- '@rollup/rollup-darwin-arm64@4.16.4':
- resolution: {integrity: sha512-i5d64MlnYBO9EkCOGe5vPR/EeDwjnKOGGdd7zKFhU5y8haKhQZTN2DgVtpODDMxUr4t2K90wTUJg7ilgND6bXw==}
+ '@rollup/rollup-darwin-arm64@4.17.2':
+ resolution: {integrity: sha512-kcMLpE6uCwls023+kknm71ug7MZOrtXo+y5p/tsg6jltpDtgQY1Eq5sGfHcQfb+lfuKwhBmEURDga9N0ol4YPw==}
cpu: [arm64]
os: [darwin]
- '@rollup/rollup-darwin-x64@4.16.4':
- resolution: {integrity: sha512-WZupV1+CdUYehaZqjaFTClJI72fjJEgTXdf4NbW69I9XyvdmztUExBtcI2yIIU6hJtYvtwS6pkTkHJz+k08mAQ==}
+ '@rollup/rollup-darwin-x64@4.17.2':
+ resolution: {integrity: sha512-AtKwD0VEx0zWkL0ZjixEkp5tbNLzX+FCqGG1SvOu993HnSz4qDI6S4kGzubrEJAljpVkhRSlg5bzpV//E6ysTQ==}
cpu: [x64]
os: [darwin]
- '@rollup/rollup-linux-arm-gnueabihf@4.16.4':
- resolution: {integrity: sha512-ADm/xt86JUnmAfA9mBqFcRp//RVRt1ohGOYF6yL+IFCYqOBNwy5lbEK05xTsEoJq+/tJzg8ICUtS82WinJRuIw==}
+ '@rollup/rollup-linux-arm-gnueabihf@4.17.2':
+ resolution: {integrity: sha512-3reX2fUHqN7sffBNqmEyMQVj/CKhIHZd4y631duy0hZqI8Qoqf6lTtmAKvJFYa6bhU95B1D0WgzHkmTg33In0A==}
cpu: [arm]
os: [linux]
libc: [glibc]
- '@rollup/rollup-linux-arm-musleabihf@4.16.4':
- resolution: {integrity: sha512-tJfJaXPiFAG+Jn3cutp7mCs1ePltuAgRqdDZrzb1aeE3TktWWJ+g7xK9SNlaSUFw6IU4QgOxAY4rA+wZUT5Wfg==}
+ '@rollup/rollup-linux-arm-musleabihf@4.17.2':
+ resolution: {integrity: sha512-uSqpsp91mheRgw96xtyAGP9FW5ChctTFEoXP0r5FAzj/3ZRv3Uxjtc7taRQSaQM/q85KEKjKsZuiZM3GyUivRg==}
cpu: [arm]
os: [linux]
libc: [musl]
- '@rollup/rollup-linux-arm64-gnu@4.16.4':
- resolution: {integrity: sha512-7dy1BzQkgYlUTapDTvK997cgi0Orh5Iu7JlZVBy1MBURk7/HSbHkzRnXZa19ozy+wwD8/SlpJnOOckuNZtJR9w==}
+ '@rollup/rollup-linux-arm64-gnu@4.17.2':
+ resolution: {integrity: sha512-EMMPHkiCRtE8Wdk3Qhtciq6BndLtstqZIroHiiGzB3C5LDJmIZcSzVtLRbwuXuUft1Cnv+9fxuDtDxz3k3EW2A==}
cpu: [arm64]
os: [linux]
libc: [glibc]
- '@rollup/rollup-linux-arm64-musl@4.16.4':
- resolution: {integrity: sha512-zsFwdUw5XLD1gQe0aoU2HVceI6NEW7q7m05wA46eUAyrkeNYExObfRFQcvA6zw8lfRc5BHtan3tBpo+kqEOxmg==}
+ '@rollup/rollup-linux-arm64-musl@4.17.2':
+ resolution: {integrity: sha512-NMPylUUZ1i0z/xJUIx6VUhISZDRT+uTWpBcjdv0/zkp7b/bQDF+NfnfdzuTiB1G6HTodgoFa93hp0O1xl+/UbA==}
cpu: [arm64]
os: [linux]
libc: [musl]
- '@rollup/rollup-linux-powerpc64le-gnu@4.16.4':
- resolution: {integrity: sha512-p8C3NnxXooRdNrdv6dBmRTddEapfESEUflpICDNKXpHvTjRRq1J82CbU5G3XfebIZyI3B0s074JHMWD36qOW6w==}
+ '@rollup/rollup-linux-powerpc64le-gnu@4.17.2':
+ resolution: {integrity: sha512-T19My13y8uYXPw/L/k0JYaX1fJKFT/PWdXiHr8mTbXWxjVF1t+8Xl31DgBBvEKclw+1b00Chg0hxE2O7bTG7GQ==}
cpu: [ppc64]
os: [linux]
libc: [glibc]
- '@rollup/rollup-linux-riscv64-gnu@4.16.4':
- resolution: {integrity: sha512-Lh/8ckoar4s4Id2foY7jNgitTOUQczwMWNYi+Mjt0eQ9LKhr6sK477REqQkmy8YHY3Ca3A2JJVdXnfb3Rrwkng==}
+ '@rollup/rollup-linux-riscv64-gnu@4.17.2':
+ resolution: {integrity: sha512-BOaNfthf3X3fOWAB+IJ9kxTgPmMqPPH5f5k2DcCsRrBIbWnaJCgX2ll77dV1TdSy9SaXTR5iDXRL8n7AnoP5cg==}
cpu: [riscv64]
os: [linux]
libc: [glibc]
- '@rollup/rollup-linux-s390x-gnu@4.16.4':
- resolution: {integrity: sha512-1xwwn9ZCQYuqGmulGsTZoKrrn0z2fAur2ujE60QgyDpHmBbXbxLaQiEvzJWDrscRq43c8DnuHx3QorhMTZgisQ==}
+ '@rollup/rollup-linux-s390x-gnu@4.17.2':
+ resolution: {integrity: sha512-W0UP/x7bnn3xN2eYMql2T/+wpASLE5SjObXILTMPUBDB/Fg/FxC+gX4nvCfPBCbNhz51C+HcqQp2qQ4u25ok6g==}
cpu: [s390x]
os: [linux]
libc: [glibc]
- '@rollup/rollup-linux-x64-gnu@4.16.4':
- resolution: {integrity: sha512-LuOGGKAJ7dfRtxVnO1i3qWc6N9sh0Em/8aZ3CezixSTM+E9Oq3OvTsvC4sm6wWjzpsIlOCnZjdluINKESflJLA==}
+ '@rollup/rollup-linux-x64-gnu@4.17.2':
+ resolution: {integrity: sha512-Hy7pLwByUOuyaFC6mAr7m+oMC+V7qyifzs/nW2OJfC8H4hbCzOX07Ov0VFk/zP3kBsELWNFi7rJtgbKYsav9QQ==}
cpu: [x64]
os: [linux]
libc: [glibc]
- '@rollup/rollup-linux-x64-musl@4.16.4':
- resolution: {integrity: sha512-ch86i7KkJKkLybDP2AtySFTRi5fM3KXp0PnHocHuJMdZwu7BuyIKi35BE9guMlmTpwwBTB3ljHj9IQXnTCD0vA==}
+ '@rollup/rollup-linux-x64-musl@4.17.2':
+ resolution: {integrity: sha512-h1+yTWeYbRdAyJ/jMiVw0l6fOOm/0D1vNLui9iPuqgRGnXA0u21gAqOyB5iHjlM9MMfNOm9RHCQ7zLIzT0x11Q==}
cpu: [x64]
os: [linux]
libc: [musl]
- '@rollup/rollup-win32-arm64-msvc@4.16.4':
- resolution: {integrity: sha512-Ma4PwyLfOWZWayfEsNQzTDBVW8PZ6TUUN1uFTBQbF2Chv/+sjenE86lpiEwj2FiviSmSZ4Ap4MaAfl1ciF4aSA==}
+ '@rollup/rollup-win32-arm64-msvc@4.17.2':
+ resolution: {integrity: sha512-tmdtXMfKAjy5+IQsVtDiCfqbynAQE/TQRpWdVataHmhMb9DCoJxp9vLcCBjEQWMiUYxO1QprH/HbY9ragCEFLA==}
cpu: [arm64]
os: [win32]
- '@rollup/rollup-win32-ia32-msvc@4.16.4':
- resolution: {integrity: sha512-9m/ZDrQsdo/c06uOlP3W9G2ENRVzgzbSXmXHT4hwVaDQhYcRpi9bgBT0FTG9OhESxwK0WjQxYOSfv40cU+T69w==}
+ '@rollup/rollup-win32-ia32-msvc@4.17.2':
+ resolution: {integrity: sha512-7II/QCSTAHuE5vdZaQEwJq2ZACkBpQDOmQsE6D6XUbnBHW8IAhm4eTufL6msLJorzrHDFv3CF8oCA/hSIRuZeQ==}
cpu: [ia32]
os: [win32]
- '@rollup/rollup-win32-x64-msvc@4.16.4':
- resolution: {integrity: sha512-YunpoOAyGLDseanENHmbFvQSfVL5BxW3k7hhy0eN4rb3gS/ct75dVD0EXOWIqFT/nE8XYW6LP6vz6ctKRi0k9A==}
+ '@rollup/rollup-win32-x64-msvc@4.17.2':
+ resolution: {integrity: sha512-TGGO7v7qOq4CYmSBVEYpI1Y5xDuCEnbVC5Vth8mOsW0gDSzxNrVERPc790IGHsrT2dQSimgMr9Ub3Y1Jci5/8w==}
cpu: [x64]
os: [win32]
@@ -1045,12 +903,12 @@ packages:
resolution: {integrity: sha512-TV7t8GKYaJWsn00tFDqBw8+Uqmr8A0fRU1tvTQhyZzGv0sJCGRQL3JGMI3ucuKo3XIZdUP+Lx7/gh2t3lewy7g==}
engines: {node: '>=14.16'}
- '@soybeanjs/changelog@0.3.22':
- resolution: {integrity: sha512-MF2lAkHhVFnUEP4UK1+sipVq9e5Rsa62FMB+cYdEEF+r64GC4Nj5YMFzHYYJ9xCnuCf9ZSlIPWUwXVfz0DQ7mQ==}
+ '@soybeanjs/changelog@0.3.23':
+ resolution: {integrity: sha512-RDZGiRE2GIG6rjVbYbLc7UgnKzLzV28L861R3S7HJBU/71tGB0+IHzNd3TyfRku6LYyN0rNvCEnLNrZZOe294w==}
engines: {node: '>=14'}
- '@soybeanjs/eslint-config@1.3.2':
- resolution: {integrity: sha512-7+ymBmHYkp5Xa3pNsgDYKs0Jl0cQQMs4WLG/NBiPuLSQ7qE1xC2kYvWx1eK0IFQNFikktqn5TeKEbKalNc9jmQ==}
+ '@soybeanjs/eslint-config@1.3.4':
+ resolution: {integrity: sha512-S2fZBKuqbQjzLznTTSb5Pp5k114qzANLPuAfMyAJVQABu+Mnx9hkwELVtWlBA+bPAzY/iXuAnH3cOL7ZtMbLcA==}
peerDependencies:
'@toml-tools/parser': '*'
'@unocss/eslint-config': '>=0.58.0'
@@ -1139,8 +997,8 @@ packages:
'@types/lodash-es@4.17.12':
resolution: {integrity: sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==}
- '@types/lodash@4.17.0':
- resolution: {integrity: sha512-t7dhREVv6dbNj0q17X12j7yDG4bD/DHYX7o5/DbDxobP0HnGPgpRz2Ej77aL7TZT3DSw13fqUTj8J4mMnqa7WA==}
+ '@types/lodash@4.17.1':
+ resolution: {integrity: sha512-X+2qazGS3jxLAIz5JDXDzglAF3KpijdhFxlf/V1+hEsOUc+HnWi81L/uv/EvGuV90WY+7mPGFCUDGfQC3Gj95Q==}
'@types/mdast@4.0.3':
resolution: {integrity: sha512-LsjtqsyF+d2/yFOYaN22dHZI1Cpwkrj+g06G8+qtUKlhovPW89YhqSnfKtMbkgmEtYpH2gydRNULd6y8mciAFg==}
@@ -1151,8 +1009,8 @@ packages:
'@types/node@10.17.60':
resolution: {integrity: sha512-F0KIgDJfy2nA3zMLmWGKxcH2ZVEtCZXHHdOQs2gSaQ27+lNeEfGxzkIw90aXswATX7AZ33tahPbzy6KAfUreVw==}
- '@types/node@20.12.7':
- resolution: {integrity: sha512-wq0cICSkRLVaf3UGLMGItu/PtdY7oaXaI/RVU+xliKVOtRna3PRY57ZDfztpDL0n11vfymMUnXv8QwYCO7L1wg==}
+ '@types/node@20.12.8':
+ resolution: {integrity: sha512-NU0rJLJnshZWdE/097cdCBbyW1h4hEg0xpovcoAQYHl8dnEyp/NAOiE45pvc+Bd1Dt+2r94v2eGFpQJ4R7g+2w==}
'@types/normalize-package-data@2.4.4':
resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==}
@@ -1181,8 +1039,8 @@ packages:
'@types/web-bluetooth@0.0.20':
resolution: {integrity: sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==}
- '@typescript-eslint/eslint-plugin@7.7.0':
- resolution: {integrity: sha512-GJWR0YnfrKnsRoluVO3PRb9r5aMZriiMMM/RHj5nnTrBy1/wIgk76XCtCKcnXGjpZQJQRFtGV9/0JJ6n30uwpQ==}
+ '@typescript-eslint/eslint-plugin@7.8.0':
+ resolution: {integrity: sha512-gFTT+ezJmkwutUPmB0skOj3GZJtlEGnlssems4AjkVweUPGj7jRwwqg0Hhg7++kPGJqKtTYx+R05Ftww372aIg==}
engines: {node: ^18.18.0 || >=20.0.0}
peerDependencies:
'@typescript-eslint/parser': ^7.0.0
@@ -1192,8 +1050,8 @@ packages:
typescript:
optional: true
- '@typescript-eslint/parser@7.7.0':
- resolution: {integrity: sha512-fNcDm3wSwVM8QYL4HKVBggdIPAy9Q41vcvC/GtDobw3c4ndVT3K6cqudUmjHPw8EAp4ufax0o58/xvWaP2FmTg==}
+ '@typescript-eslint/parser@7.8.0':
+ resolution: {integrity: sha512-KgKQly1pv0l4ltcftP59uQZCi4HUYswCLbTqVZEJu7uLX8CTLyswqMLqLN+2QFz4jCptqWVV4SB7vdxcH2+0kQ==}
engines: {node: ^18.18.0 || >=20.0.0}
peerDependencies:
eslint: ^8.56.0
@@ -1202,16 +1060,12 @@ packages:
typescript:
optional: true
- '@typescript-eslint/scope-manager@7.7.0':
- resolution: {integrity: sha512-/8INDn0YLInbe9Wt7dK4cXLDYp0fNHP5xKLHvZl3mOT5X17rK/YShXaiNmorl+/U4VKCVIjJnx4Ri5b0y+HClw==}
- engines: {node: ^18.18.0 || >=20.0.0}
-
- '@typescript-eslint/scope-manager@7.7.1':
- resolution: {integrity: sha512-PytBif2SF+9SpEUKynYn5g1RHFddJUcyynGpztX3l/ik7KmZEv19WCMhUBkHXPU9es/VWGD3/zg3wg90+Dh2rA==}
+ '@typescript-eslint/scope-manager@7.8.0':
+ resolution: {integrity: sha512-viEmZ1LmwsGcnr85gIq+FCYI7nO90DVbE37/ll51hjv9aG+YZMb4WDE2fyWpUR4O/UrhGRpYXK/XajcGTk2B8g==}
engines: {node: ^18.18.0 || >=20.0.0}
- '@typescript-eslint/type-utils@7.7.0':
- resolution: {integrity: sha512-bOp3ejoRYrhAlnT/bozNQi3nio9tIgv3U5C0mVDdZC7cpcQEDZXvq8inrHYghLVwuNABRqrMW5tzAv88Vy77Sg==}
+ '@typescript-eslint/type-utils@7.8.0':
+ resolution: {integrity: sha512-H70R3AefQDQpz9mGv13Uhi121FNMh+WEaRqcXTX09YEDky21km4dV1ZXJIp8QjXc4ZaVkXVdohvWDzbnbHDS+A==}
engines: {node: ^18.18.0 || >=20.0.0}
peerDependencies:
eslint: ^8.56.0
@@ -1220,25 +1074,12 @@ packages:
typescript:
optional: true
- '@typescript-eslint/types@7.7.0':
- resolution: {integrity: sha512-G01YPZ1Bd2hn+KPpIbrAhEWOn5lQBrjxkzHkWvP6NucMXFtfXoevK82hzQdpfuQYuhkvFDeQYbzXCjR1z9Z03w==}
- engines: {node: ^18.18.0 || >=20.0.0}
-
- '@typescript-eslint/types@7.7.1':
- resolution: {integrity: sha512-AmPmnGW1ZLTpWa+/2omPrPfR7BcbUU4oha5VIbSbS1a1Tv966bklvLNXxp3mrbc+P2j4MNOTfDffNsk4o0c6/w==}
+ '@typescript-eslint/types@7.8.0':
+ resolution: {integrity: sha512-wf0peJ+ZGlcH+2ZS23aJbOv+ztjeeP8uQ9GgwMJGVLx/Nj9CJt17GWgWWoSmoRVKAX2X+7fzEnAjxdvK2gqCLw==}
engines: {node: ^18.18.0 || >=20.0.0}
- '@typescript-eslint/typescript-estree@7.7.0':
- resolution: {integrity: sha512-8p71HQPE6CbxIBy2kWHqM1KGrC07pk6RJn40n0DSc6bMOBBREZxSDJ+BmRzc8B5OdaMh1ty3mkuWRg4sCFiDQQ==}
- engines: {node: ^18.18.0 || >=20.0.0}
- peerDependencies:
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
-
- '@typescript-eslint/typescript-estree@7.7.1':
- resolution: {integrity: sha512-CXe0JHCXru8Fa36dteXqmH2YxngKJjkQLjxzoj6LYwzZ7qZvgsLSc+eqItCrqIop8Vl2UKoAi0StVWu97FQZIQ==}
+ '@typescript-eslint/typescript-estree@7.8.0':
+ resolution: {integrity: sha512-5pfUCOwK5yjPaJQNy44prjCwtr981dO8Qo9J9PwYXZ0MosgAbfEMB008dJ5sNo3+/BN6ytBPuSvXUg9SAqB0dg==}
engines: {node: ^18.18.0 || >=20.0.0}
peerDependencies:
typescript: '*'
@@ -1246,24 +1087,14 @@ packages:
typescript:
optional: true
- '@typescript-eslint/utils@7.7.0':
- resolution: {integrity: sha512-LKGAXMPQs8U/zMRFXDZOzmMKgFv3COlxUQ+2NMPhbqgVm6R1w+nU1i4836Pmxu9jZAuIeyySNrN/6Rc657ggig==}
+ '@typescript-eslint/utils@7.8.0':
+ resolution: {integrity: sha512-L0yFqOCflVqXxiZyXrDr80lnahQfSOfc9ELAAZ75sqicqp2i36kEZZGuUymHNFoYOqxRT05up760b4iGsl02nQ==}
engines: {node: ^18.18.0 || >=20.0.0}
peerDependencies:
eslint: ^8.56.0
- '@typescript-eslint/utils@7.7.1':
- resolution: {integrity: sha512-QUvBxPEaBXf41ZBbaidKICgVL8Hin0p6prQDu6bbetWo39BKbWJxRsErOzMNT1rXvTll+J7ChrbmMCXM9rsvOQ==}
- engines: {node: ^18.18.0 || >=20.0.0}
- peerDependencies:
- eslint: ^8.56.0
-
- '@typescript-eslint/visitor-keys@7.7.0':
- resolution: {integrity: sha512-h0WHOj8MhdhY8YWkzIF30R379y0NqyOHExI9N9KCzvmu05EgG4FumeYa3ccfKUSphyWkWQE1ybVrgz/Pbam6YA==}
- engines: {node: ^18.18.0 || >=20.0.0}
-
- '@typescript-eslint/visitor-keys@7.7.1':
- resolution: {integrity: sha512-gBL3Eq25uADw1LQ9kVpf3hRM+DWzs0uZknHYK3hq4jcTPqVCClHGDnB6UUUV2SFeBeA4KWHWbbLqmbGcZ4FYbw==}
+ '@typescript-eslint/visitor-keys@7.8.0':
+ resolution: {integrity: sha512-q4/gibTNBQNA0lGyYQCmWRS5D15n8rXh4QjK3KV+MBPlTYHpfBUT3D3PaPR/HeNiI9W6R7FvlkcGhNyAoP+caA==}
engines: {node: ^18.18.0 || >=20.0.0}
'@unocss/config@0.59.4':
@@ -1331,14 +1162,14 @@ packages:
vite: ^5.0.0
vue: ^3.2.25
- '@volar/language-core@2.2.0-alpha.10':
- resolution: {integrity: sha512-njVJLtpu0zMvDaEk7K5q4BRpOgbyEUljU++un9TfJoJNhxG0z/hWwpwgTRImO42EKvwIxF3XUzeMk+qatAFy7Q==}
+ '@volar/language-core@2.2.0':
+ resolution: {integrity: sha512-a8WG9+4OdeNDW4ywABZIM6S6UN7em8uIlM/BZ2pWQUYrVmX+m8sj/X+QadvO+Li/t/LjAqbWJQtVgxdpEWLALQ==}
- '@volar/source-map@2.2.0-alpha.10':
- resolution: {integrity: sha512-nrdWApVkP5cksAnDEyy1JD9rKdwOJsEq1B+seWO4vNXmZNcxQQCx4DULLBvKt7AzRUAQiAuw5aQkb9RBaSqdVA==}
+ '@volar/source-map@2.2.0':
+ resolution: {integrity: sha512-HQlPRlHOVqCCHK8wI76ZldHkEwKsjp7E6idUc36Ekni+KJDNrqgSqPvyHQixybXPHNU7CI9Uxd9/IkxO7LuNBw==}
- '@volar/typescript@2.2.0-alpha.10':
- resolution: {integrity: sha512-GCa0vTVVdA9ULUsu2Rx7jwsIuyZQPvPVT9o3NrANTbYv+523Ao1gv3glC5vzNSDPM6bUl37r94HbCj7KINQr+g==}
+ '@volar/typescript@2.2.0':
+ resolution: {integrity: sha512-wC6l4zLiiCLxF+FGaHCbWlQYf4vMsnRxYhcI6WgvaNppOD6r1g+Ef1RKRJUApALWU46Yy/JDU/TbdV6w/X6Liw==}
'@vue/babel-helper-vue-transform-on@1.2.2':
resolution: {integrity: sha512-nOttamHUR3YzdEqdM/XXDyCSdxMA9VizUKoroLX6yTyRtggzQMHXcmwh8a7ZErcJttIBIc9s68a1B8GZ+Dmvsw==}
@@ -1356,56 +1187,56 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@vue/compiler-core@3.4.25':
- resolution: {integrity: sha512-Y2pLLopaElgWnMNolgG8w3C5nNUVev80L7hdQ5iIKPtMJvhVpG0zhnBG/g3UajJmZdvW0fktyZTotEHD1Srhbg==}
+ '@vue/compiler-core@3.4.26':
+ resolution: {integrity: sha512-N9Vil6Hvw7NaiyFUFBPXrAyETIGlQ8KcFMkyk6hW1Cl6NvoqvP+Y8p1Eqvx+UdqsnrnI9+HMUEJegzia3mhXmQ==}
- '@vue/compiler-dom@3.4.25':
- resolution: {integrity: sha512-Ugz5DusW57+HjllAugLci19NsDK+VyjGvmbB2TXaTcSlQxwL++2PETHx/+Qv6qFwNLzSt7HKepPe4DcTE3pBWg==}
+ '@vue/compiler-dom@3.4.26':
+ resolution: {integrity: sha512-4CWbR5vR9fMg23YqFOhr6t6WB1Fjt62d6xdFPyj8pxrYub7d+OgZaObMsoxaF9yBUHPMiPFK303v61PwAuGvZA==}
- '@vue/compiler-sfc@3.4.25':
- resolution: {integrity: sha512-m7rryuqzIoQpOBZ18wKyq05IwL6qEpZxFZfRxlNYuIPDqywrXQxgUwLXIvoU72gs6cRdY6wHD0WVZIFE4OEaAQ==}
+ '@vue/compiler-sfc@3.4.26':
+ resolution: {integrity: sha512-It1dp+FAOCgluYSVYlDn5DtZBxk1NCiJJfu2mlQqa/b+k8GL6NG/3/zRbJnHdhV2VhxFghaDq5L4K+1dakW6cw==}
- '@vue/compiler-ssr@3.4.25':
- resolution: {integrity: sha512-H2ohvM/Pf6LelGxDBnfbbXFPyM4NE3hrw0e/EpwuSiYu8c819wx+SVGdJ65p/sFrYDd6OnSDxN1MB2mN07hRSQ==}
+ '@vue/compiler-ssr@3.4.26':
+ resolution: {integrity: sha512-FNwLfk7LlEPRY/g+nw2VqiDKcnDTVdCfBREekF8X74cPLiWHUX6oldktf/Vx28yh4STNy7t+/yuLoMBBF7YDiQ==}
'@vue/devtools-api@6.6.1':
resolution: {integrity: sha512-LgPscpE3Vs0x96PzSSB4IGVSZXZBZHpfxs+ZA1d+VEPwHdOXowy/Y2CsvCAIFrf+ssVU1pD1jidj505EpUnfbA==}
- '@vue/devtools-core@7.1.2':
- resolution: {integrity: sha512-yO2+xSnXkZPqSJAiWPigIwSdWQordROOg4nrLVA6ByJAzFowJmN6sAKysFtbhVg8Fb1e/DnI+1dJ4tp3zbvM7Q==}
+ '@vue/devtools-core@7.1.3':
+ resolution: {integrity: sha512-pVbWi8pf2Z/fZPioYOIgu+cv9pQG55k4D8bL31ec+Wfe+pQR0ImFDu0OhHfch1Ra8uvLLrAZTF4IKeGAkmzD4A==}
- '@vue/devtools-kit@7.1.2':
- resolution: {integrity: sha512-UTrcUSOhlI9eXqbPMHUWwA6NQiiPT3onzXsVk2JHGR8ZFFSkzsWTTpHyVA1woG8zvgu2HNV/wigW2k87p858zw==}
+ '@vue/devtools-kit@7.1.3':
+ resolution: {integrity: sha512-NFskFSJMVCBXTkByuk2llzI3KD3Blcm7WqiRorWjD6nClHPgkH5BobDH08rfulqq5ocRt5xV+3qOT1Q9FXJrwQ==}
peerDependencies:
vue: ^3.0.0
- '@vue/devtools-shared@7.1.2':
- resolution: {integrity: sha512-r9cUf93VMhKSsxF2/cBbf6Lm1nRBx+r1pRuji5CiAf3JIPYPOjeEqJ13OuwP1fauYh1tyBFcCxt3eJPvHT59gg==}
+ '@vue/devtools-shared@7.1.3':
+ resolution: {integrity: sha512-KJ3AfgjTn3tJz/XKF+BlVShNPecim3G21oHRue+YQOsooW+0s+qXvm09U09aO7yBza5SivL1QgxSrzAbiKWjhQ==}
- '@vue/language-core@2.0.14':
- resolution: {integrity: sha512-3q8mHSNcGTR7sfp2X6jZdcb4yt8AjBXAfKk0qkZIh7GAJxOnoZ10h5HToZglw4ToFvAnq+xu/Z2FFbglh9Icag==}
+ '@vue/language-core@2.0.16':
+ resolution: {integrity: sha512-Bc2sexRH99pznOph8mLw2BlRZ9edm7tW51kcBXgx8adAoOcZUWJj3UNSsdQ6H9Y8meGz7BoazVrVo/jUukIsPw==}
peerDependencies:
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
- '@vue/reactivity@3.4.25':
- resolution: {integrity: sha512-mKbEtKr1iTxZkAG3vm3BtKHAOhuI4zzsVcN0epDldU/THsrvfXRKzq+lZnjczZGnTdh3ojd86/WrP+u9M51pWQ==}
+ '@vue/reactivity@3.4.26':
+ resolution: {integrity: sha512-E/ynEAu/pw0yotJeLdvZEsp5Olmxt+9/WqzvKff0gE67tw73gmbx6tRkiagE/eH0UCubzSlGRebCbidB1CpqZQ==}
- '@vue/runtime-core@3.4.25':
- resolution: {integrity: sha512-3qhsTqbEh8BMH3pXf009epCI5E7bKu28fJLi9O6W+ZGt/6xgSfMuGPqa5HRbUxLoehTNp5uWvzCr60KuiRIL0Q==}
+ '@vue/runtime-core@3.4.26':
+ resolution: {integrity: sha512-AFJDLpZvhT4ujUgZSIL9pdNcO23qVFh7zWCsNdGQBw8ecLNxOOnPcK9wTTIYCmBJnuPHpukOwo62a2PPivihqw==}
- '@vue/runtime-dom@3.4.25':
- resolution: {integrity: sha512-ode0sj77kuwXwSc+2Yhk8JMHZh1sZp9F/51wdBiz3KGaWltbKtdihlJFhQG4H6AY+A06zzeMLkq6qu8uDSsaoA==}
+ '@vue/runtime-dom@3.4.26':
+ resolution: {integrity: sha512-UftYA2hUXR2UOZD/Fc3IndZuCOOJgFxJsWOxDkhfVcwLbsfh2CdXE2tG4jWxBZuDAs9J9PzRTUFt1PgydEtItw==}
- '@vue/server-renderer@3.4.25':
- resolution: {integrity: sha512-8VTwq0Zcu3K4dWV0jOwIVINESE/gha3ifYCOKEhxOj6MEl5K5y8J8clQncTcDhKF+9U765nRw4UdUEXvrGhyVQ==}
+ '@vue/server-renderer@3.4.26':
+ resolution: {integrity: sha512-xoGAqSjYDPGAeRWxeoYwqJFD/gw7mpgzOvSxEmjWaFO2rE6qpbD1PC172YRpvKhrihkyHJkNDADFXTfCyVGhKw==}
peerDependencies:
- vue: 3.4.25
+ vue: 3.4.26
- '@vue/shared@3.4.25':
- resolution: {integrity: sha512-k0yappJ77g2+KNrIaF0FFnzwLvUBLUYr8VOwz+/6vLsmItFp51AcxLL7Ey3iPd7BIRyWPOcqUjMnm7OkahXllA==}
+ '@vue/shared@3.4.26':
+ resolution: {integrity: sha512-Fg4zwR0GNnjzodMt3KRy2AWGMKQXByl56+4HjN87soxLNU9P5xcJkstAlIeEF3cU6UYOzmJl1tV0dVPGIljCnQ==}
'@vueuse/core@10.9.0':
resolution: {integrity: sha512-/1vjTol8SXnx6xewDEKfS0Ra//ncg4Hb0DaZiwKf7drgfMsKFExQ+FnnENcN6efPen+1kIzhLQoGSy0eDUVOMg==}
@@ -1615,8 +1446,8 @@ packages:
builtins@5.1.0:
resolution: {integrity: sha512-SW9lzGTLvWTP1AY8xeAMZimqDrIaSdLQUcVr9DMef51niJ022Ri87SwRRKYm4A6iHfkPaiVUu/Duw2Wc4J7kKg==}
- bumpp@9.4.0:
- resolution: {integrity: sha512-T+N+B5mSSvsTt7kgxGXCKQd957IxmEZwMn2nWirspGUY08u/cBNrpQDMXk43fzLegZtKtXS1v9S06vq2zf6lXQ==}
+ bumpp@9.4.1:
+ resolution: {integrity: sha512-kzhp/LpNX0HkUpEyLd7sU2LTN/mbAVgcxJ1Zi2cAJTE/tul6rypSKGpH8UywDpzKWItL8LVdKsIFnwmylw0+7g==}
engines: {node: '>=10'}
hasBin: true
@@ -1673,8 +1504,8 @@ packages:
can-use-dom@0.1.0:
resolution: {integrity: sha512-ceOhN1DL7Y4O6M0j9ICgmTYziV89WMd96SvSl0REd8PMgrY0B/WBOPoed5S1KUmJqXgUXh8gzSe6E3ae27upsQ==}
- caniuse-lite@1.0.30001612:
- resolution: {integrity: sha512-lFgnZ07UhaCcsSZgWW0K5j4e69dK1u/ltrL9lTUiFOwNHs12S3UMIEYgBV0Z6C6hRDev7iRnMzzYmKabYdXF9g==}
+ caniuse-lite@1.0.30001615:
+ resolution: {integrity: sha512-1IpazM5G3r38meiae0bHRnPhz+CBQ3ZLqbQMtrg+AsTPKAXgW38JNsXkyZ+v8waCsDmPq87lmfun5Q2AGysNEQ==}
chalk@1.1.3:
resolution: {integrity: sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==}
@@ -1919,6 +1750,9 @@ packages:
dayjs@1.11.10:
resolution: {integrity: sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ==}
+ dayjs@1.11.11:
+ resolution: {integrity: sha512-okzr3f11N6WuqYtZSvm+F776mB41wRZMhKP+hc34YdW+KmtYYK9iqvHSwo2k9FEH3fhGXvOPV6yz2IcSrfRUDg==}
+
de-indent@1.0.2:
resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==}
@@ -2074,8 +1908,8 @@ packages:
echarts@5.5.0:
resolution: {integrity: sha512-rNYnNCzqDAPCr4m/fqyUFv7fD9qIsd50S6GDFgO1DxZhncCsNsG7IfUlAlvZe5oSEQxtsjnHiUuppzccry93Xw==}
- electron-to-chromium@1.4.748:
- resolution: {integrity: sha512-VWqjOlPZn70UZ8FTKUOkUvBLeTQ0xpty66qV0yJcAGY2/CthI4xyW9aEozRVtuwv3Kpf5xTesmJUcPwuJmgP4A==}
+ electron-to-chromium@1.4.756:
+ resolution: {integrity: sha512-RJKZ9+vEBMeiPAvKNWyZjuYyUqMndcP1f335oHqn3BEQbs2NFtVrnK5+6Xg5wSM9TknNNpWghGDUCKGYF+xWXw==}
emoji-regex@10.3.0:
resolution: {integrity: sha512-QpLs9D9v9kArv4lfDEgg1X/gN5XLnf/A6l9cs8SPZLRZR3ZkY9+kwIQTxm+fsSej5UMYGE8fdoaZVIBlqG0XTw==}
@@ -2148,11 +1982,6 @@ packages:
resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==}
engines: {node: '>= 0.4'}
- esbuild@0.19.12:
- resolution: {integrity: sha512-aARqgq8roFBj054KvQr5f1sFu0D65G+miZRCuJyJ0G13Zwx7vRar5Zhn2tkQNzIXcBrNVsv/8stehpj+GAjgbg==}
- engines: {node: '>=12'}
- hasBin: true
-
esbuild@0.20.2:
resolution: {integrity: sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==}
engines: {node: '>=12'}
@@ -2204,8 +2033,8 @@ packages:
peerDependencies:
eslint: ^8.56.0 || ^9.0.0-0
- eslint-plugin-n@17.2.1:
- resolution: {integrity: sha512-uW1+df2bo06kR7ix6nB614RUlvjRPrYxlaX832O6e1MCJp4V7YozEdvMgCYuvn4ltnjPu1FVYhQ2KRrmTNoJfg==}
+ eslint-plugin-n@17.4.0:
+ resolution: {integrity: sha512-RtgGgNpYxECwE9dFr+D66RtbN0B8r/fY6ZF8EVsmK2YnZxE8/n9LNQhgnkL9z37UFZjYVmvMuC32qu7fQBsLVQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: '>=8.23.0'
@@ -2252,8 +2081,8 @@ packages:
resolution: {integrity: sha512-OtIRv/2GyiF6o/d8K7MYKKbXrOUBIK6SfkIRM4Z0dY3w+LiQ0vy3F57m0Z71bjbyeiWFiHJ8brqnmE6H6/jEuw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- eslint@9.1.1:
- resolution: {integrity: sha512-b4cRQ0BeZcSEzPpY2PjFY70VbO32K7BStTGtBsnIGdTSEEQzBi8hPBcGQmTG2zUvFr9uLe0TK42bw8YszuHEqg==}
+ eslint@9.2.0:
+ resolution: {integrity: sha512-0n/I88vZpCOzO+PQpt0lbsqmn9AsnsJAQseIqhZFI8ibQT0U1AkEKRxA3EVMos0BoHSXDQvCXY25TUjB5tr8Og==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
hasBin: true
@@ -2528,12 +2357,12 @@ packages:
resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
engines: {node: '>=18'}
- globals@15.0.0:
- resolution: {integrity: sha512-m/C/yR4mjO6pXDTm9/R/SpYTAIyaUB4EOzcaaMEl7mds7Mshct9GfejiJNQGjHHbdMPey13Kpu4TMbYi9ex1pw==}
+ globals@15.1.0:
+ resolution: {integrity: sha512-926gJqg+4mkxwYKiFvoomM4J0kWESfk3qfTvRL2/oc/tK/eTDBbrfcKnSa2KtfdxB5onoL7D3A3qIHQFpd4+UA==}
engines: {node: '>=18'}
- globalthis@1.0.3:
- resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==}
+ globalthis@1.0.4:
+ resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==}
engines: {node: '>= 0.4'}
globby@11.1.0:
@@ -2692,8 +2521,8 @@ packages:
peerDependencies:
postcss: ^8.1.0
- ignore-walk@6.0.4:
- resolution: {integrity: sha512-t7sv42WkwFkyKbivUCglsQW5YWMskWtbEf4MNKX5u/CCWHKSPzN4FtBQGsQZgCLbxOzpVlcbWVK5KB3auIOjSw==}
+ ignore-walk@6.0.5:
+ resolution: {integrity: sha512-VuuG0wCnjhnylG1ABXT3dAuIpTNDs/G8jlpmwXY03fXoXy/8ZK8/T+hMzt8L4WnrLCJgdybqgPagnF/f97cg3A==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
ignore@5.3.1:
@@ -3022,8 +2851,8 @@ packages:
json-parse-even-better-errors@2.3.1:
resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
- json-parse-even-better-errors@3.0.1:
- resolution: {integrity: sha512-aatBvbL26wVUCLmbWdCpeu9iF5wOyWpagiKkInA+kfws3sWdBrTnsvN2CKcyCYyUrc7rebNBlK6+kteg7ksecg==}
+ json-parse-even-better-errors@3.0.2:
+ resolution: {integrity: sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
json-parse-helpfulerror@1.0.3:
@@ -3115,10 +2944,6 @@ packages:
resolution: {integrity: sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==}
engines: {node: '>=4.0.0'}
- local-pkg@0.4.3:
- resolution: {integrity: sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g==}
- engines: {node: '>=14'}
-
local-pkg@0.5.0:
resolution: {integrity: sha512-ok6z3qlYyCDS4ZEU27HaU6x/xZa9Whf8jD4ptH5UZTQYZVYeb9bnZ3ojVhiJNLiXK1Hfc0GNbLXcmZ5plLDDBg==}
engines: {node: '>=14'}
@@ -3151,8 +2976,8 @@ packages:
resolution: {integrity: sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- lru-cache@10.2.0:
- resolution: {integrity: sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==}
+ lru-cache@10.2.2:
+ resolution: {integrity: sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==}
engines: {node: 14 || >=16.14}
lru-cache@5.1.1:
@@ -3336,8 +3161,8 @@ packages:
resolution: {integrity: sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA==}
engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
- minipass-fetch@3.0.4:
- resolution: {integrity: sha512-jHAqnA728uUpIaFm7NWsCnqKT6UqZz7GcI/bDpPATuwYyKwJwW0remxSCxUlKiEty+eopHGa3oc8WxgQ1FFJqg==}
+ minipass-fetch@3.0.5:
+ resolution: {integrity: sha512-2N8elDQAtSnFV0Dk7gt15KHsS0Fyz6CbYZ360h0WTYV1Ty46li3rAXVOQj1THMNLdmrD9Vt5pBPtWtVkpwGBqg==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
minipass-flush@1.0.5:
@@ -3363,8 +3188,8 @@ packages:
resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==}
engines: {node: '>=8'}
- minipass@7.0.4:
- resolution: {integrity: sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==}
+ minipass@7.1.0:
+ resolution: {integrity: sha512-oGZRv2OT1lO2UF1zUcwdTb3wqUwI0kBGTgt/T7OdSj6M6N5m3o5uPf0AIW6lVxGGoiWUR7e2AwTE+xiwK8WQig==}
engines: {node: '>=16 || 14 >=14.17'}
minizlib@2.1.2:
@@ -3388,8 +3213,8 @@ packages:
engines: {node: '>=10'}
hasBin: true
- mlly@1.6.1:
- resolution: {integrity: sha512-vLgaHvaeunuOXHSmEbZ9izxPx3USsk8KCQ8iC+aTlp5sKRSoZvwhHh5L9VbKSaVC6sJDqbyohIS76E2VmHIPAA==}
+ mlly@1.7.0:
+ resolution: {integrity: sha512-U9SDaXGEREBYQgfejV97coK0UL1r+qnF2SyO9A3qcI8MzKnsIFKHNVEkrDyNncQTKQQumsasmeq84eNMdBfsNQ==}
mrmime@2.0.0:
resolution: {integrity: sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==}
@@ -3407,8 +3232,8 @@ packages:
muggle-string@0.4.1:
resolution: {integrity: sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==}
- naive-ui@2.38.1:
- resolution: {integrity: sha512-AnU1FQ7K/CbhguAX++V4kCFjk7h7RvWt4nvZPRjORMpq+fUIlzD+EcQ5Cv1VqDloNF8+eMv4Akc2Ogacc9S+5A==}
+ naive-ui@2.38.2:
+ resolution: {integrity: sha512-WhZ+6DW61aYSmFyfH7evcSGFmd2xR68Yq1mNRrVdJwBhZsnNdAUsMN9IeNCVEPMCND/jzYZghkStoNoR5Xa09g==}
peerDependencies:
vue: ^3.0.0
@@ -3468,8 +3293,8 @@ packages:
resolution: {integrity: sha512-Vq0eyEQy+elFpzsKjMss9kxqb9tG3YHg4dsyWuUENuzvSUWe1TCnW/vV9FkhvBk/brEDoDiVd+M1Btosa6ImdQ==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
- npm-check-updates@16.14.19:
- resolution: {integrity: sha512-8qnqHXM4Tr+oNOiQc+9vXtO+wiHlqtxWcg6ZhBtiVtbLgxKc36RJovXVox9ZNvxLzipNXw/mcx2KXSGHxDy5bA==}
+ npm-check-updates@16.14.20:
+ resolution: {integrity: sha512-sYbIhun4DrjO7NFOTdvs11nCar0etEhZTsEjL47eM0TuiGMhmYughRCxG2SpGRmGAQ7AkwN7bw2lWzoE7q6yOQ==}
engines: {node: '>=14.14'}
hasBin: true
@@ -3572,8 +3397,8 @@ packages:
resolution: {integrity: sha512-mnkeQ1qP5Ue2wd+aivTD3NHd/lZ96Lu0jgf0pwktLPtx6cTZiH7tyeGRRHs0zX0rbrahXPnXlUnbeXyaBBuIaw==}
engines: {node: '>=18'}
- optionator@0.9.3:
- resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==}
+ optionator@0.9.4:
+ resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
engines: {node: '>= 0.8.0'}
p-cancelable@3.0.0:
@@ -3993,8 +3818,8 @@ packages:
engines: {node: '>=14'}
hasBin: true
- rollup@4.16.4:
- resolution: {integrity: sha512-kuaTJSUbz+Wsb2ATGvEknkI12XV40vIiHmLuFlejoo7HtDok/O5eDDD0UpCVY5bBX5U5RYo8wWP83H7ZsqVEnA==}
+ rollup@4.17.2:
+ resolution: {integrity: sha512-/9ClTJPByC0U4zNLowV1tMBe8yMEAxewtR3cUNX5BoEpGH3dQEWpJLr6CLp0fPdYRF/fzVOgvDb1zXuakwF5kQ==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
@@ -4022,8 +3847,8 @@ packages:
safer-buffer@2.1.2:
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
- sass@1.75.0:
- resolution: {integrity: sha512-ShMYi3WkrDWxExyxSZPst4/okE9ts46xZmJDSawJQrnte7M1V9fScVB+uNXOVKRBt0PggHOwoZcn8mYX4trnBw==}
+ sass@1.76.0:
+ resolution: {integrity: sha512-nc3LeqvF2FNW5xGF1zxZifdW3ffIz5aBb7I7tSvOoNu7z1RQ6pFt9MBuiPtjgaI62YWrM/txjWlOCFiGtf2xpw==}
engines: {node: '>=14.0.0'}
hasBin: true
@@ -4197,8 +4022,8 @@ packages:
sprintf-js@1.1.3:
resolution: {integrity: sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==}
- ssri@10.0.5:
- resolution: {integrity: sha512-bSf16tAFkGeRlUNDjXu8FzaMQt6g2HZJrun7mtMbIPOddxt3GLMSz5VWUWcqTJUPfLEaDIepGxv+bYQW49596A==}
+ ssri@10.0.6:
+ resolution: {integrity: sha512-MGrFH9Z4NP9Iyhqn16sDtBpRRNJ0Y2hNa6D65h736fVSaPCHr4DM4sWUNvVaSuC+0OBGhwsrydQwmgfg5LncqQ==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
ssri@9.0.1:
@@ -4379,8 +4204,8 @@ packages:
tslib@2.6.2:
resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==}
- tsx@4.7.3:
- resolution: {integrity: sha512-+fQnMqIp/jxZEXLcj6WzYy9FhcS5/Dfk8y4AtzJ6ejKcKqmfTF8Gso/jtrzDggCF2zTU20gJa6n8XqPYwDAUYQ==}
+ tsx@4.9.1:
+ resolution: {integrity: sha512-CqSJaYyZ6GEqnGtPuMPQHvUwRGU6VHSVF+RDxoOmRg/XD4aF0pD973tKhoUYGQtdcoCHcSOGk34ioFaP+vYcMQ==}
engines: {node: '>=18.0.0'}
hasBin: true
@@ -4492,8 +4317,8 @@ packages:
resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==}
engines: {node: '>= 10.0.0'}
- unplugin-icons@0.18.5:
- resolution: {integrity: sha512-KVNAohXbZ7tVcG1C3p6QaC7wU9Qrj7etv4XvsMMJAxr5LccQZ+Iuv5LOIv/7GtqXaGN1BuFCqRO1ErsHEgEXdQ==}
+ unplugin-icons@0.19.0:
+ resolution: {integrity: sha512-u5g/gIZPZEj1wUGEQxe9nzftOSqmblhusc+sL3cawIRoIt/xWpE6XYcPOfAeFTYNjSbRrX/3QiX89PFiazgU1w==}
peerDependencies:
'@svgr/core': '>=7.0.0'
'@svgx/core': ^1.0.1
@@ -4512,8 +4337,8 @@ packages:
vue-template-es2015-compiler:
optional: true
- unplugin-vue-components@0.26.0:
- resolution: {integrity: sha512-s7IdPDlnOvPamjunVxw8kNgKNK8A5KM1YpK5j/p97jEKTjlPNrA0nZBiSfAKKlK1gWZuyWXlKL5dk3EDw874LQ==}
+ unplugin-vue-components@0.27.0:
+ resolution: {integrity: sha512-77eTEy23sQ0UpzGWnZ9I2mY3cnmXwklz4ITcn3JfxjCoX643ghImkiZ4nFm58sxbdVcc4Fo/o4LIoFnlqEqsSg==}
engines: {node: '>=14'}
peerDependencies:
'@babel/parser': ^7.15.8
@@ -4540,8 +4365,8 @@ packages:
resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==}
engines: {node: '>=8'}
- update-browserslist-db@1.0.13:
- resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==}
+ update-browserslist-db@1.0.15:
+ resolution: {integrity: sha512-K9HWH62x3/EalU1U6sjSZiylm9C8tgq2mSvshZpqc7QE69RaA2qjhkW2HlNA0tFpEbtyFz7HTqbSdN4MSwUodA==}
hasBin: true
peerDependencies:
browserslist: '>= 4.21.0'
@@ -4609,8 +4434,8 @@ packages:
peerDependencies:
vite: '>=2.0.0'
- vite-plugin-vue-devtools@7.1.2:
- resolution: {integrity: sha512-TQm0sLGlAI9zEG6wZSzadBqzLOJ0VVUOvgRv2uqx/O1cEfH7UHuGkkGMFaeSQfbRWzD1OnOsJHsTMaUZB6m8iQ==}
+ vite-plugin-vue-devtools@7.1.3:
+ resolution: {integrity: sha512-qv8Z4yok9RYo6TEs89WnIAlmTHby/+XTim8tlSnMs3lAPcQqqcl/wGRY8gAeYrGCANngOqO+VuabW3Jb1HZtyw==}
engines: {node: '>=v14.21.3'}
peerDependencies:
vite: ^3.1.0 || ^4.0.0-0 || ^5.0.0-0
@@ -4620,8 +4445,8 @@ packages:
peerDependencies:
vite: ^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0
- vite@5.2.10:
- resolution: {integrity: sha512-PAzgUZbP7msvQvqdSD+ErD5qGnSFiGOoWmV5yAKUEI0kdhjbH6nMWVyZQC/hSc4aXwc0oJ9aEdIiF9Oje0JFCw==}
+ vite@5.2.11:
+ resolution: {integrity: sha512-HndV31LWW05i1BLPMUCE1B9E9GFbOu1MbenhS58FuK6owSO5qHm7GiCotrNY1YE5rMeQSFBGmT5ZaLEjFizgiQ==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
peerDependencies:
@@ -4704,14 +4529,14 @@ packages:
vue-template-compiler@2.7.16:
resolution: {integrity: sha512-AYbUWAJHLGGQM7+cNTELw+KsOG9nl2CnSv467WobS5Cv9uk3wFcnr1Etsz2sEIHEZvw1U+o9mRlEO6QbZvUPGQ==}
- vue-tsc@2.0.14:
- resolution: {integrity: sha512-DgAO3U1cnCHOUO7yB35LENbkapeRsBZ7Ugq5hGz/QOHny0+1VQN8eSwSBjYbjLVPfvfw6EY7sNPjbuHHUhckcg==}
+ vue-tsc@2.0.16:
+ resolution: {integrity: sha512-/gHAWJa216PeEhfxtAToIbxdWgw01wuQzo48ZUqMYVEyNqDp+OYV9xMO5HaPS2P3Ls0+EsjguMZLY4cGobX4Ew==}
hasBin: true
peerDependencies:
typescript: '*'
- vue@3.4.25:
- resolution: {integrity: sha512-HWyDqoBHMgav/OKiYA2ZQg+kjfMgLt/T0vg4cbIF7JbXAjDexRf5JRg+PWAfrAkSmTd2I8aPSXtooBFWHB98cg==}
+ vue@3.4.26:
+ resolution: {integrity: sha512-bUIq/p+VB+0xrJubaemrfhk1/FiW9iX+pDV+62I/XJ6EkspAO9/DXEjbDFoe8pIfOZBqfk45i9BMc41ptP/uRg==}
peerDependencies:
typescript: '*'
peerDependenciesMeta:
@@ -4754,6 +4579,10 @@ packages:
resolution: {integrity: sha512-o0cyEG0e8GPzT4iGHphIOh0cJOV8fivsXxddQasHPHfoZf1ZexrfeA21w2NaEN1RHE+fXlfISmOE8R9N3u3Qig==}
engines: {node: '>=12'}
+ word-wrap@1.2.5:
+ resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
+ engines: {node: '>=0.10.0'}
+
wrap-ansi@7.0.0:
resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
engines: {node: '>=10'}
@@ -4811,8 +4640,6 @@ packages:
snapshots:
- '@aashutoshrathi/word-wrap@1.2.6': {}
-
'@ampproject/remapping@2.3.0':
dependencies:
'@jridgewell/gen-mapping': 0.3.5
@@ -4825,31 +4652,31 @@ snapshots:
execa: 5.1.1
find-up: 5.0.0
- '@antfu/install-pkg@0.3.2':
+ '@antfu/install-pkg@0.3.3':
dependencies:
- execa: 8.0.1
+ '@jsdevtools/ez-spawn': 3.0.4
'@antfu/utils@0.7.7': {}
'@babel/code-frame@7.24.2':
dependencies:
- '@babel/highlight': 7.24.2
+ '@babel/highlight': 7.24.5
picocolors: 1.0.0
'@babel/compat-data@7.24.4': {}
- '@babel/core@7.24.4':
+ '@babel/core@7.24.5':
dependencies:
'@ampproject/remapping': 2.3.0
'@babel/code-frame': 7.24.2
- '@babel/generator': 7.24.4
+ '@babel/generator': 7.24.5
'@babel/helper-compilation-targets': 7.23.6
- '@babel/helper-module-transforms': 7.23.3(@babel/core@7.24.4)
- '@babel/helpers': 7.24.4
- '@babel/parser': 7.24.4
+ '@babel/helper-module-transforms': 7.24.5(@babel/core@7.24.5)
+ '@babel/helpers': 7.24.5
+ '@babel/parser': 7.24.5
'@babel/template': 7.24.0
- '@babel/traverse': 7.24.1
- '@babel/types': 7.24.0
+ '@babel/traverse': 7.24.5
+ '@babel/types': 7.24.5
convert-source-map: 2.0.0
debug: 4.3.4
gensync: 1.0.0-beta.2
@@ -4858,16 +4685,16 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/generator@7.24.4':
+ '@babel/generator@7.24.5':
dependencies:
- '@babel/types': 7.24.0
+ '@babel/types': 7.24.5
'@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
jsesc: 2.5.2
'@babel/helper-annotate-as-pure@7.22.5':
dependencies:
- '@babel/types': 7.24.0
+ '@babel/types': 7.24.5
'@babel/helper-compilation-targets@7.23.6':
dependencies:
@@ -4877,17 +4704,17 @@ snapshots:
lru-cache: 5.1.1
semver: 6.3.1
- '@babel/helper-create-class-features-plugin@7.24.4(@babel/core@7.24.4)':
+ '@babel/helper-create-class-features-plugin@7.24.5(@babel/core@7.24.5)':
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.5
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-function-name': 7.23.0
- '@babel/helper-member-expression-to-functions': 7.23.0
+ '@babel/helper-member-expression-to-functions': 7.24.5
'@babel/helper-optimise-call-expression': 7.22.5
- '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.4)
+ '@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.5)
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/helper-split-export-declaration': 7.22.6
+ '@babel/helper-split-export-declaration': 7.24.5
semver: 6.3.1
'@babel/helper-environment-visitor@7.22.20': {}
@@ -4895,152 +4722,152 @@ snapshots:
'@babel/helper-function-name@7.23.0':
dependencies:
'@babel/template': 7.24.0
- '@babel/types': 7.24.0
+ '@babel/types': 7.24.5
'@babel/helper-hoist-variables@7.22.5':
dependencies:
- '@babel/types': 7.24.0
+ '@babel/types': 7.24.5
- '@babel/helper-member-expression-to-functions@7.23.0':
+ '@babel/helper-member-expression-to-functions@7.24.5':
dependencies:
- '@babel/types': 7.24.0
+ '@babel/types': 7.24.5
'@babel/helper-module-imports@7.22.15':
dependencies:
- '@babel/types': 7.24.0
+ '@babel/types': 7.24.5
'@babel/helper-module-imports@7.24.3':
dependencies:
- '@babel/types': 7.24.0
+ '@babel/types': 7.24.5
- '@babel/helper-module-transforms@7.23.3(@babel/core@7.24.4)':
+ '@babel/helper-module-transforms@7.24.5(@babel/core@7.24.5)':
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.5
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-module-imports': 7.24.3
- '@babel/helper-simple-access': 7.22.5
- '@babel/helper-split-export-declaration': 7.22.6
- '@babel/helper-validator-identifier': 7.22.20
+ '@babel/helper-simple-access': 7.24.5
+ '@babel/helper-split-export-declaration': 7.24.5
+ '@babel/helper-validator-identifier': 7.24.5
'@babel/helper-optimise-call-expression@7.22.5':
dependencies:
- '@babel/types': 7.24.0
+ '@babel/types': 7.24.5
- '@babel/helper-plugin-utils@7.24.0': {}
+ '@babel/helper-plugin-utils@7.24.5': {}
- '@babel/helper-replace-supers@7.24.1(@babel/core@7.24.4)':
+ '@babel/helper-replace-supers@7.24.1(@babel/core@7.24.5)':
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.5
'@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-member-expression-to-functions': 7.23.0
+ '@babel/helper-member-expression-to-functions': 7.24.5
'@babel/helper-optimise-call-expression': 7.22.5
- '@babel/helper-simple-access@7.22.5':
+ '@babel/helper-simple-access@7.24.5':
dependencies:
- '@babel/types': 7.24.0
+ '@babel/types': 7.24.5
'@babel/helper-skip-transparent-expression-wrappers@7.22.5':
dependencies:
- '@babel/types': 7.24.0
+ '@babel/types': 7.24.5
- '@babel/helper-split-export-declaration@7.22.6':
+ '@babel/helper-split-export-declaration@7.24.5':
dependencies:
- '@babel/types': 7.24.0
+ '@babel/types': 7.24.5
'@babel/helper-string-parser@7.24.1': {}
- '@babel/helper-validator-identifier@7.22.20': {}
+ '@babel/helper-validator-identifier@7.24.5': {}
'@babel/helper-validator-option@7.23.5': {}
- '@babel/helpers@7.24.4':
+ '@babel/helpers@7.24.5':
dependencies:
'@babel/template': 7.24.0
- '@babel/traverse': 7.24.1
- '@babel/types': 7.24.0
+ '@babel/traverse': 7.24.5
+ '@babel/types': 7.24.5
transitivePeerDependencies:
- supports-color
- '@babel/highlight@7.24.2':
+ '@babel/highlight@7.24.5':
dependencies:
- '@babel/helper-validator-identifier': 7.22.20
+ '@babel/helper-validator-identifier': 7.24.5
chalk: 2.4.2
js-tokens: 4.0.0
picocolors: 1.0.0
- '@babel/parser@7.24.4':
+ '@babel/parser@7.24.5':
dependencies:
- '@babel/types': 7.24.0
+ '@babel/types': 7.24.5
- '@babel/plugin-proposal-decorators@7.24.1(@babel/core@7.24.4)':
+ '@babel/plugin-proposal-decorators@7.24.1(@babel/core@7.24.5)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-create-class-features-plugin': 7.24.4(@babel/core@7.24.4)
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-decorators': 7.24.1(@babel/core@7.24.4)
+ '@babel/core': 7.24.5
+ '@babel/helper-create-class-features-plugin': 7.24.5(@babel/core@7.24.5)
+ '@babel/helper-plugin-utils': 7.24.5
+ '@babel/plugin-syntax-decorators': 7.24.1(@babel/core@7.24.5)
- '@babel/plugin-syntax-decorators@7.24.1(@babel/core@7.24.4)':
+ '@babel/plugin-syntax-decorators@7.24.1(@babel/core@7.24.5)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
- '@babel/plugin-syntax-import-attributes@7.24.1(@babel/core@7.24.4)':
+ '@babel/plugin-syntax-import-attributes@7.24.1(@babel/core@7.24.5)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
- '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.4)':
+ '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.5)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
- '@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.24.4)':
+ '@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.24.5)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
- '@babel/plugin-syntax-typescript@7.24.1(@babel/core@7.24.4)':
+ '@babel/plugin-syntax-typescript@7.24.1(@babel/core@7.24.5)':
dependencies:
- '@babel/core': 7.24.4
- '@babel/helper-plugin-utils': 7.24.0
+ '@babel/core': 7.24.5
+ '@babel/helper-plugin-utils': 7.24.5
- '@babel/plugin-transform-typescript@7.24.4(@babel/core@7.24.4)':
+ '@babel/plugin-transform-typescript@7.24.5(@babel/core@7.24.5)':
dependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.5
'@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-create-class-features-plugin': 7.24.4(@babel/core@7.24.4)
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.24.4)
+ '@babel/helper-create-class-features-plugin': 7.24.5(@babel/core@7.24.5)
+ '@babel/helper-plugin-utils': 7.24.5
+ '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.24.5)
- '@babel/runtime@7.24.4':
+ '@babel/runtime@7.24.5':
dependencies:
regenerator-runtime: 0.14.1
'@babel/template@7.24.0':
dependencies:
'@babel/code-frame': 7.24.2
- '@babel/parser': 7.24.4
- '@babel/types': 7.24.0
+ '@babel/parser': 7.24.5
+ '@babel/types': 7.24.5
- '@babel/traverse@7.24.1':
+ '@babel/traverse@7.24.5':
dependencies:
'@babel/code-frame': 7.24.2
- '@babel/generator': 7.24.4
+ '@babel/generator': 7.24.5
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-function-name': 7.23.0
'@babel/helper-hoist-variables': 7.22.5
- '@babel/helper-split-export-declaration': 7.22.6
- '@babel/parser': 7.24.4
- '@babel/types': 7.24.0
+ '@babel/helper-split-export-declaration': 7.24.5
+ '@babel/parser': 7.24.5
+ '@babel/types': 7.24.5
debug: 4.3.4
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- '@babel/types@7.24.0':
+ '@babel/types@7.24.5':
dependencies:
'@babel/helper-string-parser': 7.24.1
- '@babel/helper-validator-identifier': 7.22.20
+ '@babel/helper-validator-identifier': 7.24.5
to-fast-properties: 2.0.0
'@better-scroll/core@2.5.1':
@@ -5056,9 +4883,9 @@ snapshots:
dependencies:
css-render: 0.15.12
- '@css-render/vue3-ssr@0.15.12(vue@3.4.25(typescript@5.4.5))':
+ '@css-render/vue3-ssr@0.15.12(vue@3.4.26(typescript@5.4.5))':
dependencies:
- vue: 3.4.25(typescript@5.4.5)
+ vue: 3.4.26(typescript@5.4.5)
'@elegant-router/core@0.3.6':
dependencies:
@@ -5081,147 +4908,78 @@ snapshots:
'@emotion/hash@0.8.0': {}
- '@esbuild/aix-ppc64@0.19.12':
- optional: true
-
'@esbuild/aix-ppc64@0.20.2':
optional: true
- '@esbuild/android-arm64@0.19.12':
- optional: true
-
'@esbuild/android-arm64@0.20.2':
optional: true
- '@esbuild/android-arm@0.19.12':
- optional: true
-
'@esbuild/android-arm@0.20.2':
optional: true
- '@esbuild/android-x64@0.19.12':
- optional: true
-
'@esbuild/android-x64@0.20.2':
optional: true
- '@esbuild/darwin-arm64@0.19.12':
- optional: true
-
'@esbuild/darwin-arm64@0.20.2':
optional: true
- '@esbuild/darwin-x64@0.19.12':
- optional: true
-
'@esbuild/darwin-x64@0.20.2':
optional: true
- '@esbuild/freebsd-arm64@0.19.12':
- optional: true
-
'@esbuild/freebsd-arm64@0.20.2':
optional: true
- '@esbuild/freebsd-x64@0.19.12':
- optional: true
-
'@esbuild/freebsd-x64@0.20.2':
optional: true
- '@esbuild/linux-arm64@0.19.12':
- optional: true
-
'@esbuild/linux-arm64@0.20.2':
optional: true
- '@esbuild/linux-arm@0.19.12':
- optional: true
-
'@esbuild/linux-arm@0.20.2':
optional: true
- '@esbuild/linux-ia32@0.19.12':
- optional: true
-
'@esbuild/linux-ia32@0.20.2':
optional: true
- '@esbuild/linux-loong64@0.19.12':
- optional: true
-
'@esbuild/linux-loong64@0.20.2':
optional: true
- '@esbuild/linux-mips64el@0.19.12':
- optional: true
-
'@esbuild/linux-mips64el@0.20.2':
optional: true
- '@esbuild/linux-ppc64@0.19.12':
- optional: true
-
'@esbuild/linux-ppc64@0.20.2':
optional: true
- '@esbuild/linux-riscv64@0.19.12':
- optional: true
-
'@esbuild/linux-riscv64@0.20.2':
optional: true
- '@esbuild/linux-s390x@0.19.12':
- optional: true
-
'@esbuild/linux-s390x@0.20.2':
optional: true
- '@esbuild/linux-x64@0.19.12':
- optional: true
-
'@esbuild/linux-x64@0.20.2':
optional: true
- '@esbuild/netbsd-x64@0.19.12':
- optional: true
-
'@esbuild/netbsd-x64@0.20.2':
optional: true
- '@esbuild/openbsd-x64@0.19.12':
- optional: true
-
'@esbuild/openbsd-x64@0.20.2':
optional: true
- '@esbuild/sunos-x64@0.19.12':
- optional: true
-
'@esbuild/sunos-x64@0.20.2':
optional: true
- '@esbuild/win32-arm64@0.19.12':
- optional: true
-
'@esbuild/win32-arm64@0.20.2':
optional: true
- '@esbuild/win32-ia32@0.19.12':
- optional: true
-
'@esbuild/win32-ia32@0.20.2':
optional: true
- '@esbuild/win32-x64@0.19.12':
- optional: true
-
'@esbuild/win32-x64@0.20.2':
optional: true
- '@eslint-community/eslint-utils@4.4.0(eslint@9.1.1)':
+ '@eslint-community/eslint-utils@4.4.0(eslint@9.2.0)':
dependencies:
- eslint: 9.1.1
+ eslint: 9.2.0
eslint-visitor-keys: 3.4.3
'@eslint-community/regexpp@4.10.0': {}
@@ -5254,7 +5012,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@eslint/js@9.1.1': {}
+ '@eslint/js@9.2.0': {}
'@gar/promisify@1.1.3': {}
@@ -5270,9 +5028,9 @@ snapshots:
'@humanwhocodes/object-schema@2.0.3': {}
- '@humanwhocodes/retry@0.2.3': {}
+ '@humanwhocodes/retry@0.2.4': {}
- '@iconify/json@2.2.204':
+ '@iconify/json@2.2.206':
dependencies:
'@iconify/types': 2.0.0
pathe: 1.1.2
@@ -5287,14 +5045,14 @@ snapshots:
debug: 4.3.4
kolorist: 1.8.0
local-pkg: 0.5.0
- mlly: 1.6.1
+ mlly: 1.7.0
transitivePeerDependencies:
- supports-color
- '@iconify/vue@4.1.2(vue@3.4.25(typescript@5.4.5))':
+ '@iconify/vue@4.1.2(vue@3.4.26(typescript@5.4.5))':
dependencies:
'@iconify/types': 2.0.0
- vue: 3.4.25(typescript@5.4.5)
+ vue: 3.4.26(typescript@5.4.5)
'@intlify/core-base@9.13.1':
dependencies:
@@ -5423,60 +5181,60 @@ snapshots:
'@polka/url@1.0.0-next.25': {}
- '@rollup/pluginutils@5.1.0(rollup@4.16.4)':
+ '@rollup/pluginutils@5.1.0(rollup@4.17.2)':
dependencies:
'@types/estree': 1.0.5
estree-walker: 2.0.2
picomatch: 2.3.1
optionalDependencies:
- rollup: 4.16.4
+ rollup: 4.17.2
- '@rollup/rollup-android-arm-eabi@4.16.4':
+ '@rollup/rollup-android-arm-eabi@4.17.2':
optional: true
- '@rollup/rollup-android-arm64@4.16.4':
+ '@rollup/rollup-android-arm64@4.17.2':
optional: true
- '@rollup/rollup-darwin-arm64@4.16.4':
+ '@rollup/rollup-darwin-arm64@4.17.2':
optional: true
- '@rollup/rollup-darwin-x64@4.16.4':
+ '@rollup/rollup-darwin-x64@4.17.2':
optional: true
- '@rollup/rollup-linux-arm-gnueabihf@4.16.4':
+ '@rollup/rollup-linux-arm-gnueabihf@4.17.2':
optional: true
- '@rollup/rollup-linux-arm-musleabihf@4.16.4':
+ '@rollup/rollup-linux-arm-musleabihf@4.17.2':
optional: true
- '@rollup/rollup-linux-arm64-gnu@4.16.4':
+ '@rollup/rollup-linux-arm64-gnu@4.17.2':
optional: true
- '@rollup/rollup-linux-arm64-musl@4.16.4':
+ '@rollup/rollup-linux-arm64-musl@4.17.2':
optional: true
- '@rollup/rollup-linux-powerpc64le-gnu@4.16.4':
+ '@rollup/rollup-linux-powerpc64le-gnu@4.17.2':
optional: true
- '@rollup/rollup-linux-riscv64-gnu@4.16.4':
+ '@rollup/rollup-linux-riscv64-gnu@4.17.2':
optional: true
- '@rollup/rollup-linux-s390x-gnu@4.16.4':
+ '@rollup/rollup-linux-s390x-gnu@4.17.2':
optional: true
- '@rollup/rollup-linux-x64-gnu@4.16.4':
+ '@rollup/rollup-linux-x64-gnu@4.17.2':
optional: true
- '@rollup/rollup-linux-x64-musl@4.16.4':
+ '@rollup/rollup-linux-x64-musl@4.17.2':
optional: true
- '@rollup/rollup-win32-arm64-msvc@4.16.4':
+ '@rollup/rollup-win32-arm64-msvc@4.17.2':
optional: true
- '@rollup/rollup-win32-ia32-msvc@4.16.4':
+ '@rollup/rollup-win32-ia32-msvc@4.17.2':
optional: true
- '@rollup/rollup-win32-x64-msvc@4.16.4':
+ '@rollup/rollup-win32-x64-msvc@4.17.2':
optional: true
'@sigstore/bundle@1.1.0':
@@ -5502,9 +5260,9 @@ snapshots:
'@sindresorhus/is@5.6.0': {}
- '@soybeanjs/changelog@0.3.22(@unocss/eslint-config@0.59.4(eslint@9.1.1)(typescript@5.4.5))(eslint-plugin-vue@9.25.0(eslint@9.1.1))(eslint@9.1.1)(typescript@5.4.5)(vue-eslint-parser@9.4.2(eslint@9.1.1))':
+ '@soybeanjs/changelog@0.3.23(@unocss/eslint-config@0.59.4(eslint@9.2.0)(typescript@5.4.5))(eslint-plugin-vue@9.25.0(eslint@9.2.0))(eslint@9.2.0)(typescript@5.4.5)(vue-eslint-parser@9.4.2(eslint@9.2.0))':
dependencies:
- '@soybeanjs/eslint-config': 1.3.2(@unocss/eslint-config@0.59.4(eslint@9.1.1)(typescript@5.4.5))(eslint-plugin-vue@9.25.0(eslint@9.1.1))(eslint@9.1.1)(typescript@5.4.5)(vue-eslint-parser@9.4.2(eslint@9.1.1))
+ '@soybeanjs/eslint-config': 1.3.4(@unocss/eslint-config@0.59.4(eslint@9.2.0)(typescript@5.4.5))(eslint-plugin-vue@9.25.0(eslint@9.2.0))(eslint@9.2.0)(typescript@5.4.5)(vue-eslint-parser@9.4.2(eslint@9.2.0))
cli-progress: 3.12.0
convert-gitmoji: 0.1.5
dayjs: 1.11.10
@@ -5531,22 +5289,22 @@ snapshots:
- typescript
- vue-eslint-parser
- '@soybeanjs/eslint-config@1.3.2(@unocss/eslint-config@0.59.4(eslint@9.1.1)(typescript@5.4.5))(eslint-plugin-vue@9.25.0(eslint@9.1.1))(eslint@9.1.1)(typescript@5.4.5)(vue-eslint-parser@9.4.2(eslint@9.1.1))':
+ '@soybeanjs/eslint-config@1.3.4(@unocss/eslint-config@0.59.4(eslint@9.2.0)(typescript@5.4.5))(eslint-plugin-vue@9.25.0(eslint@9.2.0))(eslint@9.2.0)(typescript@5.4.5)(vue-eslint-parser@9.4.2(eslint@9.2.0))':
dependencies:
'@antfu/eslint-define-config': 1.23.0-2
- '@antfu/install-pkg': 0.3.2
+ '@antfu/install-pkg': 0.3.3
'@eslint/eslintrc': 3.0.2
- '@eslint/js': 9.1.1
- '@typescript-eslint/eslint-plugin': 7.7.0(@typescript-eslint/parser@7.7.0(eslint@9.1.1)(typescript@5.4.5))(eslint@9.1.1)(typescript@5.4.5)
- '@typescript-eslint/parser': 7.7.0(eslint@9.1.1)(typescript@5.4.5)
- eslint: 9.1.1
- eslint-config-prettier: 9.1.0(eslint@9.1.1)
+ '@eslint/js': 9.2.0
+ '@typescript-eslint/eslint-plugin': 7.8.0(@typescript-eslint/parser@7.8.0(eslint@9.2.0)(typescript@5.4.5))(eslint@9.2.0)(typescript@5.4.5)
+ '@typescript-eslint/parser': 7.8.0(eslint@9.2.0)(typescript@5.4.5)
+ eslint: 9.2.0
+ eslint-config-prettier: 9.1.0(eslint@9.2.0)
eslint-parser-plain: 0.1.0
- eslint-plugin-import-x: 0.5.0(eslint@9.1.1)(typescript@5.4.5)
- eslint-plugin-n: 17.2.1(eslint@9.1.1)
- eslint-plugin-prettier: 5.1.3(eslint-config-prettier@9.1.0(eslint@9.1.1))(eslint@9.1.1)(prettier@3.2.5)
- eslint-plugin-unicorn: 52.0.0(eslint@9.1.1)
- globals: 15.0.0
+ eslint-plugin-import-x: 0.5.0(eslint@9.2.0)(typescript@5.4.5)
+ eslint-plugin-n: 17.4.0(eslint@9.2.0)
+ eslint-plugin-prettier: 5.1.3(eslint-config-prettier@9.1.0(eslint@9.2.0))(eslint@9.2.0)(prettier@3.2.5)
+ eslint-plugin-unicorn: 52.0.0(eslint@9.2.0)
+ globals: 15.1.0
local-pkg: 0.5.0
prettier: 3.2.5
prettier-plugin-jsdoc: 1.3.0(prettier@3.2.5)
@@ -5554,9 +5312,9 @@ snapshots:
prompts: 2.4.2
typescript: 5.4.5
optionalDependencies:
- '@unocss/eslint-config': 0.59.4(eslint@9.1.1)(typescript@5.4.5)
- eslint-plugin-vue: 9.25.0(eslint@9.1.1)
- vue-eslint-parser: 9.4.2(eslint@9.1.1)
+ '@unocss/eslint-config': 0.59.4(eslint@9.2.0)(typescript@5.4.5)
+ eslint-plugin-vue: 9.25.0(eslint@9.2.0)
+ vue-eslint-parser: 9.4.2(eslint@9.2.0)
transitivePeerDependencies:
- '@types/eslint'
- supports-color
@@ -5592,9 +5350,9 @@ snapshots:
'@types/lodash-es@4.17.12':
dependencies:
- '@types/lodash': 4.17.0
+ '@types/lodash': 4.17.1
- '@types/lodash@4.17.0': {}
+ '@types/lodash@4.17.1': {}
'@types/mdast@4.0.3':
dependencies:
@@ -5604,7 +5362,7 @@ snapshots:
'@types/node@10.17.60': {}
- '@types/node@20.12.7':
+ '@types/node@20.12.8':
dependencies:
undici-types: 5.26.5
@@ -5622,22 +5380,22 @@ snapshots:
'@types/svgo@2.6.4':
dependencies:
- '@types/node': 20.12.7
+ '@types/node': 20.12.8
'@types/unist@3.0.2': {}
'@types/web-bluetooth@0.0.20': {}
- '@typescript-eslint/eslint-plugin@7.7.0(@typescript-eslint/parser@7.7.0(eslint@9.1.1)(typescript@5.4.5))(eslint@9.1.1)(typescript@5.4.5)':
+ '@typescript-eslint/eslint-plugin@7.8.0(@typescript-eslint/parser@7.8.0(eslint@9.2.0)(typescript@5.4.5))(eslint@9.2.0)(typescript@5.4.5)':
dependencies:
'@eslint-community/regexpp': 4.10.0
- '@typescript-eslint/parser': 7.7.0(eslint@9.1.1)(typescript@5.4.5)
- '@typescript-eslint/scope-manager': 7.7.0
- '@typescript-eslint/type-utils': 7.7.0(eslint@9.1.1)(typescript@5.4.5)
- '@typescript-eslint/utils': 7.7.0(eslint@9.1.1)(typescript@5.4.5)
- '@typescript-eslint/visitor-keys': 7.7.0
+ '@typescript-eslint/parser': 7.8.0(eslint@9.2.0)(typescript@5.4.5)
+ '@typescript-eslint/scope-manager': 7.8.0
+ '@typescript-eslint/type-utils': 7.8.0(eslint@9.2.0)(typescript@5.4.5)
+ '@typescript-eslint/utils': 7.8.0(eslint@9.2.0)(typescript@5.4.5)
+ '@typescript-eslint/visitor-keys': 7.8.0
debug: 4.3.4
- eslint: 9.1.1
+ eslint: 9.2.0
graphemer: 1.4.0
ignore: 5.3.1
natural-compare: 1.4.0
@@ -5648,49 +5406,42 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@7.7.0(eslint@9.1.1)(typescript@5.4.5)':
+ '@typescript-eslint/parser@7.8.0(eslint@9.2.0)(typescript@5.4.5)':
dependencies:
- '@typescript-eslint/scope-manager': 7.7.0
- '@typescript-eslint/types': 7.7.0
- '@typescript-eslint/typescript-estree': 7.7.0(typescript@5.4.5)
- '@typescript-eslint/visitor-keys': 7.7.0
+ '@typescript-eslint/scope-manager': 7.8.0
+ '@typescript-eslint/types': 7.8.0
+ '@typescript-eslint/typescript-estree': 7.8.0(typescript@5.4.5)
+ '@typescript-eslint/visitor-keys': 7.8.0
debug: 4.3.4
- eslint: 9.1.1
+ eslint: 9.2.0
optionalDependencies:
typescript: 5.4.5
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/scope-manager@7.7.0':
+ '@typescript-eslint/scope-manager@7.8.0':
dependencies:
- '@typescript-eslint/types': 7.7.0
- '@typescript-eslint/visitor-keys': 7.7.0
+ '@typescript-eslint/types': 7.8.0
+ '@typescript-eslint/visitor-keys': 7.8.0
- '@typescript-eslint/scope-manager@7.7.1':
+ '@typescript-eslint/type-utils@7.8.0(eslint@9.2.0)(typescript@5.4.5)':
dependencies:
- '@typescript-eslint/types': 7.7.1
- '@typescript-eslint/visitor-keys': 7.7.1
-
- '@typescript-eslint/type-utils@7.7.0(eslint@9.1.1)(typescript@5.4.5)':
- dependencies:
- '@typescript-eslint/typescript-estree': 7.7.0(typescript@5.4.5)
- '@typescript-eslint/utils': 7.7.0(eslint@9.1.1)(typescript@5.4.5)
+ '@typescript-eslint/typescript-estree': 7.8.0(typescript@5.4.5)
+ '@typescript-eslint/utils': 7.8.0(eslint@9.2.0)(typescript@5.4.5)
debug: 4.3.4
- eslint: 9.1.1
+ eslint: 9.2.0
ts-api-utils: 1.3.0(typescript@5.4.5)
optionalDependencies:
typescript: 5.4.5
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/types@7.7.0': {}
-
- '@typescript-eslint/types@7.7.1': {}
+ '@typescript-eslint/types@7.8.0': {}
- '@typescript-eslint/typescript-estree@7.7.0(typescript@5.4.5)':
+ '@typescript-eslint/typescript-estree@7.8.0(typescript@5.4.5)':
dependencies:
- '@typescript-eslint/types': 7.7.0
- '@typescript-eslint/visitor-keys': 7.7.0
+ '@typescript-eslint/types': 7.8.0
+ '@typescript-eslint/visitor-keys': 7.8.0
debug: 4.3.4
globby: 11.1.0
is-glob: 4.0.3
@@ -5702,57 +5453,23 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/typescript-estree@7.7.1(typescript@5.4.5)':
+ '@typescript-eslint/utils@7.8.0(eslint@9.2.0)(typescript@5.4.5)':
dependencies:
- '@typescript-eslint/types': 7.7.1
- '@typescript-eslint/visitor-keys': 7.7.1
- debug: 4.3.4
- globby: 11.1.0
- is-glob: 4.0.3
- minimatch: 9.0.4
- semver: 7.6.0
- ts-api-utils: 1.3.0(typescript@5.4.5)
- optionalDependencies:
- typescript: 5.4.5
- transitivePeerDependencies:
- - supports-color
-
- '@typescript-eslint/utils@7.7.0(eslint@9.1.1)(typescript@5.4.5)':
- dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.1.1)
- '@types/json-schema': 7.0.15
- '@types/semver': 7.5.8
- '@typescript-eslint/scope-manager': 7.7.0
- '@typescript-eslint/types': 7.7.0
- '@typescript-eslint/typescript-estree': 7.7.0(typescript@5.4.5)
- eslint: 9.1.1
- semver: 7.6.0
- transitivePeerDependencies:
- - supports-color
- - typescript
-
- '@typescript-eslint/utils@7.7.1(eslint@9.1.1)(typescript@5.4.5)':
- dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.1.1)
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.2.0)
'@types/json-schema': 7.0.15
'@types/semver': 7.5.8
- '@typescript-eslint/scope-manager': 7.7.1
- '@typescript-eslint/types': 7.7.1
- '@typescript-eslint/typescript-estree': 7.7.1(typescript@5.4.5)
- eslint: 9.1.1
+ '@typescript-eslint/scope-manager': 7.8.0
+ '@typescript-eslint/types': 7.8.0
+ '@typescript-eslint/typescript-estree': 7.8.0(typescript@5.4.5)
+ eslint: 9.2.0
semver: 7.6.0
transitivePeerDependencies:
- supports-color
- typescript
- '@typescript-eslint/visitor-keys@7.7.0':
+ '@typescript-eslint/visitor-keys@7.8.0':
dependencies:
- '@typescript-eslint/types': 7.7.0
- eslint-visitor-keys: 3.4.3
-
- '@typescript-eslint/visitor-keys@7.7.1':
- dependencies:
- '@typescript-eslint/types': 7.7.1
+ '@typescript-eslint/types': 7.8.0
eslint-visitor-keys: 3.4.3
'@unocss/config@0.59.4':
@@ -5762,17 +5479,17 @@ snapshots:
'@unocss/core@0.59.4': {}
- '@unocss/eslint-config@0.59.4(eslint@9.1.1)(typescript@5.4.5)':
+ '@unocss/eslint-config@0.59.4(eslint@9.2.0)(typescript@5.4.5)':
dependencies:
- '@unocss/eslint-plugin': 0.59.4(eslint@9.1.1)(typescript@5.4.5)
+ '@unocss/eslint-plugin': 0.59.4(eslint@9.2.0)(typescript@5.4.5)
transitivePeerDependencies:
- eslint
- supports-color
- typescript
- '@unocss/eslint-plugin@0.59.4(eslint@9.1.1)(typescript@5.4.5)':
+ '@unocss/eslint-plugin@0.59.4(eslint@9.2.0)(typescript@5.4.5)':
dependencies:
- '@typescript-eslint/utils': 7.7.1(eslint@9.1.1)(typescript@5.4.5)
+ '@typescript-eslint/utils': 7.8.0(eslint@9.2.0)(typescript@5.4.5)
'@unocss/config': 0.59.4
'@unocss/core': 0.59.4
magic-string: 0.30.10
@@ -5837,10 +5554,10 @@ snapshots:
dependencies:
'@unocss/core': 0.59.4
- '@unocss/vite@0.59.4(rollup@4.16.4)(vite@5.2.10(@types/node@20.12.7)(sass@1.75.0))':
+ '@unocss/vite@0.59.4(rollup@4.17.2)(vite@5.2.11(@types/node@20.12.8)(sass@1.76.0))':
dependencies:
'@ampproject/remapping': 2.3.0
- '@rollup/pluginutils': 5.1.0(rollup@4.16.4)
+ '@rollup/pluginutils': 5.1.0(rollup@4.17.2)
'@unocss/config': 0.59.4
'@unocss/core': 0.59.4
'@unocss/inspector': 0.59.4
@@ -5849,129 +5566,129 @@ snapshots:
chokidar: 3.6.0
fast-glob: 3.3.2
magic-string: 0.30.10
- vite: 5.2.10(@types/node@20.12.7)(sass@1.75.0)
+ vite: 5.2.11(@types/node@20.12.8)(sass@1.76.0)
transitivePeerDependencies:
- rollup
- '@vitejs/plugin-vue-jsx@3.1.0(vite@5.2.10(@types/node@20.12.7)(sass@1.75.0))(vue@3.4.25(typescript@5.4.5))':
+ '@vitejs/plugin-vue-jsx@3.1.0(vite@5.2.11(@types/node@20.12.8)(sass@1.76.0))(vue@3.4.26(typescript@5.4.5))':
dependencies:
- '@babel/core': 7.24.4
- '@babel/plugin-transform-typescript': 7.24.4(@babel/core@7.24.4)
- '@vue/babel-plugin-jsx': 1.2.2(@babel/core@7.24.4)
- vite: 5.2.10(@types/node@20.12.7)(sass@1.75.0)
- vue: 3.4.25(typescript@5.4.5)
+ '@babel/core': 7.24.5
+ '@babel/plugin-transform-typescript': 7.24.5(@babel/core@7.24.5)
+ '@vue/babel-plugin-jsx': 1.2.2(@babel/core@7.24.5)
+ vite: 5.2.11(@types/node@20.12.8)(sass@1.76.0)
+ vue: 3.4.26(typescript@5.4.5)
transitivePeerDependencies:
- supports-color
- '@vitejs/plugin-vue@5.0.4(vite@5.2.10(@types/node@20.12.7)(sass@1.75.0))(vue@3.4.25(typescript@5.4.5))':
+ '@vitejs/plugin-vue@5.0.4(vite@5.2.11(@types/node@20.12.8)(sass@1.76.0))(vue@3.4.26(typescript@5.4.5))':
dependencies:
- vite: 5.2.10(@types/node@20.12.7)(sass@1.75.0)
- vue: 3.4.25(typescript@5.4.5)
+ vite: 5.2.11(@types/node@20.12.8)(sass@1.76.0)
+ vue: 3.4.26(typescript@5.4.5)
- '@volar/language-core@2.2.0-alpha.10':
+ '@volar/language-core@2.2.0':
dependencies:
- '@volar/source-map': 2.2.0-alpha.10
+ '@volar/source-map': 2.2.0
- '@volar/source-map@2.2.0-alpha.10':
+ '@volar/source-map@2.2.0':
dependencies:
muggle-string: 0.4.1
- '@volar/typescript@2.2.0-alpha.10':
+ '@volar/typescript@2.2.0':
dependencies:
- '@volar/language-core': 2.2.0-alpha.10
+ '@volar/language-core': 2.2.0
path-browserify: 1.0.1
'@vue/babel-helper-vue-transform-on@1.2.2': {}
- '@vue/babel-plugin-jsx@1.2.2(@babel/core@7.24.4)':
+ '@vue/babel-plugin-jsx@1.2.2(@babel/core@7.24.5)':
dependencies:
'@babel/helper-module-imports': 7.22.15
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.4)
+ '@babel/helper-plugin-utils': 7.24.5
+ '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.5)
'@babel/template': 7.24.0
- '@babel/traverse': 7.24.1
- '@babel/types': 7.24.0
+ '@babel/traverse': 7.24.5
+ '@babel/types': 7.24.5
'@vue/babel-helper-vue-transform-on': 1.2.2
- '@vue/babel-plugin-resolve-type': 1.2.2(@babel/core@7.24.4)
+ '@vue/babel-plugin-resolve-type': 1.2.2(@babel/core@7.24.5)
camelcase: 6.3.0
html-tags: 3.3.1
svg-tags: 1.0.0
optionalDependencies:
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.5
transitivePeerDependencies:
- supports-color
- '@vue/babel-plugin-resolve-type@1.2.2(@babel/core@7.24.4)':
+ '@vue/babel-plugin-resolve-type@1.2.2(@babel/core@7.24.5)':
dependencies:
'@babel/code-frame': 7.24.2
- '@babel/core': 7.24.4
+ '@babel/core': 7.24.5
'@babel/helper-module-imports': 7.22.15
- '@babel/helper-plugin-utils': 7.24.0
- '@babel/parser': 7.24.4
- '@vue/compiler-sfc': 3.4.25
+ '@babel/helper-plugin-utils': 7.24.5
+ '@babel/parser': 7.24.5
+ '@vue/compiler-sfc': 3.4.26
- '@vue/compiler-core@3.4.25':
+ '@vue/compiler-core@3.4.26':
dependencies:
- '@babel/parser': 7.24.4
- '@vue/shared': 3.4.25
+ '@babel/parser': 7.24.5
+ '@vue/shared': 3.4.26
entities: 4.5.0
estree-walker: 2.0.2
source-map-js: 1.2.0
- '@vue/compiler-dom@3.4.25':
+ '@vue/compiler-dom@3.4.26':
dependencies:
- '@vue/compiler-core': 3.4.25
- '@vue/shared': 3.4.25
+ '@vue/compiler-core': 3.4.26
+ '@vue/shared': 3.4.26
- '@vue/compiler-sfc@3.4.25':
+ '@vue/compiler-sfc@3.4.26':
dependencies:
- '@babel/parser': 7.24.4
- '@vue/compiler-core': 3.4.25
- '@vue/compiler-dom': 3.4.25
- '@vue/compiler-ssr': 3.4.25
- '@vue/shared': 3.4.25
+ '@babel/parser': 7.24.5
+ '@vue/compiler-core': 3.4.26
+ '@vue/compiler-dom': 3.4.26
+ '@vue/compiler-ssr': 3.4.26
+ '@vue/shared': 3.4.26
estree-walker: 2.0.2
magic-string: 0.30.10
postcss: 8.4.38
source-map-js: 1.2.0
- '@vue/compiler-ssr@3.4.25':
+ '@vue/compiler-ssr@3.4.26':
dependencies:
- '@vue/compiler-dom': 3.4.25
- '@vue/shared': 3.4.25
+ '@vue/compiler-dom': 3.4.26
+ '@vue/shared': 3.4.26
'@vue/devtools-api@6.6.1': {}
- '@vue/devtools-core@7.1.2(vite@5.2.10(@types/node@20.12.7)(sass@1.75.0))(vue@3.4.25(typescript@5.4.5))':
+ '@vue/devtools-core@7.1.3(vite@5.2.11(@types/node@20.12.8)(sass@1.76.0))(vue@3.4.26(typescript@5.4.5))':
dependencies:
- '@vue/devtools-kit': 7.1.2(vue@3.4.25(typescript@5.4.5))
- '@vue/devtools-shared': 7.1.2
+ '@vue/devtools-kit': 7.1.3(vue@3.4.26(typescript@5.4.5))
+ '@vue/devtools-shared': 7.1.3
mitt: 3.0.1
nanoid: 3.3.7
pathe: 1.1.2
- vite-hot-client: 0.2.3(vite@5.2.10(@types/node@20.12.7)(sass@1.75.0))
+ vite-hot-client: 0.2.3(vite@5.2.11(@types/node@20.12.8)(sass@1.76.0))
transitivePeerDependencies:
- vite
- vue
- '@vue/devtools-kit@7.1.2(vue@3.4.25(typescript@5.4.5))':
+ '@vue/devtools-kit@7.1.3(vue@3.4.26(typescript@5.4.5))':
dependencies:
- '@vue/devtools-shared': 7.1.2
+ '@vue/devtools-shared': 7.1.3
hookable: 5.5.3
mitt: 3.0.1
perfect-debounce: 1.0.0
speakingurl: 14.0.1
- vue: 3.4.25(typescript@5.4.5)
+ vue: 3.4.26(typescript@5.4.5)
- '@vue/devtools-shared@7.1.2':
+ '@vue/devtools-shared@7.1.3':
dependencies:
rfdc: 1.3.1
- '@vue/language-core@2.0.14(typescript@5.4.5)':
+ '@vue/language-core@2.0.16(typescript@5.4.5)':
dependencies:
- '@volar/language-core': 2.2.0-alpha.10
- '@vue/compiler-dom': 3.4.25
- '@vue/shared': 3.4.25
+ '@volar/language-core': 2.2.0
+ '@vue/compiler-dom': 3.4.26
+ '@vue/shared': 3.4.26
computeds: 0.0.1
minimatch: 9.0.4
path-browserify: 1.0.1
@@ -5979,44 +5696,44 @@ snapshots:
optionalDependencies:
typescript: 5.4.5
- '@vue/reactivity@3.4.25':
+ '@vue/reactivity@3.4.26':
dependencies:
- '@vue/shared': 3.4.25
+ '@vue/shared': 3.4.26
- '@vue/runtime-core@3.4.25':
+ '@vue/runtime-core@3.4.26':
dependencies:
- '@vue/reactivity': 3.4.25
- '@vue/shared': 3.4.25
+ '@vue/reactivity': 3.4.26
+ '@vue/shared': 3.4.26
- '@vue/runtime-dom@3.4.25':
+ '@vue/runtime-dom@3.4.26':
dependencies:
- '@vue/runtime-core': 3.4.25
- '@vue/shared': 3.4.25
+ '@vue/runtime-core': 3.4.26
+ '@vue/shared': 3.4.26
csstype: 3.1.3
- '@vue/server-renderer@3.4.25(vue@3.4.25(typescript@5.4.5))':
+ '@vue/server-renderer@3.4.26(vue@3.4.26(typescript@5.4.5))':
dependencies:
- '@vue/compiler-ssr': 3.4.25
- '@vue/shared': 3.4.25
- vue: 3.4.25(typescript@5.4.5)
+ '@vue/compiler-ssr': 3.4.26
+ '@vue/shared': 3.4.26
+ vue: 3.4.26(typescript@5.4.5)
- '@vue/shared@3.4.25': {}
+ '@vue/shared@3.4.26': {}
- '@vueuse/core@10.9.0(vue@3.4.25(typescript@5.4.5))':
+ '@vueuse/core@10.9.0(vue@3.4.26(typescript@5.4.5))':
dependencies:
'@types/web-bluetooth': 0.0.20
'@vueuse/metadata': 10.9.0
- '@vueuse/shared': 10.9.0(vue@3.4.25(typescript@5.4.5))
- vue-demi: 0.14.7(vue@3.4.25(typescript@5.4.5))
+ '@vueuse/shared': 10.9.0(vue@3.4.26(typescript@5.4.5))
+ vue-demi: 0.14.7(vue@3.4.26(typescript@5.4.5))
transitivePeerDependencies:
- '@vue/composition-api'
- vue
'@vueuse/metadata@10.9.0': {}
- '@vueuse/shared@10.9.0(vue@3.4.25(typescript@5.4.5))':
+ '@vueuse/shared@10.9.0(vue@3.4.26(typescript@5.4.5))':
dependencies:
- vue-demi: 0.14.7(vue@3.4.25(typescript@5.4.5))
+ vue-demi: 0.14.7(vue@3.4.26(typescript@5.4.5))
transitivePeerDependencies:
- '@vue/composition-api'
- vue
@@ -6217,10 +5934,10 @@ snapshots:
browserslist@4.23.0:
dependencies:
- caniuse-lite: 1.0.30001612
- electron-to-chromium: 1.4.748
+ caniuse-lite: 1.0.30001615
+ electron-to-chromium: 1.4.756
node-releases: 2.0.14
- update-browserslist-db: 1.0.13(browserslist@4.23.0)
+ update-browserslist-db: 1.0.15(browserslist@4.23.0)
buffer-from@1.1.2: {}
@@ -6230,7 +5947,7 @@ snapshots:
dependencies:
semver: 7.6.0
- bumpp@9.4.0:
+ bumpp@9.4.1:
dependencies:
'@jsdevtools/ez-spawn': 3.0.4
c12: 1.10.0
@@ -6253,7 +5970,7 @@ snapshots:
dotenv: 16.4.5
giget: 1.2.3
jiti: 1.21.0
- mlly: 1.6.1
+ mlly: 1.7.0
ohash: 1.1.3
pathe: 1.1.2
perfect-debounce: 1.0.0
@@ -6291,12 +6008,12 @@ snapshots:
fs-minipass: 3.0.3
glob: 10.3.12
lru-cache: 7.18.3
- minipass: 7.0.4
+ minipass: 7.1.0
minipass-collect: 1.0.2
minipass-flush: 1.0.5
minipass-pipeline: 1.2.4
p-map: 4.0.0
- ssri: 10.0.5
+ ssri: 10.0.6
tar: 6.2.1
unique-filename: 3.0.0
@@ -6342,7 +6059,7 @@ snapshots:
can-use-dom@0.1.0: {}
- caniuse-lite@1.0.30001612: {}
+ caniuse-lite@1.0.30001615: {}
chalk@1.1.3:
dependencies:
@@ -6595,10 +6312,12 @@ snapshots:
date-fns@2.30.0:
dependencies:
- '@babel/runtime': 7.24.4
+ '@babel/runtime': 7.24.5
dayjs@1.11.10: {}
+ dayjs@1.11.11: {}
+
de-indent@1.0.2: {}
debug@2.6.9:
@@ -6736,7 +6455,7 @@ snapshots:
tslib: 2.3.0
zrender: 5.5.0
- electron-to-chromium@1.4.748: {}
+ electron-to-chromium@1.4.756: {}
emoji-regex@10.3.0: {}
@@ -6794,7 +6513,7 @@ snapshots:
function.prototype.name: 1.1.6
get-intrinsic: 1.2.4
get-symbol-description: 1.0.2
- globalthis: 1.0.3
+ globalthis: 1.0.4
gopd: 1.0.1
has-property-descriptors: 1.0.2
has-proto: 1.0.3
@@ -6848,32 +6567,6 @@ snapshots:
is-date-object: 1.0.5
is-symbol: 1.0.4
- esbuild@0.19.12:
- optionalDependencies:
- '@esbuild/aix-ppc64': 0.19.12
- '@esbuild/android-arm': 0.19.12
- '@esbuild/android-arm64': 0.19.12
- '@esbuild/android-x64': 0.19.12
- '@esbuild/darwin-arm64': 0.19.12
- '@esbuild/darwin-x64': 0.19.12
- '@esbuild/freebsd-arm64': 0.19.12
- '@esbuild/freebsd-x64': 0.19.12
- '@esbuild/linux-arm': 0.19.12
- '@esbuild/linux-arm64': 0.19.12
- '@esbuild/linux-ia32': 0.19.12
- '@esbuild/linux-loong64': 0.19.12
- '@esbuild/linux-mips64el': 0.19.12
- '@esbuild/linux-ppc64': 0.19.12
- '@esbuild/linux-riscv64': 0.19.12
- '@esbuild/linux-s390x': 0.19.12
- '@esbuild/linux-x64': 0.19.12
- '@esbuild/netbsd-x64': 0.19.12
- '@esbuild/openbsd-x64': 0.19.12
- '@esbuild/sunos-x64': 0.19.12
- '@esbuild/win32-arm64': 0.19.12
- '@esbuild/win32-ia32': 0.19.12
- '@esbuild/win32-x64': 0.19.12
-
esbuild@0.20.2:
optionalDependencies:
'@esbuild/aix-ppc64': 0.20.2
@@ -6908,14 +6601,14 @@ snapshots:
escape-string-regexp@4.0.0: {}
- eslint-compat-utils@0.5.0(eslint@9.1.1):
+ eslint-compat-utils@0.5.0(eslint@9.2.0):
dependencies:
- eslint: 9.1.1
+ eslint: 9.2.0
semver: 7.6.0
- eslint-config-prettier@9.1.0(eslint@9.1.1):
+ eslint-config-prettier@9.1.0(eslint@9.2.0):
dependencies:
- eslint: 9.1.1
+ eslint: 9.2.0
eslint-import-resolver-node@0.3.9:
dependencies:
@@ -6927,19 +6620,19 @@ snapshots:
eslint-parser-plain@0.1.0: {}
- eslint-plugin-es-x@7.6.0(eslint@9.1.1):
+ eslint-plugin-es-x@7.6.0(eslint@9.2.0):
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.1.1)
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.2.0)
'@eslint-community/regexpp': 4.10.0
- eslint: 9.1.1
- eslint-compat-utils: 0.5.0(eslint@9.1.1)
+ eslint: 9.2.0
+ eslint-compat-utils: 0.5.0(eslint@9.2.0)
- eslint-plugin-import-x@0.5.0(eslint@9.1.1)(typescript@5.4.5):
+ eslint-plugin-import-x@0.5.0(eslint@9.2.0)(typescript@5.4.5):
dependencies:
- '@typescript-eslint/utils': 7.7.1(eslint@9.1.1)(typescript@5.4.5)
+ '@typescript-eslint/utils': 7.8.0(eslint@9.2.0)(typescript@5.4.5)
debug: 4.3.4
doctrine: 3.0.0
- eslint: 9.1.1
+ eslint: 9.2.0
eslint-import-resolver-node: 0.3.9
get-tsconfig: 4.7.3
is-glob: 4.0.3
@@ -6949,36 +6642,36 @@ snapshots:
- supports-color
- typescript
- eslint-plugin-n@17.2.1(eslint@9.1.1):
+ eslint-plugin-n@17.4.0(eslint@9.2.0):
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.1.1)
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.2.0)
enhanced-resolve: 5.16.0
- eslint: 9.1.1
- eslint-plugin-es-x: 7.6.0(eslint@9.1.1)
+ eslint: 9.2.0
+ eslint-plugin-es-x: 7.6.0(eslint@9.2.0)
get-tsconfig: 4.7.3
- globals: 14.0.0
+ globals: 15.1.0
ignore: 5.3.1
minimatch: 9.0.4
semver: 7.6.0
- eslint-plugin-prettier@5.1.3(eslint-config-prettier@9.1.0(eslint@9.1.1))(eslint@9.1.1)(prettier@3.2.5):
+ eslint-plugin-prettier@5.1.3(eslint-config-prettier@9.1.0(eslint@9.2.0))(eslint@9.2.0)(prettier@3.2.5):
dependencies:
- eslint: 9.1.1
+ eslint: 9.2.0
prettier: 3.2.5
prettier-linter-helpers: 1.0.0
synckit: 0.8.8
optionalDependencies:
- eslint-config-prettier: 9.1.0(eslint@9.1.1)
+ eslint-config-prettier: 9.1.0(eslint@9.2.0)
- eslint-plugin-unicorn@52.0.0(eslint@9.1.1):
+ eslint-plugin-unicorn@52.0.0(eslint@9.2.0):
dependencies:
- '@babel/helper-validator-identifier': 7.22.20
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.1.1)
+ '@babel/helper-validator-identifier': 7.24.5
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.2.0)
'@eslint/eslintrc': 2.1.4
ci-info: 4.0.0
clean-regexp: 1.0.0
core-js-compat: 3.37.0
- eslint: 9.1.1
+ eslint: 9.2.0
esquery: 1.5.0
indent-string: 4.0.0
is-builtin-module: 3.2.1
@@ -6992,16 +6685,16 @@ snapshots:
transitivePeerDependencies:
- supports-color
- eslint-plugin-vue@9.25.0(eslint@9.1.1):
+ eslint-plugin-vue@9.25.0(eslint@9.2.0):
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.1.1)
- eslint: 9.1.1
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.2.0)
+ eslint: 9.2.0
globals: 13.24.0
natural-compare: 1.4.0
nth-check: 2.1.1
postcss-selector-parser: 6.0.16
semver: 7.6.0
- vue-eslint-parser: 9.4.2(eslint@9.1.1)
+ vue-eslint-parser: 9.4.2(eslint@9.2.0)
xml-name-validator: 4.0.0
transitivePeerDependencies:
- supports-color
@@ -7020,15 +6713,15 @@ snapshots:
eslint-visitor-keys@4.0.0: {}
- eslint@9.1.1:
+ eslint@9.2.0:
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@9.1.1)
+ '@eslint-community/eslint-utils': 4.4.0(eslint@9.2.0)
'@eslint-community/regexpp': 4.10.0
'@eslint/eslintrc': 3.0.2
- '@eslint/js': 9.1.1
+ '@eslint/js': 9.2.0
'@humanwhocodes/config-array': 0.13.0
'@humanwhocodes/module-importer': 1.0.1
- '@humanwhocodes/retry': 0.2.3
+ '@humanwhocodes/retry': 0.2.4
'@nodelib/fs.walk': 1.2.8
ajv: 6.12.6
chalk: 4.1.2
@@ -7053,7 +6746,7 @@ snapshots:
lodash.merge: 4.6.2
minimatch: 3.1.2
natural-compare: 1.4.0
- optionator: 0.9.3
+ optionator: 0.9.4
strip-ansi: 6.0.1
text-table: 0.2.0
transitivePeerDependencies:
@@ -7252,7 +6945,7 @@ snapshots:
fs-minipass@3.0.3:
dependencies:
- minipass: 7.0.4
+ minipass: 7.1.0
fs.realpath@1.0.0: {}
@@ -7337,7 +7030,7 @@ snapshots:
foreground-child: 3.1.1
jackspeak: 2.3.6
minimatch: 9.0.4
- minipass: 7.0.4
+ minipass: 7.1.0
path-scurry: 1.10.2
glob@7.2.3:
@@ -7369,11 +7062,12 @@ snapshots:
globals@14.0.0: {}
- globals@15.0.0: {}
+ globals@15.1.0: {}
- globalthis@1.0.3:
+ globalthis@1.0.4:
dependencies:
define-properties: 1.2.1
+ gopd: 1.0.1
globby@11.1.0:
dependencies:
@@ -7535,7 +7229,7 @@ snapshots:
dependencies:
postcss: 8.4.38
- ignore-walk@6.0.4:
+ ignore-walk@6.0.5:
dependencies:
minimatch: 9.0.4
@@ -7802,7 +7496,7 @@ snapshots:
json-parse-even-better-errors@2.3.1: {}
- json-parse-even-better-errors@3.0.1: {}
+ json-parse-even-better-errors@3.0.2: {}
json-parse-helpfulerror@1.0.3:
dependencies:
@@ -7897,11 +7591,9 @@ snapshots:
emojis-list: 3.0.0
json5: 1.0.2
- local-pkg@0.4.3: {}
-
local-pkg@0.5.0:
dependencies:
- mlly: 1.6.1
+ mlly: 1.7.0
pkg-types: 1.1.0
localforage@1.10.0:
@@ -7932,7 +7624,7 @@ snapshots:
lowercase-keys@3.0.0: {}
- lru-cache@10.2.0: {}
+ lru-cache@10.2.2: {}
lru-cache@5.1.1:
dependencies:
@@ -7954,8 +7646,8 @@ snapshots:
magicast@0.3.3:
dependencies:
- '@babel/parser': 7.24.4
- '@babel/types': 7.24.0
+ '@babel/parser': 7.24.5
+ '@babel/types': 7.24.5
source-map-js: 1.2.0
make-fetch-happen@10.2.1:
@@ -7990,13 +7682,13 @@ snapshots:
is-lambda: 1.0.1
lru-cache: 7.18.3
minipass: 5.0.0
- minipass-fetch: 3.0.4
+ minipass-fetch: 3.0.5
minipass-flush: 1.0.5
minipass-pipeline: 1.2.4
negotiator: 0.6.3
promise-retry: 2.0.1
socks-proxy-agent: 7.0.0
- ssri: 10.0.5
+ ssri: 10.0.6
transitivePeerDependencies:
- supports-color
@@ -8237,9 +7929,9 @@ snapshots:
optionalDependencies:
encoding: 0.1.13
- minipass-fetch@3.0.4:
+ minipass-fetch@3.0.5:
dependencies:
- minipass: 7.0.4
+ minipass: 7.1.0
minipass-sized: 1.0.3
minizlib: 2.1.2
optionalDependencies:
@@ -8268,7 +7960,7 @@ snapshots:
minipass@5.0.0: {}
- minipass@7.0.4: {}
+ minipass@7.1.0: {}
minizlib@2.1.2:
dependencies:
@@ -8286,7 +7978,7 @@ snapshots:
mkdirp@3.0.1: {}
- mlly@1.6.1:
+ mlly@1.7.0:
dependencies:
acorn: 8.11.3
pathe: 1.1.2
@@ -8303,12 +7995,12 @@ snapshots:
muggle-string@0.4.1: {}
- naive-ui@2.38.1(vue@3.4.25(typescript@5.4.5)):
+ naive-ui@2.38.2(vue@3.4.26(typescript@5.4.5)):
dependencies:
'@css-render/plugin-bem': 0.15.12(css-render@0.15.12)
- '@css-render/vue3-ssr': 0.15.12(vue@3.4.25(typescript@5.4.5))
+ '@css-render/vue3-ssr': 0.15.12(vue@3.4.26(typescript@5.4.5))
'@types/katex': 0.16.7
- '@types/lodash': 4.17.0
+ '@types/lodash': 4.17.1
'@types/lodash-es': 4.17.12
async-validator: 4.2.5
css-render: 0.15.12
@@ -8321,10 +8013,10 @@ snapshots:
lodash-es: 4.17.21
seemly: 0.3.8
treemate: 0.3.11
- vdirs: 0.1.8(vue@3.4.25(typescript@5.4.5))
- vooks: 0.2.12(vue@3.4.25(typescript@5.4.5))
- vue: 3.4.25(typescript@5.4.5)
- vueuc: 0.4.58(vue@3.4.25(typescript@5.4.5))
+ vdirs: 0.1.8(vue@3.4.26(typescript@5.4.5))
+ vooks: 0.2.12(vue@3.4.26(typescript@5.4.5))
+ vue: 3.4.26(typescript@5.4.5)
+ vueuc: 0.4.58(vue@3.4.26(typescript@5.4.5))
nanoid@3.3.7: {}
@@ -8397,7 +8089,7 @@ snapshots:
dependencies:
npm-normalize-package-bin: 3.0.1
- npm-check-updates@16.14.19:
+ npm-check-updates@16.14.20:
dependencies:
'@types/semver-utils': 1.1.3
chalk: 5.3.0
@@ -8451,7 +8143,7 @@ snapshots:
npm-packlist@7.0.4:
dependencies:
- ignore-walk: 6.0.4
+ ignore-walk: 6.0.5
npm-pick-manifest@8.0.2:
dependencies:
@@ -8464,7 +8156,7 @@ snapshots:
dependencies:
make-fetch-happen: 11.1.1
minipass: 5.0.0
- minipass-fetch: 3.0.4
+ minipass-fetch: 3.0.5
minipass-json-stream: 1.0.1
minizlib: 2.1.2
npm-package-arg: 10.1.0
@@ -8560,14 +8252,14 @@ snapshots:
is-inside-container: 1.0.0
is-wsl: 3.1.0
- optionator@0.9.3:
+ optionator@0.9.4:
dependencies:
- '@aashutoshrathi/word-wrap': 1.2.6
deep-is: 0.1.4
fast-levenshtein: 2.0.6
levn: 0.4.1
prelude-ls: 1.2.1
type-check: 0.4.0
+ word-wrap: 1.2.5
p-cancelable@3.0.0: {}
@@ -8618,7 +8310,7 @@ snapshots:
read-package-json: 6.0.4
read-package-json-fast: 3.0.2
sigstore: 1.9.0
- ssri: 10.0.5
+ ssri: 10.0.6
tar: 6.2.1
transitivePeerDependencies:
- bluebird
@@ -8653,8 +8345,8 @@ snapshots:
path-scurry@1.10.2:
dependencies:
- lru-cache: 10.2.0
- minipass: 7.0.4
+ lru-cache: 10.2.2
+ minipass: 7.1.0
path-type@4.0.0: {}
@@ -8670,18 +8362,18 @@ snapshots:
pidtree@0.6.0: {}
- pinia@2.1.7(typescript@5.4.5)(vue@3.4.25(typescript@5.4.5)):
+ pinia@2.1.7(typescript@5.4.5)(vue@3.4.26(typescript@5.4.5)):
dependencies:
'@vue/devtools-api': 6.6.1
- vue: 3.4.25(typescript@5.4.5)
- vue-demi: 0.14.7(vue@3.4.25(typescript@5.4.5))
+ vue: 3.4.26(typescript@5.4.5)
+ vue-demi: 0.14.7(vue@3.4.26(typescript@5.4.5))
optionalDependencies:
typescript: 5.4.5
pkg-types@1.1.0:
dependencies:
confbox: 0.1.7
- mlly: 1.6.1
+ mlly: 1.7.0
pathe: 1.1.2
pluralize@8.0.0: {}
@@ -8852,13 +8544,13 @@ snapshots:
read-package-json-fast@3.0.2:
dependencies:
- json-parse-even-better-errors: 3.0.1
+ json-parse-even-better-errors: 3.0.2
npm-normalize-package-bin: 3.0.1
read-package-json@6.0.4:
dependencies:
glob: 10.3.12
- json-parse-even-better-errors: 3.0.1
+ json-parse-even-better-errors: 3.0.2
normalize-package-data: 5.0.0
npm-normalize-package-bin: 3.0.1
@@ -8970,26 +8662,26 @@ snapshots:
dependencies:
glob: 10.3.12
- rollup@4.16.4:
+ rollup@4.17.2:
dependencies:
'@types/estree': 1.0.5
optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.16.4
- '@rollup/rollup-android-arm64': 4.16.4
- '@rollup/rollup-darwin-arm64': 4.16.4
- '@rollup/rollup-darwin-x64': 4.16.4
- '@rollup/rollup-linux-arm-gnueabihf': 4.16.4
- '@rollup/rollup-linux-arm-musleabihf': 4.16.4
- '@rollup/rollup-linux-arm64-gnu': 4.16.4
- '@rollup/rollup-linux-arm64-musl': 4.16.4
- '@rollup/rollup-linux-powerpc64le-gnu': 4.16.4
- '@rollup/rollup-linux-riscv64-gnu': 4.16.4
- '@rollup/rollup-linux-s390x-gnu': 4.16.4
- '@rollup/rollup-linux-x64-gnu': 4.16.4
- '@rollup/rollup-linux-x64-musl': 4.16.4
- '@rollup/rollup-win32-arm64-msvc': 4.16.4
- '@rollup/rollup-win32-ia32-msvc': 4.16.4
- '@rollup/rollup-win32-x64-msvc': 4.16.4
+ '@rollup/rollup-android-arm-eabi': 4.17.2
+ '@rollup/rollup-android-arm64': 4.17.2
+ '@rollup/rollup-darwin-arm64': 4.17.2
+ '@rollup/rollup-darwin-x64': 4.17.2
+ '@rollup/rollup-linux-arm-gnueabihf': 4.17.2
+ '@rollup/rollup-linux-arm-musleabihf': 4.17.2
+ '@rollup/rollup-linux-arm64-gnu': 4.17.2
+ '@rollup/rollup-linux-arm64-musl': 4.17.2
+ '@rollup/rollup-linux-powerpc64le-gnu': 4.17.2
+ '@rollup/rollup-linux-riscv64-gnu': 4.17.2
+ '@rollup/rollup-linux-s390x-gnu': 4.17.2
+ '@rollup/rollup-linux-x64-gnu': 4.17.2
+ '@rollup/rollup-linux-x64-musl': 4.17.2
+ '@rollup/rollup-win32-arm64-msvc': 4.17.2
+ '@rollup/rollup-win32-ia32-msvc': 4.17.2
+ '@rollup/rollup-win32-x64-msvc': 4.17.2
fsevents: 2.3.3
run-applescript@7.0.0: {}
@@ -9020,7 +8712,7 @@ snapshots:
safer-buffer@2.1.2:
optional: true
- sass@1.75.0:
+ sass@1.76.0:
dependencies:
chokidar: 3.6.0
immutable: 4.3.5
@@ -9105,11 +8797,11 @@ snapshots:
lodash: 4.17.21
lodash-es: 4.17.21
- simplebar-vue@2.3.3(vue@3.4.25(typescript@5.4.5)):
+ simplebar-vue@2.3.3(vue@3.4.26(typescript@5.4.5)):
dependencies:
simplebar-core: 1.2.4
- vue: 3.4.25(typescript@5.4.5)
- vue-demi: 0.13.11(vue@3.4.25(typescript@5.4.5))
+ vue: 3.4.26(typescript@5.4.5)
+ vue-demi: 0.13.11(vue@3.4.26(typescript@5.4.5))
transitivePeerDependencies:
- '@vue/composition-api'
@@ -9218,9 +8910,9 @@ snapshots:
sprintf-js@1.1.3: {}
- ssri@10.0.5:
+ ssri@10.0.6:
dependencies:
- minipass: 7.0.4
+ minipass: 7.1.0
ssri@9.0.1:
dependencies:
@@ -9415,9 +9107,9 @@ snapshots:
tslib@2.6.2: {}
- tsx@4.7.3:
+ tsx@4.9.1:
dependencies:
- esbuild: 0.19.12
+ esbuild: 0.20.2
get-tsconfig: 4.7.3
optionalDependencies:
fsevents: 2.3.3
@@ -9559,9 +9251,9 @@ snapshots:
universalify@2.0.1: {}
- unplugin-icons@0.18.5(@vue/compiler-sfc@3.4.25)(vue-template-compiler@2.7.16):
+ unplugin-icons@0.19.0(@vue/compiler-sfc@3.4.26)(vue-template-compiler@2.7.16):
dependencies:
- '@antfu/install-pkg': 0.3.2
+ '@antfu/install-pkg': 0.3.3
'@antfu/utils': 0.7.7
'@iconify/utils': 2.1.23
debug: 4.3.4
@@ -9569,26 +9261,26 @@ snapshots:
local-pkg: 0.5.0
unplugin: 1.10.1
optionalDependencies:
- '@vue/compiler-sfc': 3.4.25
+ '@vue/compiler-sfc': 3.4.26
vue-template-compiler: 2.7.16
transitivePeerDependencies:
- supports-color
- unplugin-vue-components@0.26.0(@babel/parser@7.24.4)(rollup@4.16.4)(vue@3.4.25(typescript@5.4.5)):
+ unplugin-vue-components@0.27.0(@babel/parser@7.24.5)(rollup@4.17.2)(vue@3.4.26(typescript@5.4.5)):
dependencies:
'@antfu/utils': 0.7.7
- '@rollup/pluginutils': 5.1.0(rollup@4.16.4)
+ '@rollup/pluginutils': 5.1.0(rollup@4.17.2)
chokidar: 3.6.0
debug: 4.3.4
fast-glob: 3.3.2
- local-pkg: 0.4.3
+ local-pkg: 0.5.0
magic-string: 0.30.10
minimatch: 9.0.4
resolve: 1.22.8
unplugin: 1.10.1
- vue: 3.4.25(typescript@5.4.5)
+ vue: 3.4.26(typescript@5.4.5)
optionalDependencies:
- '@babel/parser': 7.24.4
+ '@babel/parser': 7.24.5
transitivePeerDependencies:
- rollup
- supports-color
@@ -9614,7 +9306,7 @@ snapshots:
untildify@4.0.0: {}
- update-browserslist-db@1.0.13(browserslist@4.23.0):
+ update-browserslist-db@1.0.15(browserslist@4.23.0):
dependencies:
browserslist: 4.23.0
escalade: 3.1.2
@@ -9666,19 +9358,19 @@ snapshots:
vary@1.1.2: {}
- vdirs@0.1.8(vue@3.4.25(typescript@5.4.5)):
+ vdirs@0.1.8(vue@3.4.26(typescript@5.4.5)):
dependencies:
evtd: 0.2.4
- vue: 3.4.25(typescript@5.4.5)
+ vue: 3.4.26(typescript@5.4.5)
- vite-hot-client@0.2.3(vite@5.2.10(@types/node@20.12.7)(sass@1.75.0)):
+ vite-hot-client@0.2.3(vite@5.2.11(@types/node@20.12.8)(sass@1.76.0)):
dependencies:
- vite: 5.2.10(@types/node@20.12.7)(sass@1.75.0)
+ vite: 5.2.11(@types/node@20.12.8)(sass@1.76.0)
- vite-plugin-inspect@0.8.4(rollup@4.16.4)(vite@5.2.10(@types/node@20.12.7)(sass@1.75.0)):
+ vite-plugin-inspect@0.8.4(rollup@4.17.2)(vite@5.2.11(@types/node@20.12.8)(sass@1.76.0)):
dependencies:
'@antfu/utils': 0.7.7
- '@rollup/pluginutils': 5.1.0(rollup@4.16.4)
+ '@rollup/pluginutils': 5.1.0(rollup@4.17.2)
debug: 4.3.4
error-stack-parser-es: 0.1.1
fs-extra: 11.2.0
@@ -9686,19 +9378,19 @@ snapshots:
perfect-debounce: 1.0.0
picocolors: 1.0.0
sirv: 2.0.4
- vite: 5.2.10(@types/node@20.12.7)(sass@1.75.0)
+ vite: 5.2.11(@types/node@20.12.8)(sass@1.76.0)
transitivePeerDependencies:
- rollup
- supports-color
- vite-plugin-progress@0.0.7(vite@5.2.10(@types/node@20.12.7)(sass@1.75.0)):
+ vite-plugin-progress@0.0.7(vite@5.2.11(@types/node@20.12.8)(sass@1.76.0)):
dependencies:
picocolors: 1.0.0
progress: 2.0.3
rd: 2.0.1
- vite: 5.2.10(@types/node@20.12.7)(sass@1.75.0)
+ vite: 5.2.11(@types/node@20.12.8)(sass@1.76.0)
- vite-plugin-svg-icons@2.0.1(vite@5.2.10(@types/node@20.12.7)(sass@1.75.0)):
+ vite-plugin-svg-icons@2.0.1(vite@5.2.11(@types/node@20.12.8)(sass@1.76.0)):
dependencies:
'@types/svgo': 2.6.4
cors: 2.8.5
@@ -9708,72 +9400,72 @@ snapshots:
pathe: 0.2.0
svg-baker: 1.7.0
svgo: 2.8.0
- vite: 5.2.10(@types/node@20.12.7)(sass@1.75.0)
+ vite: 5.2.11(@types/node@20.12.8)(sass@1.76.0)
transitivePeerDependencies:
- supports-color
- vite-plugin-vue-devtools@7.1.2(rollup@4.16.4)(vite@5.2.10(@types/node@20.12.7)(sass@1.75.0))(vue@3.4.25(typescript@5.4.5)):
+ vite-plugin-vue-devtools@7.1.3(rollup@4.17.2)(vite@5.2.11(@types/node@20.12.8)(sass@1.76.0))(vue@3.4.26(typescript@5.4.5)):
dependencies:
- '@vue/devtools-core': 7.1.2(vite@5.2.10(@types/node@20.12.7)(sass@1.75.0))(vue@3.4.25(typescript@5.4.5))
- '@vue/devtools-kit': 7.1.2(vue@3.4.25(typescript@5.4.5))
- '@vue/devtools-shared': 7.1.2
+ '@vue/devtools-core': 7.1.3(vite@5.2.11(@types/node@20.12.8)(sass@1.76.0))(vue@3.4.26(typescript@5.4.5))
+ '@vue/devtools-kit': 7.1.3(vue@3.4.26(typescript@5.4.5))
+ '@vue/devtools-shared': 7.1.3
execa: 8.0.1
sirv: 2.0.4
- vite: 5.2.10(@types/node@20.12.7)(sass@1.75.0)
- vite-plugin-inspect: 0.8.4(rollup@4.16.4)(vite@5.2.10(@types/node@20.12.7)(sass@1.75.0))
- vite-plugin-vue-inspector: 5.0.1(vite@5.2.10(@types/node@20.12.7)(sass@1.75.0))
+ vite: 5.2.11(@types/node@20.12.8)(sass@1.76.0)
+ vite-plugin-inspect: 0.8.4(rollup@4.17.2)(vite@5.2.11(@types/node@20.12.8)(sass@1.76.0))
+ vite-plugin-vue-inspector: 5.0.1(vite@5.2.11(@types/node@20.12.8)(sass@1.76.0))
transitivePeerDependencies:
- '@nuxt/kit'
- rollup
- supports-color
- vue
- vite-plugin-vue-inspector@5.0.1(vite@5.2.10(@types/node@20.12.7)(sass@1.75.0)):
+ vite-plugin-vue-inspector@5.0.1(vite@5.2.11(@types/node@20.12.8)(sass@1.76.0)):
dependencies:
- '@babel/core': 7.24.4
- '@babel/plugin-proposal-decorators': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-syntax-import-attributes': 7.24.1(@babel/core@7.24.4)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.4)
- '@babel/plugin-transform-typescript': 7.24.4(@babel/core@7.24.4)
- '@vue/babel-plugin-jsx': 1.2.2(@babel/core@7.24.4)
- '@vue/compiler-dom': 3.4.25
+ '@babel/core': 7.24.5
+ '@babel/plugin-proposal-decorators': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-syntax-import-attributes': 7.24.1(@babel/core@7.24.5)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.5)
+ '@babel/plugin-transform-typescript': 7.24.5(@babel/core@7.24.5)
+ '@vue/babel-plugin-jsx': 1.2.2(@babel/core@7.24.5)
+ '@vue/compiler-dom': 3.4.26
kolorist: 1.8.0
magic-string: 0.30.10
- vite: 5.2.10(@types/node@20.12.7)(sass@1.75.0)
+ vite: 5.2.11(@types/node@20.12.8)(sass@1.76.0)
transitivePeerDependencies:
- supports-color
- vite@5.2.10(@types/node@20.12.7)(sass@1.75.0):
+ vite@5.2.11(@types/node@20.12.8)(sass@1.76.0):
dependencies:
esbuild: 0.20.2
postcss: 8.4.38
- rollup: 4.16.4
+ rollup: 4.17.2
optionalDependencies:
- '@types/node': 20.12.7
+ '@types/node': 20.12.8
fsevents: 2.3.3
- sass: 1.75.0
+ sass: 1.76.0
- vooks@0.2.12(vue@3.4.25(typescript@5.4.5)):
+ vooks@0.2.12(vue@3.4.26(typescript@5.4.5)):
dependencies:
evtd: 0.2.4
- vue: 3.4.25(typescript@5.4.5)
+ vue: 3.4.26(typescript@5.4.5)
- vue-demi@0.13.11(vue@3.4.25(typescript@5.4.5)):
+ vue-demi@0.13.11(vue@3.4.26(typescript@5.4.5)):
dependencies:
- vue: 3.4.25(typescript@5.4.5)
+ vue: 3.4.26(typescript@5.4.5)
- vue-demi@0.14.7(vue@3.4.25(typescript@5.4.5)):
+ vue-demi@0.14.7(vue@3.4.26(typescript@5.4.5)):
dependencies:
- vue: 3.4.25(typescript@5.4.5)
+ vue: 3.4.26(typescript@5.4.5)
vue-draggable-plus@0.4.0(@types/sortablejs@1.15.8):
dependencies:
'@types/sortablejs': 1.15.8
- vue-eslint-parser@9.4.2(eslint@9.1.1):
+ vue-eslint-parser@9.4.2(eslint@9.2.0):
dependencies:
debug: 4.3.4
- eslint: 9.1.1
+ eslint: 9.2.0
eslint-scope: 7.2.2
eslint-visitor-keys: 3.4.3
espree: 9.6.1
@@ -9783,50 +9475,50 @@ snapshots:
transitivePeerDependencies:
- supports-color
- vue-i18n@9.13.1(vue@3.4.25(typescript@5.4.5)):
+ vue-i18n@9.13.1(vue@3.4.26(typescript@5.4.5)):
dependencies:
'@intlify/core-base': 9.13.1
'@intlify/shared': 9.13.1
'@vue/devtools-api': 6.6.1
- vue: 3.4.25(typescript@5.4.5)
+ vue: 3.4.26(typescript@5.4.5)
- vue-router@4.3.2(vue@3.4.25(typescript@5.4.5)):
+ vue-router@4.3.2(vue@3.4.26(typescript@5.4.5)):
dependencies:
'@vue/devtools-api': 6.6.1
- vue: 3.4.25(typescript@5.4.5)
+ vue: 3.4.26(typescript@5.4.5)
vue-template-compiler@2.7.16:
dependencies:
de-indent: 1.0.2
he: 1.2.0
- vue-tsc@2.0.14(typescript@5.4.5):
+ vue-tsc@2.0.16(typescript@5.4.5):
dependencies:
- '@volar/typescript': 2.2.0-alpha.10
- '@vue/language-core': 2.0.14(typescript@5.4.5)
+ '@volar/typescript': 2.2.0
+ '@vue/language-core': 2.0.16(typescript@5.4.5)
semver: 7.6.0
typescript: 5.4.5
- vue@3.4.25(typescript@5.4.5):
+ vue@3.4.26(typescript@5.4.5):
dependencies:
- '@vue/compiler-dom': 3.4.25
- '@vue/compiler-sfc': 3.4.25
- '@vue/runtime-dom': 3.4.25
- '@vue/server-renderer': 3.4.25(vue@3.4.25(typescript@5.4.5))
- '@vue/shared': 3.4.25
+ '@vue/compiler-dom': 3.4.26
+ '@vue/compiler-sfc': 3.4.26
+ '@vue/runtime-dom': 3.4.26
+ '@vue/server-renderer': 3.4.26(vue@3.4.26(typescript@5.4.5))
+ '@vue/shared': 3.4.26
optionalDependencies:
typescript: 5.4.5
- vueuc@0.4.58(vue@3.4.25(typescript@5.4.5)):
+ vueuc@0.4.58(vue@3.4.26(typescript@5.4.5)):
dependencies:
- '@css-render/vue3-ssr': 0.15.12(vue@3.4.25(typescript@5.4.5))
+ '@css-render/vue3-ssr': 0.15.12(vue@3.4.26(typescript@5.4.5))
'@juggle/resize-observer': 3.4.0
css-render: 0.15.12
evtd: 0.2.4
seemly: 0.3.8
- vdirs: 0.1.8(vue@3.4.25(typescript@5.4.5))
- vooks: 0.2.12(vue@3.4.25(typescript@5.4.5))
- vue: 3.4.25(typescript@5.4.5)
+ vdirs: 0.1.8(vue@3.4.26(typescript@5.4.5))
+ vooks: 0.2.12(vue@3.4.26(typescript@5.4.5))
+ vue: 3.4.26(typescript@5.4.5)
webpack-sources@3.2.3: {}
@@ -9864,6 +9556,8 @@ snapshots:
dependencies:
string-width: 5.1.2
+ word-wrap@1.2.5: {}
+
wrap-ansi@7.0.0:
dependencies:
ansi-styles: 4.3.0
diff --git a/src/components/advanced/table-header-operation.vue b/src/components/advanced/table-header-operation.vue
index f9a641d5a..7ca287fdc 100644
--- a/src/components/advanced/table-header-operation.vue
+++ b/src/components/advanced/table-header-operation.vue
@@ -1,4 +1,6 @@
-
+
diff --git a/src/components/common/pin-toggler.vue b/src/components/common/pin-toggler.vue
index 76a5bec4e..aecc92dae 100644
--- a/src/components/common/pin-toggler.vue
+++ b/src/components/common/pin-toggler.vue
@@ -15,7 +15,7 @@ const icon = computed(() => (props.pin ? 'mdi-pin-off' : 'mdi-pin'));
diff --git a/src/hooks/common/table.ts b/src/hooks/common/table.ts
index 38328b0d4..1a1cc13c5 100644
--- a/src/hooks/common/table.ts
+++ b/src/hooks/common/table.ts
@@ -1,6 +1,7 @@
import { computed, effectScope, onScopeDispose, reactive, ref, watch } from 'vue';
import type { Ref } from 'vue';
import type { PaginationProps } from 'naive-ui';
+import { cloneDeep } from 'lodash-es';
import { useBoolean, useHookTable } from '@sa/hooks';
import { useAppStore } from '@/store/modules/app';
import { $t } from '@/locales';
@@ -194,7 +195,8 @@ export function useTableOperate(data: Ref,
function handleEdit(id: T['id']) {
operateType.value = 'edit';
- editingData.value = data.value.find(item => item.id === id) || null;
+ const findItem = data.value.find(item => item.id === id) || null;
+ editingData.value = cloneDeep(findItem);
openDrawer();
}
diff --git a/src/layouts/base-layout/index.vue b/src/layouts/base-layout/index.vue
index 845c42b6f..948638b00 100644
--- a/src/layouts/base-layout/index.vue
+++ b/src/layouts/base-layout/index.vue
@@ -18,6 +18,7 @@ defineOptions({
const appStore = useAppStore();
const themeStore = useThemeStore();
+const { menus } = setupMixMenuContext();
const layoutMode = computed(() => {
const vertical: LayoutMode = 'vertical';
@@ -65,7 +66,7 @@ function getSiderWidth() {
let w = isVerticalMix.value || isHorizontalMix.value ? mixWidth : width;
- if (isVerticalMix.value && appStore.mixSiderFixed) {
+ if (isVerticalMix.value && appStore.mixSiderFixed && menus.value.length) {
w += mixChildMenuWidth;
}
@@ -77,14 +78,12 @@ function getSiderCollapsedWidth() {
let w = isVerticalMix.value || isHorizontalMix.value ? mixCollapsedWidth : collapsedWidth;
- if (isVerticalMix.value && appStore.mixSiderFixed) {
+ if (isVerticalMix.value && appStore.mixSiderFixed && menus.value.length) {
w += mixChildMenuWidth;
}
return w;
}
-
-setupMixMenuContext();
diff --git a/src/layouts/context/index.ts b/src/layouts/context/index.ts
index 7108b9f65..631f675b4 100644
--- a/src/layouts/context/index.ts
+++ b/src/layouts/context/index.ts
@@ -1,4 +1,47 @@
+import { computed, ref, watch } from 'vue';
+import { useRoute } from 'vue-router';
import { useContext } from '@sa/hooks';
-import { useMixMenu } from '../hooks';
+import { useRouteStore } from '@/store/modules/route';
export const { setupStore: setupMixMenuContext, useStore: useMixMenuContext } = useContext('mix-menu', useMixMenu);
+
+function useMixMenu() {
+ const route = useRoute();
+ const routeStore = useRouteStore();
+
+ const activeFirstLevelMenuKey = ref('');
+
+ function setActiveFirstLevelMenuKey(key: string) {
+ activeFirstLevelMenuKey.value = key;
+ }
+
+ function getActiveFirstLevelMenuKey() {
+ const { hideInMenu, activeMenu } = route.meta;
+ const name = route.name as string;
+
+ const routeName = (hideInMenu ? activeMenu : name) || name;
+
+ const [firstLevelRouteName] = routeName.split('_');
+
+ setActiveFirstLevelMenuKey(firstLevelRouteName);
+ }
+
+ const menus = computed(
+ () => routeStore.menus.find(menu => menu.key === activeFirstLevelMenuKey.value)?.children || []
+ );
+
+ watch(
+ () => route.name,
+ () => {
+ getActiveFirstLevelMenuKey();
+ },
+ { immediate: true }
+ );
+
+ return {
+ activeFirstLevelMenuKey,
+ setActiveFirstLevelMenuKey,
+ getActiveFirstLevelMenuKey,
+ menus
+ };
+}
diff --git a/src/layouts/hooks/index.ts b/src/layouts/hooks/index.ts
deleted file mode 100644
index 474d878c3..000000000
--- a/src/layouts/hooks/index.ts
+++ /dev/null
@@ -1,44 +0,0 @@
-import { computed, ref, watch } from 'vue';
-import { useRoute } from 'vue-router';
-import { useRouteStore } from '@/store/modules/route';
-
-export function useMixMenu() {
- const route = useRoute();
- const routeStore = useRouteStore();
-
- const activeFirstLevelMenuKey = ref('');
-
- function setActiveFirstLevelMenuKey(key: string) {
- activeFirstLevelMenuKey.value = key;
- }
-
- function getActiveFirstLevelMenuKey() {
- const { hideInMenu, activeMenu } = route.meta;
- const name = route.name as string;
-
- const routeName = (hideInMenu ? activeMenu : name) || name;
-
- const [firstLevelRouteName] = routeName.split('_');
-
- setActiveFirstLevelMenuKey(firstLevelRouteName);
- }
-
- const menus = computed(
- () => routeStore.menus.find(menu => menu.key === activeFirstLevelMenuKey.value)?.children || []
- );
-
- watch(
- () => route.name,
- () => {
- getActiveFirstLevelMenuKey();
- },
- { immediate: true }
- );
-
- return {
- activeFirstLevelMenuKey,
- setActiveFirstLevelMenuKey,
- getActiveFirstLevelMenuKey,
- menus
- };
-}
diff --git a/src/layouts/modules/global-menu/vertical-mix-menu.vue b/src/layouts/modules/global-menu/vertical-mix-menu.vue
index fc600b8df..a3604bd77 100644
--- a/src/layouts/modules/global-menu/vertical-mix-menu.vue
+++ b/src/layouts/modules/global-menu/vertical-mix-menu.vue
@@ -2,10 +2,10 @@
import { computed } from 'vue';
import { useBoolean } from '@sa/hooks';
import { useAppStore } from '@/store/modules/app';
-import { useRouteStore } from '@/store/modules/route';
import { useThemeStore } from '@/store/modules/theme';
import { useRouterPush } from '@/hooks/common/router';
-import { useMixMenu } from '../../hooks';
+import { $t } from '@/locales';
+import { useMixMenuContext } from '../../context';
import FirstLevelMenu from './first-level-menu.vue';
import BaseMenu from './base-menu.vue';
@@ -15,16 +15,15 @@ defineOptions({
const appStore = useAppStore();
const themeStore = useThemeStore();
-const routeStore = useRouteStore();
const { routerPushByKey } = useRouterPush();
const { bool: drawerVisible, setBool: setDrawerVisible } = useBoolean();
-const { activeFirstLevelMenuKey, setActiveFirstLevelMenuKey, getActiveFirstLevelMenuKey } = useMixMenu();
+const { menus, activeFirstLevelMenuKey, setActiveFirstLevelMenuKey, getActiveFirstLevelMenuKey } = useMixMenuContext();
const siderInverted = computed(() => !themeStore.darkMode && themeStore.sider.inverted);
-const menus = computed(() => routeStore.menus.find(menu => menu.key === activeFirstLevelMenuKey.value)?.children || []);
+const hasMenus = computed(() => menus.value.length > 0);
-const showDrawer = computed(() => (drawerVisible.value && menus.value.length) || appStore.mixSiderFixed);
+const showDrawer = computed(() => hasMenus.value && (drawerVisible.value || appStore.mixSiderFixed));
function handleSelectMixMenu(menu: App.Global.Menu) {
setActiveFirstLevelMenuKey(menu.key);
@@ -49,7 +48,7 @@ function handleResetActiveMenu() {
Promise import("@/views/_builtin/403/index.vue"),
404: () => import("@/views/_builtin/404/index.vue"),
500: () => import("@/views/_builtin/500/index.vue"),
+ "iframe-page": () => import("@/views/_builtin/iframe-page/[url].vue"),
login: () => import("@/views/_builtin/login/index.vue"),
about: () => import("@/views/about/index.vue"),
"function_hide-child_one": () => import("@/views/function/hide-child/one/index.vue"),
diff --git a/src/router/elegant/routes.ts b/src/router/elegant/routes.ts
index c8a514d80..822c0be55 100644
--- a/src/router/elegant/routes.ts
+++ b/src/router/elegant/routes.ts
@@ -179,6 +179,19 @@ export const generatedRoutes: GeneratedRoute[] = [
order: 1
}
},
+ {
+ name: 'iframe-page',
+ path: '/iframe-page/:url',
+ component: 'layout.base$view.iframe-page',
+ props: true,
+ meta: {
+ title: 'iframe-page',
+ i18nKey: 'route.iframe-page',
+ constant: true,
+ hideInMenu: true,
+ keepAlive: true
+ }
+ },
{
name: 'login',
path: '/login/:module(pwd-login|code-login|register|reset-pwd|bind-wechat)?',
diff --git a/src/router/elegant/transform.ts b/src/router/elegant/transform.ts
index 51acc179b..6c7c54637 100644
--- a/src/router/elegant/transform.ts
+++ b/src/router/elegant/transform.ts
@@ -147,6 +147,14 @@ const routeMap: RouteMap = {
"exception_403": "/exception/403",
"exception_404": "/exception/404",
"exception_500": "/exception/500",
+ "document": "/document",
+ "document_project": "/document/project",
+ "document_project-link": "/document/project-link",
+ "document_vue": "/document/vue",
+ "document_vite": "/document/vite",
+ "document_unocss": "/document/unocss",
+ "document_naive": "/document/naive",
+ "document_antd": "/document/antd",
"403": "/403",
"404": "/404",
"500": "/500",
@@ -162,6 +170,7 @@ const routeMap: RouteMap = {
"function_tab": "/function/tab",
"function_toggle-auth": "/function/toggle-auth",
"home": "/home",
+ "iframe-page": "/iframe-page/:url",
"login": "/login/:module(pwd-login|code-login|register|reset-pwd|bind-wechat)?",
"manage": "/manage",
"manage_menu": "/manage/menu",
diff --git a/src/router/routes/index.ts b/src/router/routes/index.ts
index 898478527..96322a9ed 100644
--- a/src/router/routes/index.ts
+++ b/src/router/routes/index.ts
@@ -51,6 +51,115 @@ const customRoutes: CustomRoute[] = [
}
}
]
+ },
+ {
+ name: 'document',
+ path: '/document',
+ component: 'layout.base',
+ meta: {
+ title: 'document',
+ i18nKey: 'route.document',
+ order: 2,
+ icon: 'mdi:file-document-multiple-outline'
+ },
+ children: [
+ {
+ name: 'document_antd',
+ path: '/document/antd',
+ component: 'view.iframe-page',
+ props: {
+ url: 'https://antdv.com/components/overview-cn'
+ },
+ meta: {
+ title: 'document_antd',
+ i18nKey: 'route.document_antd',
+ order: 7,
+ icon: 'logos:ant-design'
+ }
+ },
+ {
+ name: 'document_naive',
+ path: '/document/naive',
+ component: 'view.iframe-page',
+ props: {
+ url: 'https://www.naiveui.com/zh-CN/os-theme/docs/introduction'
+ },
+ meta: {
+ title: 'document_naive',
+ i18nKey: 'route.document_naive',
+ order: 6,
+ icon: 'logos:naiveui'
+ }
+ },
+ {
+ name: 'document_project',
+ path: '/document/project',
+ component: 'view.iframe-page',
+ props: {
+ url: 'https://docs.soybeanjs.cn/zh'
+ },
+ meta: {
+ title: 'document_project',
+ i18nKey: 'route.document_project',
+ order: 1,
+ localIcon: 'logo'
+ }
+ },
+ {
+ name: 'document_project-link',
+ path: '/document/project-link',
+ component: 'view.iframe-page',
+ meta: {
+ title: 'document_project-link',
+ i18nKey: 'route.document_project-link',
+ order: 2,
+ localIcon: 'logo',
+ href: 'https://docs.soybeanjs.cn/zh'
+ }
+ },
+ {
+ name: 'document_unocss',
+ path: '/document/unocss',
+ component: 'view.iframe-page',
+ props: {
+ url: 'https://unocss.dev/'
+ },
+ meta: {
+ title: 'document_unocss',
+ i18nKey: 'route.document_unocss',
+ order: 5,
+ icon: 'logos:unocss'
+ }
+ },
+ {
+ name: 'document_vite',
+ path: '/document/vite',
+ component: 'view.iframe-page',
+ props: {
+ url: 'https://cn.vitejs.dev/'
+ },
+ meta: {
+ title: 'document_vite',
+ i18nKey: 'route.document_vite',
+ order: 4,
+ icon: 'logos:vitejs'
+ }
+ },
+ {
+ name: 'document_vue',
+ path: '/document/vue',
+ component: 'view.iframe-page',
+ props: {
+ url: 'https://cn.vuejs.org/'
+ },
+ meta: {
+ title: 'document_vue',
+ i18nKey: 'route.document_vue',
+ order: 3,
+ icon: 'logos:vue'
+ }
+ }
+ ]
}
];
diff --git a/src/store/modules/app/index.ts b/src/store/modules/app/index.ts
index 67230a11a..f5185e993 100644
--- a/src/store/modules/app/index.ts
+++ b/src/store/modules/app/index.ts
@@ -1,6 +1,6 @@
-import { effectScope, onScopeDispose, ref, watch } from 'vue';
+import { effectScope, nextTick, onScopeDispose, ref, watch } from 'vue';
import { defineStore } from 'pinia';
-import { breakpointsTailwind, useBreakpoints, useTitle } from '@vueuse/core';
+import { breakpointsTailwind, useBreakpoints, useEventListener, useTitle } from '@vueuse/core';
import { useBoolean } from '@sa/hooks';
import { SetupStoreId } from '@/enum';
import { router } from '@/router';
@@ -22,7 +22,11 @@ export const useAppStore = defineStore(SetupStoreId.App, () => {
const { bool: fullContent, toggle: toggleFullContent } = useBoolean();
const { bool: contentXScrollable, setBool: setContentXScrollable } = useBoolean();
const { bool: siderCollapse, setBool: setSiderCollapse, toggle: toggleSiderCollapse } = useBoolean();
- const { bool: mixSiderFixed, setBool: setMixSiderFixed, toggle: toggleMixSiderFixed } = useBoolean();
+ const {
+ bool: mixSiderFixed,
+ setBool: setMixSiderFixed,
+ toggle: toggleMixSiderFixed
+ } = useBoolean(localStg.get('mixSiderFixed') === 'Y');
/** Is mobile layout */
const isMobile = breakpoints.smaller('sm');
@@ -83,9 +87,26 @@ export const useAppStore = defineStore(SetupStoreId.App, () => {
isMobile,
newValue => {
if (newValue) {
- setSiderCollapse(true);
+ // backup theme setting before is mobile
+ localStg.set('backupThemeSettingBeforeIsMobile', {
+ layout: themeStore.layout.mode,
+ siderCollapse: siderCollapse.value
+ });
themeStore.setThemeLayout('vertical');
+ setSiderCollapse(true);
+ } else {
+ // when is not mobile, recover the backup theme setting
+ const backup = localStg.get('backupThemeSettingBeforeIsMobile');
+
+ if (backup) {
+ nextTick(() => {
+ themeStore.setThemeLayout(backup.layout);
+ setSiderCollapse(backup.siderCollapse);
+
+ localStg.remove('backupThemeSettingBeforeIsMobile');
+ });
+ }
}
},
{ immediate: true }
@@ -107,6 +128,11 @@ export const useAppStore = defineStore(SetupStoreId.App, () => {
});
});
+ // cache mixSiderFixed
+ useEventListener(window, 'beforeunload', () => {
+ localStg.set('mixSiderFixed', mixSiderFixed.value ? 'Y' : 'N');
+ });
+
/** On scope dispose */
onScopeDispose(() => {
scope.stop();
diff --git a/src/store/modules/tab/shared.ts b/src/store/modules/tab/shared.ts
index 2d4b6d526..5a287002b 100644
--- a/src/store/modules/tab/shared.ts
+++ b/src/store/modules/tab/shared.ts
@@ -16,17 +16,24 @@ export function getAllTabs(tabs: App.Global.Tab[], homeTab?: App.Global.Tab) {
const filterHomeTabs = tabs.filter(tab => tab.id !== homeTab.id);
- const fixedTabs = filterHomeTabs
- .filter(tab => tab.fixedIndex !== undefined)
- .sort((a, b) => a.fixedIndex! - b.fixedIndex!);
+ const fixedTabs = filterHomeTabs.filter(isFixedTab).sort((a, b) => a.fixedIndex! - b.fixedIndex!);
- const remainTabs = filterHomeTabs.filter(tab => tab.fixedIndex === undefined);
+ const remainTabs = filterHomeTabs.filter(tab => !isFixedTab(tab));
const allTabs = [homeTab, ...fixedTabs, ...remainTabs];
return updateTabsLabel(allTabs);
}
+/**
+ * Is fixed tab
+ *
+ * @param tab
+ */
+function isFixedTab(tab: App.Global.Tab) {
+ return tab.fixedIndex !== undefined && tab.fixedIndex !== null;
+}
+
/**
* Get tab id by route
*
@@ -177,7 +184,7 @@ export function extractTabsByAllRoutes(router: Router, tabs: App.Global.Tab[]) {
* @param tabs
*/
export function getFixedTabs(tabs: App.Global.Tab[]) {
- return tabs.filter(tab => tab.fixedIndex !== undefined);
+ return tabs.filter(isFixedTab);
}
/**
diff --git a/src/typings/app.d.ts b/src/typings/app.d.ts
index 031c347f9..f5bbae1f3 100644
--- a/src/typings/app.d.ts
+++ b/src/typings/app.d.ts
@@ -202,7 +202,7 @@ declare namespace App {
/** The tab route full path */
fullPath: string;
/** The tab fixed index */
- fixedIndex?: number;
+ fixedIndex?: number | null;
/**
* Tab icon
*
diff --git a/src/typings/components.d.ts b/src/typings/components.d.ts
index 2ea652082..06ad42c20 100644
--- a/src/typings/components.d.ts
+++ b/src/typings/components.d.ts
@@ -1,10 +1,10 @@
/* eslint-disable */
-/* prettier-ignore */
// @ts-nocheck
// Generated by unplugin-vue-components
// Read more: https://github.com/vuejs/core/pull/3399
export {}
+/* prettier-ignore */
declare module 'vue' {
export interface GlobalComponents {
AppProvider: typeof import('./../components/common/app-provider.vue')['default']
diff --git a/src/typings/elegant-router.d.ts b/src/typings/elegant-router.d.ts
index f795567f0..ac91d1d11 100644
--- a/src/typings/elegant-router.d.ts
+++ b/src/typings/elegant-router.d.ts
@@ -21,6 +21,14 @@ declare module "@elegant-router/types" {
"exception_403": "/exception/403";
"exception_404": "/exception/404";
"exception_500": "/exception/500";
+ "document": "/document";
+ "document_project": "/document/project";
+ "document_project-link": "/document/project-link";
+ "document_vue": "/document/vue";
+ "document_vite": "/document/vite";
+ "document_unocss": "/document/unocss";
+ "document_naive": "/document/naive";
+ "document_antd": "/document/antd";
"403": "/403";
"404": "/404";
"500": "/500";
@@ -36,6 +44,7 @@ declare module "@elegant-router/types" {
"function_tab": "/function/tab";
"function_toggle-auth": "/function/toggle-auth";
"home": "/home";
+ "iframe-page": "/iframe-page/:url";
"login": "/login/:module(pwd-login|code-login|register|reset-pwd|bind-wechat)?";
"manage": "/manage";
"manage_menu": "/manage/menu";
@@ -72,6 +81,14 @@ declare module "@elegant-router/types" {
| "exception_403"
| "exception_404"
| "exception_500"
+ | "document"
+ | "document_project"
+ | "document_project-link"
+ | "document_vue"
+ | "document_vite"
+ | "document_unocss"
+ | "document_naive"
+ | "document_antd"
>;
/**
@@ -90,6 +107,7 @@ declare module "@elegant-router/types" {
| "about"
| "function"
| "home"
+ | "iframe-page"
| "login"
| "manage"
| "multi-menu"
@@ -104,6 +122,7 @@ declare module "@elegant-router/types" {
| "root"
| "not-found"
| "exception"
+ | "document"
>;
/**
@@ -114,6 +133,7 @@ declare module "@elegant-router/types" {
| "403"
| "404"
| "500"
+ | "iframe-page"
| "login"
| "about"
| "function_hide-child_one"
@@ -144,6 +164,13 @@ declare module "@elegant-router/types" {
| "exception_403"
| "exception_404"
| "exception_500"
+ | "document_project"
+ | "document_project-link"
+ | "document_vue"
+ | "document_vite"
+ | "document_unocss"
+ | "document_naive"
+ | "document_antd"
>;
/**
diff --git a/src/typings/router.d.ts b/src/typings/router.d.ts
index ffa804c53..13dc4f242 100644
--- a/src/typings/router.d.ts
+++ b/src/typings/router.d.ts
@@ -58,7 +58,7 @@ declare module 'vue-router' {
/** By default, the same route path will use one tab, if set to true, it will use multiple tabs */
multiTab?: boolean;
/** If set, the route will be fixed in tabs, and the value is the order of fixed tabs */
- fixedIndexInTab?: number;
+ fixedIndexInTab?: number | null;
/** if set query parameters, it will be automatically carried when entering the route */
query?: Record;
}
diff --git a/src/typings/storage.d.ts b/src/typings/storage.d.ts
index c9ea42039..1eb0bf26e 100644
--- a/src/typings/storage.d.ts
+++ b/src/typings/storage.d.ts
@@ -14,6 +14,8 @@ declare namespace StorageType {
lang: App.I18n.LangType;
/** The token */
token: string;
+ /** Fixed sider with mix-menu */
+ mixSiderFixed: CommonType.YesOrNo;
/** The refresh token */
refreshToken: string;
/** The user info */
@@ -30,5 +32,10 @@ declare namespace StorageType {
overrideThemeFlag: string;
/** The global tabs */
globalTabs: App.Global.Tab[];
+ /** The backup theme setting before is mobile */
+ backupThemeSettingBeforeIsMobile: {
+ layout: UnionKey.ThemeLayoutMode;
+ siderCollapse: boolean;
+ };
}
}
diff --git a/src/views/_builtin/iframe-page/[url].vue b/src/views/_builtin/iframe-page/[url].vue
new file mode 100644
index 000000000..b28c952c9
--- /dev/null
+++ b/src/views/_builtin/iframe-page/[url].vue
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
diff --git a/src/views/manage/menu/modules/menu-operate-drawer.vue b/src/views/manage/menu/modules/menu-operate-drawer.vue
index 3ef3dd9f8..6380267ca 100644
--- a/src/views/manage/menu/modules/menu-operate-drawer.vue
+++ b/src/views/manage/menu/modules/menu-operate-drawer.vue
@@ -187,20 +187,18 @@ async function getRoleOptions() {
}
}
-function handleUpdateModel() {
- if (props.operateType === 'add') {
- Object.assign(model, createDefaultModel());
+function handleInitModel() {
+ Object.assign(model, createDefaultModel());
- return;
- }
+ if (!props.rowData) return;
- if (props.operateType === 'addChild' && props.rowData) {
+ if (props.operateType === 'addChild') {
const { id } = props.rowData;
- Object.assign(model, createDefaultModel(), { parentId: id });
+ Object.assign(model, { parentId: id });
}
- if (props.operateType === 'edit' && props.rowData) {
+ if (props.operateType === 'edit') {
const { component, query, ...rest } = props.rowData;
const { layout, page } = getLayoutAndPage(component);
@@ -233,7 +231,7 @@ async function handleSubmit() {
watch(visible, () => {
if (visible.value) {
- handleUpdateModel();
+ handleInitModel();
restoreValidation();
getRoleOptions();
}
@@ -241,9 +239,9 @@ watch(visible, () => {
-
-
-
+
+
+
@@ -384,14 +382,14 @@ watch(visible, () => {
-
-
- {{ $t('common.cancel') }}
- {{ $t('common.confirm') }}
-
-
-
-
+
+
+
+ {{ $t('common.cancel') }}
+ {{ $t('common.confirm') }}
+
+
+
diff --git a/src/views/manage/role/modules/role-operate-drawer.vue b/src/views/manage/role/modules/role-operate-drawer.vue
index 4a0969dfd..41c8ef11f 100644
--- a/src/views/manage/role/modules/role-operate-drawer.vue
+++ b/src/views/manage/role/modules/role-operate-drawer.vue
@@ -68,11 +68,8 @@ const roleId = computed(() => props.rowData?.id || -1);
const isEdit = computed(() => props.operateType === 'edit');
-function handleUpdateModelWhenEdit() {
- if (props.operateType === 'add') {
- Object.assign(model, createDefaultModel());
- return;
- }
+function handleInitModel() {
+ Object.assign(model, createDefaultModel());
if (props.operateType === 'edit' && props.rowData) {
Object.assign(model, props.rowData);
@@ -93,14 +90,14 @@ async function handleSubmit() {
watch(visible, () => {
if (visible.value) {
- handleUpdateModelWhenEdit();
+ handleInitModel();
restoreValidation();
}
});
-
+
diff --git a/src/views/manage/user/modules/user-operate-drawer.vue b/src/views/manage/user/modules/user-operate-drawer.vue
index 21fb36f33..20d3683a8 100644
--- a/src/views/manage/user/modules/user-operate-drawer.vue
+++ b/src/views/manage/user/modules/user-operate-drawer.vue
@@ -89,11 +89,8 @@ async function getRoleOptions() {
}
}
-function handleUpdateModelWhenEdit() {
- if (props.operateType === 'add') {
- Object.assign(model, createDefaultModel());
- return;
- }
+function handleInitModel() {
+ Object.assign(model, createDefaultModel());
if (props.operateType === 'edit' && props.rowData) {
Object.assign(model, props.rowData);
@@ -114,7 +111,7 @@ async function handleSubmit() {
watch(visible, () => {
if (visible.value) {
- handleUpdateModelWhenEdit();
+ handleInitModel();
restoreValidation();
getRoleOptions();
}
@@ -122,7 +119,7 @@ watch(visible, () => {
-
+