@lvce-editor/test-with-playwright 2.10.0 → 2.11.0
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/api.d.ts +6 -1
- package/package.json +2 -2
package/api.d.ts
CHANGED
|
@@ -111,6 +111,11 @@ declare const focusNext$4: () => Promise<void>;
|
|
|
111
111
|
declare const focusPrevious$2: () => Promise<void>;
|
|
112
112
|
declare const focusFirst$2: () => Promise<void>;
|
|
113
113
|
declare const focusLast$2: () => Promise<void>;
|
|
114
|
+
declare const toggleRecordingKeys: () => Promise<void>;
|
|
115
|
+
declare const startRecordingKeys: () => Promise<void>;
|
|
116
|
+
declare const clearInput: () => Promise<void>;
|
|
117
|
+
declare const sortByPrecedence: () => Promise<void>;
|
|
118
|
+
declare const stopRecordingKeys: () => Promise<void>;
|
|
114
119
|
declare const handleContextMenu$1: (button: number, x: number, y: number) => Promise<void>;
|
|
115
120
|
declare const press: (key: string) => Promise<void>;
|
|
116
121
|
declare const openUri: (uri: string) => Promise<void>;
|
|
@@ -214,7 +219,7 @@ declare namespace IconTheme {
|
|
|
214
219
|
export { setIconTheme };
|
|
215
220
|
}
|
|
216
221
|
declare namespace KeyBindingsEditor {
|
|
217
|
-
export { focusFirst$2 as focusFirst, focusLast$2 as focusLast, focusNext$4 as focusNext, focusPrevious$2 as focusPrevious, handleClick$2 as handleClick, handleContextMenu$1 as handleContextMenu, handleDoubleClick, handleInput, handleWheel, open$1 as open };
|
|
222
|
+
export { clearInput, focusFirst$2 as focusFirst, focusLast$2 as focusLast, focusNext$4 as focusNext, focusPrevious$2 as focusPrevious, handleClick$2 as handleClick, handleContextMenu$1 as handleContextMenu, handleDoubleClick, handleInput, handleWheel, open$1 as open, sortByPrecedence, startRecordingKeys, stopRecordingKeys, toggleRecordingKeys };
|
|
218
223
|
}
|
|
219
224
|
declare namespace KeyBoard {
|
|
220
225
|
export { press };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lvce-editor/test-with-playwright",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.11.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "src/main.js",
|
|
6
6
|
"type": "module",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"@lvce-editor/json-rpc": "^5.4.0",
|
|
20
20
|
"@lvce-editor/verror": "^1.6.0",
|
|
21
21
|
"minimist": "^1.2.8",
|
|
22
|
-
"@lvce-editor/test-with-playwright-worker": "2.
|
|
22
|
+
"@lvce-editor/test-with-playwright-worker": "2.11.0"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"@types/jest": "^29.5.12",
|