【pull/8013】修复 BasicTable position 属性类型配置 ---

pull/8191/head
JEECG 2025-04-24 09:25:22 +08:00
parent 3f0597a0f6
commit 6f4c2eb77c
1 changed files with 9 additions and 0 deletions

View File

@ -7,6 +7,8 @@ interface PaginationRenderProps {
originalElement: any;
}
type Position = 'topLeft' | 'topCenter' | 'topRight' | 'bottomLeft' | 'bottomCenter' | 'bottomRight';
export declare class PaginationConfig extends Pagination {
position?: 'top' | 'bottom' | 'both';
}
@ -96,4 +98,11 @@ export interface PaginationProps {
* @type Function
*/
itemRender?: (props: PaginationRenderProps) => VNodeChild | JSX.Element;
// update-begin--author:liaozhiyang---date:20250423---forpull/8013 BasicTable position
/**
* specify the position of Pagination
* @type Position[]
*/
position?: Position[];
// update-end--author:liaozhiyang---date:20250423---forpull/8013 BasicTable position
}