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
- declare const EditableCell: React.FC<EditableCellProps & CellType & {
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 EditableCell;
87
+ export default _default;
@@ -1,2 +1,3 @@
1
- declare const ResizableTitle: (props: any) => import("react/jsx-runtime").JSX.Element;
2
- export default ResizableTitle;
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;