version: v4.9.1

This commit is contained in:
XiaoDaiGua-Ray 2024-07-27 12:16:29 +08:00
parent d306ac8804
commit ab6593f022
9 changed files with 551 additions and 367 deletions

View File

@ -1,5 +1,26 @@
# CHANGE LOG
## 4.9.1
更新核心依赖版本为主流版本。
## Feats
- 更新 `axios` 版本至 `1.7.2`
- 更新 `vue-hooks-plus` 版本至 `2.2.1`
- 更新 `naive-ui` 版本至 `2.39.0`
- 更新 `vue` 版本至 `3.4.34`
- 更新 `vite` 版本至 `5.3.5`
- 更新 `@vitejs/plugin-vue` 版本至 `5.1.0`
- 更新 `@vitejs/plugin-vue-jsx` 版本至 `4.0.0`
- 调整解锁锁屏头像样式
- `RModal` 在设置为拖拽时,如果未设置头(也就是 `title`)属性,则会失效
## Fixes
- 修复 `__APP_CFG__` 类型丢失问题
- 修复 `RTable` 设置 `tool``false` 时,单独设置 `striped`, `bordered` 时不生效的问题
## 4.9.0
主要修复了一个歧义问题,就是新开页面输入 `url`,或者是 `window.open` 打开当前系统的页面时,会导致初始化异常的问题。这是因为以前的 `appMenu`, `appSigning` 相关的缓存都是防止与 `sessionStorage`,但是该缓存并不能共享,所以导致了这个问题。在该版本中将该缓存调整为了 `localStorage`

View File

@ -34,7 +34,7 @@
},
"dependencies": {
"@vueuse/core": "^10.9.0",
"axios": "^1.6.7",
"axios": "^1.7.2",
"clipboard": "^2.0.11",
"currency.js": "^2.0.4",
"dayjs": "^1.11.10",
@ -44,13 +44,13 @@
"jsbarcode": "3.11.6",
"lodash-es": "^4.17.21",
"mockjs": "1.1.0",
"naive-ui": "^2.38.2",
"naive-ui": "^2.39.0",
"pinia": "^2.1.7",
"pinia-plugin-persistedstate": "^3.2.0",
"print-js": "^1.6.0",
"vue": "^3.4.31",
"vue": "^3.4.34",
"vue-demi": "0.14.6",
"vue-hooks-plus": "2.2.0",
"vue-hooks-plus": "2.2.1",
"vue-i18n": "^9.13.1",
"vue-router": "^4.3.2",
"vue3-next-qrcode": "2.0.10"
@ -67,8 +67,8 @@
"@types/mockjs": "1.0.7",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"@vitejs/plugin-vue": "^5.0.4",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"@vitejs/plugin-vue": "^5.1.0",
"@vitejs/plugin-vue-jsx": "^4.0.0",
"@vitest/ui": "1.4.0",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
@ -92,7 +92,7 @@
"typescript": "^5.2.2",
"unplugin-auto-import": "^0.17.5",
"unplugin-vue-components": "^0.26.0",
"vite": "^5.3.3",
"vite": "^5.3.5",
"vite-bundle-analyzer": "0.9.4",
"vite-plugin-cdn2": "1.1.0",
"vite-plugin-compression": "^0.5.1",

850
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@ -45,6 +45,10 @@ const AppAvatar = defineComponent({
type: [String, Number] as PropType<AvatarProps['size']>,
default: 'medium',
},
vertical: {
type: Boolean,
default: false,
},
},
setup(props) {
const signing = getStorage<SigningCallback>(
@ -57,11 +61,11 @@ const AppAvatar = defineComponent({
}
},
render() {
const { signing, avatarSize, spaceSize, $props } = this
const { signing, avatarSize, spaceSize, $props, vertical } = this
return (
<NButton quaternary strong>
<NFlex align="center" size={spaceSize}>
<NFlex align="center" size={spaceSize} vertical={vertical}>
<NAvatar
{...($props as AvatarProps)}
src={signing?.avatar}

View File

@ -120,7 +120,7 @@ export default defineComponent({
</div>
</div>
<div class="app-lock-screen__unlock__content-avatar">
<AppAvatar avatarSize={52} style="pointer-events: none;" />
<AppAvatar avatarSize={52} style="pointer-events: none;" vertical />
</div>
<div class="app-lock-screen__unlock__content-input">
<NForm ref="formRef" model={this.lockCondition} rules={rules}>

View File

@ -21,6 +21,7 @@ import TablePropsSelect from './components/Props'
import props from './props'
import { call, renderNode, uuid } from '@/utils'
import { config } from './shared'
import { pick } from 'lodash-es'
import type { DropdownOption, DataTableInst } from 'naive-ui'
import type { ComponentSize } from '@/types'
@ -56,10 +57,15 @@ export default defineComponent({
const privateReactive = reactive({
size: props.size,
})
const propsPopselectValue = ref({
striped: false,
bordered: false,
})
const propsPopselectValue = ref(
Object.assign(
{
striped: false,
bordered: false,
},
pick(props, 'striped', 'bordered'),
),
)
/**
*

View File

@ -1,7 +1,7 @@
/* eslint-disable @typescript-eslint/no-explicit-any */
export {}
import type { AppConfig } from './modules/viteCustomConfig'
import type { AppConfig } from './modules/vite-custom-config'
import type {
MessageApi,
DialogApi,

View File

@ -48,10 +48,10 @@ export type Recordable<T = any> = Record<string, T>
/**
*
*
*
*
* @example
* Keys<{ a: string, b: number }> // 'a' | 'b'
* ValueOf<{ a: string, b: number }> // string | number
*/
export type ValueOf<T extends object> = T[keyof T]

View File

@ -248,7 +248,8 @@ export const divide = (...args: CurrencyArguments[]) => {
*
* @example
* distribute(0, 1) // [0]
* distribute(0, 3) // [0, 0, 0]
* distribute(2, 3) // [0.67, 0.67, 0.67]
* distribute(3, 3) // [1, 1, 1]
*/
export const distribute = (
value: CurrencyArguments,