@jiaozhiye/qm-design-react 1.8.5 → 1.8.7

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.
@@ -3,7 +3,7 @@ import PropTypes from 'prop-types';
3
3
  import type { Dayjs } from 'dayjs';
4
4
  import type { UploadProps } from '../../antd';
5
5
  import type { BuildInPlacements } from 'rc-trigger';
6
- import type { IFetch, IColumn, IRowKey } from '../../table/src/table/types';
6
+ import type { IFetch, IColumn, IRowKey, IPaginationConfig } from '../../table/src/table/types';
7
7
  import type { UploadFile } from '../../upload-file/src/upload-file';
8
8
  import type { CSSProperties, ComponentSize, JSXElement, ValueOf, AjaxResponse, IDict, IAuth } from '../../_utils/types';
9
9
  export declare const DEFAULT_COL = 4;
@@ -203,6 +203,7 @@ export type IFormItem = {
203
203
  columns?: IColumn[];
204
204
  rowKey?: ((row: IRecord, index: number) => IRowKey) | IRowKey;
205
205
  webPagination?: boolean;
206
+ paginationConfig?: Pick<IPaginationConfig, 'pageSize' | 'pageSizeOptions'>;
206
207
  };
207
208
  tree?: {
208
209
  fetch?: IFetch & {
@@ -29,6 +29,7 @@ export declare const createShConfig: (data: any, fieldName: string, createFetch:
29
29
  columns?: import("../..").QmTableColumn[] | undefined;
30
30
  rowKey?: string | number | ((row: IRecord, index: number) => string | number) | undefined;
31
31
  webPagination?: boolean | undefined;
32
+ paginationConfig?: Pick<import("../../table/src/table/types").IPaginationConfig, "pageSize" | "pageSizeOptions"> | undefined;
32
33
  } | undefined;
33
34
  tree?: {
34
35
  fetch?: (import("../../table/src/table/types").IFetch & {