Skip to content

Commit

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

isCustomStatus: boolean

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

0 comments on commit ae9ed3e

Please sign in to comment.