hlyc-web-pack 3.8.8 → 3.9.0
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.
|
@@ -40,6 +40,8 @@ export interface EditableColumnsType {
|
|
|
40
40
|
controlRender: (record: AnyObjectType, childNode: React.ReactNode) => React.ReactNode;
|
|
41
41
|
/** 表单项placeholder */
|
|
42
42
|
placeholder?: string;
|
|
43
|
+
/** 表单值变化是否触发远程搜索下拉数据更新 */
|
|
44
|
+
triggerRemoteSearch?: boolean;
|
|
43
45
|
}
|
|
44
46
|
/** 可编辑单元格 */
|
|
45
47
|
export type EditableCellProps<T = AnyObjectType> = {
|
|
@@ -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
|
|
22
|
+
* @description 比较2个对象是否相等
|
|
23
23
|
* @Author bihongbin
|
|
24
24
|
* @return {*}
|
|
25
25
|
* @Date 2023-07-07 14:11:02
|