Skip to content

Commit

Permalink
releases 4.0.27
Browse files Browse the repository at this point in the history
  • Loading branch information
xuliangzhan committed Jun 21, 2024
1 parent 5bd3d05 commit deb8ed7
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
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.26",
"version": "4.0.27",
"description": "A vue based PC component library",
"scripts": {
"update": "npm install --legacy-peer-deps",
Expand Down
16 changes: 14 additions & 2 deletions types/components/table.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1596,7 +1596,7 @@ export namespace VxeTablePropTypes {
/**
* 自定义打印内容
*/
content?: string
html?: string
/**
* 列过滤方法
*/
Expand All @@ -1614,9 +1614,21 @@ export namespace VxeTablePropTypes {
*/
beforePrintMethod?(params: {
$table: VxeTableConstructor | null
content: string
html: string
options: PrintHandleOptions

/**
* 已被 html 替换
* @deprecated
*/
content: string
}): string

/**
* 已被 html 替换
* @deprecated
*/
content?: string
}
export interface PrintOpts extends PrintConfig { }
export interface PrintHandleOptions extends PrintConfig { }
Expand Down

0 comments on commit deb8ed7

Please sign in to comment.