diff --git a/.prettierrc.cjs b/.prettierrc.cjs index bd6b9713..898a1fca 100644 --- a/.prettierrc.cjs +++ b/.prettierrc.cjs @@ -8,7 +8,6 @@ module.exports = { jsxSingleQuote: false, // `jsx` 不使用单引号, 而使用双引号 trailingComma: 'all', // 尾随逗号 bracketSpacing: true, // 大括号内的首尾需要空格 - jsxBracketSameLine: false, // `jsx` 标签的反尖括号需要换行 arrowParens: 'always', // 箭头函数, 只有一个参数的时候, 也需要括号 rangeStart: 0, // 每个文件格式化的范围是文件的全部内容 rangeEnd: Infinity, diff --git a/CHANGELOG.md b/CHANGELOG.md index 05cb93da..73104994 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,34 @@ # 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 由于 `node canvas` 本身的特性(环境问题很多),故在 `v4.8.4` 版本予以移除 `RQRCode` 组件,使用 `vue3-next-qrcode` 替代。所有的使用方法保持一致。 diff --git a/__test__/hooks/useTheme.spec.ts b/__test__/hooks/useTheme.spec.ts index c7d1eb3c..31336ccd 100644 --- a/__test__/hooks/useTheme.spec.ts +++ b/__test__/hooks/useTheme.spec.ts @@ -4,23 +4,22 @@ import { useTheme } from '../../src/hooks/template/useTheme' describe('useTheme', async () => { await setupMiniApp() - const { changeDarkTheme, changeLightTheme, toggleTheme, getAppTheme } = - useTheme() + const { darkTheme, lightTheme, toggleTheme, getAppTheme } = useTheme() it('should change to dark theme', () => { - changeDarkTheme() + darkTheme() expect(getAppTheme().theme).toBe(true) }) it('should change to light theme', () => { - changeLightTheme() + lightTheme() expect(getAppTheme().theme).toBe(false) }) it('should toggle theme', () => { - changeLightTheme() + lightTheme() expect(getAppTheme().theme).toBe(false) @@ -30,14 +29,14 @@ describe('useTheme', async () => { }) it('should return current theme', () => { - changeDarkTheme() + darkTheme() const { theme: darkTheme, themeLabel: darkThemeLabel } = getAppTheme() expect(darkTheme).toBe(true) expect(darkThemeLabel).toBe('暗色') - changeLightTheme() + lightTheme() const { theme: lightTheme, themeLabel: lightThemeLabel } = getAppTheme() diff --git a/package.json b/package.json index 7e8c8776..6108107d 100755 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "ray-template", "private": false, - "version": "4.8.4", + "version": "4.8.5", "type": "module", "engines": { "node": "^18.0.0 || >=20.0.0", @@ -16,7 +16,7 @@ "prepare": "husky install", "test": "vitest", "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": { "hooks": { @@ -25,15 +25,14 @@ } }, "lint-staged": { + "/src/**/*.{ts,tsx,vue}": [ + "vue-tsc --noEmit" + ], "*.{ts,tsx,json}": [ "prettier --write" ], - ".ts,.tsx,.vue": [ - "vue-tsc --noEmit" - ], "*.{ts,tsx,vue}": [ - "eslint src", - "prettier --parser=typescript --write" + "eslint src" ] }, "dependencies": { @@ -54,16 +53,16 @@ "print-js": "^1.6.0", "vue": "^3.4.26", "vue-demi": "0.14.6", - "vue-hooks-plus": "1.9.0", + "vue-hooks-plus": "2.1.0", "vue-i18n": "^9.13.1", - "vue-router": "^4.3.0", + "vue-router": "^4.3.2", "vue3-next-qrcode": "2.0.10" }, "devDependencies": { "@commitlint/cli": "^17.7.1", "@commitlint/config-conventional": "^17.7.0", "@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/dom-to-image": "2.6.7", "@types/jsbarcode": "3.11.4", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index e8d06250..86895a21 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -57,14 +57,14 @@ dependencies: specifier: 0.14.6 version: 0.14.6(vue@3.4.26) vue-hooks-plus: - specifier: 1.9.0 - version: 1.9.0(vue@3.4.26) + specifier: 2.1.0 + version: 2.1.0(vue@3.4.26) vue-i18n: specifier: ^9.13.1 version: 9.13.1(vue@3.4.26) vue-router: - specifier: ^4.3.0 - version: 4.3.0(vue@3.4.26) + specifier: ^4.3.2 + version: 4.3.2(vue@3.4.26) vue3-next-qrcode: specifier: 2.0.10 version: 2.0.10(typescript@5.2.2) @@ -80,8 +80,8 @@ devDependencies: specifier: 1.10.21 version: 1.10.21 '@intlify/unplugin-vue-i18n': - specifier: ^2.0.0 - version: 2.0.0(vue-i18n@9.13.1) + specifier: ^4.0.0 + version: 4.0.0(vue-i18n@9.13.1) '@types/crypto-js': specifier: ^4.1.1 version: 4.2.2 @@ -245,7 +245,7 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/highlight': 7.24.2 - picocolors: 1.0.0 + picocolors: 1.0.1 dev: true /@babel/compat-data@7.24.1: @@ -429,6 +429,11 @@ packages: /@babel/helper-validator-identifier@7.22.20: resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==} 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: resolution: {integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==} @@ -453,7 +458,7 @@ packages: '@babel/helper-validator-identifier': 7.22.20 chalk: 2.4.2 js-tokens: 4.0.0 - picocolors: 1.0.0 + picocolors: 1.0.1 dev: true /@babel/parser@7.24.1: @@ -464,12 +469,12 @@ packages: '@babel/types': 7.24.0 dev: true - /@babel/parser@7.24.4: - resolution: {integrity: sha512-zTvEBcghmeBma9QIGunWevvBAp4/Qu9Bdq+2k0Ot4fVMD6v3dsC9WOcRSKk7tRRyBM/53yKMJko9xOatGQAwSg==} + /@babel/parser@7.24.5: + resolution: {integrity: sha512-EOv5IK8arwh3LI47dz1b0tKUb/1uhHAnHJOrjgtQMIpu1uXd9mlFrJg9IUgGUgZ41Ch0K8REPTYpO7B76b4vJg==} engines: {node: '>=6.0.0'} hasBin: true dependencies: - '@babel/types': 7.24.0 + '@babel/types': 7.24.5 /@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.24.1): resolution: {integrity: sha512-2eCtxZXf+kbkMIsXS4poTvT4Yu5rXiRa+9xGVT56raghjmBTKMpFNc9R4IDiB4emao9eO22Ox7CxuJG7BgExqA==} @@ -545,6 +550,15 @@ packages: '@babel/helper-string-parser': 7.24.1 '@babel/helper-validator-identifier': 7.22.20 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: resolution: {integrity: sha512-ay+WbzQesE0Rv4EQKfNbSMiJJ12KdKTDzIt0tcK4k11FdsWmtwP0Kp1NWMOUswfIWo6Eb7p7Ln721Nx9FLNBjg==} @@ -1220,8 +1234,8 @@ packages: resolution: {integrity: sha512-DekYpdkMV3XJVd/0k3f4pJluZAsCiG86yEtVXvGLK0lS/Fj0+OzYEv7HoMpcBZSkQ8s7//yaeEBgnxy2tV81lA==} dev: false - /@intlify/bundle-utils@7.5.0(vue-i18n@9.13.1): - resolution: {integrity: sha512-6DymqusddBQ8kVtVBsVFFF7arNfIhuLacOmmsqayT2vl427j9m0VX12mMC+cgoVIodSpRfzYPaPTdPuJq7mK0Q==} + /@intlify/bundle-utils@8.0.0(vue-i18n@9.13.1): + resolution: {integrity: sha512-1B++zykRnMwQ+20SpsZI1JCnV/YJt9Oq7AGlEurzkWJOFtFAVqaGc/oV36PBRYeiKnTbY9VYfjBimr2Vt42wLQ==} engines: {node: '>= 14.16'} peerDependencies: petite-vue-i18n: '*' @@ -1232,13 +1246,12 @@ packages: vue-i18n: optional: true dependencies: - '@intlify/message-compiler': 9.9.0 - '@intlify/shared': 9.9.0 + '@intlify/message-compiler': 9.13.1 + '@intlify/shared': 9.13.1 acorn: 8.11.3 escodegen: 2.1.0 estree-walker: 2.0.2 jsonc-eslint-parser: 2.4.0 - magic-string: 0.30.8 mlly: 1.6.1 source-map-js: 1.2.0 vue-i18n: 9.13.1(vue@3.4.26) @@ -1259,25 +1272,12 @@ packages: '@intlify/shared': 9.13.1 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: resolution: {integrity: sha512-u3b6BKGhE6j/JeRU6C/RL2FgyJfy6LakbtfeVF8fJXURpZZTzfh3e05J0bu0XPw447Q6/WUp3C4ajv4TMS4YsQ==} engines: {node: '>= 16'} - /@intlify/shared@9.9.0: - resolution: {integrity: sha512-1ECUyAHRrzOJbOizyGufYP2yukqGrWXtkmTu4PcswVnWbkcjzk3YQGmJ0bLkM7JZ0ZYAaohLGdYvBYnTOGYJ9g==} - engines: {node: '>= 16'} - dev: true - - /@intlify/unplugin-vue-i18n@2.0.0(vue-i18n@9.13.1): - resolution: {integrity: sha512-1oKvm92L9l2od2H9wKx2ZvR4tzn7gUtd7bPLI7AWUmm7U9H1iEypndt5d985ypxGsEs0gToDaKTrytbBIJwwSg==} + /@intlify/unplugin-vue-i18n@4.0.0(vue-i18n@9.13.1): + resolution: {integrity: sha512-q2Mhqa/mLi0tulfLFO4fMXXvEbkSZpI5yGhNNsLTNJJ41icEGUuyDe+j5zRZIKSkOJRgX6YbCyibTDJdRsukmw==} engines: {node: '>= 14.16'} peerDependencies: petite-vue-i18n: '*' @@ -1291,18 +1291,18 @@ packages: vue-i18n-bridge: optional: true dependencies: - '@intlify/bundle-utils': 7.5.0(vue-i18n@9.13.1) - '@intlify/shared': 9.9.0 + '@intlify/bundle-utils': 8.0.0(vue-i18n@9.13.1) + '@intlify/shared': 9.13.1 '@rollup/pluginutils': 5.1.0 - '@vue/compiler-sfc': 3.4.21 + '@vue/compiler-sfc': 3.4.27 debug: 4.3.4 fast-glob: 3.3.2 js-yaml: 4.1.0 json5: 2.2.3 pathe: 1.1.2 - picocolors: 1.0.0 + picocolors: 1.0.1 source-map-js: 1.2.0 - unplugin: 1.10.0 + unplugin: 1.10.1 vue-i18n: 9.13.1(vue@3.4.26) transitivePeerDependencies: - rollup @@ -1964,8 +1964,8 @@ packages: '@babel/core': 7.24.1 '@babel/helper-module-imports': 7.22.15 '@babel/helper-plugin-utils': 7.24.0 - '@babel/parser': 7.24.1 - '@vue/compiler-sfc': 3.4.21 + '@babel/parser': 7.24.5 + '@vue/compiler-sfc': 3.4.27 dev: true /@vue/compiler-core@3.4.21: @@ -1981,12 +1981,22 @@ packages: /@vue/compiler-core@3.4.26: resolution: {integrity: sha512-N9Vil6Hvw7NaiyFUFBPXrAyETIGlQ8KcFMkyk6hW1Cl6NvoqvP+Y8p1Eqvx+UdqsnrnI9+HMUEJegzia3mhXmQ==} dependencies: - '@babel/parser': 7.24.4 + '@babel/parser': 7.24.5 '@vue/shared': 3.4.26 entities: 4.5.0 estree-walker: 2.0.2 source-map-js: 1.2.0 + /@vue/compiler-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: resolution: {integrity: sha512-IZC6FKowtT1sl0CR5DpXSiEB5ayw75oT2bma1BEhV7RRR1+cfwLrxc2Z8Zq/RGFzJ8w5r9QtCOvTjQgdn0IKmA==} dependencies: @@ -2000,6 +2010,13 @@ packages: '@vue/compiler-core': 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: resolution: {integrity: sha512-me7epoTxYlY+2CUM7hy9PCDdpMPfIwrOvAXud2Upk10g4YLv9UBW7kL798TvMeDhPthkZ0CONNrK2GoeI1ODiQ==} dependencies: @@ -2009,7 +2026,7 @@ packages: '@vue/compiler-ssr': 3.4.21 '@vue/shared': 3.4.21 estree-walker: 2.0.2 - magic-string: 0.30.8 + magic-string: 0.30.10 postcss: 8.4.38 source-map-js: 1.2.0 dev: true @@ -2017,7 +2034,7 @@ packages: /@vue/compiler-sfc@3.4.26: resolution: {integrity: sha512-It1dp+FAOCgluYSVYlDn5DtZBxk1NCiJJfu2mlQqa/b+k8GL6NG/3/zRbJnHdhV2VhxFghaDq5L4K+1dakW6cw==} dependencies: - '@babel/parser': 7.24.4 + '@babel/parser': 7.24.5 '@vue/compiler-core': 3.4.26 '@vue/compiler-dom': 3.4.26 '@vue/compiler-ssr': 3.4.26 @@ -2027,6 +2044,20 @@ packages: postcss: 8.4.38 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: resolution: {integrity: sha512-M5+9nI2lPpAsgXOGQobnIueVqc9sisBFexh5yMIMRAPYLa7+5wEJs8iqOZc1WAa9WQbx9GR2twgznU8LTIiZ4Q==} dependencies: @@ -2040,6 +2071,13 @@ packages: '@vue/compiler-dom': 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: resolution: {integrity: sha512-LgPscpE3Vs0x96PzSSB4IGVSZXZBZHpfxs+ZA1d+VEPwHdOXowy/Y2CsvCAIFrf+ssVU1pD1jidj505EpUnfbA==} @@ -2087,8 +2125,8 @@ packages: optional: true dependencies: '@volar/language-core': 2.2.0-alpha.8 - '@vue/compiler-dom': 3.4.21 - '@vue/shared': 3.4.21 + '@vue/compiler-dom': 3.4.27 + '@vue/shared': 3.4.27 computeds: 0.0.1 minimatch: 9.0.3 path-browserify: 1.0.1 @@ -2130,6 +2168,10 @@ packages: /@vue/shared@3.4.26: 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): resolution: {integrity: sha512-F4K7mF+ad++VlTrxMJVRnenKSJmO6fkQt2wpRDiKDesQMkfpniGWsqEi/JevxGBo2qEkwwjvTUAoiGJLNx++CA==} peerDependencies: @@ -2842,7 +2884,7 @@ packages: resolution: {integrity: sha512-m7pOT6CdLN7FuXUcpuz/8lfQ/L77x8SchHCF4G0RBTJO20Wzmhn5Sp4/5WsKy8OSpifBSUrmg83qEqaDHdyFuQ==} dependencies: inflation: 2.1.0 - qs: 6.12.0 + qs: 6.12.1 raw-body: 2.5.2 type-is: 1.6.18 dev: true @@ -2926,6 +2968,10 @@ packages: resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} dev: true + /confbox@0.1.7: + resolution: {integrity: sha512-uJcB/FKZtBMCJpK8MQji6bJHgu1tixKPxRLeGkNzBoOZzpnZUJm0jm2/sBDWcuBx1dYgxV4JU+g5hmNxCyAmdA==} + dev: true + /config-chain@1.1.13: resolution: {integrity: sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==} dependencies: @@ -4324,7 +4370,7 @@ packages: dezalgo: 1.0.4 hexoid: 1.0.0 once: 1.4.0 - qs: 6.12.0 + qs: 6.12.1 dev: true /fraction.js@4.3.7: @@ -5239,7 +5285,7 @@ packages: acorn: 8.11.3 eslint-visitor-keys: 3.4.3 espree: 9.6.1 - semver: 7.6.0 + semver: 7.6.1 dev: true /jsonc-parser@3.2.1: @@ -5679,7 +5725,7 @@ packages: dependencies: acorn: 8.11.3 pathe: 1.1.2 - pkg-types: 1.0.3 + pkg-types: 1.1.0 ufo: 1.5.3 dev: true @@ -6106,6 +6152,10 @@ packages: /picocolors@1.0.0: resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} + /picocolors@1.0.1: + resolution: {integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==} + dev: true + /picomatch@2.3.1: resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} engines: {node: '>=8.6'} @@ -6151,6 +6201,14 @@ packages: pathe: 1.1.2 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: resolution: {integrity: sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg==} dependencies: @@ -6290,8 +6348,8 @@ packages: engines: {node: '>=6'} dev: true - /qs@6.12.0: - resolution: {integrity: sha512-trVZiI6RMOkO476zLGaBIzszOdFPnCCXHPG9kn0yuS1uz6xdVxPfZdB3vUig9pxPFDM9BRAgz/YUIVQ1/vuiUg==} + /qs@6.12.1: + resolution: {integrity: sha512-zWmv4RSuB9r2mYQw3zxQuHWeU+42aKi1wWig/j4ele4ygELZ7PEO6MM7rim9oAQH2A5MWfsAVf/jPvTPgCbvUQ==} engines: {node: '>=0.6'} dependencies: side-channel: 1.0.6 @@ -7117,7 +7175,7 @@ packages: css-select: 4.3.0 css-tree: 1.1.3 csso: 4.2.0 - picocolors: 1.0.0 + picocolors: 1.0.1 stable: 0.1.8 dev: true @@ -7132,7 +7190,7 @@ packages: css-tree: 2.3.1 css-what: 6.1.0 csso: 5.0.5 - picocolors: 1.0.0 + picocolors: 1.0.1 dev: true /synckit@0.8.8: @@ -7540,6 +7598,16 @@ packages: webpack-virtual-modules: 0.6.1 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: resolution: {integrity: sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==} engines: {node: '>=0.10.0'} @@ -7975,8 +8043,8 @@ packages: - supports-color dev: true - /vue-hooks-plus@1.9.0(vue@3.4.26): - resolution: {integrity: sha512-LN2EClFHPPtNBlLMg1dlvywFiqex7eGrv/8xQC+EQJj1evL2hOZ1MO6CGccRucw4zkkD23y6RdIH0Ub839RYUQ==} + /vue-hooks-plus@2.1.0(vue@3.4.26): + resolution: {integrity: sha512-UkwmyoFX8WlfHgkqgDJ1jTLvVohtspRR8JFIZYCAgG01nqYVxoTiHZbEhOdIMH1Ba0CxP/xL26knT1+a2w5JpQ==} peerDependencies: vue: ^3.2.25 dependencies: @@ -7984,7 +8052,7 @@ packages: '@vue/devtools-api': 6.6.1 js-cookie: 3.0.5 lodash: 4.17.21 - qs: 6.12.0 + qs: 6.12.1 query-string: 7.1.3 screenfull: 5.2.0 vue: 3.4.26(typescript@5.2.2) @@ -8001,8 +8069,8 @@ packages: '@vue/devtools-api': 6.6.1 vue: 3.4.26(typescript@5.2.2) - /vue-router@4.3.0(vue@3.4.26): - resolution: {integrity: sha512-dqUcs8tUeG+ssgWhcPbjHvazML16Oga5w34uCUmsk7i0BcnskoLGwjpa15fqMr2Fa5JgVBrdL2MEgqz6XZ/6IQ==} + /vue-router@4.3.2(vue@3.4.26): + resolution: {integrity: sha512-hKQJ1vDAZ5LVkKEnHhmm1f9pMiWIBNGF5AwU67PdH7TyXCj/a4hTccuUuYCAMgJK6rO/NVYtQIEN3yL8CECa7Q==} peerDependencies: vue: ^3.2.0 dependencies: diff --git a/src/components/RBarcode/src/props.ts b/src/components/RBarcode/src/props.ts index f54b7496..8db4b217 100644 --- a/src/components/RBarcode/src/props.ts +++ b/src/components/RBarcode/src/props.ts @@ -88,13 +88,11 @@ const props = { * @description * 是否监听 text 变化,当 text 变化时,会重新生成条形码。 * - * 但是,在条形码的使用场景中,text 变化的频率应该是比较低的,所以默认不开启。如果有需要,可以手动开启。 - * - * @default false + * @default true */ watchText: { type: Boolean, - default: false, + default: true, }, /** * diff --git a/src/components/RIframe/src/index.tsx b/src/components/RIframe/src/index.tsx index 8d6c2583..7a9ced51 100644 --- a/src/components/RIframe/src/index.tsx +++ b/src/components/RIframe/src/index.tsx @@ -77,7 +77,7 @@ export default defineComponent({ ...this.$slots, default: () => (