@lvce-editor/test-worker 5.7.0 → 5.8.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/dist/api.d.ts +4 -3
- package/dist/testWorkerMain.js +5 -0
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -105,6 +105,7 @@ declare const focusNext$2: () => Promise<void>;
|
|
|
105
105
|
declare const selectUp: () => Promise<void>;
|
|
106
106
|
declare const handleDragOverIndex: (index: number) => Promise<void>;
|
|
107
107
|
declare const selectDown: () => Promise<void>;
|
|
108
|
+
declare const collapseAll: () => Promise<void>;
|
|
108
109
|
declare const refresh: () => Promise<void>;
|
|
109
110
|
declare const focusIndex: (index: number) => Promise<void>;
|
|
110
111
|
declare const clickCurrent: () => Promise<void>;
|
|
@@ -249,7 +250,7 @@ declare const selectIndex$3: (index: number) => Promise<void>;
|
|
|
249
250
|
declare const selectCurrentIndex$2: () => Promise<void>;
|
|
250
251
|
declare const executeCommand: (label: string) => Promise<void>;
|
|
251
252
|
declare const clear$1: () => Promise<void>;
|
|
252
|
-
declare const collapseAll: () => Promise<void>;
|
|
253
|
+
declare const collapseAll$1: () => Promise<void>;
|
|
253
254
|
declare const refresh$1: () => Promise<void>;
|
|
254
255
|
declare const handleClickSectionWatch: () => Promise<void>;
|
|
255
256
|
declare const addWatchExpression: (expression: string) => Promise<void>;
|
|
@@ -360,7 +361,7 @@ declare namespace EditorSourceAction {
|
|
|
360
361
|
export { selectCurrentIndex$1 as selectCurrentIndex, selectIndex$1 as selectIndex };
|
|
361
362
|
}
|
|
362
363
|
declare namespace Explorer {
|
|
363
|
-
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, handleCopy, handleCut, handleDragLeave, handleDragOver, handleDragOverIndex, handleDrop, handleInputBlur, handlePaste, newFile, newFolder, openContextMenu$1 as openContextMenu, refresh, removeDirent, rename$1 as rename, renameDirent, selectAll$1 as selectAll, selectDown, selectIndices, selectUp, toggleIndividualSelection, updateEditingValue };
|
|
364
|
+
export { acceptEdit, cancelEdit, clickCurrent, collapseAll, 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, handleCopy, handleCut, handleDragLeave, handleDragOver, handleDragOverIndex, handleDrop, handleInputBlur, handlePaste, newFile, newFolder, openContextMenu$1 as openContextMenu, refresh, removeDirent, rename$1 as rename, renameDirent, selectAll$1 as selectAll, selectDown, selectIndices, selectUp, toggleIndividualSelection, updateEditingValue };
|
|
364
365
|
}
|
|
365
366
|
declare namespace Extension {
|
|
366
367
|
export { addNodeExtension, addWebExtension };
|
|
@@ -405,7 +406,7 @@ declare namespace QuickPick {
|
|
|
405
406
|
export { executeCommand, focusFirst$5 as focusFirst, focusIndex$3 as focusIndex, focusLast$5 as focusLast, focusNext$7 as focusNext, focusPrevious$6 as focusPrevious, handleClickAt$2 as handleClickAt, handleInput$1 as handleInput, open$3 as open, selectCurrentIndex$2 as selectCurrentIndex, selectIndex$3 as selectIndex, selectItem$1 as selectItem, setValue$1 as setValue };
|
|
406
407
|
}
|
|
407
408
|
declare namespace References {
|
|
408
|
-
export { clear$1 as clear, collapseAll, refresh$1 as refresh };
|
|
409
|
+
export { clear$1 as clear, collapseAll$1 as collapseAll, refresh$1 as refresh };
|
|
409
410
|
}
|
|
410
411
|
declare namespace RunAndDebug {
|
|
411
412
|
export { acceptWatchExpressionEdit, addWatchExpression, handleClickSectionWatch, handleRename, handleSpace, handleWatchValueChange, selectIndex$4 as selectIndex, setPauseOnExceptions };
|
package/dist/testWorkerMain.js
CHANGED
|
@@ -2226,6 +2226,10 @@ const handleDragOverIndex = async index => {
|
|
|
2226
2226
|
const selectDown = async () => {
|
|
2227
2227
|
await invoke$1('Explorer.selectDown');
|
|
2228
2228
|
};
|
|
2229
|
+
const collapseAll$1 = async () => {
|
|
2230
|
+
// @ts-ignore
|
|
2231
|
+
await invoke$1('Explorer.collapseAll');
|
|
2232
|
+
};
|
|
2229
2233
|
const refresh$1 = async () => {
|
|
2230
2234
|
await invoke$1('Explorer.refresh');
|
|
2231
2235
|
};
|
|
@@ -2316,6 +2320,7 @@ const TestFrameWorkComponentExplorer = {
|
|
|
2316
2320
|
acceptEdit,
|
|
2317
2321
|
cancelEdit,
|
|
2318
2322
|
clickCurrent,
|
|
2323
|
+
collapseAll: collapseAll$1,
|
|
2319
2324
|
expandAll,
|
|
2320
2325
|
expandRecursively,
|
|
2321
2326
|
focus: focus$1,
|