@lvce-editor/test-with-playwright 2.16.0 → 2.17.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 -2
- package/package.json +2 -2
package/api.d.ts
CHANGED
|
@@ -82,6 +82,8 @@ 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
84
|
declare const handleDragLeave: () => Promise<void>;
|
|
85
|
+
declare const handleBlur: () => Promise<void>;
|
|
86
|
+
declare const handleInputBlur: () => Promise<void>;
|
|
85
87
|
declare const focus$1: () => Promise<void>;
|
|
86
88
|
declare const focusNext$2: () => Promise<void>;
|
|
87
89
|
declare const selectUp: () => Promise<void>;
|
|
@@ -208,8 +210,10 @@ declare const toggleReplace: () => Promise<void>;
|
|
|
208
210
|
declare const update: (settings: any) => Promise<void>;
|
|
209
211
|
declare const open$4: (id: string) => Promise<void>;
|
|
210
212
|
declare const hide: () => Promise<void>;
|
|
213
|
+
declare const selectIndex$4: (index: number) => Promise<void>;
|
|
211
214
|
declare const acceptInput: () => Promise<void>;
|
|
212
215
|
declare const handleInput$2: (text: string) => Promise<void>;
|
|
216
|
+
declare const handleClickSourceControlButtons: (index: number, name: string) => Promise<void>;
|
|
213
217
|
declare const update$1: () => Promise<void>;
|
|
214
218
|
declare const closeMenu: () => Promise<void>;
|
|
215
219
|
declare const focus$2: () => Promise<void>;
|
|
@@ -259,7 +263,7 @@ declare namespace EditorCompletion {
|
|
|
259
263
|
export { selectCurrentIndex, selectIndex };
|
|
260
264
|
}
|
|
261
265
|
declare namespace Explorer {
|
|
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 };
|
|
266
|
+
export { acceptEdit, cancelEdit, clickCurrent, expandAll, expandRecursively, focus$1 as focus, focusFirst$1 as focusFirst, focusIndex, focusLast$1 as focusLast, focusNext$2 as focusNext, handleArrowLeft, handleBlur, handleClick$1 as handleClick, handleClickAt, handleDragLeave, handleDragOver, handleDrop, handleInputBlur, newFile, newFolder, openContextMenu$1 as openContextMenu, refresh, removeDirent, rename$1 as rename, renameDirent, selectAll$1 as selectAll, selectDown, selectIndices, selectUp, updateEditingValue };
|
|
263
267
|
}
|
|
264
268
|
declare namespace Extension {
|
|
265
269
|
export { addNodeExtension, addWebExtension };
|
|
@@ -310,7 +314,7 @@ declare namespace SideBar {
|
|
|
310
314
|
export { hide, open$4 as open };
|
|
311
315
|
}
|
|
312
316
|
declare namespace SourceControl {
|
|
313
|
-
export { acceptInput, handleInput$2 as handleInput };
|
|
317
|
+
export { acceptInput, handleClickSourceControlButtons, handleInput$2 as handleInput, selectIndex$4 as selectIndex };
|
|
314
318
|
}
|
|
315
319
|
declare namespace StatusBar {
|
|
316
320
|
export { update$1 as update };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lvce-editor/test-with-playwright",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.17.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.17.0"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"@types/jest": "^29.5.14",
|