dap
2e72181174
Merge branch 'main' of https://github.com/vbenjs/vue-vben-admin into dev
5 months ago
ming4762
8ac2db5b7c
fix: fix the issue of `VbenForm` `compact` reactive failure ( #6654 )
5 months ago
dap
daf61f7409
refactor: 校验信息间距
5 months ago
dap
a4a7f7d096
Merge branch 'main' of https://github.com/vbenjs/vue-vben-admin into dev
5 months ago
ming4762
1e6417f95b
feat: vBenForm add layout: inline ( #6644 )
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
d22e494551
Merge branch 'main' of https://github.com/vbenjs/vue-vben-admin into dev
5 months ago
ming4762
5b75e5e917
perf: perf the control logic of `VbenModal` full screen and header ( #6566 )
...
* resolve the issue of header=false and full screen button display but not operable
5 months ago
Jin Mao
260e45cd7b
Merge branch 'main' into feat/add-vben-modal-animation
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
panda7
fc9ea347ca
Merge branch 'main' into feat/add-vben-modal-animation
6 months ago
panda7
1a9b0509d5
feat: add animation effects to VbenModal component
6 months ago
panda7
07b64ad384
feat: add function support for formItemClass prop ( #6511 )
...
* feat: add function support for formItemClass prop
* feat: add try-catch to formItemClass function
* fix: formItemClass function ts error
---------
Co-authored-by: sqchen <chenshiqi@sshlx.com>
6 months ago
dap
72e1115330
Merge branch 'main' of https://github.com/vbenjs/vue-vben-admin into dev
6 months ago
Jin Mao
3b673ca915
Merge branch 'main' into feature/scroll_to_the_error_field
6 months ago
Jin Mao
bbf0287511
chore: fix lint warning ( #6487 )
6 months ago
sqchen
f1051c8773
feat: add scrollToFirstError to the form component
6 months ago
sqchen
243f3a201d
feat: add scrollToFirstError to the form component
6 months ago
dap
1e4824fe27
Merge branch 'main' of https://github.com/vbenjs/vue-vben-admin into dev
6 months ago
xue-jn
253b0da7d2
fix: 接口返回子节点为空数组时,还会显示折叠箭头 ( #6463 )
6 months ago
dap
190c8c586e
Merge branch 'main' of https://github.com/vbenjs/vue-vben-admin into dev
6 months ago
CG.gatspy
3230781538
feat: [vben-tree]增加数据disabled ( #6343 )
...
* feat: [vben-tree]增加数据disabled
* Update packages/@core/ui-kit/shadcn-ui/src/ui/tree/tree.vue
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
---------
Co-authored-by: Jin Mao <50581550+jinmao88@users.noreply.github.com>
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
6 months ago
dap
383756c0aa
Merge branch 'main' of https://github.com/vbenjs/vue-vben-admin into dev
6 months ago
yuhengshen
2f7d1f009d
fix: 全屏状态下弹窗圆角优化 ( #6413 )
6 months ago
yuhengshen
946f91f387
feat: optimize modal dragging range( #6414 )
...
* 当弹窗指定了容器时,拖拽将被限制在容器范围内
6 months ago
dap
78cd6677c3
Merge branch 'main' of https://github.com/vbenjs/vue-vben-admin into dev
7 months ago
Netfan
c0962fec18
fix: auto close popup on deactivated ( #6368 )
...
* 修复挂载到内容区域的弹窗和抽屉被意外关闭的问题
7 months ago
dap
687c33ec29
Merge branch 'main' of https://github.com/vbenjs/vue-vben-admin into dev
7 months ago
XiaoHetitu
8ba7bdf2bd
fix(button): 为按钮添加type属性防止表单提交意外触发表单验证机制 ( #6340 )
...
在按钮组件中,按钮元素缺少type="button"属性可能导致在表单中意外提交。添加此属性以确保按钮行为符合预期。
Co-authored-by: yuanwj <ywj6792341@qq.com>
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
Netfan
4102cc2211
feat: improve vbenCheckButtonGroup ( #6329 )
...
* 按钮组支持单选清除和多选限制最大选项数
* 按钮组支持icon插槽来定制图标
7 months ago
huanghezhen
feb96dc8ea
fix: resolve onClosed method failure in connectedComponent of useVbenModal ( #6309 )
7 months ago
dap
8b7d717b21
Merge branch 'main' of https://github.com/vbenjs/vue-vben-admin into dev
7 months ago
Netfan
081d08a7f8
fix: alert width fixed in small screen ( #6312 )
7 months ago
dap
c3edbec3f0
Merge branch 'main' of https://github.com/vbenjs/vue-vben-admin into dev
7 months ago
littlesparklet
af186f878d
fix: repair the unexpected form default value ( #5567 )
...
* fix: Fix inconsistent spacing around search form (issue #5429 )
* fix: repair the unexpected default value in validated form.(issue #5451 )
* Update packages/@core/ui-kit/form-ui/src/use-form-context.ts
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
---------
Co-authored-by: Jin Mao <50581550+jinmao88@users.noreply.github.com>
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
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
dap
d039c53053
Merge branch 'main' of https://github.com/vbenjs/vue-vben-admin into dev
8 months ago
Netfan
0c3edb10b0
fix: getFieldComponentRef will return actual ref within AsyncComponentWrapper ( #6252 )
...
修复异步加载组件时,表单的getFieldComponentRef方法没能获取到正确的组件实例
8 months ago
dap
4fd68bc083
Merge branch 'main' of https://github.com/vbenjs/vue-vben-admin into dev
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
wyc001122
024c01d350
fix(@vben-core/shadcn-ui): fix disabled functionality not working in VbenTree component ( #6205 )
...
* fix(@vben-core/shadcn-ui): fix disabled functionality not working in VbenTree component
* fix(@vben-core/shadcn-ui): add cursor-not-allowed className when disabled and disable onfocus
---------
Co-authored-by: wyc001122 <wangyongchao@testor.com.cn>
Co-authored-by: Jin Mao <50581550+jinmao88@users.noreply.github.com>
8 months ago
panda7
a23bc4cb5c
fix: the mobile terminal can wrap lines and expand slot attributes ( #6165 )
...
Co-authored-by: sqchen <chenshiqi@sshlx.com>
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
LinaBell
8f4d3d418d
fix: when keepAlive is enabled, returning directly through browser buttons/gestures will not close pop ups ( #6113 )
8 months ago