mirror of
https://github.com/jeecgboot/JeecgBoot.git
synced 2025-12-08 17:12:28 +08:00
【pull/8013】修复 BasicTable position 属性类型配置 ---
This commit is contained in:
@ -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---for:【pull/8013】修复 BasicTable position 属性类型配置
|
||||
/**
|
||||
* specify the position of Pagination
|
||||
* @type Position[]
|
||||
*/
|
||||
position?: Position[];
|
||||
// update-end--author:liaozhiyang---date:20250423---for:【pull/8013】修复 BasicTable position 属性类型配置
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user