@lvce-editor/test-with-playwright 2.14.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 +10 -3
- package/package.json +2 -2
package/api.d.ts
CHANGED
|
@@ -81,8 +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: () => Promise<void>;
|
|
84
85
|
declare const focus$1: () => Promise<void>;
|
|
85
86
|
declare const focusNext$2: () => Promise<void>;
|
|
87
|
+
declare const selectUp: () => Promise<void>;
|
|
88
|
+
declare const selectDown: () => Promise<void>;
|
|
86
89
|
declare const refresh: () => Promise<void>;
|
|
87
90
|
declare const focusIndex: (index: number) => Promise<void>;
|
|
88
91
|
declare const clickCurrent: () => Promise<void>;
|
|
@@ -94,13 +97,17 @@ declare const expandRecursively: () => Promise<void>;
|
|
|
94
97
|
declare const newFile: () => Promise<void>;
|
|
95
98
|
declare const newFolder: () => Promise<void>;
|
|
96
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>;
|
|
97
101
|
declare const handleDrop: (x: number, y: number, fileIds: readonly number[], fileList: FileList | readonly File[]) => Promise<void>;
|
|
98
102
|
declare const rename$1: () => Promise<void>;
|
|
103
|
+
declare const selectAll$1: () => Promise<void>;
|
|
99
104
|
declare const renameDirent: () => Promise<void>;
|
|
100
105
|
declare const cancelEdit: () => Promise<void>;
|
|
101
106
|
declare const acceptEdit: () => Promise<void>;
|
|
102
107
|
declare const updateEditingValue: (value: string) => Promise<void>;
|
|
103
108
|
declare const expandAll: () => Promise<void>;
|
|
109
|
+
declare const handleDragOver: (x: number, y: number) => Promise<void>;
|
|
110
|
+
declare const selectIndices: (indices: readonly number[]) => Promise<void>;
|
|
104
111
|
declare const addWebExtension: (relativePath: string) => Promise<void>;
|
|
105
112
|
declare const addNodeExtension: (relativePath: string) => Promise<void>;
|
|
106
113
|
declare const selectFeature: (name: string) => Promise<void>;
|
|
@@ -164,7 +171,7 @@ declare const isFirefox: () => boolean;
|
|
|
164
171
|
declare const show$1: () => Promise<void>;
|
|
165
172
|
declare const open$3: () => Promise<void>;
|
|
166
173
|
declare const handleInput$1: (value: string) => Promise<void>;
|
|
167
|
-
declare const handleClickAt: (x: number, y: number) => Promise<void>;
|
|
174
|
+
declare const handleClickAt$1: (x: number, y: number) => Promise<void>;
|
|
168
175
|
declare const setValue$1: (value: string) => Promise<void>;
|
|
169
176
|
declare const focusNext$7: () => Promise<void>;
|
|
170
177
|
declare const focusFirst$5: () => Promise<void>;
|
|
@@ -252,7 +259,7 @@ declare namespace EditorCompletion {
|
|
|
252
259
|
export { selectCurrentIndex, selectIndex };
|
|
253
260
|
}
|
|
254
261
|
declare namespace Explorer {
|
|
255
|
-
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, 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 };
|
|
256
263
|
}
|
|
257
264
|
declare namespace Extension {
|
|
258
265
|
export { addNodeExtension, addWebExtension };
|
|
@@ -291,7 +298,7 @@ declare namespace Problems {
|
|
|
291
298
|
export { show$1 as show };
|
|
292
299
|
}
|
|
293
300
|
declare namespace QuickPick {
|
|
294
|
-
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 };
|
|
295
302
|
}
|
|
296
303
|
declare namespace Search {
|
|
297
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",
|