Skip to content

Commit

Permalink
releases 4.0.28
Browse files Browse the repository at this point in the history
  • Loading branch information
xuliangzhan committed Jun 22, 2024
1 parent deb8ed7 commit d7c492d
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vxe-pc-ui",
"version": "4.0.27",
"version": "4.0.28",
"description": "A vue based PC component library",
"scripts": {
"update": "npm install --legacy-peer-deps",
Expand Down
5 changes: 5 additions & 0 deletions types/components/table.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -843,6 +843,10 @@ export namespace VxeTablePropTypes {
* 是否开启删除键功能
*/
isDel?: boolean
/**
* 是否开启回退键功能
*/
isBack?: boolean
/**
* 是否开启回车移动上下行移动
*/
Expand Down Expand Up @@ -3138,6 +3142,7 @@ export type VxeTableEmits = [
'cell-mouseleave',
'cell-selected',
'cell-delete-value',
'cell-backspace-value',
'header-cell-click',
'header-cell-dblclick',
'header-cell-menu',
Expand Down
8 changes: 8 additions & 0 deletions types/ui/validators.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,15 @@ import { VxeTableDefines } from '../components/table'
declare module '@vxe-ui/core' {
export namespace VxeGlobalValidatorsHandles {
export interface ValidatorsOptions {

/**
* 表单 - 自定义表单项校验方法
*/
formItemValidatorMethod?: FormItemValidatorMethod

/**
* 表格 - 自定义单元格校验方法
*/
tableCellValidatorMethod?: TableCellValidatorMethod

/**
Expand Down

0 comments on commit d7c492d

Please sign in to comment.