@iflyrpa/actions 1.2.5-beta.3 → 1.2.5
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/actions/weixinPublish/index.d.ts +1 -21
- package/dist/bundle.js +13 -470
- package/dist/bundle.js.map +1 -1
- package/dist/index.js +13 -470
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +13 -470
- package/dist/index.mjs.map +1 -1
- package/dist/utils/index.d.ts +0 -12
- package/package.json +1 -5
package/dist/utils/index.d.ts
CHANGED
|
@@ -75,18 +75,6 @@ export declare function copyHtmlToClipboard(page: Page, html: string, options?:
|
|
|
75
75
|
format: string;
|
|
76
76
|
fallback: boolean;
|
|
77
77
|
}): Promise<void>;
|
|
78
|
-
/**
|
|
79
|
-
* 通用弹窗监听处理器
|
|
80
|
-
* @param page - Playwright 页面对象
|
|
81
|
-
* @param popupSelector - 弹窗的选择器(字符串或 Locator)
|
|
82
|
-
* @param popKey - 弹窗中的唯一键(字符串)
|
|
83
|
-
* @param buttonSelector - 弹窗中需要点击的按钮选择器
|
|
84
|
-
* @param options - 可选配置项
|
|
85
|
-
*/
|
|
86
|
-
export declare function PopupListener(page: Page, popupSelector: string, popKey: string, buttonSelector: string, options?: {
|
|
87
|
-
checkInterval?: number;
|
|
88
|
-
stopAfterClick?: boolean;
|
|
89
|
-
}): () => void;
|
|
90
78
|
export declare const parseUrlQueryString: (url: string) => Record<string, string>;
|
|
91
79
|
/**
|
|
92
80
|
* 合并默认参数
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iflyrpa/actions",
|
|
3
|
-
"version": "1.2.5
|
|
3
|
+
"version": "1.2.5",
|
|
4
4
|
"main": "./dist/index.js",
|
|
5
5
|
"module": "./dist/index.mjs",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -22,10 +22,6 @@
|
|
|
22
22
|
"@rslib/core": "^0.4.1",
|
|
23
23
|
"@types/mime-types": "^2.1.4"
|
|
24
24
|
},
|
|
25
|
-
"publishConfig": {
|
|
26
|
-
"access": "public",
|
|
27
|
-
"registry": "https://registry.npmjs.org"
|
|
28
|
-
},
|
|
29
25
|
"scripts": {
|
|
30
26
|
"build": "rslib build",
|
|
31
27
|
"dev": "rslib build --watch"
|