shixi
0bbb20fee0
feat: sport notification link
3 months ago
xingyu4j
0319604863
feat: playground add profile
3 months ago
Copilot
fef1e35c54
fix: prevent JSONBigInt parsing error on non-string data ( #6891 )
* Initial plan
* Fix json-bigint serialization error when data is not a string
Co-authored-by: likui628 <90845831+likui628@users.noreply.github.com>
---------
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: likui628 <90845831+likui628@users.noreply.github.com>
3 months ago
Li Kui
1af11240a6
chore: add tdesign logo
3 months ago
Li Kui
be843300be
chore: update demo routes
3 months ago
Copilot
1e09fa4642
feat: migrate from Radix Vue to Reka UI ( #6870 )
* Initial plan
* Update dependencies and imports from radix-vue to reka-ui
Co-authored-by: likui628 <90845831+likui628@users.noreply.github.com>
* Fix type errors after reka-ui migration
Co-authored-by: likui628 <90845831+likui628@users.noreply.github.com>
* Run formatter to fix code style
Co-authored-by: likui628 <90845831+likui628@users.noreply.github.com>
---------
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: likui628 <90845831+likui628@users.noreply.github.com>
3 months ago
zhongming4762
f46ae023ba
feat: increase support for multiple time zones
* 优化实现方法
3 months ago
zhongming4762
3eed51fd3e
feat: increase support for multiple time zones
* 优化实现方法
3 months ago
zhongming4762
4d713db546
feat: increase support for multiple time zones
* 优化实现方法
3 months ago
zoumingjun
38f91da5af
fix: 优化双列布局组件点击展开左侧按钮位置不居中问题
4 months ago
zoumingjun
8edea3aee5
fix: 调整zh-CN/system.json中<"title": "系统管理">配置位置,保持与en-US/system.json中位置一致
4 months ago
zouawen
2ce161e585
feat: 1、新增水印文案自定义功能;2、input-item输入框组件新增清除功能(可用于快捷清除水印文案);3、偏好设置、主题切换、语言选择、是否全屏按钮新增动画效果 ( #6800 )
* feature: 新增水印文案自定义功能;
* chore: 偏好设置、主题切换、语言选择、是否全屏按钮新增动画效果
4 months ago
zouawen
33306a5aff
chore: 更换其他登录方式图标为彩色图标,新增其他登录方式tooltip文字提示 ( #6799 )
4 months ago
lw567
6e03de5011
fix: watermark create error #6788 ( #6789 )
Co-authored-by: liwei567 <liwei567@example.com>
4 months ago
zouawen
39820c783c
fix:
1、VbenTree新增是否全选、展开折叠功能;
2、解决当点击子节点label文字区域,而非checkbox时,关联父组件不能选中问题;
3、优化子节点选中时关联父节点选中功能:删除VbenTree中processParentSelection方法,改为在onSelect中实现,原因:processParentSelection在每次模型值更新时都会被调用,且计算复杂度为O(n^2),onSelect只在交互时触发,复杂度为O(n);
4、新增中间层tree组件,处理无数据时显示场景(显示图标Inbox和国际化comom.noData文本);
5、为防止父组件传值子组件boolean类型默认false问题,新增treePropsDefaults方法,为TreeProps赋默认值,Tree组件和VbenTree组件统一使用;
6、优化VbenTree组件整体样式(优化padding、margin、gap值,优化type为button时outline左右空白区域不对称问题),优化内部header、footer插槽样式。
5 months ago
Ken Hai
ffaf85c8f3
fix: 修复角色修改时VbenTree组件没有回显选中 ( #6662 )
* fix: 修复角色修改时VbenTree组件没有回显选中
* chore: use nextTick
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
* fix: merge
* chore: 更新
---------
Co-authored-by: haiyinlong <haiyinlong@uhigame.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
ming4762
1e6417f95b
feat: vBenForm add layout: inline ( #6644 )
6 months ago
vben
e147a9d2fd
chore: release 5.5.9
6 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>
6 months ago
zhongming4762
06ffdf164a
feat: add dingding login
7 months ago
aonoa
fad0b49841
fix: adding roles does not automatically refresh ( #6548 )
* fix: adding roles does not automatically refresh
* style: fix code style err
7 months ago
vben
1575619d53
chore: release v5.5.8
7 months ago
Jin Mao
d5a36a167d
fix: fix vxeTable commit proxy ( #6536 )
* fix: 修正use-vxe-grid中的代理配置提交类型
* chore: change config
7 months ago
Jin Mao
1bc5d2986b
chore: update-vxe-table ( #6516 )
* chore: update vxe-pc-ui,vxe-table
* fix(ui): 修复代理配置初始化方法名错误
* fix(ui): 修改远程表格刷新配置
* chroe: update vxeTable
更新到最新
7 months ago
sqchen
243f3a201d
feat: add scrollToFirstError to the form component
7 months ago
chenweiran
bbd8a53d9d
feat: 增加基于图片拼图切片平移的验证码
7 months ago
chenweiran
8554924cb9
feat: 增加基于图片拼图切片平移的验证码
7 months ago
RanMaoting
fee811d950
fix: 优化组件方法透传并新增表单弹窗示例 ( #6443 )
7 months ago
zyy
b015fbc9fc
fix: [adapter] 表格配置类型报错 ( #6327 )
配置toolbarConfig中的search时会有类型报错
8 months ago
ali-pay
c0e601c020
fix: menu type is not 'button' ( #6277 )
Co-authored-by: Jin Mao <50581550+jinmao88@users.noreply.github.com>
8 months ago
RanMaoting
017ed1a9e1
types: 为useVbenVxeGrid添加泛型声明,使grid实例上能正确获取到行数据的类型 ( #5653 )
Co-authored-by: Jin Mao <50581550+jinmao88@users.noreply.github.com>
8 months ago
vben
b9aef618fe
chore: release 5.5.7
8 months ago
Netfan
4102cc2211
feat: improve vbenCheckButtonGroup ( #6329 )
* 按钮组支持单选清除和多选限制最大选项数
* 按钮组支持icon插槽来定制图标
8 months ago
zhang
76d106e474
fix: When defaultHomePage is inconsistent with user.homePath, the pa… ( #6299 )
* fix: When defaultHomePage is inconsistent with user.homePath, the page refresh route jump will be abnormal
* fix: When defaultHomePage is inconsistent with user.homePath, the page refresh route jump will be abnormal
8 months ago
Netfan
6fbf1387f5
fix: reset slider-captcha after login failed ( #6275 )
9 months ago
Netfan
e5c937396d
fix: json-bigint parse used in vxeTable ( #6271 )
* 修复vxeTable不能加载json-bigint解析的数据的问题
9 months ago
Netfan
a1091bad46
feat: enhances compatibility with APIs returning large numeric values ( #6250 )
9 months ago
zhang
9f9be21e2a
fix: component Input is not registered when initialize page ( #6246 )
* fix: Component Input is not registered when initialize page
* fix: Component Input is not registered when initialize page
9 months ago
ali-pay
11b2b5bcc2
fix: 修复菜单管理中按钮类型值错误的问题 ( #6255 )
9 months ago
Netfan
0c3edb10b0
fix: getFieldComponentRef will return actual ref within AsyncComponentWrapper ( #6252 )
修复异步加载组件时,表单的getFieldComponentRef方法没能获取到正确的组件实例
9 months ago
panda7
a23bc4cb5c
fix: the mobile terminal can wrap lines and expand slot attributes ( #6165 )
Co-authored-by: sqchen <chenshiqi@sshlx.com>
9 months ago
afe1
90625782c0
fix: delete useless code ( #6143 )
9 months ago
Netfan
bf70539221
fix: missing argument for getPopupContainer
9 months ago
Leeson
5949c73a30
fix: delete Popconfirm being obscured by fixed columns ( #6118 )
* fix: delete Popconfirm being obscured by fixed columns
* fix: opened popConfirm will prevent the table from scrolling
---------
Co-authored-by: Netfan <netfan@foxmail.com>
9 months ago
vben
cc6c9bf7a0
chore: release v5.5.6
9 months ago
Vben
17a18fc9ba
chore: close eslint object sorting ( #6101 )
9 months ago
aonoa
41152d1722
refactor: modify the default homepage path loaded from the preference… ( #6099 )
* refactor: modify the default homepage path loaded from the preferences.ts
Signed-off-by: aonoa <1991849113@qq.com>
* refactor: modify the default homepage path loaded from the preferences.ts
Signed-off-by: aonoa <1991849113@qq.com>
---------
Signed-off-by: aonoa <1991849113@qq.com>
9 months ago
vben
7c7051a11e
chore: release v5.5.5
10 months ago
Netfan
aa27a2f7a1
feat: encrypt the privacy data when it is persisted ( #6056 )
* 对私密数据持久化时执行加密
* 将锁屏密码合并到accessStore中进行加密
10 months ago
ming4762
0cc1cb5a7b
perf: improve destroyOnClose for VbenDrawer&VbenModal ( #6051 )
* fix: fix that the default value of modal destroyOnClose does not take effect
* perf: improve destroyOnClose for VbenDrawer
10 months ago