@gx-design-vue/pro-table 0.1.8 → 0.2.0-beta.1

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.
package/dist/props.d.ts CHANGED
@@ -27,7 +27,7 @@ export declare const proTableProps: {
27
27
  * @description 获取 dataSource 的方法
28
28
  */
29
29
  request: {
30
- type: PropType<import("./types/TableTypings").RequsetFunction<import("./typing").DefaultRecordType, any> | undefined>;
30
+ type: PropType<import("./types/TableTypings").RequsetFunction<import("./typing").DefaultRecordType> | undefined>;
31
31
  default: null;
32
32
  };
33
33
  virtualScroll: PropType<boolean | undefined>;
@@ -247,7 +247,7 @@ export declare const proTableProps: {
247
247
  onSizeChange: PropType<((size: string) => any) | undefined>;
248
248
  onLoadingChange: PropType<((loading: boolean) => any) | undefined>;
249
249
  onRequestError: PropType<((e: Error) => void) | undefined>;
250
- onBeforeSearchSubmit: PropType<import("./types/TableTypings").RequsetFunction<import("./typing").DefaultRecordType, any> | undefined>;
250
+ onBeforeSearchSubmit: PropType<import("./types/TableTypings").RequsetFunction<import("./typing").DefaultRecordType> | undefined>;
251
251
  onColumnsStateChange: PropType<((data: import("./hooks/useColumnSetting").ColumnsState[]) => void) | undefined>;
252
252
  prefixCls: {
253
253
  type: PropType<string>;