hlyc-web-pack 3.9.1 → 3.9.3
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.
|
@@ -69,9 +69,19 @@ export interface DraggableBodyRowProps extends React.HTMLAttributes<HTMLTableRow
|
|
|
69
69
|
/** 索引 */
|
|
70
70
|
index: number;
|
|
71
71
|
}
|
|
72
|
-
export declare const EditableRow: ({ vc, open, index, moveRow, className, style, ...restProps }: DraggableBodyRowProps) => import("react/jsx-runtime").JSX.Element
|
|
73
|
-
|
|
74
|
-
|
|
72
|
+
export declare const EditableRow: React.MemoExoticComponent<({ vc, open, index, moveRow, className, style, ...restProps }: DraggableBodyRowProps) => import("react/jsx-runtime").JSX.Element>;
|
|
73
|
+
declare const _default: React.NamedExoticComponent<{
|
|
74
|
+
className?: string | undefined;
|
|
75
|
+
title: React.ReactNode;
|
|
76
|
+
children: React.ReactNode;
|
|
77
|
+
dataIndex: string;
|
|
78
|
+
recordIndex: number;
|
|
79
|
+
record: AnyObjectType;
|
|
80
|
+
render?: ((value: any, record: AnyObjectType, index: number) => React.ReactNode) | undefined;
|
|
81
|
+
/** 保存表单的值 */
|
|
82
|
+
handleSave: (record: AnyObjectType, dataIndex: string) => void;
|
|
83
|
+
columns: TableColumns<AnyObjectType>[];
|
|
84
|
+
} & EditableColumnsType & CellType & {
|
|
75
85
|
vc: any;
|
|
76
86
|
}>;
|
|
77
|
-
export default
|
|
87
|
+
export default _default;
|
|
@@ -1,2 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
import React from 'react';
|
|
2
|
+
declare const _default: React.MemoExoticComponent<({ onResize, width, ...restProps }: any) => import("react/jsx-runtime").JSX.Element>;
|
|
3
|
+
export default _default;
|