mirror of https://github.com/jeecgboot/jeecg-boot
【pull/8013】修复 BasicTable position 属性类型配置 ---
parent
3f0597a0f6
commit
6f4c2eb77c
|
@ -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 属性类型配置
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue