clickgo 6.1.2 → 6.1.4

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.
@@ -289,7 +289,7 @@ export interface IDatepanelSelectedEvent {
289
289
  }
290
290
  export interface IFormCloseEvent extends ICustomEvent {
291
291
  'detail': {
292
- 'event': MouseEvent;
292
+ 'event': MouseEvent | null;
293
293
  };
294
294
  }
295
295
  export interface IFormMaxEvent {
@@ -58,6 +58,13 @@ export declare function invokeSys(current: string, name: string, ...param: any[]
58
58
  */
59
59
  export declare function quit(current: lCore.TCurrent): Promise<boolean>;
60
60
  export declare function size(current: lCore.TCurrent, width: number, height: number): Promise<boolean>;
61
+ /**
62
+ * --- 设置实体窗体的最小尺寸,0 表示不限制对应方向 ---
63
+ * @param current 当前任务
64
+ * @param width 最小宽度
65
+ * @param height 最小高度
66
+ */
67
+ export declare function minSize(current: lCore.TCurrent, width: number, height: number): Promise<boolean>;
61
68
  export declare function max(current: lCore.TCurrent): Promise<boolean>;
62
69
  export declare function min(current: lCore.TCurrent): Promise<boolean>;
63
70
  /** --- 从最大化还原 --- */