From 43bf252d84efa6edc3b990703a2d886ba3976e86 Mon Sep 17 00:00:00 2001
From: XiaoDaiGua-Ray <443547225@qq.com>
Date: Thu, 18 Jan 2024 14:36:33 +0800
Subject: [PATCH] =?UTF-8?q?version:=20v4.6.0=E6=AD=A3=E5=BC=8F=E5=8F=91?=
=?UTF-8?q?=E5=B8=83?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
CHANGELOG.md | 16 +-
package.json | 4 +-
pnpm-lock.yaml | 221 +++++++++---------
src/app-components/app/AppAvatar/index.tsx | 11 +-
.../components/UnlockScreen/index.tsx | 6 +-
src/app-components/app/RayLink/index.tsx | 6 +-
src/components/RCollapseGrid/src/index.tsx | 6 +-
src/components/RTable/src/Table.tsx | 6 +-
src/components/RTable/src/components/C.tsx | 14 +-
.../RTable/src/components/Fullscreen.tsx | 4 +-
src/directives/README_DIR.md | 36 +--
.../components/useContextmenuCoordinate.ts | 44 +++-
src/layout/components/MenuTag/index.tsx | 15 +-
.../components/GlobalSearch/index.tsx | 18 +-
.../components/ThemeSwitch/index.tsx | 6 +-
.../components/SettingDrawer/index.tsx | 6 +-
src/layout/components/SiderBar/index.tsx | 14 +-
src/layout/default/HeaderWrapper/index.tsx | 6 +-
src/locales/lang/en-US/views/login/index.json | 3 +-
src/locales/lang/zh-CN/views/login/index.json | 3 +-
src/store/modules/setting/index.ts | 3 +-
src/types/global.d.ts | 2 +-
src/types/index.ts | 2 +-
.../modules/{cfg.ts => viteCustomConfig.ts} | 0
src/views/dashboard/index.tsx | 22 +-
src/views/demo/axios/index.tsx | 22 +-
src/views/demo/context-menu/index.tsx | 29 ++-
src/views/demo/directive/index.tsx | 26 +--
src/views/demo/echart/index.tsx | 6 +-
src/views/demo/iframe/index.tsx | 6 +-
src/views/demo/mock-demo/index.tsx | 10 +-
src/views/demo/modal-demo/index.tsx | 14 +-
src/views/demo/precision/index.tsx | 10 +-
src/views/demo/qrcode/index.tsx | 26 +--
.../router-demo/router-demo-detail/index.tsx | 6 +-
.../router-demo/router-demo-home/index.tsx | 10 +-
src/views/demo/svg-icons/index.tsx | 6 +-
src/views/demo/table/index.tsx | 14 +-
src/views/demo/template-hooks/index.tsx | 26 +--
.../login/components/SSOSigning/index.tsx | 6 +-
src/views/login/index.tsx | 20 +-
tsconfig.json | 2 +-
vite.config.ts | 2 +-
cfg.ts => vite.custom.config.ts | 2 +-
vite.plugin.config.ts | 27 ++-
45 files changed, 406 insertions(+), 338 deletions(-)
rename src/types/modules/{cfg.ts => viteCustomConfig.ts} (100%)
rename cfg.ts => vite.custom.config.ts (97%)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index dd736f8a..021d3b1c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -8,8 +8,11 @@
## Feats
-- 更新 `vue` 版本至 `3.4.7`
-- 更新 `naive-ui` 版本至 `2.37.3`
+- 更新 `vue` 版本至 `3.4.14`
+- `naive-ui` 相关
+ - 更新 `naive-ui` 版本至 `2.37.3`
+ - 更替 `naive-ui` `cdn` 为 `https://cdnjs.cloudflare.com/ajax/libs/naive-ui/2.37.3/index.prod.js`
+ - 使用 `NFlex` 组件替换 `NSpace` 组件,查看 [官方文档](https://www.naiveui.com/zh-CN/dark/components/flex)
- 更新最新版本 `vue` 后,更新 `createDiscreteApi` 方法注册上下文,改为函数包裹,避免 `slot default invoked outside of render` 警告
- `menu store` 相关
- 优化 `setupAppMenu` 方法,初始化时会拼接完整的 `fullPath`,避免 `url`, `menu value` 更新路由时重复处理 `path`,提高性能
@@ -30,6 +33,9 @@
- 同步更新所有方法,使用 `fullPath` 代替 `path`
- `useContextmenuCoordinate` 方法
- 使用 `readonly` 方法包裹 `show` 属性
+ - 新增返回 `updateShow` 方法,允许手动更新 `show` 属性
+ - 新增 `options` 配置项 `clickOutside` 方法,允许配置点击元素外部区域的回调函数
+ - 更新对应 demo
- 补充一些注释
- 统一 `app-config` 的导入导出方式,现在统一为 `import { xxx } from '@/app-config'` 导入
- 统一 `hooks` 包的导入导出方式,现在统一为 `import { xxx } from '@/hooks'` 导入
@@ -37,10 +43,16 @@
- 开放 `APP_CATCH_KEY.appMenuKey` 属性,配置缓存读取字段
- `useMaximize` 相关
- 优化 `maximize` 方法,现在支持配置滚动位置
+- `cfg.ts` 相关
+ - `cfg.ts` 更名为 `vite.custom.config.ts`
+ - `cfg.ts` 类型包更名为 `viteCustomConfig.ts`
+- 由于 `cdn.staticfile.org` 停止服务,所以切换至 `cdnjs`
## Fixes
- 修复 `RChart` 组件 `RChartInst` 类型不完整的问题
+- 修复读取默认缓存语言的时候没有正确使用 `APP_CATCH_KEY.localeLanguage` 的问题
+- 修复 `RTable` 全屏没有正确弹出提示信息问题
## 4.5.0
diff --git a/package.json b/package.json
index 47126338..13a2993c 100755
--- a/package.json
+++ b/package.json
@@ -34,7 +34,7 @@
"dependencies": {
"@vueuse/core": "^10.7.1",
"awesome-qr": "2.1.5-rc.0",
- "axios": "^1.6.2",
+ "axios": "^1.6.5",
"clipboard": "^2.0.11",
"crypto-js": "^4.1.1",
"currency.js": "^2.0.4",
@@ -48,7 +48,7 @@
"pinia": "^2.1.7",
"pinia-plugin-persistedstate": "^3.2.0",
"print-js": "^1.6.0",
- "vue": "^3.4.7",
+ "vue": "^3.4.14",
"vue-hooks-plus": "1.8.5",
"vue-i18n": "^9.9.0",
"vue-router": "^4.2.5",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 72d9f96e..4235b784 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -7,13 +7,13 @@ settings:
dependencies:
'@vueuse/core':
specifier: ^10.7.1
- version: 10.7.1(vue@3.4.7)
+ version: 10.7.1(vue@3.4.14)
awesome-qr:
specifier: 2.1.5-rc.0
version: 2.1.5-rc.0
axios:
- specifier: ^1.6.2
- version: 1.6.2
+ specifier: ^1.6.5
+ version: 1.6.5
clipboard:
specifier: ^2.0.11
version: 2.0.11
@@ -43,10 +43,10 @@ dependencies:
version: 1.1.0
naive-ui:
specifier: ^2.37.3
- version: 2.37.3(vue@3.4.7)
+ version: 2.37.3(vue@3.4.14)
pinia:
specifier: ^2.1.7
- version: 2.1.7(typescript@5.2.2)(vue@3.4.7)
+ version: 2.1.7(typescript@5.2.2)(vue@3.4.14)
pinia-plugin-persistedstate:
specifier: ^3.2.0
version: 3.2.0(pinia@2.1.7)
@@ -54,17 +54,17 @@ dependencies:
specifier: ^1.6.0
version: 1.6.0
vue:
- specifier: ^3.4.7
- version: 3.4.7(typescript@5.2.2)
+ specifier: ^3.4.14
+ version: 3.4.14(typescript@5.2.2)
vue-hooks-plus:
specifier: 1.8.5
- version: 1.8.5(vue@3.4.7)
+ version: 1.8.5(vue@3.4.14)
vue-i18n:
specifier: ^9.9.0
- version: 9.9.0(vue@3.4.7)
+ version: 9.9.0(vue@3.4.14)
vue-router:
specifier: ^4.2.5
- version: 4.2.5(vue@3.4.7)
+ version: 4.2.5(vue@3.4.14)
xlsx:
specifier: ^0.18.5
version: 0.18.5
@@ -108,10 +108,10 @@ devDependencies:
version: 6.5.0(eslint@8.52.0)(typescript@5.2.2)
'@vitejs/plugin-vue':
specifier: ^5.0.0
- version: 5.0.0(vite@5.0.10)(vue@3.4.7)
+ version: 5.0.0(vite@5.0.10)(vue@3.4.14)
'@vitejs/plugin-vue-jsx':
specifier: ^3.1.0
- version: 3.1.0(vite@5.0.10)(vue@3.4.7)
+ version: 3.1.0(vite@5.0.10)(vue@3.4.14)
'@vue-hooks-plus/resolvers':
specifier: 1.2.4
version: 1.2.4(vue-hooks-plus@1.8.5)
@@ -183,7 +183,7 @@ devDependencies:
version: 0.16.6(@vueuse/core@10.7.1)
unplugin-vue-components:
specifier: ^0.25.2
- version: 0.25.2(vue@3.4.7)
+ version: 0.25.2(vue@3.4.14)
vite:
specifier: ^5.0.10
version: 5.0.10(@types/node@20.4.7)(sass@1.69.5)
@@ -927,12 +927,12 @@ packages:
css-render: 0.15.12
dev: false
- /@css-render/vue3-ssr@0.15.12(vue@3.4.7):
+ /@css-render/vue3-ssr@0.15.12(vue@3.4.14):
resolution: {integrity: sha512-AQLGhhaE0F+rwybRCkKUdzBdTEM/5PZBYy+fSYe1T9z9+yxMuV/k7ZRqa4M69X+EI1W8pa4kc9Iq2VjQkZx4rg==}
peerDependencies:
vue: ^3.0.11
dependencies:
- vue: 3.4.7(typescript@5.2.2)
+ vue: 3.4.14(typescript@5.2.2)
dev: false
/@emotion/hash@0.8.0:
@@ -1430,7 +1430,7 @@ packages:
magic-string: 0.30.5
mlly: 1.4.1
source-map-js: 1.0.2
- vue-i18n: 9.9.0(vue@3.4.7)
+ vue-i18n: 9.9.0(vue@3.4.14)
yaml-eslint-parser: 1.2.2
dev: true
@@ -1492,7 +1492,7 @@ packages:
picocolors: 1.0.0
source-map-js: 1.0.2
unplugin: 1.4.0
- vue-i18n: 9.9.0(vue@3.4.7)
+ vue-i18n: 9.9.0(vue@3.4.14)
transitivePeerDependencies:
- rollup
- supports-color
@@ -2111,7 +2111,7 @@ packages:
resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==}
dev: true
- /@vitejs/plugin-vue-jsx@3.1.0(vite@5.0.10)(vue@3.4.7):
+ /@vitejs/plugin-vue-jsx@3.1.0(vite@5.0.10)(vue@3.4.14):
resolution: {integrity: sha512-w9M6F3LSEU5kszVb9An2/MmXNxocAnUb3WhRr8bHlimhDrXNt6n6D2nJQR3UXpGlZHh/EsgouOHCsM8V3Ln+WA==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
@@ -2122,12 +2122,12 @@ packages:
'@babel/plugin-transform-typescript': 7.23.6(@babel/core@7.23.6)
'@vue/babel-plugin-jsx': 1.1.5(@babel/core@7.23.6)
vite: 5.0.10(@types/node@20.4.7)(sass@1.69.5)
- vue: 3.4.7(typescript@5.2.2)
+ vue: 3.4.14(typescript@5.2.2)
transitivePeerDependencies:
- supports-color
dev: true
- /@vitejs/plugin-vue@5.0.0(vite@5.0.10)(vue@3.4.7):
+ /@vitejs/plugin-vue@5.0.0(vite@5.0.10)(vue@3.4.14):
resolution: {integrity: sha512-7x5e8X4J1Wi4NxudGjJBd2OFerAi/0nzF80ojCzvfj347WVr0YSn82C8BSsgwSHzlk9Kw5xnZfj0/7RLnNwP5w==}
engines: {node: ^18.0.0 || >=20.0.0}
peerDependencies:
@@ -2135,7 +2135,7 @@ packages:
vue: ^3.2.25
dependencies:
vite: 5.0.10(@types/node@20.4.7)(sass@1.69.5)
- vue: 3.4.7(typescript@5.2.2)
+ vue: 3.4.14(typescript@5.2.2)
dev: true
/@volar/language-core@1.10.1:
@@ -2163,7 +2163,7 @@ packages:
vue-hooks-plus: ^1.5.2
dependencies:
local-pkg: 0.4.3
- vue-hooks-plus: 1.8.5(vue@3.4.7)
+ vue-hooks-plus: 1.8.5(vue@3.4.14)
dev: true
/@vue/babel-helper-vue-transform-on@1.1.5:
@@ -2207,11 +2207,11 @@ packages:
source-map-js: 1.0.2
dev: true
- /@vue/compiler-core@3.4.7:
- resolution: {integrity: sha512-hhCaE3pTMrlIJK7M/o3Xf7HV8+JoNTGOQ/coWS+V+pH6QFFyqtoXqQzpqsNp7UK17xYKua/MBiKj4e1vgZOBYw==}
+ /@vue/compiler-core@3.4.14:
+ resolution: {integrity: sha512-ro4Zzl/MPdWs7XwxT7omHRxAjMbDFRZEEjD+2m3NBf8YzAe3HuoSEZosXQo+m1GQ1G3LQ1LdmNh1RKTYe+ssEg==}
dependencies:
'@babel/parser': 7.23.6
- '@vue/shared': 3.4.7
+ '@vue/shared': 3.4.14
entities: 4.5.0
estree-walker: 2.0.2
source-map-js: 1.0.2
@@ -2230,11 +2230,11 @@ packages:
'@vue/shared': 3.3.8
dev: true
- /@vue/compiler-dom@3.4.7:
- resolution: {integrity: sha512-qDKBAIurCTub4n/6jDYkXwgsFuriqqmmLrIq1N2QDfYJA/mwiwvxi09OGn28g+uDdERX9NaKDLji0oTjE3sScg==}
+ /@vue/compiler-dom@3.4.14:
+ resolution: {integrity: sha512-nOZTY+veWNa0DKAceNWxorAbWm0INHdQq7cejFaWM1WYnoNSJbSEKYtE7Ir6lR/+mo9fttZpPVI9ZFGJ1juUEQ==}
dependencies:
- '@vue/compiler-core': 3.4.7
- '@vue/shared': 3.4.7
+ '@vue/compiler-core': 3.4.14
+ '@vue/shared': 3.4.14
/@vue/compiler-sfc@3.3.8:
resolution: {integrity: sha512-WMzbUrlTjfYF8joyT84HfwwXo+8WPALuPxhy+BZ6R4Aafls+jDBnSz8PDz60uFhuqFbl3HxRfxvDzrUf3THwpA==}
@@ -2251,17 +2251,17 @@ packages:
source-map-js: 1.0.2
dev: true
- /@vue/compiler-sfc@3.4.7:
- resolution: {integrity: sha512-Gec6CLkReVswDYjQFq79O5rktri4R7TsD/VPCiUoJw40JhNNxaNJJa8mrQrWoJluW4ETy6QN0NUyC/JO77OCOw==}
+ /@vue/compiler-sfc@3.4.14:
+ resolution: {integrity: sha512-1vHc9Kv1jV+YBZC/RJxQJ9JCxildTI+qrhtDh6tPkR1O8S+olBUekimY0km0ZNn8nG1wjtFAe9XHij+YLR8cRQ==}
dependencies:
'@babel/parser': 7.23.6
- '@vue/compiler-core': 3.4.7
- '@vue/compiler-dom': 3.4.7
- '@vue/compiler-ssr': 3.4.7
- '@vue/shared': 3.4.7
+ '@vue/compiler-core': 3.4.14
+ '@vue/compiler-dom': 3.4.14
+ '@vue/compiler-ssr': 3.4.14
+ '@vue/shared': 3.4.14
estree-walker: 2.0.2
magic-string: 0.30.5
- postcss: 8.4.32
+ postcss: 8.4.33
source-map-js: 1.0.2
/@vue/compiler-ssr@3.3.8:
@@ -2271,11 +2271,11 @@ packages:
'@vue/shared': 3.3.8
dev: true
- /@vue/compiler-ssr@3.4.7:
- resolution: {integrity: sha512-PvYeSOvnCkST5mGS0TLwEn5w+4GavtEn6adcq8AspbHaIr+mId5hp7cG3ASy3iy8b+LuXEG2/QaV/nj5BQ/Aww==}
+ /@vue/compiler-ssr@3.4.14:
+ resolution: {integrity: sha512-bXT6+oAGlFjTYVOTtFJ4l4Jab1wjsC0cfSfOe2B4Z0N2vD2zOBSQ9w694RsCfhjk+bC2DY5Gubb1rHZVii107Q==}
dependencies:
- '@vue/compiler-dom': 3.4.7
- '@vue/shared': 3.4.7
+ '@vue/compiler-dom': 3.4.14
+ '@vue/shared': 3.4.14
/@vue/devtools-api@6.5.1:
resolution: {integrity: sha512-+KpckaAQyfbvshdDW5xQylLni1asvNSGme1JFs8I1+/H5pHEhqUKMEQD/qn3Nx5+/nycBq11qAEi8lk+LXI2dA==}
@@ -2350,32 +2350,32 @@ packages:
'@vue/shared': 3.3.8
dev: true
- /@vue/reactivity@3.4.7:
- resolution: {integrity: sha512-F539DO0ogH0+L8F9Pnw7cjqibcmSOh5UTk16u5f4MKQ8fraqepI9zdh+sozPX6VmEHOcjo8qw3Or9ZcFFw4SZA==}
+ /@vue/reactivity@3.4.14:
+ resolution: {integrity: sha512-xRYwze5Q4tK7tT2J4uy4XLhK/AIXdU5EBUu9PLnIHcOKXO0uyXpNNMzlQKuq7B+zwtq6K2wuUL39pHA6ZQzObw==}
dependencies:
- '@vue/shared': 3.4.7
+ '@vue/shared': 3.4.14
- /@vue/runtime-core@3.4.7:
- resolution: {integrity: sha512-QMMsWRQaD3BpGyjjChthpl4Mji4Fjx1qfdufsXlDkKU3HV+hWNor2z+29F+E1MmVcP0ZfRZUfqYgtsQoL7IGwQ==}
+ /@vue/runtime-core@3.4.14:
+ resolution: {integrity: sha512-qu+NMkfujCoZL6cfqK5NOfxgXJROSlP2ZPs4CTcVR+mLrwl4TtycF5Tgo0QupkdBL+2kigc6EsJlTcuuZC1NaQ==}
dependencies:
- '@vue/reactivity': 3.4.7
- '@vue/shared': 3.4.7
+ '@vue/reactivity': 3.4.14
+ '@vue/shared': 3.4.14
- /@vue/runtime-dom@3.4.7:
- resolution: {integrity: sha512-XwegyUY1rw8zxsX1Z36vwYcqo+uOgih5ti7y9vx+pPFhNdSQmN4LqK2RmSeAJG1oKV8NqSUmjpv92f/x6h0SeQ==}
+ /@vue/runtime-dom@3.4.14:
+ resolution: {integrity: sha512-B85XmcR4E7XsirEHVqhmy4HPbRT9WLFWV9Uhie3OapV9m1MEN9+Er6hmUIE6d8/l2sUygpK9RstFM2bmHEUigA==}
dependencies:
- '@vue/runtime-core': 3.4.7
- '@vue/shared': 3.4.7
+ '@vue/runtime-core': 3.4.14
+ '@vue/shared': 3.4.14
csstype: 3.1.3
- /@vue/server-renderer@3.4.7(vue@3.4.7):
- resolution: {integrity: sha512-3bWnYLEkLLhkDWqvNk7IvbQD4UcxvFKxELBiOO2iG3m6AniFIsBWfHOO5tLVQnjdWkODu4rq0GipmfEenVAK5Q==}
+ /@vue/server-renderer@3.4.14(vue@3.4.14):
+ resolution: {integrity: sha512-pwSKXQfYdJBTpvWHGEYI+akDE18TXAiLcGn+Q/2Fj8wQSHWztoo7PSvfMNqu6NDhp309QXXbPFEGCU5p85HqkA==}
peerDependencies:
- vue: 3.4.7
+ vue: 3.4.14
dependencies:
- '@vue/compiler-ssr': 3.4.7
- '@vue/shared': 3.4.7
- vue: 3.4.7(typescript@5.2.2)
+ '@vue/compiler-ssr': 3.4.14
+ '@vue/shared': 3.4.14
+ vue: 3.4.14(typescript@5.2.2)
/@vue/shared@3.3.13:
resolution: {integrity: sha512-/zYUwiHD8j7gKx2argXEMCUXVST6q/21DFU0sTfNX0URJroCe3b1UF6vLJ3lQDfLNIiiRl2ONp7Nh5UVWS6QnA==}
@@ -2385,8 +2385,8 @@ packages:
resolution: {integrity: sha512-8PGwybFwM4x8pcfgqEQFy70NaQxASvOC5DJwLQfpArw1UDfUXrJkdxD3BhVTMS+0Lef/TU7YO0Jvr0jJY8T+mw==}
dev: true
- /@vue/shared@3.4.7:
- resolution: {integrity: sha512-G+i4glX1dMJk88sbJEcQEGWRQnVm9eIY7CcQbO5dpdsD9SF8jka3Mr5OqZYGjczGN1+D6EUwdu6phcmcx9iuPA==}
+ /@vue/shared@3.4.14:
+ resolution: {integrity: sha512-nmi3BtLpvqXAWoRZ6HQ+pFJOHBU4UnH3vD3opgmwXac7vhaHKA9nj1VeGjMggdB9eLtW83eHyPCmOU1qzdsC7Q==}
/@vue/typescript@1.8.8(typescript@5.2.2):
resolution: {integrity: sha512-jUnmMB6egu5wl342eaUH236v8tdcEPXXkPgj+eI/F6JwW/lb+yAU6U07ZbQ3MVabZRlupIlPESB7ajgAGixhow==}
@@ -2397,13 +2397,13 @@ packages:
- typescript
dev: true
- /@vueuse/core@10.7.1(vue@3.4.7):
+ /@vueuse/core@10.7.1(vue@3.4.14):
resolution: {integrity: sha512-74mWHlaesJSWGp1ihg76vAnfVq9NTv1YT0SYhAQ6zwFNdBkkP+CKKJmVOEHcdSnLXCXYiL5e7MaewblfiYLP7g==}
dependencies:
'@types/web-bluetooth': 0.0.20
'@vueuse/metadata': 10.7.1
- '@vueuse/shared': 10.7.1(vue@3.4.7)
- vue-demi: 0.14.6(vue@3.4.7)
+ '@vueuse/shared': 10.7.1(vue@3.4.14)
+ vue-demi: 0.14.6(vue@3.4.14)
transitivePeerDependencies:
- '@vue/composition-api'
- vue
@@ -2411,10 +2411,10 @@ packages:
/@vueuse/metadata@10.7.1:
resolution: {integrity: sha512-jX8MbX5UX067DYVsbtrmKn6eG6KMcXxLRLlurGkZku5ZYT3vxgBjui2zajvUZ18QLIjrgBkFRsu7CqTAg18QFw==}
- /@vueuse/shared@10.7.1(vue@3.4.7):
+ /@vueuse/shared@10.7.1(vue@3.4.14):
resolution: {integrity: sha512-v0jbRR31LSgRY/C5i5X279A/WQjD6/JsMzGa+eqt658oJ75IvQXAeONmwvEMrvJQKnRElq/frzBR7fhmWY5uLw==}
dependencies:
- vue-demi: 0.14.6(vue@3.4.7)
+ vue-demi: 0.14.6(vue@3.4.14)
transitivePeerDependencies:
- '@vue/composition-api'
- vue
@@ -2810,10 +2810,10 @@ packages:
- supports-color
dev: false
- /axios@1.6.2:
- resolution: {integrity: sha512-7i24Ri4pmDRfJTR7LDBhsOTtcm+9kjX5WiY1X3wIisx6G9So3pfMkEiU7emUBe46oceVImccTEM3k6C5dbVW8A==}
+ /axios@1.6.5:
+ resolution: {integrity: sha512-Ii012v05KEVuUoFWmMW/UQv9aRIc3ZwkWDcM+h5Il8izZCtRVpDUfwpoFf7eOtajT3QiGR4yDUx7lPqHJULgbg==}
dependencies:
- follow-redirects: 1.15.3
+ follow-redirects: 1.15.5
form-data: 4.0.0
proxy-from-env: 1.1.0
transitivePeerDependencies:
@@ -4555,8 +4555,8 @@ packages:
resolution: {integrity: sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==}
dev: true
- /follow-redirects@1.15.3:
- resolution: {integrity: sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q==}
+ /follow-redirects@1.15.5:
+ resolution: {integrity: sha512-vSFWUON1B+yAw1VN4xMfxgn5fTUiaOzAJCKBwIIgT/+7CuGy9+r+5gITvP62j3RmaD5Ph65UaERdOSRGUzZtgw==}
engines: {node: '>=4.0'}
peerDependencies:
debug: '*'
@@ -5978,13 +5978,13 @@ packages:
minimatch: 3.1.2
dev: true
- /naive-ui@2.37.3(vue@3.4.7):
+ /naive-ui@2.37.3(vue@3.4.14):
resolution: {integrity: sha512-aUkHFXVIluSi8Me+npbcsdv1NYhVMj5t9YaruoCESlqmfqspj+R2QHEVXkTtUI1kQwVrABMCtAGq/wountqjZA==}
peerDependencies:
vue: ^3.0.0
dependencies:
'@css-render/plugin-bem': 0.15.12(css-render@0.15.12)
- '@css-render/vue3-ssr': 0.15.12(vue@3.4.7)
+ '@css-render/vue3-ssr': 0.15.12(vue@3.4.14)
'@types/katex': 0.16.7
'@types/lodash': 4.14.202
'@types/lodash-es': 4.17.11
@@ -5999,10 +5999,10 @@ packages:
lodash-es: 4.17.21
seemly: 0.3.8
treemate: 0.3.11
- vdirs: 0.1.8(vue@3.4.7)
- vooks: 0.2.12(vue@3.4.7)
- vue: 3.4.7(typescript@5.2.2)
- vueuc: 0.4.58(vue@3.4.7)
+ vdirs: 0.1.8(vue@3.4.14)
+ vooks: 0.2.12(vue@3.4.14)
+ vue: 3.4.14(typescript@5.2.2)
+ vueuc: 0.4.58(vue@3.4.14)
dev: false
/nan@2.17.0:
@@ -6389,10 +6389,10 @@ packages:
peerDependencies:
pinia: ^2.0.0
dependencies:
- pinia: 2.1.7(typescript@5.2.2)(vue@3.4.7)
+ pinia: 2.1.7(typescript@5.2.2)(vue@3.4.14)
dev: false
- /pinia@2.1.7(typescript@5.2.2)(vue@3.4.7):
+ /pinia@2.1.7(typescript@5.2.2)(vue@3.4.14):
resolution: {integrity: sha512-+C2AHFtcFqjPih0zpYuvof37SFxMQ7OEG2zV9jRI12i9BOy3YQVAHwdKtyyc8pDcDyIc33WCIsZaCFWU7WWxGQ==}
peerDependencies:
'@vue/composition-api': ^1.4.0
@@ -6406,8 +6406,8 @@ packages:
dependencies:
'@vue/devtools-api': 6.5.1
typescript: 5.2.2
- vue: 3.4.7(typescript@5.2.2)
- vue-demi: 0.14.6(vue@3.4.7)
+ vue: 3.4.14(typescript@5.2.2)
+ vue-demi: 0.14.6(vue@3.4.14)
dev: false
/pkg-types@1.0.3:
@@ -6481,6 +6481,15 @@ packages:
nanoid: 3.3.7
picocolors: 1.0.0
source-map-js: 1.0.2
+ dev: true
+
+ /postcss@8.4.33:
+ resolution: {integrity: sha512-Kkpbhhdjw2qQs2O2DGX+8m5OVqEcbB9HRBvuYM9pgrjEFUg30A9LmXNlTAUj4S9kgtGyrMbTzVjH7E+s5Re2yg==}
+ engines: {node: ^10 || ^12 || >=14}
+ dependencies:
+ nanoid: 3.3.7
+ picocolors: 1.0.0
+ source-map-js: 1.0.2
/posthtml-parser@0.2.1:
resolution: {integrity: sha512-nPC53YMqJnc/+1x4fRYFfm81KV2V+G9NZY+hTohpYg64Ay7NemWWcV4UWuy/SgMupqQ3kJ88M/iRfZmSnxT+pw==}
@@ -7680,7 +7689,7 @@ packages:
dependencies:
'@antfu/utils': 0.7.6
'@rollup/pluginutils': 5.0.4
- '@vueuse/core': 10.7.1(vue@3.4.7)
+ '@vueuse/core': 10.7.1(vue@3.4.14)
fast-glob: 3.3.1
local-pkg: 0.4.3
magic-string: 0.30.5
@@ -7691,7 +7700,7 @@ packages:
- rollup
dev: true
- /unplugin-vue-components@0.25.2(vue@3.4.7):
+ /unplugin-vue-components@0.25.2(vue@3.4.14):
resolution: {integrity: sha512-OVmLFqILH6w+eM8fyt/d/eoJT9A6WO51NZLf1vC5c1FZ4rmq2bbGxTy8WP2Jm7xwFdukaIdv819+UI7RClPyCA==}
engines: {node: '>=14'}
peerDependencies:
@@ -7714,7 +7723,7 @@ packages:
minimatch: 9.0.3
resolve: 1.22.5
unplugin: 1.4.0
- vue: 3.4.7(typescript@5.2.2)
+ vue: 3.4.14(typescript@5.2.2)
transitivePeerDependencies:
- rollup
- supports-color
@@ -7805,13 +7814,13 @@ packages:
engines: {node: '>= 0.8'}
dev: true
- /vdirs@0.1.8(vue@3.4.7):
+ /vdirs@0.1.8(vue@3.4.14):
resolution: {integrity: sha512-H9V1zGRLQZg9b+GdMk8MXDN2Lva0zx72MPahDKc30v+DtwKjfyOSXWRIX4t2mhDubM1H09gPhWeth/BJWPHGUw==}
peerDependencies:
vue: ^3.0.11
dependencies:
evtd: 0.2.4
- vue: 3.4.7(typescript@5.2.2)
+ vue: 3.4.14(typescript@5.2.2)
dev: false
/vite-plugin-cdn2@0.15.2:
@@ -7994,16 +8003,16 @@ packages:
fsevents: 2.3.3
dev: true
- /vooks@0.2.12(vue@3.4.7):
+ /vooks@0.2.12(vue@3.4.14):
resolution: {integrity: sha512-iox0I3RZzxtKlcgYaStQYKEzWWGAduMmq+jS7OrNdQo1FgGfPMubGL3uGHOU9n97NIvfFDBGnpSvkWyb/NSn/Q==}
peerDependencies:
vue: ^3.0.0
dependencies:
evtd: 0.2.4
- vue: 3.4.7(typescript@5.2.2)
+ vue: 3.4.14(typescript@5.2.2)
dev: false
- /vue-demi@0.14.6(vue@3.4.7):
+ /vue-demi@0.14.6(vue@3.4.14):
resolution: {integrity: sha512-8QA7wrYSHKaYgUxDA5ZC24w+eHm3sYCbp0EzcDwKqN3p6HqtTCGR/GVsPyZW92unff4UlcSh++lmqDWN3ZIq4w==}
engines: {node: '>=12'}
hasBin: true
@@ -8015,7 +8024,7 @@ packages:
'@vue/composition-api':
optional: true
dependencies:
- vue: 3.4.7(typescript@5.2.2)
+ vue: 3.4.14(typescript@5.2.2)
/vue-eslint-parser@9.3.1(eslint@8.52.0):
resolution: {integrity: sha512-Clr85iD2XFZ3lJ52/ppmUDG/spxQu6+MAeHXjjyI4I1NUYZ9xmenQp4N0oaHJhrA8OOxltCVxMRfANGa70vU0g==}
@@ -8035,7 +8044,7 @@ packages:
- supports-color
dev: true
- /vue-hooks-plus@1.8.5(vue@3.4.7):
+ /vue-hooks-plus@1.8.5(vue@3.4.14):
resolution: {integrity: sha512-cIatTWz6QQcoSCDn7jadQ3zMr799FmNiHyb59yUvR7Ws5KDJ/KdIMHHx/b0XDKzbGhQ61kcJ78zJKAKhOV0pWw==}
peerDependencies:
vue: ^3.2.25
@@ -8047,9 +8056,9 @@ packages:
qs: 6.11.2
query-string: 7.1.3
screenfull: 5.2.0
- vue: 3.4.7(typescript@5.2.2)
+ vue: 3.4.14(typescript@5.2.2)
- /vue-i18n@9.9.0(vue@3.4.7):
+ /vue-i18n@9.9.0(vue@3.4.14):
resolution: {integrity: sha512-xQ5SxszUAqK5n84N+uUyHH/PiQl9xZ24FOxyAaNonmOQgXeN+rD9z/6DStOpOxNFQn4Cgcquot05gZc+CdOujA==}
engines: {node: '>= 16'}
peerDependencies:
@@ -8058,15 +8067,15 @@ packages:
'@intlify/core-base': 9.9.0
'@intlify/shared': 9.9.0
'@vue/devtools-api': 6.5.1
- vue: 3.4.7(typescript@5.2.2)
+ vue: 3.4.14(typescript@5.2.2)
- /vue-router@4.2.5(vue@3.4.7):
+ /vue-router@4.2.5(vue@3.4.14):
resolution: {integrity: sha512-DIUpKcyg4+PTQKfFPX88UWhlagBEBEfJ5A8XDXRJLUnZOvcpMF8o/dnL90vpVkGaPbjvXazV/rC1qBKrZlFugw==}
peerDependencies:
vue: ^3.2.0
dependencies:
'@vue/devtools-api': 6.5.1
- vue: 3.4.7(typescript@5.2.2)
+ vue: 3.4.14(typescript@5.2.2)
dev: false
/vue-template-compiler@2.7.14:
@@ -8088,34 +8097,34 @@ packages:
typescript: 5.2.2
dev: true
- /vue@3.4.7(typescript@5.2.2):
- resolution: {integrity: sha512-4urmkWpudekq0CPNMO7p6mBGa9qmTXwJMO2r6CT4EzIJVG7WoSReiysiNb7OSi/WI113oX0Srn9Rz1k/DCXKFQ==}
+ /vue@3.4.14(typescript@5.2.2):
+ resolution: {integrity: sha512-Rop5Al/ZcBbBz+KjPZaZDgHDX0kUP4duEzDbm+1o91uxYUNmJrZSBuegsNIJvUGy+epLevNRNhLjm08VKTgGyw==}
peerDependencies:
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
dependencies:
- '@vue/compiler-dom': 3.4.7
- '@vue/compiler-sfc': 3.4.7
- '@vue/runtime-dom': 3.4.7
- '@vue/server-renderer': 3.4.7(vue@3.4.7)
- '@vue/shared': 3.4.7
+ '@vue/compiler-dom': 3.4.14
+ '@vue/compiler-sfc': 3.4.14
+ '@vue/runtime-dom': 3.4.14
+ '@vue/server-renderer': 3.4.14(vue@3.4.14)
+ '@vue/shared': 3.4.14
typescript: 5.2.2
- /vueuc@0.4.58(vue@3.4.7):
+ /vueuc@0.4.58(vue@3.4.14):
resolution: {integrity: sha512-Wnj/N8WbPRSxSt+9ji1jtDHPzda5h2OH/0sFBhvdxDRuyCZbjGg3/cKMaKqEoe+dErTexG2R+i6Q8S/Toq1MYg==}
peerDependencies:
vue: ^3.0.11
dependencies:
- '@css-render/vue3-ssr': 0.15.12(vue@3.4.7)
+ '@css-render/vue3-ssr': 0.15.12(vue@3.4.14)
'@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.7)
- vooks: 0.2.12(vue@3.4.7)
- vue: 3.4.7(typescript@5.2.2)
+ vdirs: 0.1.8(vue@3.4.14)
+ vooks: 0.2.12(vue@3.4.14)
+ vue: 3.4.14(typescript@5.2.2)
dev: false
/webidl-conversions@3.0.1:
diff --git a/src/app-components/app/AppAvatar/index.tsx b/src/app-components/app/AppAvatar/index.tsx
index 73696d0c..b977b47f 100644
--- a/src/app-components/app/AppAvatar/index.tsx
+++ b/src/app-components/app/AppAvatar/index.tsx
@@ -19,9 +19,9 @@
import './index.scss'
-import { NAvatar, NSpace } from 'naive-ui'
+import { NAvatar, NFlex } from 'naive-ui'
-import { avatarProps, spaceProps } from 'naive-ui'
+import { avatarProps, flexProps } from 'naive-ui'
import { APP_CATCH_KEY } from '@/app-config'
import { getStorage } from '@/utils'
@@ -33,7 +33,7 @@ const AppAvatar = defineComponent({
name: 'AppAvatar',
props: {
...avatarProps,
- ...spaceProps,
+ ...flexProps,
cursor: {
type: String,
default: 'auto',
@@ -64,12 +64,11 @@ const AppAvatar = defineComponent({
},
render() {
return (
-
我执行了{this.demoValue}次
该方法将延迟 1s 执行
-我执行了{this.demoValue}次
该方法 1s 内仅会执行一次
-我是可以被禁用的文本内容
-我执行了{this.throttleBtnClickCount}次
该方法 1s 内仅会执行一次
-我执行了{this.debounceBtnClickCount}次
该方法将延迟 1s 执行
-我是可以被禁用的文本内容
-