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.
- package/dist/app/demo.cga +0 -0
- package/dist/app/task.cga +0 -0
- package/dist/control/form.cgc +0 -0
- package/dist/index.js +1 -1
- package/dist/lib/control.d.ts +1 -1
- package/dist/lib/native.d.ts +7 -0
- package/doc/clickgo-rag.md +363 -321
- package/package.json +2 -2
- package/test/form-native.mjs +68 -0
package/dist/lib/control.d.ts
CHANGED
package/dist/lib/native.d.ts
CHANGED
|
@@ -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
|
/** --- 从最大化还原 --- */
|