@jiaozhiye/qm-design-react 1.11.19 → 1.11.21

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.
@@ -219,6 +219,7 @@ export type IFormItem = {
219
219
  rowKey?: ((row: IRecord, index: number) => IRowKey) | IRowKey;
220
220
  webPagination?: boolean;
221
221
  paginationConfig?: Pick<IPaginationConfig, 'pageSize' | 'pageSizeOptions'>;
222
+ topBarExtra?: React.ReactNode;
222
223
  };
223
224
  tree?: {
224
225
  fetch?: IFetch & ITextValueKey;
@@ -32,6 +32,7 @@ export declare const createShConfig: (data: any, fieldName: string, createFetch:
32
32
  rowKey?: string | number | ((row: IRecord, index: number) => string | number) | undefined;
33
33
  webPagination?: boolean | undefined;
34
34
  paginationConfig?: Pick<import("../../table/src/table/types").IPaginationConfig, "pageSize" | "pageSizeOptions"> | undefined;
35
+ topBarExtra?: import("react").ReactNode;
35
36
  } | undefined;
36
37
  tree?: {
37
38
  fetch?: (import("../../table/src/table/types").IFetch & import("./types").ITextValueKey) | undefined;