dap
def245f56a
Merge branch 'main' of https://github.com/vbenjs/vue-vben-admin into dev
3 months ago
lidongcheng88
03ce030e7c
fix: 混合双列 onMounted 关闭二级侧边栏 ( #6807 )
...
Co-authored-by: ldc <lidchen@tencent.com>
3 months ago
zouawen
59097e2466
chore: 新增是否开启首选项导航栏(外观、布局、快捷键、通用)吸顶效果,调整部分样式 ( #6804 )
3 months ago
dap
80328e7565
chore: merge
3 months ago
zouawen
2ce161e585
feat: 1、新增水印文案自定义功能;2、input-item输入框组件新增清除功能(可用于快捷清除水印文案);3、偏好设置、主题切换、语言选择、是否全屏按钮新增动画效果 ( #6800 )
...
* feature: 新增水印文案自定义功能;
* chore: 偏好设置、主题切换、语言选择、是否全屏按钮新增动画效果
3 months ago
HaHa
713281a8ba
fix(theme-button): fix flicker during theme switch ( #6782 )
3 months ago
dap
d01e03fd79
Merge branch 'main' of https://github.com/vbenjs/vue-vben-admin into dev
4 months ago
螃蟹
adbf793e79
fix(@vben/web-ele): the main color tone for switching between dark and light themes has been reset ( #6678 )
5 months ago
dap
2e72181174
Merge branch 'main' of https://github.com/vbenjs/vue-vben-admin into dev
5 months ago
Elm1992
a441dcebae
fix: meta.link invalid issue
5 months ago
dap
a4a7f7d096
Merge branch 'main' of https://github.com/vbenjs/vue-vben-admin into dev
5 months ago
vben
e147a9d2fd
chore: release 5.5.9
5 months ago
dap
46e642a2ce
Merge branch 'main' of https://github.com/vbenjs/vue-vben-admin into dev
5 months ago
xueyang
9fc594434f
perf: 优化useVbenForm样式 ( #6611 )
...
* perf(style): 优化useVbenForm垂直布局 actions 样式
* perf(style): 优化useVbenForm actions 布局样式
- 操作按钮组显示位置
```
actionPosition?: 'center' | 'left' | 'right';
```
- 操作按钮组的样式
```
actionType?: 'block' | 'inline'
inline: 行类显示,block: 新一行单独显示
```
* perf: 优化useVbenForm actions 布局样式
删除 actionType
增加 actionLayout
- actionLayout?: 'inline' | 'newLine' | 'rowEnd';
- newLine: 在新行显示。rowEnd: 在行内显示,靠右对齐(默认)。inline: 使用grid默认样式
- 删除无用代码 queryFormStyle
* perf: 优化useVbenForm使用案例
* perf: 优化form组件样式
去掉padding,改为gap
* docs: update vben-form.md
* fix: 修复FormMessage位置
* perf: Avoid direct mutation of props object.
- props.actionLayout = props.actionLayout || 'rowEnd';
- props.actionPosition = props.actionPosition || 'right';
+ const actionLayout = props.actionLayout || 'rowEnd';
+ const actionPosition = props.actionPosition || 'right';
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
* fix: 修复 wrapperClass 权重
* fix: 全局搜索结果不匹配 #6603
* fix: 避免FormMessage溢出
---------
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
5 months ago
dap
ac6099cc96
Merge branch 'main' of https://github.com/vbenjs/vue-vben-admin into dev
5 months ago
leo
b93e22c45a
fix(@vben/layouts): respect base URL when opening route in new window ( #6583 )
...
Previously, the generated URL for opening routes in a new window did not include the router base,
which led to incorrect paths when the app was deployed under a subdirectory (e.g., /admin/).
This change ensures that the resolved path includes the configured base by using
router.resolve(path).href.
5 months ago
dap
d22e494551
Merge branch 'main' of https://github.com/vbenjs/vue-vben-admin into dev
5 months ago
Jin Mao
cb3f96683f
fix: 修复双列布局模式下,路由为hideInMenu时,空白右列
5 months ago
dap
c762f8370b
Merge branch 'main' of https://github.com/vbenjs/vue-vben-admin into dev
6 months ago
vben
1575619d53
chore: release v5.5.8
6 months ago
dap
72e1115330
Merge branch 'main' of https://github.com/vbenjs/vue-vben-admin into dev
6 months ago
HamWong
bb36cca315
fix: 锁定屏幕页面样式自适应 ( #6480 )
6 months ago
dap
190c8c586e
Merge branch 'main' of https://github.com/vbenjs/vue-vben-admin into dev
6 months ago
Utopia
b1fb623113
feat: 为 auth layout 添加 slot: logo, 提升组件的灵活性和可复用性 ( #6442 )
7 months ago
dap
af0bb9bd66
refactor: 账号超长显示
7 months ago
dap
aec123a834
refactor: 个人中心 下拉卡片 昵称超长省略显示
7 months ago
dap
14b0d9b50f
Merge branch 'main' of https://github.com/vbenjs/vue-vben-admin into dev
7 months ago
vben
b9aef618fe
chore: release 5.5.7
7 months ago
chewenye
ea776aa710
types: 扩展user-dropdown组件的menus类型,支持iconify ( #6283 )
...
Co-authored-by: 车文烨 <chewy@china-lehua.com>
7 months ago
dap
c3edbec3f0
Merge branch 'main' of https://github.com/vbenjs/vue-vben-admin into dev
8 months ago
wyc001122
97894a940e
feat: optimize logo display ( #6267 )
...
* feat(VbenAvatar): add fit property to VbenAvatar component
* feat(VbenLogo): add fit property to VbenLogo component
* feat(VbenLogo): add logo fit preference configuration
- Add preferences.logo.fit setting for logo display control
- Include corresponding documentation for the new preference
* feat(preferences): add default value for logo.fit preference
- Set default configuration for logo fit behavior
- Ensures consistent logo display across applications
* test(preferences): update configuration snapshots
---------
Co-authored-by: wyc001122 <wangyongchao@testor.com.cn>
8 months ago
yingzi2019
48d70182b4
feat: improve check updates ( #6257 )
...
Co-authored-by: monkey <maotao@tutamail.com>
8 months ago
dap
4fd68bc083
Merge branch 'main' of https://github.com/vbenjs/vue-vben-admin into dev
8 months ago
wyc001122
dae46abb71
feat: additional-settings ( #6225 )
...
* feat(preferences): 补充VbenAdminLayout传入属性(来自偏好设置)
* docs(@vben/docs):update settings doc
---------
Co-authored-by: wyc001122 <wangyongchao@testor.com.cn>
8 months ago
wyc001122
34c4ecb047
fix: in mixed layout mode, the sidebar does not display when the first child node is an external link ( #6219 )
...
Co-authored-by: wyc001122 <wangyongchao@testor.com.cn>
8 months ago
ming4762
3d9dba965f
perf: perf the control logic of Tab ( #6220 )
...
* perf: perf the control logic of Tab
* 每个标签页Tab使用唯一的key来控制关闭打开等逻辑
* 统一函数获取tab的key
* 通过3种方式设置tab key:1、使用router query参数pageKey 2、使用路由meta参数fullPathKey设置使用fullPath或path作为key
* 单个路由可以打开多个标签页
* 如果设置fullPathKey为false,则query变更不会打开新的标签(这很实用)
* perf: perf the control logic of Tab
* perf: perf the control logic of Tab
* 测试用例适配
* perf: perf the control logic of Tab
* 解决AI提示的警告
8 months ago
afe1
2adb8acd80
fix: css style ( #6176 )
8 months ago
chewenye
b46ebe756e
types: 导出authentication组件的type,自定义toolbarList时类型使用ToolbarType ( #6158 )
...
Co-authored-by: 车文烨 <chewy@china-lehua.com>
8 months ago
dap
769aceb55f
Merge branch 'main' of https://github.com/vbenjs/vue-vben-admin into dev
8 months ago
Netfan
e89cf400c0
fix: refresh command of tabbar issue, fixed : #6162 ( #6169 )
8 months ago
dap
12d0ba24e5
Merge branch 'main' of https://github.com/vbenjs/vue-vben-admin into dev
8 months ago
vben
cc6c9bf7a0
chore: release v5.5.6
8 months ago
dap
b0763d6429
Merge branch 'main' of https://github.com/vbenjs/vue-vben-admin into dev
8 months ago
Vben
045bc4e5ee
feat: support smooth auto-scroll to active menu item ( #6102 )
8 months ago
Vben
17a18fc9ba
chore: close eslint object sorting ( #6101 )
8 months ago
Netfan
0517a7014f
fix: add missing translation for preferences drawer ( #6094 )
8 months ago
dap
5f26f5662e
Merge branch 'main' of https://github.com/vbenjs/vue-vben-admin into dev
9 months ago
Vben
76de450c71
chore: update dependency version for improved stability and compatibility ( #6023 )
...
* chore: update dependency version for improved stability and compatibility
* fix: optimize clearPoints function in useCaptchaPoints hook to improve performance
* fix: make several props optional in various components for better flexibility
9 months ago
vben
7c7051a11e
chore: release v5.5.5
9 months ago
Netfan
aa27a2f7a1
feat: encrypt the privacy data when it is persisted ( #6056 )
...
* 对私密数据持久化时执行加密
* 将锁屏密码合并到accessStore中进行加密
9 months ago