mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-05 07:03:00 +08:00
version: v4.8.5
This commit is contained in:
parent
5b035815eb
commit
27db2293f3
@ -8,7 +8,6 @@ module.exports = {
|
|||||||
jsxSingleQuote: false, // `jsx` 不使用单引号, 而使用双引号
|
jsxSingleQuote: false, // `jsx` 不使用单引号, 而使用双引号
|
||||||
trailingComma: 'all', // 尾随逗号
|
trailingComma: 'all', // 尾随逗号
|
||||||
bracketSpacing: true, // 大括号内的首尾需要空格
|
bracketSpacing: true, // 大括号内的首尾需要空格
|
||||||
jsxBracketSameLine: false, // `jsx` 标签的反尖括号需要换行
|
|
||||||
arrowParens: 'always', // 箭头函数, 只有一个参数的时候, 也需要括号
|
arrowParens: 'always', // 箭头函数, 只有一个参数的时候, 也需要括号
|
||||||
rangeStart: 0, // 每个文件格式化的范围是文件的全部内容
|
rangeStart: 0, // 每个文件格式化的范围是文件的全部内容
|
||||||
rangeEnd: Infinity,
|
rangeEnd: Infinity,
|
||||||
|
29
CHANGELOG.md
29
CHANGELOG.md
@ -1,5 +1,34 @@
|
|||||||
# CHANGE LOG
|
# CHANGE LOG
|
||||||
|
|
||||||
|
## 4.8.5
|
||||||
|
|
||||||
|
## Feats
|
||||||
|
|
||||||
|
- 更新 `vue-router` 版本至 `4.3.2`
|
||||||
|
- 更新 `vue-hooks-plus` 版本至 `2.0.3`
|
||||||
|
- `usePagination` 方法
|
||||||
|
- 新增 `resetPagination` 方法,用于重置分页器
|
||||||
|
- `RBarcode` 组件,默认启用 `watchText` 配置项,用于监听 `text` 内容变化
|
||||||
|
- `RMoreDropdown` 组件,新增 `icon` 自定义配置图标,依赖 `RIcon` 组件实现
|
||||||
|
- `buildOptions` 方法现在会自动根据 `mode` 进行自动构建生成包了
|
||||||
|
- `RTable hooks`
|
||||||
|
- `UseCheckedRowKeysOptions`
|
||||||
|
- 新增 `table column` 参数,自动获取当前表格列配置是否启用了选项模式(单选、多选)
|
||||||
|
- `selectKey` 方法现在在单选模式下,只会选择一条数据,最后一次选择的会覆盖上次的
|
||||||
|
- `useTable`
|
||||||
|
- 新增 `print` 方法
|
||||||
|
- `useTheme` 方法
|
||||||
|
- `changeDarkTheme` 更名为 `darkTheme`
|
||||||
|
- `changeLightTheme` 更名为 `lightTheme`
|
||||||
|
- `getAppTheme` 方法返回值做了准确的 `ts` 签名,并且新增 `themeLabelI18n` 字段
|
||||||
|
|
||||||
|
## Fixes
|
||||||
|
|
||||||
|
- 修复 `vitest` 设置 `threads` 导致报错 `Module did not self-register...` 的问题
|
||||||
|
- 修复 `vue-router warning` 抛出 `can no longer be used directly inside...` 的警告问题
|
||||||
|
- 修复 `pre-commit` 错误的 `vue-tsc` 检查报错
|
||||||
|
- `signing logout` 方法现在会正确的清理 `menuTagOptions`
|
||||||
|
|
||||||
## 4.8.4
|
## 4.8.4
|
||||||
|
|
||||||
由于 `node canvas` 本身的特性(环境问题很多),故在 `v4.8.4` 版本予以移除 `RQRCode` 组件,使用 `vue3-next-qrcode` 替代。所有的使用方法保持一致。
|
由于 `node canvas` 本身的特性(环境问题很多),故在 `v4.8.4` 版本予以移除 `RQRCode` 组件,使用 `vue3-next-qrcode` 替代。所有的使用方法保持一致。
|
||||||
|
@ -4,23 +4,22 @@ import { useTheme } from '../../src/hooks/template/useTheme'
|
|||||||
describe('useTheme', async () => {
|
describe('useTheme', async () => {
|
||||||
await setupMiniApp()
|
await setupMiniApp()
|
||||||
|
|
||||||
const { changeDarkTheme, changeLightTheme, toggleTheme, getAppTheme } =
|
const { darkTheme, lightTheme, toggleTheme, getAppTheme } = useTheme()
|
||||||
useTheme()
|
|
||||||
|
|
||||||
it('should change to dark theme', () => {
|
it('should change to dark theme', () => {
|
||||||
changeDarkTheme()
|
darkTheme()
|
||||||
|
|
||||||
expect(getAppTheme().theme).toBe(true)
|
expect(getAppTheme().theme).toBe(true)
|
||||||
})
|
})
|
||||||
|
|
||||||
it('should change to light theme', () => {
|
it('should change to light theme', () => {
|
||||||
changeLightTheme()
|
lightTheme()
|
||||||
|
|
||||||
expect(getAppTheme().theme).toBe(false)
|
expect(getAppTheme().theme).toBe(false)
|
||||||
})
|
})
|
||||||
|
|
||||||
it('should toggle theme', () => {
|
it('should toggle theme', () => {
|
||||||
changeLightTheme()
|
lightTheme()
|
||||||
|
|
||||||
expect(getAppTheme().theme).toBe(false)
|
expect(getAppTheme().theme).toBe(false)
|
||||||
|
|
||||||
@ -30,14 +29,14 @@ describe('useTheme', async () => {
|
|||||||
})
|
})
|
||||||
|
|
||||||
it('should return current theme', () => {
|
it('should return current theme', () => {
|
||||||
changeDarkTheme()
|
darkTheme()
|
||||||
|
|
||||||
const { theme: darkTheme, themeLabel: darkThemeLabel } = getAppTheme()
|
const { theme: darkTheme, themeLabel: darkThemeLabel } = getAppTheme()
|
||||||
|
|
||||||
expect(darkTheme).toBe(true)
|
expect(darkTheme).toBe(true)
|
||||||
expect(darkThemeLabel).toBe('暗色')
|
expect(darkThemeLabel).toBe('暗色')
|
||||||
|
|
||||||
changeLightTheme()
|
lightTheme()
|
||||||
|
|
||||||
const { theme: lightTheme, themeLabel: lightThemeLabel } = getAppTheme()
|
const { theme: lightTheme, themeLabel: lightThemeLabel } = getAppTheme()
|
||||||
|
|
||||||
|
19
package.json
19
package.json
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "ray-template",
|
"name": "ray-template",
|
||||||
"private": false,
|
"private": false,
|
||||||
"version": "4.8.4",
|
"version": "4.8.5",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^18.0.0 || >=20.0.0",
|
"node": "^18.0.0 || >=20.0.0",
|
||||||
@ -16,7 +16,7 @@
|
|||||||
"prepare": "husky install",
|
"prepare": "husky install",
|
||||||
"test": "vitest",
|
"test": "vitest",
|
||||||
"test:ui": "vitest --ui",
|
"test:ui": "vitest --ui",
|
||||||
"lint": "eslint src --ext .js,.jsx,.vue && prettier --write \"src/**/*.{ts,tsx,json,.vue}\""
|
"lint": "vue-tsc --noEmit && eslint src --ext .js,.jsx,.vue && prettier --write \"src/**/*.{ts,tsx,json,.vue}\""
|
||||||
},
|
},
|
||||||
"husky": {
|
"husky": {
|
||||||
"hooks": {
|
"hooks": {
|
||||||
@ -25,15 +25,14 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"lint-staged": {
|
"lint-staged": {
|
||||||
|
"/src/**/*.{ts,tsx,vue}": [
|
||||||
|
"vue-tsc --noEmit"
|
||||||
|
],
|
||||||
"*.{ts,tsx,json}": [
|
"*.{ts,tsx,json}": [
|
||||||
"prettier --write"
|
"prettier --write"
|
||||||
],
|
],
|
||||||
".ts,.tsx,.vue": [
|
|
||||||
"vue-tsc --noEmit"
|
|
||||||
],
|
|
||||||
"*.{ts,tsx,vue}": [
|
"*.{ts,tsx,vue}": [
|
||||||
"eslint src",
|
"eslint src"
|
||||||
"prettier --parser=typescript --write"
|
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
@ -54,16 +53,16 @@
|
|||||||
"print-js": "^1.6.0",
|
"print-js": "^1.6.0",
|
||||||
"vue": "^3.4.26",
|
"vue": "^3.4.26",
|
||||||
"vue-demi": "0.14.6",
|
"vue-demi": "0.14.6",
|
||||||
"vue-hooks-plus": "1.9.0",
|
"vue-hooks-plus": "2.1.0",
|
||||||
"vue-i18n": "^9.13.1",
|
"vue-i18n": "^9.13.1",
|
||||||
"vue-router": "^4.3.0",
|
"vue-router": "^4.3.2",
|
||||||
"vue3-next-qrcode": "2.0.10"
|
"vue3-next-qrcode": "2.0.10"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@commitlint/cli": "^17.7.1",
|
"@commitlint/cli": "^17.7.1",
|
||||||
"@commitlint/config-conventional": "^17.7.0",
|
"@commitlint/config-conventional": "^17.7.0",
|
||||||
"@interactjs/types": "1.10.21",
|
"@interactjs/types": "1.10.21",
|
||||||
"@intlify/unplugin-vue-i18n": "^2.0.0",
|
"@intlify/unplugin-vue-i18n": "^4.0.0",
|
||||||
"@types/crypto-js": "^4.1.1",
|
"@types/crypto-js": "^4.1.1",
|
||||||
"@types/dom-to-image": "2.6.7",
|
"@types/dom-to-image": "2.6.7",
|
||||||
"@types/jsbarcode": "3.11.4",
|
"@types/jsbarcode": "3.11.4",
|
||||||
|
180
pnpm-lock.yaml
generated
180
pnpm-lock.yaml
generated
@ -57,14 +57,14 @@ dependencies:
|
|||||||
specifier: 0.14.6
|
specifier: 0.14.6
|
||||||
version: 0.14.6(vue@3.4.26)
|
version: 0.14.6(vue@3.4.26)
|
||||||
vue-hooks-plus:
|
vue-hooks-plus:
|
||||||
specifier: 1.9.0
|
specifier: 2.1.0
|
||||||
version: 1.9.0(vue@3.4.26)
|
version: 2.1.0(vue@3.4.26)
|
||||||
vue-i18n:
|
vue-i18n:
|
||||||
specifier: ^9.13.1
|
specifier: ^9.13.1
|
||||||
version: 9.13.1(vue@3.4.26)
|
version: 9.13.1(vue@3.4.26)
|
||||||
vue-router:
|
vue-router:
|
||||||
specifier: ^4.3.0
|
specifier: ^4.3.2
|
||||||
version: 4.3.0(vue@3.4.26)
|
version: 4.3.2(vue@3.4.26)
|
||||||
vue3-next-qrcode:
|
vue3-next-qrcode:
|
||||||
specifier: 2.0.10
|
specifier: 2.0.10
|
||||||
version: 2.0.10(typescript@5.2.2)
|
version: 2.0.10(typescript@5.2.2)
|
||||||
@ -80,8 +80,8 @@ devDependencies:
|
|||||||
specifier: 1.10.21
|
specifier: 1.10.21
|
||||||
version: 1.10.21
|
version: 1.10.21
|
||||||
'@intlify/unplugin-vue-i18n':
|
'@intlify/unplugin-vue-i18n':
|
||||||
specifier: ^2.0.0
|
specifier: ^4.0.0
|
||||||
version: 2.0.0(vue-i18n@9.13.1)
|
version: 4.0.0(vue-i18n@9.13.1)
|
||||||
'@types/crypto-js':
|
'@types/crypto-js':
|
||||||
specifier: ^4.1.1
|
specifier: ^4.1.1
|
||||||
version: 4.2.2
|
version: 4.2.2
|
||||||
@ -245,7 +245,7 @@ packages:
|
|||||||
engines: {node: '>=6.9.0'}
|
engines: {node: '>=6.9.0'}
|
||||||
dependencies:
|
dependencies:
|
||||||
'@babel/highlight': 7.24.2
|
'@babel/highlight': 7.24.2
|
||||||
picocolors: 1.0.0
|
picocolors: 1.0.1
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/@babel/compat-data@7.24.1:
|
/@babel/compat-data@7.24.1:
|
||||||
@ -429,6 +429,11 @@ packages:
|
|||||||
/@babel/helper-validator-identifier@7.22.20:
|
/@babel/helper-validator-identifier@7.22.20:
|
||||||
resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==}
|
resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==}
|
||||||
engines: {node: '>=6.9.0'}
|
engines: {node: '>=6.9.0'}
|
||||||
|
dev: true
|
||||||
|
|
||||||
|
/@babel/helper-validator-identifier@7.24.5:
|
||||||
|
resolution: {integrity: sha512-3q93SSKX2TWCG30M2G2kwaKeTYgEUp5Snjuj8qm729SObL6nbtUldAi37qbxkD5gg3xnBio+f9nqpSepGZMvxA==}
|
||||||
|
engines: {node: '>=6.9.0'}
|
||||||
|
|
||||||
/@babel/helper-validator-option@7.23.5:
|
/@babel/helper-validator-option@7.23.5:
|
||||||
resolution: {integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==}
|
resolution: {integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==}
|
||||||
@ -453,7 +458,7 @@ packages:
|
|||||||
'@babel/helper-validator-identifier': 7.22.20
|
'@babel/helper-validator-identifier': 7.22.20
|
||||||
chalk: 2.4.2
|
chalk: 2.4.2
|
||||||
js-tokens: 4.0.0
|
js-tokens: 4.0.0
|
||||||
picocolors: 1.0.0
|
picocolors: 1.0.1
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/@babel/parser@7.24.1:
|
/@babel/parser@7.24.1:
|
||||||
@ -464,12 +469,12 @@ packages:
|
|||||||
'@babel/types': 7.24.0
|
'@babel/types': 7.24.0
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/@babel/parser@7.24.4:
|
/@babel/parser@7.24.5:
|
||||||
resolution: {integrity: sha512-zTvEBcghmeBma9QIGunWevvBAp4/Qu9Bdq+2k0Ot4fVMD6v3dsC9WOcRSKk7tRRyBM/53yKMJko9xOatGQAwSg==}
|
resolution: {integrity: sha512-EOv5IK8arwh3LI47dz1b0tKUb/1uhHAnHJOrjgtQMIpu1uXd9mlFrJg9IUgGUgZ41Ch0K8REPTYpO7B76b4vJg==}
|
||||||
engines: {node: '>=6.0.0'}
|
engines: {node: '>=6.0.0'}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
dependencies:
|
dependencies:
|
||||||
'@babel/types': 7.24.0
|
'@babel/types': 7.24.5
|
||||||
|
|
||||||
/@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.24.1):
|
/@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.24.1):
|
||||||
resolution: {integrity: sha512-2eCtxZXf+kbkMIsXS4poTvT4Yu5rXiRa+9xGVT56raghjmBTKMpFNc9R4IDiB4emao9eO22Ox7CxuJG7BgExqA==}
|
resolution: {integrity: sha512-2eCtxZXf+kbkMIsXS4poTvT4Yu5rXiRa+9xGVT56raghjmBTKMpFNc9R4IDiB4emao9eO22Ox7CxuJG7BgExqA==}
|
||||||
@ -545,6 +550,15 @@ packages:
|
|||||||
'@babel/helper-string-parser': 7.24.1
|
'@babel/helper-string-parser': 7.24.1
|
||||||
'@babel/helper-validator-identifier': 7.22.20
|
'@babel/helper-validator-identifier': 7.22.20
|
||||||
to-fast-properties: 2.0.0
|
to-fast-properties: 2.0.0
|
||||||
|
dev: true
|
||||||
|
|
||||||
|
/@babel/types@7.24.5:
|
||||||
|
resolution: {integrity: sha512-6mQNsaLeXTw0nxYUYu+NSa4Hx4BlF1x1x8/PMFbiR+GBSr+2DkECc69b8hgy2frEodNcvPffeH8YfWd3LI6jhQ==}
|
||||||
|
engines: {node: '>=6.9.0'}
|
||||||
|
dependencies:
|
||||||
|
'@babel/helper-string-parser': 7.24.1
|
||||||
|
'@babel/helper-validator-identifier': 7.24.5
|
||||||
|
to-fast-properties: 2.0.0
|
||||||
|
|
||||||
/@commitlint/cli@17.8.1:
|
/@commitlint/cli@17.8.1:
|
||||||
resolution: {integrity: sha512-ay+WbzQesE0Rv4EQKfNbSMiJJ12KdKTDzIt0tcK4k11FdsWmtwP0Kp1NWMOUswfIWo6Eb7p7Ln721Nx9FLNBjg==}
|
resolution: {integrity: sha512-ay+WbzQesE0Rv4EQKfNbSMiJJ12KdKTDzIt0tcK4k11FdsWmtwP0Kp1NWMOUswfIWo6Eb7p7Ln721Nx9FLNBjg==}
|
||||||
@ -1220,8 +1234,8 @@ packages:
|
|||||||
resolution: {integrity: sha512-DekYpdkMV3XJVd/0k3f4pJluZAsCiG86yEtVXvGLK0lS/Fj0+OzYEv7HoMpcBZSkQ8s7//yaeEBgnxy2tV81lA==}
|
resolution: {integrity: sha512-DekYpdkMV3XJVd/0k3f4pJluZAsCiG86yEtVXvGLK0lS/Fj0+OzYEv7HoMpcBZSkQ8s7//yaeEBgnxy2tV81lA==}
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/@intlify/bundle-utils@7.5.0(vue-i18n@9.13.1):
|
/@intlify/bundle-utils@8.0.0(vue-i18n@9.13.1):
|
||||||
resolution: {integrity: sha512-6DymqusddBQ8kVtVBsVFFF7arNfIhuLacOmmsqayT2vl427j9m0VX12mMC+cgoVIodSpRfzYPaPTdPuJq7mK0Q==}
|
resolution: {integrity: sha512-1B++zykRnMwQ+20SpsZI1JCnV/YJt9Oq7AGlEurzkWJOFtFAVqaGc/oV36PBRYeiKnTbY9VYfjBimr2Vt42wLQ==}
|
||||||
engines: {node: '>= 14.16'}
|
engines: {node: '>= 14.16'}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
petite-vue-i18n: '*'
|
petite-vue-i18n: '*'
|
||||||
@ -1232,13 +1246,12 @@ packages:
|
|||||||
vue-i18n:
|
vue-i18n:
|
||||||
optional: true
|
optional: true
|
||||||
dependencies:
|
dependencies:
|
||||||
'@intlify/message-compiler': 9.9.0
|
'@intlify/message-compiler': 9.13.1
|
||||||
'@intlify/shared': 9.9.0
|
'@intlify/shared': 9.13.1
|
||||||
acorn: 8.11.3
|
acorn: 8.11.3
|
||||||
escodegen: 2.1.0
|
escodegen: 2.1.0
|
||||||
estree-walker: 2.0.2
|
estree-walker: 2.0.2
|
||||||
jsonc-eslint-parser: 2.4.0
|
jsonc-eslint-parser: 2.4.0
|
||||||
magic-string: 0.30.8
|
|
||||||
mlly: 1.6.1
|
mlly: 1.6.1
|
||||||
source-map-js: 1.2.0
|
source-map-js: 1.2.0
|
||||||
vue-i18n: 9.13.1(vue@3.4.26)
|
vue-i18n: 9.13.1(vue@3.4.26)
|
||||||
@ -1259,25 +1272,12 @@ packages:
|
|||||||
'@intlify/shared': 9.13.1
|
'@intlify/shared': 9.13.1
|
||||||
source-map-js: 1.2.0
|
source-map-js: 1.2.0
|
||||||
|
|
||||||
/@intlify/message-compiler@9.9.0:
|
|
||||||
resolution: {integrity: sha512-yDU/jdUm9KuhEzYfS+wuyja209yXgdl1XFhMlKtXEgSFTxz4COZQCRXXbbH8JrAjMsaJ7bdoPSLsKlY6mXG2iA==}
|
|
||||||
engines: {node: '>= 16'}
|
|
||||||
dependencies:
|
|
||||||
'@intlify/shared': 9.9.0
|
|
||||||
source-map-js: 1.2.0
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/@intlify/shared@9.13.1:
|
/@intlify/shared@9.13.1:
|
||||||
resolution: {integrity: sha512-u3b6BKGhE6j/JeRU6C/RL2FgyJfy6LakbtfeVF8fJXURpZZTzfh3e05J0bu0XPw447Q6/WUp3C4ajv4TMS4YsQ==}
|
resolution: {integrity: sha512-u3b6BKGhE6j/JeRU6C/RL2FgyJfy6LakbtfeVF8fJXURpZZTzfh3e05J0bu0XPw447Q6/WUp3C4ajv4TMS4YsQ==}
|
||||||
engines: {node: '>= 16'}
|
engines: {node: '>= 16'}
|
||||||
|
|
||||||
/@intlify/shared@9.9.0:
|
/@intlify/unplugin-vue-i18n@4.0.0(vue-i18n@9.13.1):
|
||||||
resolution: {integrity: sha512-1ECUyAHRrzOJbOizyGufYP2yukqGrWXtkmTu4PcswVnWbkcjzk3YQGmJ0bLkM7JZ0ZYAaohLGdYvBYnTOGYJ9g==}
|
resolution: {integrity: sha512-q2Mhqa/mLi0tulfLFO4fMXXvEbkSZpI5yGhNNsLTNJJ41icEGUuyDe+j5zRZIKSkOJRgX6YbCyibTDJdRsukmw==}
|
||||||
engines: {node: '>= 16'}
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/@intlify/unplugin-vue-i18n@2.0.0(vue-i18n@9.13.1):
|
|
||||||
resolution: {integrity: sha512-1oKvm92L9l2od2H9wKx2ZvR4tzn7gUtd7bPLI7AWUmm7U9H1iEypndt5d985ypxGsEs0gToDaKTrytbBIJwwSg==}
|
|
||||||
engines: {node: '>= 14.16'}
|
engines: {node: '>= 14.16'}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
petite-vue-i18n: '*'
|
petite-vue-i18n: '*'
|
||||||
@ -1291,18 +1291,18 @@ packages:
|
|||||||
vue-i18n-bridge:
|
vue-i18n-bridge:
|
||||||
optional: true
|
optional: true
|
||||||
dependencies:
|
dependencies:
|
||||||
'@intlify/bundle-utils': 7.5.0(vue-i18n@9.13.1)
|
'@intlify/bundle-utils': 8.0.0(vue-i18n@9.13.1)
|
||||||
'@intlify/shared': 9.9.0
|
'@intlify/shared': 9.13.1
|
||||||
'@rollup/pluginutils': 5.1.0
|
'@rollup/pluginutils': 5.1.0
|
||||||
'@vue/compiler-sfc': 3.4.21
|
'@vue/compiler-sfc': 3.4.27
|
||||||
debug: 4.3.4
|
debug: 4.3.4
|
||||||
fast-glob: 3.3.2
|
fast-glob: 3.3.2
|
||||||
js-yaml: 4.1.0
|
js-yaml: 4.1.0
|
||||||
json5: 2.2.3
|
json5: 2.2.3
|
||||||
pathe: 1.1.2
|
pathe: 1.1.2
|
||||||
picocolors: 1.0.0
|
picocolors: 1.0.1
|
||||||
source-map-js: 1.2.0
|
source-map-js: 1.2.0
|
||||||
unplugin: 1.10.0
|
unplugin: 1.10.1
|
||||||
vue-i18n: 9.13.1(vue@3.4.26)
|
vue-i18n: 9.13.1(vue@3.4.26)
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- rollup
|
- rollup
|
||||||
@ -1964,8 +1964,8 @@ packages:
|
|||||||
'@babel/core': 7.24.1
|
'@babel/core': 7.24.1
|
||||||
'@babel/helper-module-imports': 7.22.15
|
'@babel/helper-module-imports': 7.22.15
|
||||||
'@babel/helper-plugin-utils': 7.24.0
|
'@babel/helper-plugin-utils': 7.24.0
|
||||||
'@babel/parser': 7.24.1
|
'@babel/parser': 7.24.5
|
||||||
'@vue/compiler-sfc': 3.4.21
|
'@vue/compiler-sfc': 3.4.27
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/@vue/compiler-core@3.4.21:
|
/@vue/compiler-core@3.4.21:
|
||||||
@ -1981,12 +1981,22 @@ packages:
|
|||||||
/@vue/compiler-core@3.4.26:
|
/@vue/compiler-core@3.4.26:
|
||||||
resolution: {integrity: sha512-N9Vil6Hvw7NaiyFUFBPXrAyETIGlQ8KcFMkyk6hW1Cl6NvoqvP+Y8p1Eqvx+UdqsnrnI9+HMUEJegzia3mhXmQ==}
|
resolution: {integrity: sha512-N9Vil6Hvw7NaiyFUFBPXrAyETIGlQ8KcFMkyk6hW1Cl6NvoqvP+Y8p1Eqvx+UdqsnrnI9+HMUEJegzia3mhXmQ==}
|
||||||
dependencies:
|
dependencies:
|
||||||
'@babel/parser': 7.24.4
|
'@babel/parser': 7.24.5
|
||||||
'@vue/shared': 3.4.26
|
'@vue/shared': 3.4.26
|
||||||
entities: 4.5.0
|
entities: 4.5.0
|
||||||
estree-walker: 2.0.2
|
estree-walker: 2.0.2
|
||||||
source-map-js: 1.2.0
|
source-map-js: 1.2.0
|
||||||
|
|
||||||
|
/@vue/compiler-core@3.4.27:
|
||||||
|
resolution: {integrity: sha512-E+RyqY24KnyDXsCuQrI+mlcdW3ALND6U7Gqa/+bVwbcpcR3BRRIckFoz7Qyd4TTlnugtwuI7YgjbvsLmxb+yvg==}
|
||||||
|
dependencies:
|
||||||
|
'@babel/parser': 7.24.5
|
||||||
|
'@vue/shared': 3.4.27
|
||||||
|
entities: 4.5.0
|
||||||
|
estree-walker: 2.0.2
|
||||||
|
source-map-js: 1.2.0
|
||||||
|
dev: true
|
||||||
|
|
||||||
/@vue/compiler-dom@3.4.21:
|
/@vue/compiler-dom@3.4.21:
|
||||||
resolution: {integrity: sha512-IZC6FKowtT1sl0CR5DpXSiEB5ayw75oT2bma1BEhV7RRR1+cfwLrxc2Z8Zq/RGFzJ8w5r9QtCOvTjQgdn0IKmA==}
|
resolution: {integrity: sha512-IZC6FKowtT1sl0CR5DpXSiEB5ayw75oT2bma1BEhV7RRR1+cfwLrxc2Z8Zq/RGFzJ8w5r9QtCOvTjQgdn0IKmA==}
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -2000,6 +2010,13 @@ packages:
|
|||||||
'@vue/compiler-core': 3.4.26
|
'@vue/compiler-core': 3.4.26
|
||||||
'@vue/shared': 3.4.26
|
'@vue/shared': 3.4.26
|
||||||
|
|
||||||
|
/@vue/compiler-dom@3.4.27:
|
||||||
|
resolution: {integrity: sha512-kUTvochG/oVgE1w5ViSr3KUBh9X7CWirebA3bezTbB5ZKBQZwR2Mwj9uoSKRMFcz4gSMzzLXBPD6KpCLb9nvWw==}
|
||||||
|
dependencies:
|
||||||
|
'@vue/compiler-core': 3.4.27
|
||||||
|
'@vue/shared': 3.4.27
|
||||||
|
dev: true
|
||||||
|
|
||||||
/@vue/compiler-sfc@3.4.21:
|
/@vue/compiler-sfc@3.4.21:
|
||||||
resolution: {integrity: sha512-me7epoTxYlY+2CUM7hy9PCDdpMPfIwrOvAXud2Upk10g4YLv9UBW7kL798TvMeDhPthkZ0CONNrK2GoeI1ODiQ==}
|
resolution: {integrity: sha512-me7epoTxYlY+2CUM7hy9PCDdpMPfIwrOvAXud2Upk10g4YLv9UBW7kL798TvMeDhPthkZ0CONNrK2GoeI1ODiQ==}
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -2009,7 +2026,7 @@ packages:
|
|||||||
'@vue/compiler-ssr': 3.4.21
|
'@vue/compiler-ssr': 3.4.21
|
||||||
'@vue/shared': 3.4.21
|
'@vue/shared': 3.4.21
|
||||||
estree-walker: 2.0.2
|
estree-walker: 2.0.2
|
||||||
magic-string: 0.30.8
|
magic-string: 0.30.10
|
||||||
postcss: 8.4.38
|
postcss: 8.4.38
|
||||||
source-map-js: 1.2.0
|
source-map-js: 1.2.0
|
||||||
dev: true
|
dev: true
|
||||||
@ -2017,7 +2034,7 @@ packages:
|
|||||||
/@vue/compiler-sfc@3.4.26:
|
/@vue/compiler-sfc@3.4.26:
|
||||||
resolution: {integrity: sha512-It1dp+FAOCgluYSVYlDn5DtZBxk1NCiJJfu2mlQqa/b+k8GL6NG/3/zRbJnHdhV2VhxFghaDq5L4K+1dakW6cw==}
|
resolution: {integrity: sha512-It1dp+FAOCgluYSVYlDn5DtZBxk1NCiJJfu2mlQqa/b+k8GL6NG/3/zRbJnHdhV2VhxFghaDq5L4K+1dakW6cw==}
|
||||||
dependencies:
|
dependencies:
|
||||||
'@babel/parser': 7.24.4
|
'@babel/parser': 7.24.5
|
||||||
'@vue/compiler-core': 3.4.26
|
'@vue/compiler-core': 3.4.26
|
||||||
'@vue/compiler-dom': 3.4.26
|
'@vue/compiler-dom': 3.4.26
|
||||||
'@vue/compiler-ssr': 3.4.26
|
'@vue/compiler-ssr': 3.4.26
|
||||||
@ -2027,6 +2044,20 @@ packages:
|
|||||||
postcss: 8.4.38
|
postcss: 8.4.38
|
||||||
source-map-js: 1.2.0
|
source-map-js: 1.2.0
|
||||||
|
|
||||||
|
/@vue/compiler-sfc@3.4.27:
|
||||||
|
resolution: {integrity: sha512-nDwntUEADssW8e0rrmE0+OrONwmRlegDA1pD6QhVeXxjIytV03yDqTey9SBDiALsvAd5U4ZrEKbMyVXhX6mCGA==}
|
||||||
|
dependencies:
|
||||||
|
'@babel/parser': 7.24.5
|
||||||
|
'@vue/compiler-core': 3.4.27
|
||||||
|
'@vue/compiler-dom': 3.4.27
|
||||||
|
'@vue/compiler-ssr': 3.4.27
|
||||||
|
'@vue/shared': 3.4.27
|
||||||
|
estree-walker: 2.0.2
|
||||||
|
magic-string: 0.30.10
|
||||||
|
postcss: 8.4.38
|
||||||
|
source-map-js: 1.2.0
|
||||||
|
dev: true
|
||||||
|
|
||||||
/@vue/compiler-ssr@3.4.21:
|
/@vue/compiler-ssr@3.4.21:
|
||||||
resolution: {integrity: sha512-M5+9nI2lPpAsgXOGQobnIueVqc9sisBFexh5yMIMRAPYLa7+5wEJs8iqOZc1WAa9WQbx9GR2twgznU8LTIiZ4Q==}
|
resolution: {integrity: sha512-M5+9nI2lPpAsgXOGQobnIueVqc9sisBFexh5yMIMRAPYLa7+5wEJs8iqOZc1WAa9WQbx9GR2twgznU8LTIiZ4Q==}
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -2040,6 +2071,13 @@ packages:
|
|||||||
'@vue/compiler-dom': 3.4.26
|
'@vue/compiler-dom': 3.4.26
|
||||||
'@vue/shared': 3.4.26
|
'@vue/shared': 3.4.26
|
||||||
|
|
||||||
|
/@vue/compiler-ssr@3.4.27:
|
||||||
|
resolution: {integrity: sha512-CVRzSJIltzMG5FcidsW0jKNQnNRYC8bT21VegyMMtHmhW3UOI7knmUehzswXLrExDLE6lQCZdrhD4ogI7c+vuw==}
|
||||||
|
dependencies:
|
||||||
|
'@vue/compiler-dom': 3.4.27
|
||||||
|
'@vue/shared': 3.4.27
|
||||||
|
dev: true
|
||||||
|
|
||||||
/@vue/devtools-api@6.6.1:
|
/@vue/devtools-api@6.6.1:
|
||||||
resolution: {integrity: sha512-LgPscpE3Vs0x96PzSSB4IGVSZXZBZHpfxs+ZA1d+VEPwHdOXowy/Y2CsvCAIFrf+ssVU1pD1jidj505EpUnfbA==}
|
resolution: {integrity: sha512-LgPscpE3Vs0x96PzSSB4IGVSZXZBZHpfxs+ZA1d+VEPwHdOXowy/Y2CsvCAIFrf+ssVU1pD1jidj505EpUnfbA==}
|
||||||
|
|
||||||
@ -2087,8 +2125,8 @@ packages:
|
|||||||
optional: true
|
optional: true
|
||||||
dependencies:
|
dependencies:
|
||||||
'@volar/language-core': 2.2.0-alpha.8
|
'@volar/language-core': 2.2.0-alpha.8
|
||||||
'@vue/compiler-dom': 3.4.21
|
'@vue/compiler-dom': 3.4.27
|
||||||
'@vue/shared': 3.4.21
|
'@vue/shared': 3.4.27
|
||||||
computeds: 0.0.1
|
computeds: 0.0.1
|
||||||
minimatch: 9.0.3
|
minimatch: 9.0.3
|
||||||
path-browserify: 1.0.1
|
path-browserify: 1.0.1
|
||||||
@ -2130,6 +2168,10 @@ packages:
|
|||||||
/@vue/shared@3.4.26:
|
/@vue/shared@3.4.26:
|
||||||
resolution: {integrity: sha512-Fg4zwR0GNnjzodMt3KRy2AWGMKQXByl56+4HjN87soxLNU9P5xcJkstAlIeEF3cU6UYOzmJl1tV0dVPGIljCnQ==}
|
resolution: {integrity: sha512-Fg4zwR0GNnjzodMt3KRy2AWGMKQXByl56+4HjN87soxLNU9P5xcJkstAlIeEF3cU6UYOzmJl1tV0dVPGIljCnQ==}
|
||||||
|
|
||||||
|
/@vue/shared@3.4.27:
|
||||||
|
resolution: {integrity: sha512-DL3NmY2OFlqmYYrzp39yi3LDkKxa5vZVwxWdQ3rG0ekuWscHraeIbnI8t+aZK7qhYqEqWKTUdijadunb9pnrgA==}
|
||||||
|
dev: true
|
||||||
|
|
||||||
/@vue/test-utils@2.4.3(vue@3.4.26):
|
/@vue/test-utils@2.4.3(vue@3.4.26):
|
||||||
resolution: {integrity: sha512-F4K7mF+ad++VlTrxMJVRnenKSJmO6fkQt2wpRDiKDesQMkfpniGWsqEi/JevxGBo2qEkwwjvTUAoiGJLNx++CA==}
|
resolution: {integrity: sha512-F4K7mF+ad++VlTrxMJVRnenKSJmO6fkQt2wpRDiKDesQMkfpniGWsqEi/JevxGBo2qEkwwjvTUAoiGJLNx++CA==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
@ -2842,7 +2884,7 @@ packages:
|
|||||||
resolution: {integrity: sha512-m7pOT6CdLN7FuXUcpuz/8lfQ/L77x8SchHCF4G0RBTJO20Wzmhn5Sp4/5WsKy8OSpifBSUrmg83qEqaDHdyFuQ==}
|
resolution: {integrity: sha512-m7pOT6CdLN7FuXUcpuz/8lfQ/L77x8SchHCF4G0RBTJO20Wzmhn5Sp4/5WsKy8OSpifBSUrmg83qEqaDHdyFuQ==}
|
||||||
dependencies:
|
dependencies:
|
||||||
inflation: 2.1.0
|
inflation: 2.1.0
|
||||||
qs: 6.12.0
|
qs: 6.12.1
|
||||||
raw-body: 2.5.2
|
raw-body: 2.5.2
|
||||||
type-is: 1.6.18
|
type-is: 1.6.18
|
||||||
dev: true
|
dev: true
|
||||||
@ -2926,6 +2968,10 @@ packages:
|
|||||||
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
|
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/confbox@0.1.7:
|
||||||
|
resolution: {integrity: sha512-uJcB/FKZtBMCJpK8MQji6bJHgu1tixKPxRLeGkNzBoOZzpnZUJm0jm2/sBDWcuBx1dYgxV4JU+g5hmNxCyAmdA==}
|
||||||
|
dev: true
|
||||||
|
|
||||||
/config-chain@1.1.13:
|
/config-chain@1.1.13:
|
||||||
resolution: {integrity: sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==}
|
resolution: {integrity: sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==}
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -4324,7 +4370,7 @@ packages:
|
|||||||
dezalgo: 1.0.4
|
dezalgo: 1.0.4
|
||||||
hexoid: 1.0.0
|
hexoid: 1.0.0
|
||||||
once: 1.4.0
|
once: 1.4.0
|
||||||
qs: 6.12.0
|
qs: 6.12.1
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/fraction.js@4.3.7:
|
/fraction.js@4.3.7:
|
||||||
@ -5239,7 +5285,7 @@ packages:
|
|||||||
acorn: 8.11.3
|
acorn: 8.11.3
|
||||||
eslint-visitor-keys: 3.4.3
|
eslint-visitor-keys: 3.4.3
|
||||||
espree: 9.6.1
|
espree: 9.6.1
|
||||||
semver: 7.6.0
|
semver: 7.6.1
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/jsonc-parser@3.2.1:
|
/jsonc-parser@3.2.1:
|
||||||
@ -5679,7 +5725,7 @@ packages:
|
|||||||
dependencies:
|
dependencies:
|
||||||
acorn: 8.11.3
|
acorn: 8.11.3
|
||||||
pathe: 1.1.2
|
pathe: 1.1.2
|
||||||
pkg-types: 1.0.3
|
pkg-types: 1.1.0
|
||||||
ufo: 1.5.3
|
ufo: 1.5.3
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
@ -6106,6 +6152,10 @@ packages:
|
|||||||
/picocolors@1.0.0:
|
/picocolors@1.0.0:
|
||||||
resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
|
resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
|
||||||
|
|
||||||
|
/picocolors@1.0.1:
|
||||||
|
resolution: {integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==}
|
||||||
|
dev: true
|
||||||
|
|
||||||
/picomatch@2.3.1:
|
/picomatch@2.3.1:
|
||||||
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
|
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
|
||||||
engines: {node: '>=8.6'}
|
engines: {node: '>=8.6'}
|
||||||
@ -6151,6 +6201,14 @@ packages:
|
|||||||
pathe: 1.1.2
|
pathe: 1.1.2
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/pkg-types@1.1.0:
|
||||||
|
resolution: {integrity: sha512-/RpmvKdxKf8uILTtoOhAgf30wYbP2Qw+L9p3Rvshx1JZVX+XQNZQFjlbmGHEGIm4CkVPlSn+NXmIM8+9oWQaSA==}
|
||||||
|
dependencies:
|
||||||
|
confbox: 0.1.7
|
||||||
|
mlly: 1.6.1
|
||||||
|
pathe: 1.1.2
|
||||||
|
dev: true
|
||||||
|
|
||||||
/please-upgrade-node@3.2.0:
|
/please-upgrade-node@3.2.0:
|
||||||
resolution: {integrity: sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg==}
|
resolution: {integrity: sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg==}
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -6290,8 +6348,8 @@ packages:
|
|||||||
engines: {node: '>=6'}
|
engines: {node: '>=6'}
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/qs@6.12.0:
|
/qs@6.12.1:
|
||||||
resolution: {integrity: sha512-trVZiI6RMOkO476zLGaBIzszOdFPnCCXHPG9kn0yuS1uz6xdVxPfZdB3vUig9pxPFDM9BRAgz/YUIVQ1/vuiUg==}
|
resolution: {integrity: sha512-zWmv4RSuB9r2mYQw3zxQuHWeU+42aKi1wWig/j4ele4ygELZ7PEO6MM7rim9oAQH2A5MWfsAVf/jPvTPgCbvUQ==}
|
||||||
engines: {node: '>=0.6'}
|
engines: {node: '>=0.6'}
|
||||||
dependencies:
|
dependencies:
|
||||||
side-channel: 1.0.6
|
side-channel: 1.0.6
|
||||||
@ -7117,7 +7175,7 @@ packages:
|
|||||||
css-select: 4.3.0
|
css-select: 4.3.0
|
||||||
css-tree: 1.1.3
|
css-tree: 1.1.3
|
||||||
csso: 4.2.0
|
csso: 4.2.0
|
||||||
picocolors: 1.0.0
|
picocolors: 1.0.1
|
||||||
stable: 0.1.8
|
stable: 0.1.8
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
@ -7132,7 +7190,7 @@ packages:
|
|||||||
css-tree: 2.3.1
|
css-tree: 2.3.1
|
||||||
css-what: 6.1.0
|
css-what: 6.1.0
|
||||||
csso: 5.0.5
|
csso: 5.0.5
|
||||||
picocolors: 1.0.0
|
picocolors: 1.0.1
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/synckit@0.8.8:
|
/synckit@0.8.8:
|
||||||
@ -7540,6 +7598,16 @@ packages:
|
|||||||
webpack-virtual-modules: 0.6.1
|
webpack-virtual-modules: 0.6.1
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/unplugin@1.10.1:
|
||||||
|
resolution: {integrity: sha512-d6Mhq8RJeGA8UfKCu54Um4lFA0eSaRa3XxdAJg8tIdxbu1ubW0hBCZUL7yI2uGyYCRndvbK8FLHzqy2XKfeMsg==}
|
||||||
|
engines: {node: '>=14.0.0'}
|
||||||
|
dependencies:
|
||||||
|
acorn: 8.11.3
|
||||||
|
chokidar: 3.6.0
|
||||||
|
webpack-sources: 3.2.3
|
||||||
|
webpack-virtual-modules: 0.6.1
|
||||||
|
dev: true
|
||||||
|
|
||||||
/unset-value@1.0.0:
|
/unset-value@1.0.0:
|
||||||
resolution: {integrity: sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==}
|
resolution: {integrity: sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==}
|
||||||
engines: {node: '>=0.10.0'}
|
engines: {node: '>=0.10.0'}
|
||||||
@ -7975,8 +8043,8 @@ packages:
|
|||||||
- supports-color
|
- supports-color
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/vue-hooks-plus@1.9.0(vue@3.4.26):
|
/vue-hooks-plus@2.1.0(vue@3.4.26):
|
||||||
resolution: {integrity: sha512-LN2EClFHPPtNBlLMg1dlvywFiqex7eGrv/8xQC+EQJj1evL2hOZ1MO6CGccRucw4zkkD23y6RdIH0Ub839RYUQ==}
|
resolution: {integrity: sha512-UkwmyoFX8WlfHgkqgDJ1jTLvVohtspRR8JFIZYCAgG01nqYVxoTiHZbEhOdIMH1Ba0CxP/xL26knT1+a2w5JpQ==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
vue: ^3.2.25
|
vue: ^3.2.25
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -7984,7 +8052,7 @@ packages:
|
|||||||
'@vue/devtools-api': 6.6.1
|
'@vue/devtools-api': 6.6.1
|
||||||
js-cookie: 3.0.5
|
js-cookie: 3.0.5
|
||||||
lodash: 4.17.21
|
lodash: 4.17.21
|
||||||
qs: 6.12.0
|
qs: 6.12.1
|
||||||
query-string: 7.1.3
|
query-string: 7.1.3
|
||||||
screenfull: 5.2.0
|
screenfull: 5.2.0
|
||||||
vue: 3.4.26(typescript@5.2.2)
|
vue: 3.4.26(typescript@5.2.2)
|
||||||
@ -8001,8 +8069,8 @@ packages:
|
|||||||
'@vue/devtools-api': 6.6.1
|
'@vue/devtools-api': 6.6.1
|
||||||
vue: 3.4.26(typescript@5.2.2)
|
vue: 3.4.26(typescript@5.2.2)
|
||||||
|
|
||||||
/vue-router@4.3.0(vue@3.4.26):
|
/vue-router@4.3.2(vue@3.4.26):
|
||||||
resolution: {integrity: sha512-dqUcs8tUeG+ssgWhcPbjHvazML16Oga5w34uCUmsk7i0BcnskoLGwjpa15fqMr2Fa5JgVBrdL2MEgqz6XZ/6IQ==}
|
resolution: {integrity: sha512-hKQJ1vDAZ5LVkKEnHhmm1f9pMiWIBNGF5AwU67PdH7TyXCj/a4hTccuUuYCAMgJK6rO/NVYtQIEN3yL8CECa7Q==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
vue: ^3.2.0
|
vue: ^3.2.0
|
||||||
dependencies:
|
dependencies:
|
||||||
|
@ -88,13 +88,11 @@ const props = {
|
|||||||
* @description
|
* @description
|
||||||
* 是否监听 text 变化,当 text 变化时,会重新生成条形码。
|
* 是否监听 text 变化,当 text 变化时,会重新生成条形码。
|
||||||
*
|
*
|
||||||
* 但是,在条形码的使用场景中,text 变化的频率应该是比较低的,所以默认不开启。如果有需要,可以手动开启。
|
* @default true
|
||||||
*
|
|
||||||
* @default false
|
|
||||||
*/
|
*/
|
||||||
watchText: {
|
watchText: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
default: false,
|
default: true,
|
||||||
},
|
},
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
|
@ -77,7 +77,7 @@ export default defineComponent({
|
|||||||
...this.$slots,
|
...this.$slots,
|
||||||
default: () => (
|
default: () => (
|
||||||
<iframe
|
<iframe
|
||||||
class={['ray-iframe__container', this.wrapperClass]}
|
class={['ray-iframe__container', this.iframeClass]}
|
||||||
ref="iframeRef"
|
ref="iframeRef"
|
||||||
src={this.src}
|
src={this.src}
|
||||||
allow={this.allow}
|
allow={this.allow}
|
||||||
|
@ -93,7 +93,7 @@ const props = {
|
|||||||
type: Boolean,
|
type: Boolean,
|
||||||
default: true,
|
default: true,
|
||||||
},
|
},
|
||||||
wrapperClass: {
|
iframeClass: {
|
||||||
type: String,
|
type: String,
|
||||||
default: null,
|
default: null,
|
||||||
},
|
},
|
||||||
|
@ -10,6 +10,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
import { modalProps } from 'naive-ui'
|
import { modalProps } from 'naive-ui'
|
||||||
|
import type { PropType } from 'vue'
|
||||||
|
|
||||||
const props = {
|
const props = {
|
||||||
...modalProps,
|
...modalProps,
|
||||||
@ -43,7 +44,7 @@ const props = {
|
|||||||
* @default 600
|
* @default 600
|
||||||
*/
|
*/
|
||||||
width: {
|
width: {
|
||||||
type: [String, Number],
|
type: [String, Number] as PropType<string | number>,
|
||||||
default: 600,
|
default: 600,
|
||||||
},
|
},
|
||||||
/**
|
/**
|
||||||
@ -54,7 +55,7 @@ const props = {
|
|||||||
* @default 600
|
* @default 600
|
||||||
*/
|
*/
|
||||||
cardWidth: {
|
cardWidth: {
|
||||||
type: [String, Number],
|
type: [String, Number] as PropType<string | number>,
|
||||||
default: 600,
|
default: 600,
|
||||||
},
|
},
|
||||||
/**
|
/**
|
||||||
@ -65,7 +66,7 @@ const props = {
|
|||||||
* @default 446
|
* @default 446
|
||||||
*/
|
*/
|
||||||
dialogWidth: {
|
dialogWidth: {
|
||||||
type: [String, Number],
|
type: [String, Number] as PropType<string | number>,
|
||||||
default: 446,
|
default: 446,
|
||||||
},
|
},
|
||||||
/**
|
/**
|
||||||
|
@ -24,7 +24,7 @@ export interface RModalProps extends NaiveModalOptions {
|
|||||||
*
|
*
|
||||||
* @default 600
|
* @default 600
|
||||||
*/
|
*/
|
||||||
width?: number
|
width?: number | string
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @description
|
* @description
|
||||||
@ -32,7 +32,7 @@ export interface RModalProps extends NaiveModalOptions {
|
|||||||
*
|
*
|
||||||
* @default 600
|
* @default 600
|
||||||
*/
|
*/
|
||||||
cardWidth?: number
|
cardWidth?: number | string
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @description
|
* @description
|
||||||
@ -40,7 +40,7 @@ export interface RModalProps extends NaiveModalOptions {
|
|||||||
*
|
*
|
||||||
* @default 446
|
* @default 446
|
||||||
*/
|
*/
|
||||||
dialogWidth?: number
|
dialogWidth?: number | string
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @description
|
* @description
|
||||||
|
@ -19,13 +19,13 @@ export default defineComponent({
|
|||||||
name: 'RMoreDropdown',
|
name: 'RMoreDropdown',
|
||||||
props,
|
props,
|
||||||
render() {
|
render() {
|
||||||
const { iconSize, cursor } = this
|
const { iconSize, cursor, icon } = this
|
||||||
const { default: $default } = this.$slots
|
const { default: $default } = this.$slots
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<NDropdown {...this.$props} {...this.$attrs} placement="bottom-start">
|
<NDropdown {...this.$props} {...this.$attrs} placement="bottom-start">
|
||||||
{renderNode($default, {
|
{renderNode($default, {
|
||||||
defaultElement: <RIcon name="more" size={iconSize} cursor={cursor} />,
|
defaultElement: <RIcon name={icon} size={iconSize} cursor={cursor} />,
|
||||||
})}
|
})}
|
||||||
</NDropdown>
|
</NDropdown>
|
||||||
)
|
)
|
||||||
|
@ -13,6 +13,10 @@ import { dropdownProps } from 'naive-ui'
|
|||||||
|
|
||||||
const props = {
|
const props = {
|
||||||
...dropdownProps,
|
...dropdownProps,
|
||||||
|
icon: {
|
||||||
|
type: String,
|
||||||
|
default: 'more',
|
||||||
|
},
|
||||||
iconSize: {
|
iconSize: {
|
||||||
type: Number,
|
type: Number,
|
||||||
default: 14,
|
default: 14,
|
||||||
|
@ -9,14 +9,51 @@ export interface RSegmentPopover extends ExtractPublicPropTypes<PopoverProps> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export interface RSegmentOptions {
|
export interface RSegmentOptions {
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @description
|
||||||
|
* 分段器内容。
|
||||||
|
*/
|
||||||
label: string | VNode | (() => VNodeChild)
|
label: string | VNode | (() => VNodeChild)
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @description
|
||||||
|
* 分段器的 key 值。
|
||||||
|
*/
|
||||||
key: string | number
|
key: string | number
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @description
|
||||||
|
* 渲染模式。
|
||||||
|
*
|
||||||
|
* @see https://www.naiveui.com/zh-CN/dark/components/tabs#TabPane-Props
|
||||||
|
*/
|
||||||
displayDirective?: TabPaneProps['displayDirective']
|
displayDirective?: TabPaneProps['displayDirective']
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @description
|
||||||
|
* 是否禁用。
|
||||||
|
*/
|
||||||
disabled?: boolean
|
disabled?: boolean
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @description
|
||||||
|
* 自定义渲染内容。
|
||||||
|
*/
|
||||||
slots?: {
|
slots?: {
|
||||||
default?: () => VNode | string | number
|
default?: () => VNode | string | number
|
||||||
}
|
}
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @description
|
||||||
|
* popover 弹出提示。
|
||||||
|
*/
|
||||||
popover?: string | RSegmentPopover
|
popover?: string | RSegmentPopover
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @description
|
||||||
|
* 自定义图标。
|
||||||
|
*/
|
||||||
icon?: VNode
|
icon?: VNode
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -203,7 +203,11 @@ export default defineComponent({
|
|||||||
const { onRegister } = props
|
const { onRegister } = props
|
||||||
|
|
||||||
if (onRegister && rTableInst.value) {
|
if (onRegister && rTableInst.value) {
|
||||||
call(onRegister, rTableInst.value)
|
call(onRegister, rTableInst.value, {
|
||||||
|
uuidTable,
|
||||||
|
uuidWrapper,
|
||||||
|
wrapperRef,
|
||||||
|
})
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -34,7 +34,7 @@ import type { MaybeArray } from '@/types'
|
|||||||
type FixedClick = (type: 'left' | 'right', option: C, index: number) => void
|
type FixedClick = (type: 'left' | 'right', option: C, index: number) => void
|
||||||
|
|
||||||
const renderSwitcherIcon = () => (
|
const renderSwitcherIcon = () => (
|
||||||
<RIcon name="draggable" size={14} cursor="all-scroll" />
|
<RIcon name="draggable" size={14} cursor="grab" />
|
||||||
)
|
)
|
||||||
|
|
||||||
const RowIconRender = ({
|
const RowIconRender = ({
|
||||||
|
@ -3,6 +3,11 @@ import { effectDispose } from '@/utils'
|
|||||||
|
|
||||||
import type { Recordable } from '@/types'
|
import type { Recordable } from '@/types'
|
||||||
import type { MaybeRef } from '@vueuse/core'
|
import type { MaybeRef } from '@vueuse/core'
|
||||||
|
import type {
|
||||||
|
DataTableColumns,
|
||||||
|
DataTableColumn,
|
||||||
|
DataTableSelectionColumn,
|
||||||
|
} from 'naive-ui'
|
||||||
|
|
||||||
export type RowKey = string | number
|
export type RowKey = string | number
|
||||||
|
|
||||||
@ -73,6 +78,27 @@ const findRow = (
|
|||||||
return void 0
|
return void 0
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const isMultiple = (columns: MaybeRef<DataTableColumns<any> | undefined>) => {
|
||||||
|
const unrefColumns = unref(columns)
|
||||||
|
|
||||||
|
if (unrefColumns) {
|
||||||
|
const idx = unrefColumns.findIndex((column) => {
|
||||||
|
const { type, multiple } = column as DataTableSelectionColumn
|
||||||
|
|
||||||
|
if (
|
||||||
|
type === 'selection' &&
|
||||||
|
(multiple === void 0 || multiple === null || multiple === true)
|
||||||
|
) {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
return idx !== -1
|
||||||
|
}
|
||||||
|
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @param data 当前 DataTable 组件的数据
|
* @param data 当前 DataTable 组件的数据
|
||||||
@ -100,16 +126,21 @@ const findRow = (
|
|||||||
*
|
*
|
||||||
* const data = ref([{ ...table data }])
|
* const data = ref([{ ...table data }])
|
||||||
* const columns = [{ ...table columns }]
|
* const columns = [{ ...table columns }]
|
||||||
* const [checkedRowKeys, { checkedRowKeysBind }] = useCheckedRowKeys(data, { rowKey: 'key' })
|
* const [checkedRowKeys, { checkedRowKeysBind }] = useCheckedRowKeys(data, { rowKey: 'key' }, multiple: true)
|
||||||
* </script>
|
* </script>
|
||||||
*/
|
*/
|
||||||
const useCheckedRowKeys = <T extends Recordable>(
|
const useCheckedRowKeys = <
|
||||||
|
T extends Recordable,
|
||||||
|
C extends DataTableColumns<any>,
|
||||||
|
>(
|
||||||
data: MaybeRef<T[] | undefined>,
|
data: MaybeRef<T[] | undefined>,
|
||||||
|
columns: MaybeRef<C | undefined>,
|
||||||
options?: UseCheckedRowKeysOptions<T>,
|
options?: UseCheckedRowKeysOptions<T>,
|
||||||
) => {
|
) => {
|
||||||
const keysRef = ref<RowKey[]>([])
|
const keysRef = ref<RowKey[]>([])
|
||||||
const rowsRef = ref<any[]>([])
|
const rowsRef = ref<any[]>([])
|
||||||
const { rowKey: bindRowKey = 'key', onChange } = options || {}
|
const { rowKey: bindRowKey = 'key', onChange } = options || {}
|
||||||
|
const currentColumnIsMultiple = computed(() => isMultiple(columns))
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
@ -139,6 +170,8 @@ const useCheckedRowKeys = <T extends Recordable>(
|
|||||||
action: Action
|
action: Action
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
|
||||||
|
isMultiple(columns)
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -212,20 +245,23 @@ const useCheckedRowKeys = <T extends Recordable>(
|
|||||||
*
|
*
|
||||||
* @description
|
* @description
|
||||||
* 选中指定的 keys。
|
* 选中指定的 keys。
|
||||||
*
|
|
||||||
* 当你调用该方法时,会将 keys 与 data 中的 rows 进行比对,将匹配的 rows 添加到已选中的 rows 中。
|
* 当你调用该方法时,会将 keys 与 data 中的 rows 进行比对,将匹配的 rows 添加到已选中的 rows 中。
|
||||||
|
*
|
||||||
|
* 如果 multiple 为 false,那么只会选中一个 key;
|
||||||
|
* 所以,如果你需要选中多个 key,需要将 multiple 设置为 true。
|
||||||
*/
|
*/
|
||||||
const selectKey = (key: RowKey) => {
|
const selectKey = (key: RowKey) => {
|
||||||
if (keysRef.value.includes(key)) {
|
if (keysRef.value.includes(key)) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
keysRef.value.push(key)
|
const multiple = !currentColumnIsMultiple.value && keysRef.value.length >= 1
|
||||||
|
|
||||||
const row = findRow(unref(data) || [], bindRowKey, key)
|
const row = findRow(unref(data) || [], bindRowKey, key)
|
||||||
|
|
||||||
|
multiple ? (keysRef.value = [key]) : keysRef.value.push(key)
|
||||||
|
|
||||||
if (row) {
|
if (row) {
|
||||||
rowsRef.value.push(row)
|
multiple ? (rowsRef.value = [row]) : rowsRef.value.push(row)
|
||||||
|
|
||||||
onChange?.(keysRef.value, rowsRef.value, {
|
onChange?.(keysRef.value, rowsRef.value, {
|
||||||
row: row as any,
|
row: row as any,
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
import { printDom } from '@/utils'
|
||||||
|
|
||||||
import type {
|
import type {
|
||||||
RTableInst,
|
RTableInst,
|
||||||
CsvOptionsType,
|
CsvOptionsType,
|
||||||
@ -5,6 +7,8 @@ import type {
|
|||||||
ScrollToOptions,
|
ScrollToOptions,
|
||||||
ColumnKey,
|
ColumnKey,
|
||||||
SortOrder,
|
SortOrder,
|
||||||
|
UseTableRegister,
|
||||||
|
TableProvider,
|
||||||
} from '../types'
|
} from '../types'
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -37,10 +41,12 @@ import type {
|
|||||||
*/
|
*/
|
||||||
const useTable = () => {
|
const useTable = () => {
|
||||||
const tableRef = ref<RTableInst>()
|
const tableRef = ref<RTableInst>()
|
||||||
|
let extra = {} as TableProvider
|
||||||
|
|
||||||
const register = (inst: RTableInst) => {
|
const register: UseTableRegister = (inst, extraInfo) => {
|
||||||
if (inst) {
|
if (inst) {
|
||||||
tableRef.value = inst
|
tableRef.value = inst
|
||||||
|
extra = extraInfo
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -55,6 +61,7 @@ const useTable = () => {
|
|||||||
'[useTable]: table instance is not ready yet. if you are using useTable, please make sure you have called register method in onRegister event.',
|
'[useTable]: table instance is not ready yet. if you are using useTable, please make sure you have called register method in onRegister event.',
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
console.log(tableRef.value)
|
||||||
|
|
||||||
return tableRef.value
|
return tableRef.value
|
||||||
}
|
}
|
||||||
@ -127,6 +134,21 @@ const useTable = () => {
|
|||||||
const sort = (columnKey: ColumnKey, order: SortOrder) =>
|
const sort = (columnKey: ColumnKey, order: SortOrder) =>
|
||||||
getTableInstance().sort.call(null, columnKey, order)
|
getTableInstance().sort.call(null, columnKey, order)
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @description
|
||||||
|
* 打印表格。
|
||||||
|
*/
|
||||||
|
const print = () => {
|
||||||
|
const { uuidWrapper } = extra
|
||||||
|
|
||||||
|
if (uuidWrapper) {
|
||||||
|
const tableWrapperElement = document.getElementById(uuidWrapper)
|
||||||
|
|
||||||
|
printDom(tableWrapperElement)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return [
|
return [
|
||||||
register,
|
register,
|
||||||
{
|
{
|
||||||
@ -138,6 +160,7 @@ const useTable = () => {
|
|||||||
page,
|
page,
|
||||||
scrollTo,
|
scrollTo,
|
||||||
sort,
|
sort,
|
||||||
|
print,
|
||||||
},
|
},
|
||||||
] as const
|
] as const
|
||||||
}
|
}
|
||||||
|
@ -19,6 +19,7 @@ import type {
|
|||||||
PrintTableOptions,
|
PrintTableOptions,
|
||||||
RTableInst,
|
RTableInst,
|
||||||
RTableCardProps,
|
RTableCardProps,
|
||||||
|
UseTableRegister,
|
||||||
} from './types'
|
} from './types'
|
||||||
import type { Recordable } from '@/types'
|
import type { Recordable } from '@/types'
|
||||||
|
|
||||||
@ -211,9 +212,7 @@ const props = {
|
|||||||
* @default null
|
* @default null
|
||||||
*/
|
*/
|
||||||
onRegister: {
|
onRegister: {
|
||||||
type: [Function, Array] as PropType<
|
type: [Function, Array] as PropType<MaybeArray<UseTableRegister>>,
|
||||||
MaybeArray<(tableInst: RTableInst) => void>
|
|
||||||
>,
|
|
||||||
default: null,
|
default: null,
|
||||||
},
|
},
|
||||||
} as const
|
} as const
|
||||||
|
@ -72,3 +72,8 @@ type SortParameters = Parameters<RTableInst['sort']>
|
|||||||
export type ColumnKey = SortParameters[0]
|
export type ColumnKey = SortParameters[0]
|
||||||
|
|
||||||
export type SortOrder = SortParameters[1]
|
export type SortOrder = SortParameters[1]
|
||||||
|
|
||||||
|
export type UseTableRegister = (
|
||||||
|
tableInst: RTableInst,
|
||||||
|
extra: TableProvider,
|
||||||
|
) => void
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<!-- 这是一个魔法注释,删不的(如果删了会出现一个异常提示,不信你试试) -->
|
<div>
|
||||||
<RouterView v-slot="{ Component, route }">
|
<RouterView v-slot="{ Component, route }">
|
||||||
<template v-if="Component">
|
<template v-if="Component">
|
||||||
<Transition
|
<Transition
|
||||||
@ -21,6 +21,7 @@
|
|||||||
</Transition>
|
</Transition>
|
||||||
</template>
|
</template>
|
||||||
</RouterView>
|
</RouterView>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import { useKeepAliveGetters } from '@/store'
|
import { useKeepAliveGetters } from '@/store'
|
||||||
|
@ -46,7 +46,7 @@ export function useAppRoot() {
|
|||||||
* @example
|
* @example
|
||||||
* setRootRoute({ path: '/your root path', name: 'your root name' })
|
* setRootRoute({ path: '/your root path', name: 'your root name' })
|
||||||
*/
|
*/
|
||||||
const setRootRoute = (route: AppRootRoute) => {
|
const setRootRoute = (route: Partial<AppRootRoute>) => {
|
||||||
updateSettingState(
|
updateSettingState(
|
||||||
'appRootRoute',
|
'appRootRoute',
|
||||||
Object.assign({}, getAppRootRoute.value, route),
|
Object.assign({}, getAppRootRoute.value, route),
|
||||||
|
@ -13,6 +13,29 @@ import { useSettingActions, useSettingGetters } from '@/store'
|
|||||||
import { useI18n } from '@/hooks'
|
import { useI18n } from '@/hooks'
|
||||||
import { APP_THEME } from '@/app-config'
|
import { APP_THEME } from '@/app-config'
|
||||||
|
|
||||||
|
export type ThemeLabel = 'Dark' | 'Light'
|
||||||
|
|
||||||
|
export interface AppThemeInfo {
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @description
|
||||||
|
* 当前主题状态,true 为暗色主题,false 为明色主题
|
||||||
|
*/
|
||||||
|
theme: boolean
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @description
|
||||||
|
* 当前主题描述,默认描述。
|
||||||
|
*/
|
||||||
|
themeLabel: ThemeLabel
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @description
|
||||||
|
* 当前主题描述,国际化描述,会根据当前语言环境自动切换。
|
||||||
|
*/
|
||||||
|
themeI18nLabel: string
|
||||||
|
}
|
||||||
|
|
||||||
const setThemeOverrides = (theme: boolean) => {
|
const setThemeOverrides = (theme: boolean) => {
|
||||||
const { getPrimaryColorOverride } = useSettingGetters()
|
const { getPrimaryColorOverride } = useSettingGetters()
|
||||||
const { updateSettingState } = useSettingActions()
|
const { updateSettingState } = useSettingActions()
|
||||||
@ -46,15 +69,16 @@ export const useTheme = () => {
|
|||||||
* getAppTheme() // { theme: true, themeLabel: '暗色' | 'Dark' }
|
* getAppTheme() // { theme: true, themeLabel: '暗色' | 'Dark' }
|
||||||
* getAppTheme() // { theme: false, themeLabel: '亮色' | 'Light' }
|
* getAppTheme() // { theme: false, themeLabel: '亮色' | 'Light' }
|
||||||
*/
|
*/
|
||||||
const getAppTheme = () => {
|
const getAppTheme = (): AppThemeInfo => {
|
||||||
const { getAppTheme } = useSettingGetters()
|
const { getAppTheme } = useSettingGetters()
|
||||||
const { t } = useI18n()
|
const { t } = useI18n()
|
||||||
|
|
||||||
return {
|
return {
|
||||||
theme: getAppTheme.value,
|
theme: getAppTheme.value,
|
||||||
themeLabel: getAppTheme.value
|
themeI18nLabel: getAppTheme.value
|
||||||
? t('headerSettingOptions.ThemeOptions.Dark')
|
? t('headerSettingOptions.ThemeOptions.Dark')
|
||||||
: t('headerSettingOptions.ThemeOptions.Light'),
|
: t('headerSettingOptions.ThemeOptions.Light'),
|
||||||
|
themeLabel: getAppTheme.value ? 'Dark' : 'Light',
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -64,9 +88,9 @@ export const useTheme = () => {
|
|||||||
* 切换至暗色主题
|
* 切换至暗色主题
|
||||||
*
|
*
|
||||||
* @example
|
* @example
|
||||||
* changeDarkTheme()
|
* darkTheme()
|
||||||
*/
|
*/
|
||||||
const changeDarkTheme = () => {
|
const darkTheme = () => {
|
||||||
const { updateSettingState } = useSettingActions()
|
const { updateSettingState } = useSettingActions()
|
||||||
|
|
||||||
updateSettingState('appTheme', true)
|
updateSettingState('appTheme', true)
|
||||||
@ -79,9 +103,9 @@ export const useTheme = () => {
|
|||||||
* 切换至明色主题
|
* 切换至明色主题
|
||||||
*
|
*
|
||||||
* @example
|
* @example
|
||||||
* changeLightTheme()
|
* lightTheme()
|
||||||
*/
|
*/
|
||||||
const changeLightTheme = () => {
|
const lightTheme = () => {
|
||||||
const { updateSettingState } = useSettingActions()
|
const { updateSettingState } = useSettingActions()
|
||||||
|
|
||||||
updateSettingState('appTheme', false)
|
updateSettingState('appTheme', false)
|
||||||
@ -110,8 +134,8 @@ export const useTheme = () => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
changeDarkTheme,
|
darkTheme,
|
||||||
changeLightTheme,
|
lightTheme,
|
||||||
toggleTheme,
|
toggleTheme,
|
||||||
getAppTheme,
|
getAppTheme,
|
||||||
}
|
}
|
||||||
|
@ -22,6 +22,15 @@ export interface DateRange {
|
|||||||
end: dayjs.ConfigType
|
end: dayjs.ConfigType
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface StartAndEndOfDay {
|
||||||
|
today: dayjs.Dayjs
|
||||||
|
startOfDay: dayjs.Dayjs
|
||||||
|
endOfDay: dayjs.Dayjs
|
||||||
|
formatToday: string
|
||||||
|
formatStartOfDay: string
|
||||||
|
formatEndOfDay: string
|
||||||
|
}
|
||||||
|
|
||||||
export type LocalKey = typeof DEFAULT_DAYJS_LOCAL
|
export type LocalKey = typeof DEFAULT_DAYJS_LOCAL
|
||||||
|
|
||||||
const defaultDayjsFormat = 'YYYY-MM-DD HH:mm:ss'
|
const defaultDayjsFormat = 'YYYY-MM-DD HH:mm:ss'
|
||||||
@ -61,7 +70,7 @@ export const useDayjs = () => {
|
|||||||
*
|
*
|
||||||
* @example
|
* @example
|
||||||
* isDayjs('2022-11-11') // false
|
* isDayjs('2022-11-11') // false
|
||||||
* isDayjs('1699687245973) // false
|
* isDayjs('1699687245973') // false
|
||||||
* isDayjs(dayjs()) // true
|
* isDayjs(dayjs()) // true
|
||||||
*/
|
*/
|
||||||
const isDayjs = (d: unknown) => {
|
const isDayjs = (d: unknown) => {
|
||||||
@ -96,7 +105,9 @@ export const useDayjs = () => {
|
|||||||
*
|
*
|
||||||
* 会返回当前日期、当前日期的开始时间和结束时间(未格式化与格式化后的)。
|
* 会返回当前日期、当前日期的开始时间和结束时间(未格式化与格式化后的)。
|
||||||
*/
|
*/
|
||||||
const getStartAndEndOfDay = (formatOption?: FormatOption) => {
|
const getStartAndEndOfDay = (
|
||||||
|
formatOption?: FormatOption,
|
||||||
|
): Readonly<StartAndEndOfDay> => {
|
||||||
const { format = defaultDayjsFormat } = formatOption ?? {}
|
const { format = defaultDayjsFormat } = formatOption ?? {}
|
||||||
const today = dayjs()
|
const today = dayjs()
|
||||||
const startOfDay = today.startOf('day')
|
const startOfDay = today.startOf('day')
|
||||||
|
@ -154,6 +154,21 @@ export const usePagination = <T extends AnyFC>(
|
|||||||
callbackRef.value = callback as any
|
callbackRef.value = callback as any
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @description
|
||||||
|
* 初始化分页。
|
||||||
|
*
|
||||||
|
* 重置页码为 1,每页条数为 pageSizes 的第一个值。
|
||||||
|
* 如果,pageSizes 为空,则设置每页条数为 10。
|
||||||
|
*/
|
||||||
|
const resetPagination = () => {
|
||||||
|
const { pageSizes } = paginationRef.value
|
||||||
|
|
||||||
|
paginationRef.value.page = 1
|
||||||
|
paginationRef.value.pageSize = (pageSizes?.[0] as number) || 10
|
||||||
|
}
|
||||||
|
|
||||||
effectDispose(() => {
|
effectDispose(() => {
|
||||||
callbackRef.value = void 0
|
callbackRef.value = void 0
|
||||||
})
|
})
|
||||||
@ -161,8 +176,6 @@ export const usePagination = <T extends AnyFC>(
|
|||||||
return [
|
return [
|
||||||
paginationRef as Ref<UsePaginationOptions>,
|
paginationRef as Ref<UsePaginationOptions>,
|
||||||
{
|
{
|
||||||
updatePage,
|
|
||||||
updatePageSize,
|
|
||||||
getItemCount,
|
getItemCount,
|
||||||
setItemCount,
|
setItemCount,
|
||||||
getPage,
|
getPage,
|
||||||
@ -172,6 +185,7 @@ export const usePagination = <T extends AnyFC>(
|
|||||||
getPagination,
|
getPagination,
|
||||||
getCallback,
|
getCallback,
|
||||||
setCallback,
|
setCallback,
|
||||||
|
resetPagination,
|
||||||
},
|
},
|
||||||
] as const
|
] as const
|
||||||
}
|
}
|
||||||
|
@ -18,7 +18,7 @@ import { useTheme } from '@/hooks'
|
|||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
name: 'ThemeSwitch',
|
name: 'ThemeSwitch',
|
||||||
setup() {
|
setup() {
|
||||||
const { changeDarkTheme, changeLightTheme } = useTheme()
|
const { darkTheme, lightTheme } = useTheme()
|
||||||
const { getAppTheme } = useSettingGetters()
|
const { getAppTheme } = useSettingGetters()
|
||||||
const modelAppThemeRef = ref(getAppTheme.value)
|
const modelAppThemeRef = ref(getAppTheme.value)
|
||||||
|
|
||||||
@ -33,15 +33,15 @@ export default defineComponent({
|
|||||||
}
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
changeDarkTheme,
|
darkTheme,
|
||||||
changeLightTheme,
|
lightTheme,
|
||||||
getAppTheme,
|
getAppTheme,
|
||||||
railStyle,
|
railStyle,
|
||||||
modelAppThemeRef,
|
modelAppThemeRef,
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
render() {
|
render() {
|
||||||
const { $t, changeDarkTheme, changeLightTheme, railStyle } = this
|
const { $t, darkTheme, lightTheme, railStyle } = this
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<NFlex justify="center">
|
<NFlex justify="center">
|
||||||
@ -52,7 +52,7 @@ export default defineComponent({
|
|||||||
v-model:value={this.modelAppThemeRef}
|
v-model:value={this.modelAppThemeRef}
|
||||||
railStyle={railStyle.bind(this)}
|
railStyle={railStyle.bind(this)}
|
||||||
onUpdateValue={(bool: boolean) =>
|
onUpdateValue={(bool: boolean) =>
|
||||||
bool ? changeDarkTheme() : changeLightTheme()
|
bool ? darkTheme() : lightTheme()
|
||||||
}
|
}
|
||||||
>
|
>
|
||||||
{{
|
{{
|
||||||
|
@ -16,7 +16,8 @@ export const useSigningGetters = () => {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @remark 获取登陆返回信息
|
* @description
|
||||||
|
* 获取登陆返回信息。
|
||||||
*/
|
*/
|
||||||
const getSigningCallback = computed(() => variable.signingCallback)
|
const getSigningCallback = computed(() => variable.signingCallback)
|
||||||
|
|
||||||
|
@ -22,6 +22,7 @@
|
|||||||
import { isEmpty } from 'lodash-es'
|
import { isEmpty } from 'lodash-es'
|
||||||
import { removeStorage } from '@/utils'
|
import { removeStorage } from '@/utils'
|
||||||
import { APP_CATCH_KEY } from '@/app-config'
|
import { APP_CATCH_KEY } from '@/app-config'
|
||||||
|
import { useSiderBar } from '@/hooks'
|
||||||
|
|
||||||
import type {
|
import type {
|
||||||
SigningForm,
|
SigningForm,
|
||||||
@ -44,9 +45,9 @@ export const piniaSigningStore = defineStore(
|
|||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @param SigningForm 用户登录信息
|
* @param SigningForm 用户登录信息
|
||||||
* @returns 状态码
|
|
||||||
*
|
*
|
||||||
* @remark 0: 登陆成功, 1: 登陆失败
|
* @description
|
||||||
|
* 0: 登陆成功, 1: 登陆失败
|
||||||
*/
|
*/
|
||||||
const signing = (SigningForm: SigningForm): Promise<SigningResponse> => {
|
const signing = (SigningForm: SigningForm): Promise<SigningResponse> => {
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
@ -78,8 +79,11 @@ export const piniaSigningStore = defineStore(
|
|||||||
* 延迟 300ms 后强制刷新当前系统
|
* 延迟 300ms 后强制刷新当前系统
|
||||||
*/
|
*/
|
||||||
const logout = () => {
|
const logout = () => {
|
||||||
|
const { closeAll } = useSiderBar()
|
||||||
|
|
||||||
window.$message.info('账号退出中...')
|
window.$message.info('账号退出中...')
|
||||||
removeStorage('__all_sessionStorage__', 'sessionStorage')
|
removeStorage('__all_sessionStorage__', 'sessionStorage')
|
||||||
|
closeAll()
|
||||||
|
|
||||||
setTimeout(() => window.location.reload())
|
setTimeout(() => window.location.reload())
|
||||||
}
|
}
|
||||||
|
@ -20,6 +20,7 @@ import {
|
|||||||
NFlex,
|
NFlex,
|
||||||
NPopover,
|
NPopover,
|
||||||
NCard,
|
NCard,
|
||||||
|
NAlert,
|
||||||
} from 'naive-ui'
|
} from 'naive-ui'
|
||||||
import { RCollapseGrid, RTable, RIcon, RMoreDropdown } from '@/components'
|
import { RCollapseGrid, RTable, RIcon, RMoreDropdown } from '@/components'
|
||||||
|
|
||||||
@ -51,6 +52,7 @@ const TableView = defineComponent({
|
|||||||
filters,
|
filters,
|
||||||
sort,
|
sort,
|
||||||
downloadCsv,
|
downloadCsv,
|
||||||
|
print,
|
||||||
},
|
},
|
||||||
] = useTable()
|
] = useTable()
|
||||||
|
|
||||||
@ -151,13 +153,13 @@ const TableView = defineComponent({
|
|||||||
const [
|
const [
|
||||||
checkedRowKeys,
|
checkedRowKeys,
|
||||||
{ checkedRowKeysBind, getKeys, getRows, clearKey, clearAll, selectKey },
|
{ checkedRowKeysBind, getKeys, getRows, clearKey, clearAll, selectKey },
|
||||||
] = useCheckedRowKeys(tableData, {
|
] = useCheckedRowKeys(tableData, actionColumns, {
|
||||||
rowKey: 'key',
|
rowKey: 'key',
|
||||||
onChange: (keys, rows, meta) => {},
|
onChange: (keys, rows, meta) => {},
|
||||||
})
|
})
|
||||||
|
|
||||||
const createTableData = () => {
|
const createTableData = () => {
|
||||||
for (let i = 0; i < 20; i++) {
|
for (let i = 0; i < 10; i++) {
|
||||||
tableData.value.push({
|
tableData.value.push({
|
||||||
key: uuid(),
|
key: uuid(),
|
||||||
name: i % 2 === 0 ? 'John Brown' : 'Jim Green',
|
name: i % 2 === 0 ? 'John Brown' : 'Jim Green',
|
||||||
@ -216,6 +218,8 @@ const TableView = defineComponent({
|
|||||||
filters,
|
filters,
|
||||||
sort,
|
sort,
|
||||||
downloadCsv,
|
downloadCsv,
|
||||||
|
getTableInstance,
|
||||||
|
print,
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
render() {
|
render() {
|
||||||
@ -232,6 +236,10 @@ const TableView = defineComponent({
|
|||||||
filters,
|
filters,
|
||||||
sort,
|
sort,
|
||||||
downloadCsv,
|
downloadCsv,
|
||||||
|
getTableInstance,
|
||||||
|
getRows,
|
||||||
|
getKeys,
|
||||||
|
print,
|
||||||
} = this
|
} = this
|
||||||
|
|
||||||
return (
|
return (
|
||||||
@ -241,7 +249,18 @@ const TableView = defineComponent({
|
|||||||
文件即可查看该组件拓展项
|
文件即可查看该组件拓展项
|
||||||
</NCard>
|
</NCard>
|
||||||
<NCard title="useTable">
|
<NCard title="useTable">
|
||||||
<NFlex align="center">
|
<NFlex vertical style="width: 100%">
|
||||||
|
<NAlert title="DataTable Methods" type="info">
|
||||||
|
其余的方法查看{' '}
|
||||||
|
<a
|
||||||
|
style="color: transparent"
|
||||||
|
href="https://www.naiveui.com/zh-CN/dark/components/data-table#DataTable-Methods"
|
||||||
|
>
|
||||||
|
Naive UI
|
||||||
|
</a>
|
||||||
|
官网,保持一致。
|
||||||
|
</NAlert>
|
||||||
|
<NFlex>
|
||||||
<NButton onClick={clearSorter.bind(this)}>清除所有排序</NButton>
|
<NButton onClick={clearSorter.bind(this)}>清除所有排序</NButton>
|
||||||
<NButton onClick={clearFilters.bind(this)}>清除所有过滤</NButton>
|
<NButton onClick={clearFilters.bind(this)}>清除所有过滤</NButton>
|
||||||
<NButton
|
<NButton
|
||||||
@ -251,7 +270,11 @@ const TableView = defineComponent({
|
|||||||
>
|
>
|
||||||
下载 CSV
|
下载 CSV
|
||||||
</NButton>
|
</NButton>
|
||||||
<div>其余的方法查看 Naive UI 官网,保持一致。</div>
|
<NButton onClick={getTableInstance.bind(this)}>
|
||||||
|
getTableInstance
|
||||||
|
</NButton>
|
||||||
|
<NButton onClick={print.bind(this)}>打印</NButton>
|
||||||
|
</NFlex>
|
||||||
</NFlex>
|
</NFlex>
|
||||||
</NCard>
|
</NCard>
|
||||||
<NCard title="useCheckedRowKeys">
|
<NCard title="useCheckedRowKeys">
|
||||||
|
@ -40,8 +40,7 @@ export default defineComponent({
|
|||||||
setWatermarkContent,
|
setWatermarkContent,
|
||||||
toggleWatermark,
|
toggleWatermark,
|
||||||
} = useWatermark()
|
} = useWatermark()
|
||||||
const { changeDarkTheme, changeLightTheme, toggleTheme, getAppTheme } =
|
const { darkTheme, lightTheme, toggleTheme, getAppTheme } = useTheme()
|
||||||
useTheme()
|
|
||||||
const {
|
const {
|
||||||
hidden: badgeHidden,
|
hidden: badgeHidden,
|
||||||
show: badgeShow,
|
show: badgeShow,
|
||||||
@ -61,8 +60,8 @@ export default defineComponent({
|
|||||||
setWatermarkContent,
|
setWatermarkContent,
|
||||||
watermark,
|
watermark,
|
||||||
toggleWatermark,
|
toggleWatermark,
|
||||||
changeDarkTheme,
|
darkTheme,
|
||||||
changeLightTheme,
|
lightTheme,
|
||||||
toggleTheme,
|
toggleTheme,
|
||||||
getAppTheme,
|
getAppTheme,
|
||||||
isLayoutContentMaximized,
|
isLayoutContentMaximized,
|
||||||
@ -83,8 +82,8 @@ export default defineComponent({
|
|||||||
hiddenWatermark,
|
hiddenWatermark,
|
||||||
setWatermarkContent,
|
setWatermarkContent,
|
||||||
toggleWatermark,
|
toggleWatermark,
|
||||||
changeDarkTheme,
|
darkTheme,
|
||||||
changeLightTheme,
|
lightTheme,
|
||||||
toggleTheme,
|
toggleTheme,
|
||||||
getAppTheme,
|
getAppTheme,
|
||||||
isLayoutContentMaximized,
|
isLayoutContentMaximized,
|
||||||
@ -147,8 +146,8 @@ export default defineComponent({
|
|||||||
<NFlex vertical>
|
<NFlex vertical>
|
||||||
<h3>getAppTheme 获取当前主题色: {getAppTheme().themeLabel}</h3>
|
<h3>getAppTheme 获取当前主题色: {getAppTheme().themeLabel}</h3>
|
||||||
<NFlex>
|
<NFlex>
|
||||||
<NButton onClick={() => changeDarkTheme()}>切换暗黑主题</NButton>
|
<NButton onClick={() => darkTheme()}>切换暗黑主题</NButton>
|
||||||
<NButton onClick={() => changeLightTheme()}>切换明亮主题</NButton>
|
<NButton onClick={() => lightTheme()}>切换明亮主题</NButton>
|
||||||
<NButton onClick={() => toggleTheme()}>切换主题</NButton>
|
<NButton onClick={() => toggleTheme()}>切换主题</NButton>
|
||||||
</NFlex>
|
</NFlex>
|
||||||
</NFlex>
|
</NFlex>
|
||||||
|
@ -102,17 +102,7 @@ const config: AppConfigExport = {
|
|||||||
* 打包相关配置
|
* 打包相关配置
|
||||||
*/
|
*/
|
||||||
buildOptions: (mode: string): BuildOptions => {
|
buildOptions: (mode: string): BuildOptions => {
|
||||||
const outDirMap = {
|
const productionBuildOptions = {
|
||||||
test: 'dist/test-dist',
|
|
||||||
development: 'dist/development-dist',
|
|
||||||
production: 'dist/production-dist',
|
|
||||||
report: 'dist/report-dist',
|
|
||||||
}
|
|
||||||
const dirPath = outDirMap[mode] || 'dist/test-dist'
|
|
||||||
|
|
||||||
if (mode === 'production') {
|
|
||||||
return {
|
|
||||||
outDir: dirPath,
|
|
||||||
sourcemap: false,
|
sourcemap: false,
|
||||||
terserOptions: {
|
terserOptions: {
|
||||||
compress: {
|
compress: {
|
||||||
@ -121,9 +111,7 @@ const config: AppConfigExport = {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
} else {
|
const defaultOptions = {
|
||||||
return {
|
|
||||||
outDir: dirPath,
|
|
||||||
sourcemap: true,
|
sourcemap: true,
|
||||||
terserOptions: {
|
terserOptions: {
|
||||||
compress: {
|
compress: {
|
||||||
@ -132,6 +120,16 @@ const config: AppConfigExport = {
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
const outDir = `dist/${mode}`
|
||||||
|
|
||||||
|
return mode === 'production'
|
||||||
|
? {
|
||||||
|
...productionBuildOptions,
|
||||||
|
outDir,
|
||||||
|
}
|
||||||
|
: {
|
||||||
|
...defaultOptions,
|
||||||
|
outDir,
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
/**
|
/**
|
||||||
|
@ -25,11 +25,9 @@ export default defineConfig((configEnv) =>
|
|||||||
* @see https://github.com/vitest-dev/vitest/issues/740
|
* @see https://github.com/vitest-dev/vitest/issues/740
|
||||||
*
|
*
|
||||||
* 目前暂时没有更好的解决方案,这么做会导致单测执行速度变慢,但是可以避免错误,后续有更好的解决方案会更新。
|
* 目前暂时没有更好的解决方案,这么做会导致单测执行速度变慢,但是可以避免错误,后续有更好的解决方案会更新。
|
||||||
|
*
|
||||||
|
* 在 v4.8.5 版本中,已经修复了该问题,可以升级到该版本。
|
||||||
*/
|
*/
|
||||||
threads: {
|
|
||||||
maxThreads: 1,
|
|
||||||
minThreads: 0,
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}),
|
}),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user