@lvce-editor/test-with-playwright 2.14.0 → 2.15.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 +3 -1
- package/package.json +2 -2
package/api.d.ts
CHANGED
|
@@ -81,6 +81,7 @@ 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: (index: number) => Promise<void>;
|
|
84
85
|
declare const focus$1: () => Promise<void>;
|
|
85
86
|
declare const focusNext$2: () => Promise<void>;
|
|
86
87
|
declare const refresh: () => Promise<void>;
|
|
@@ -101,6 +102,7 @@ declare const cancelEdit: () => Promise<void>;
|
|
|
101
102
|
declare const acceptEdit: () => Promise<void>;
|
|
102
103
|
declare const updateEditingValue: (value: string) => Promise<void>;
|
|
103
104
|
declare const expandAll: () => Promise<void>;
|
|
105
|
+
declare const handleDragOver: (x: number, y: number) => Promise<void>;
|
|
104
106
|
declare const addWebExtension: (relativePath: string) => Promise<void>;
|
|
105
107
|
declare const addNodeExtension: (relativePath: string) => Promise<void>;
|
|
106
108
|
declare const selectFeature: (name: string) => Promise<void>;
|
|
@@ -252,7 +254,7 @@ declare namespace EditorCompletion {
|
|
|
252
254
|
export { selectCurrentIndex, selectIndex };
|
|
253
255
|
}
|
|
254
256
|
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 };
|
|
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 };
|
|
256
258
|
}
|
|
257
259
|
declare namespace Extension {
|
|
258
260
|
export { addNodeExtension, addWebExtension };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lvce-editor/test-with-playwright",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.15.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.15.0"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"@types/jest": "^29.5.14",
|