hlyc-web-pack 3.8.7 → 3.8.9

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.
@@ -111,5 +111,5 @@ type TablePaginationType = TablePaginationConfig & {
111
111
  pages: number;
112
112
  [key: string]: any;
113
113
  };
114
- declare const _default: React.MemoExoticComponent<React.ForwardRefExoticComponent<GenerateTableProp & React.RefAttributes<unknown>>>;
114
+ declare const _default: React.ForwardRefExoticComponent<GenerateTableProp & React.RefAttributes<unknown>>;
115
115
  export default _default;
@@ -84,6 +84,18 @@ export interface LayoutTableModalPropType {
84
84
  colProps: ColProps;
85
85
  jsx: React.ReactNode;
86
86
  };
87
+ /** 右侧导出 */
88
+ rightExport?: {
89
+ /** 导出 */
90
+ open: boolean;
91
+ /** 文件名 */
92
+ fileName: string;
93
+ /** 表头配置 */
94
+ headres: {
95
+ key: string;
96
+ title: string;
97
+ }[];
98
+ };
87
99
  /** 数据调用成功回调 */
88
100
  getTableSuccessData?: (data: AnyObjectType) => void;
89
101
  /** 行选中回调 */
@@ -19,7 +19,7 @@ export declare const getStorage: (key: any) => any;
19
19
  */
20
20
  export declare const setStorage: (key: any, value: any) => null | undefined;
21
21
  /**
22
- * @description 深度比较2个对象是否相等,支持函数和嵌套对象比较
22
+ * @description 比较2个对象是否相等
23
23
  * @Author bihongbin
24
24
  * @return {*}
25
25
  * @Date 2023-07-07 14:11:02