hlyc-web-pack 3.8.9 → 3.9.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.
|
@@ -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> = {
|
|
@@ -111,5 +111,5 @@ type TablePaginationType = TablePaginationConfig & {
|
|
|
111
111
|
pages: number;
|
|
112
112
|
[key: string]: any;
|
|
113
113
|
};
|
|
114
|
-
declare const _default: React.ForwardRefExoticComponent<GenerateTableProp & React.RefAttributes<unknown
|
|
114
|
+
declare const _default: React.MemoExoticComponent<React.ForwardRefExoticComponent<GenerateTableProp & React.RefAttributes<unknown>>>;
|
|
115
115
|
export default _default;
|