bitz-react-admin-ui 2.4.4 → 2.4.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,7 +1,7 @@
1
1
  import { FC, Ref } from 'react';
2
2
  import { PaginationProps } from 'antd';
3
3
  import './index.less';
4
- interface BitzPaginationProps extends PaginationProps {
4
+ export interface BitzPaginationProps extends PaginationProps {
5
5
  /**
6
6
  * 启用分页受控属性
7
7
  */
@@ -24,6 +24,7 @@ export interface BitzTableProps<RecordType = any> extends Omit<TableProps<Record
24
24
  scroll?: {
25
25
  x?: number;
26
26
  y?: number;
27
+ auto?: boolean;
27
28
  };
28
29
  /** PC端 & 移动端:后端返回的数组数据 */
29
30
  dataSource?: RecordType[];