Skip to content

Commit

Permalink
releases 4.3.22
Browse files Browse the repository at this point in the history
  • Loading branch information
xuliangzhan committed Dec 9, 2024
1 parent e3ae6a7 commit c52d0ef
Show file tree
Hide file tree
Showing 2 changed files with 12 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.3.21",
"version": "4.3.22",
"description": "A vue based PC component library",
"scripts": {
"update": "npm install --legacy-peer-deps",
Expand Down
11 changes: 11 additions & 0 deletions types/components/table.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2711,6 +2711,8 @@ export interface TableReactData<D = any> {
},
scrollVMLoading: boolean

isCustomStatus: boolean

isDragRowMove: Boolean
dragRow: any
isDragColMove: boolean
Expand Down Expand Up @@ -3040,6 +3042,10 @@ export interface TableMethods<DT = any> {
visibleColumn: VxeTableDefines.ColumnInfo<DT>[]
tableColumn: VxeTableDefines.ColumnInfo<DT>[]
}
/**
* 获取表格的全量列
*/
getFullColumns(): VxeTableDefines.ColumnInfo[]
/**
* 获取数据,和 data 的行为一致,也可以指定索引获取数据
*/
Expand Down Expand Up @@ -3082,6 +3088,10 @@ export interface TableMethods<DT = any> {
tableData: DT[]
footerData: DT[][]
}
/**
* 获取表格的全量数据,如果是 tree-config 则返回带层级的树结构
*/
getFullData(): DT[]
/**
* 设置指定列为固定列
* @param fieldOrColumns 列对象或字段名,支持传多个
Expand Down Expand Up @@ -4407,6 +4417,7 @@ export namespace VxeTableDefines {
columns: VxeTableDefines.ColumnInfo[]
isAllChecked: boolean
isAllIndeterminate: boolean
isCustomStatus: boolean
}

export interface RowDragSlotParams<D = any> {
Expand Down

0 comments on commit c52d0ef

Please sign in to comment.