@lvce-editor/test-with-playwright 2.15.0 → 2.16.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 +9 -4
- package/package.json +2 -2
package/api.d.ts
CHANGED
|
@@ -81,9 +81,11 @@ declare const shouldHaveText: (expectedText: string) => Promise<void>;
|
|
|
81
81
|
declare const selectIndex: (index: number) => Promise<void>;
|
|
82
82
|
declare const selectCurrentIndex: () => Promise<void>;
|
|
83
83
|
declare const openContextMenu$1: (index: number) => Promise<void>;
|
|
84
|
-
declare const handleDragLeave: (
|
|
84
|
+
declare const handleDragLeave: () => Promise<void>;
|
|
85
85
|
declare const focus$1: () => Promise<void>;
|
|
86
86
|
declare const focusNext$2: () => Promise<void>;
|
|
87
|
+
declare const selectUp: () => Promise<void>;
|
|
88
|
+
declare const selectDown: () => Promise<void>;
|
|
87
89
|
declare const refresh: () => Promise<void>;
|
|
88
90
|
declare const focusIndex: (index: number) => Promise<void>;
|
|
89
91
|
declare const clickCurrent: () => Promise<void>;
|
|
@@ -95,14 +97,17 @@ declare const expandRecursively: () => Promise<void>;
|
|
|
95
97
|
declare const newFile: () => Promise<void>;
|
|
96
98
|
declare const newFolder: () => Promise<void>;
|
|
97
99
|
declare const handleClick$1: (index: number) => Promise<void>;
|
|
100
|
+
declare const handleClickAt: (preventDefault: boolean, button: number, ctrlKey: boolean, shiftKey: boolean, x: number, y: number) => Promise<void>;
|
|
98
101
|
declare const handleDrop: (x: number, y: number, fileIds: readonly number[], fileList: FileList | readonly File[]) => Promise<void>;
|
|
99
102
|
declare const rename$1: () => Promise<void>;
|
|
103
|
+
declare const selectAll$1: () => Promise<void>;
|
|
100
104
|
declare const renameDirent: () => Promise<void>;
|
|
101
105
|
declare const cancelEdit: () => Promise<void>;
|
|
102
106
|
declare const acceptEdit: () => Promise<void>;
|
|
103
107
|
declare const updateEditingValue: (value: string) => Promise<void>;
|
|
104
108
|
declare const expandAll: () => Promise<void>;
|
|
105
109
|
declare const handleDragOver: (x: number, y: number) => Promise<void>;
|
|
110
|
+
declare const selectIndices: (indices: readonly number[]) => Promise<void>;
|
|
106
111
|
declare const addWebExtension: (relativePath: string) => Promise<void>;
|
|
107
112
|
declare const addNodeExtension: (relativePath: string) => Promise<void>;
|
|
108
113
|
declare const selectFeature: (name: string) => Promise<void>;
|
|
@@ -166,7 +171,7 @@ declare const isFirefox: () => boolean;
|
|
|
166
171
|
declare const show$1: () => Promise<void>;
|
|
167
172
|
declare const open$3: () => Promise<void>;
|
|
168
173
|
declare const handleInput$1: (value: string) => Promise<void>;
|
|
169
|
-
declare const handleClickAt: (x: number, y: number) => Promise<void>;
|
|
174
|
+
declare const handleClickAt$1: (x: number, y: number) => Promise<void>;
|
|
170
175
|
declare const setValue$1: (value: string) => Promise<void>;
|
|
171
176
|
declare const focusNext$7: () => Promise<void>;
|
|
172
177
|
declare const focusFirst$5: () => Promise<void>;
|
|
@@ -254,7 +259,7 @@ declare namespace EditorCompletion {
|
|
|
254
259
|
export { selectCurrentIndex, selectIndex };
|
|
255
260
|
}
|
|
256
261
|
declare namespace Explorer {
|
|
257
|
-
export { acceptEdit, cancelEdit, clickCurrent, expandAll, expandRecursively, focus$1 as focus, focusFirst$1 as focusFirst, focusIndex, focusLast$1 as focusLast, focusNext$2 as focusNext, handleArrowLeft, handleClick$1 as handleClick, handleDragLeave, handleDragOver, handleDrop, newFile, newFolder, openContextMenu$1 as openContextMenu, refresh, removeDirent, rename$1 as rename, renameDirent, updateEditingValue };
|
|
262
|
+
export { acceptEdit, cancelEdit, clickCurrent, expandAll, expandRecursively, focus$1 as focus, focusFirst$1 as focusFirst, focusIndex, focusLast$1 as focusLast, focusNext$2 as focusNext, handleArrowLeft, handleClick$1 as handleClick, handleClickAt, handleDragLeave, handleDragOver, handleDrop, newFile, newFolder, openContextMenu$1 as openContextMenu, refresh, removeDirent, rename$1 as rename, renameDirent, selectAll$1 as selectAll, selectDown, selectIndices, selectUp, updateEditingValue };
|
|
258
263
|
}
|
|
259
264
|
declare namespace Extension {
|
|
260
265
|
export { addNodeExtension, addWebExtension };
|
|
@@ -293,7 +298,7 @@ declare namespace Problems {
|
|
|
293
298
|
export { show$1 as show };
|
|
294
299
|
}
|
|
295
300
|
declare namespace QuickPick {
|
|
296
|
-
export { executeCommand, focusFirst$5 as focusFirst, focusIndex$1 as focusIndex, focusLast$5 as focusLast, focusNext$7 as focusNext, focusPrevious$5 as focusPrevious, handleClickAt, handleInput$1 as handleInput, open$3 as open, selectCurrentIndex$1 as selectCurrentIndex, selectIndex$2 as selectIndex, selectItem$1 as selectItem, setValue$1 as setValue };
|
|
301
|
+
export { executeCommand, focusFirst$5 as focusFirst, focusIndex$1 as focusIndex, focusLast$5 as focusLast, focusNext$7 as focusNext, focusPrevious$5 as focusPrevious, handleClickAt$1 as handleClickAt, handleInput$1 as handleInput, open$3 as open, selectCurrentIndex$1 as selectCurrentIndex, selectIndex$2 as selectIndex, selectItem$1 as selectItem, setValue$1 as setValue };
|
|
297
302
|
}
|
|
298
303
|
declare namespace Search {
|
|
299
304
|
export { clearSearchResults, collapseDetails, dismissItem, focusFirst$6 as focusFirst, focusIndex$2 as focusIndex, focusNext$8 as focusNext, focusNextPage, focusPrevious$6 as focusPrevious, focusPreviousPage, handleWheel$1 as handleWheel, openDetails, replaceAll, selectIndex$3 as selectIndex, setExcludeValue, setIncludeValue, setReplaceValue, setValue$2 as setValue, toggleMatchCase, toggleMatchWholeWord, togglePreserveCase, toggleReplace, toggleSearchDetails, toggleUseRegularExpression };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lvce-editor/test-with-playwright",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.16.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.16.0"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"@types/jest": "^29.5.14",
|