hlyc-web-pack 3.6.51 → 3.6.53

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.
@@ -29,6 +29,7 @@ export interface EditableColumnsType {
29
29
  }
30
30
  /** 可编辑单元格 */
31
31
  export declare type EditableCellProps = {
32
+ controlled: boolean;
32
33
  title: React.ReactNode;
33
34
  children: React.ReactNode;
34
35
  dataIndex: string;
@@ -42,7 +42,7 @@ export interface LayoutFormPropTypes {
42
42
  /** 关闭弹窗回调 */
43
43
  onCancel?: () => void;
44
44
  /** 确定或保存回调,返回false会阻止关闭 */
45
- onConfirm?: (data: AnyObjectType) => void | false | Promise<void | false>;
45
+ onConfirm?: (data: AnyObjectType) => void | boolean | Promise<void | boolean>;
46
46
  /** 表单数据 */
47
47
  formList: FormListType[];
48
48
  /** 表单每行显示的数量 */