@lvce-editor/test-worker 4.5.0 → 4.7.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 +37 -24
- package/dist/testWorkerMain.js +74 -32
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -113,15 +113,20 @@ declare const createExecutableFrom: (path: string) => Promise<string>;
|
|
|
113
113
|
declare const focusNext$3: () => Promise<void>;
|
|
114
114
|
declare const setValue: (value: string) => Promise<void>;
|
|
115
115
|
declare const setIconTheme: (id: string) => Promise<void>;
|
|
116
|
+
declare const selectIndex$1: (index: number) => Promise<void>;
|
|
117
|
+
declare const focusNext$4: () => Promise<void>;
|
|
118
|
+
declare const focusPrevious$2: () => Promise<void>;
|
|
119
|
+
declare const focusFirst$2: () => Promise<void>;
|
|
120
|
+
declare const focusLast$2: () => Promise<void>;
|
|
116
121
|
declare const open$1: () => Promise<void>;
|
|
117
122
|
declare const handleInput: (value: string) => Promise<void>;
|
|
118
123
|
declare const handleClick$2: (x: number, y: number) => Promise<void>;
|
|
119
124
|
declare const handleWheel: (deltaMode: number, deltaY: number) => Promise<void>;
|
|
120
125
|
declare const handleDoubleClick: (x: number, y: number) => Promise<void>;
|
|
121
|
-
declare const focusNext$
|
|
122
|
-
declare const focusPrevious$
|
|
123
|
-
declare const focusFirst$
|
|
124
|
-
declare const focusLast$
|
|
126
|
+
declare const focusNext$5: () => Promise<void>;
|
|
127
|
+
declare const focusPrevious$3: () => Promise<void>;
|
|
128
|
+
declare const focusFirst$3: () => Promise<void>;
|
|
129
|
+
declare const focusLast$3: () => Promise<void>;
|
|
125
130
|
declare const toggleRecordingKeys: () => Promise<void>;
|
|
126
131
|
declare const startRecordingKeys: () => Promise<void>;
|
|
127
132
|
declare const clearInput: () => Promise<void>;
|
|
@@ -144,22 +149,26 @@ declare const closeTabsLeft: () => Promise<void>;
|
|
|
144
149
|
declare const closeTabsRight: () => Promise<void>;
|
|
145
150
|
declare const closeOthers: () => Promise<void>;
|
|
146
151
|
declare const closeActiveEditor: () => Promise<void>;
|
|
147
|
-
declare const focusFirst$
|
|
148
|
-
declare const focusNext$
|
|
149
|
-
declare const focusPrevious$
|
|
150
|
-
declare const focusLast$
|
|
152
|
+
declare const focusFirst$4: () => Promise<void>;
|
|
153
|
+
declare const focusNext$6: () => Promise<void>;
|
|
154
|
+
declare const focusPrevious$4: () => Promise<void>;
|
|
155
|
+
declare const focusLast$4: () => Promise<void>;
|
|
151
156
|
declare const open$2: (id: string) => Promise<void>;
|
|
152
157
|
declare const getNodePath: () => Promise<string>;
|
|
153
158
|
declare const isFirefox: () => boolean;
|
|
154
159
|
declare const show$1: () => Promise<void>;
|
|
155
160
|
declare const open$3: () => Promise<void>;
|
|
156
161
|
declare const handleInput$1: (value: string) => Promise<void>;
|
|
162
|
+
declare const handleClickAt: (x: number, y: number) => Promise<void>;
|
|
157
163
|
declare const setValue$1: (value: string) => Promise<void>;
|
|
158
|
-
declare const focusNext$
|
|
164
|
+
declare const focusNext$7: () => Promise<void>;
|
|
165
|
+
declare const focusFirst$5: () => Promise<void>;
|
|
166
|
+
declare const focusLast$5: () => Promise<void>;
|
|
159
167
|
declare const focusIndex$1: (index: number) => Promise<void>;
|
|
160
|
-
declare const focusPrevious$
|
|
168
|
+
declare const focusPrevious$5: () => Promise<void>;
|
|
161
169
|
declare const selectItem$1: (label: string) => Promise<void>;
|
|
162
|
-
declare const selectIndex$
|
|
170
|
+
declare const selectIndex$2: (index: number) => Promise<void>;
|
|
171
|
+
declare const selectCurrentIndex$1: () => Promise<void>;
|
|
163
172
|
declare const executeCommand: (label: string) => Promise<void>;
|
|
164
173
|
declare const setValue$2: (value: string) => Promise<void>;
|
|
165
174
|
declare const setReplaceValue: (value: string) => Promise<void>;
|
|
@@ -170,14 +179,14 @@ declare const clearSearchResults: () => Promise<void>;
|
|
|
170
179
|
declare const openDetails: () => Promise<void>;
|
|
171
180
|
declare const collapseDetails: () => Promise<void>;
|
|
172
181
|
declare const dismissItem: () => Promise<void>;
|
|
173
|
-
declare const focusFirst$
|
|
182
|
+
declare const focusFirst$6: () => Promise<void>;
|
|
174
183
|
declare const focusIndex$2: (index: number) => Promise<void>;
|
|
175
|
-
declare const selectIndex$
|
|
176
|
-
declare const focusNext$
|
|
184
|
+
declare const selectIndex$3: (index: number) => Promise<void>;
|
|
185
|
+
declare const focusNext$8: () => Promise<void>;
|
|
177
186
|
declare const handleWheel$1: (deltaMode: number, deltaY: number) => Promise<void>;
|
|
178
187
|
declare const focusNextPage: () => Promise<void>;
|
|
179
188
|
declare const focusPreviousPage: () => Promise<void>;
|
|
180
|
-
declare const focusPrevious$
|
|
189
|
+
declare const focusPrevious$6: () => Promise<void>;
|
|
181
190
|
declare const toggleSearchDetails: () => Promise<void>;
|
|
182
191
|
declare const toggleMatchCase: () => Promise<void>;
|
|
183
192
|
declare const toggleMatchWholeWord: () => Promise<void>;
|
|
@@ -192,11 +201,11 @@ declare const handleInput$2: (text: string) => Promise<void>;
|
|
|
192
201
|
declare const update$1: () => Promise<void>;
|
|
193
202
|
declare const closeMenu: () => Promise<void>;
|
|
194
203
|
declare const focus$2: () => Promise<void>;
|
|
195
|
-
declare const focusFirst$
|
|
204
|
+
declare const focusFirst$7: () => Promise<void>;
|
|
196
205
|
declare const focusIndex$3: (index: number) => Promise<void>;
|
|
197
|
-
declare const focusLast$
|
|
198
|
-
declare const focusNext$
|
|
199
|
-
declare const focusPrevious$
|
|
206
|
+
declare const focusLast$6: () => Promise<void>;
|
|
207
|
+
declare const focusNext$9: () => Promise<void>;
|
|
208
|
+
declare const focusPrevious$7: () => Promise<void>;
|
|
200
209
|
declare const handleKeyArrowDown: () => Promise<void>;
|
|
201
210
|
declare const handleKeyArrowLeft: () => Promise<void>;
|
|
202
211
|
declare const handleKeyArrowRight: () => Promise<void>;
|
|
@@ -255,14 +264,17 @@ declare namespace FindWidget {
|
|
|
255
264
|
declare namespace IconTheme {
|
|
256
265
|
export { setIconTheme };
|
|
257
266
|
}
|
|
267
|
+
declare namespace IframeInspector {
|
|
268
|
+
export { focusFirst$2 as focusFirst, focusLast$2 as focusLast, focusNext$4 as focusNext, focusPrevious$2 as focusPrevious, selectIndex$1 as selectIndex };
|
|
269
|
+
}
|
|
258
270
|
declare namespace KeyBindingsEditor {
|
|
259
|
-
export { addKeyBinding, changeWhenExpression, clearInput, copyCommandId, copyCommandTitle, focusFirst$
|
|
271
|
+
export { addKeyBinding, changeWhenExpression, clearInput, copyCommandId, copyCommandTitle, focusFirst$3 as focusFirst, focusLast$3 as focusLast, focusNext$5 as focusNext, focusPrevious$3 as focusPrevious, handleClick$2 as handleClick, handleContextMenu$1 as handleContextMenu, handleDoubleClick, handleInput, handleWheel, open$1 as open, removeKeyBinding, resetKeyBinding, showSameKeyBindings, sortByPrecedence, startRecordingKeys, stopRecordingKeys, toggleRecordingKeys };
|
|
260
272
|
}
|
|
261
273
|
declare namespace KeyBoard {
|
|
262
274
|
export { press };
|
|
263
275
|
}
|
|
264
276
|
declare namespace Main {
|
|
265
|
-
export { closeActiveEditor, closeAllEditors, closeOthers, closeTabsLeft, closeTabsRight, focusFirst$
|
|
277
|
+
export { closeActiveEditor, closeAllEditors, closeOthers, closeTabsLeft, closeTabsRight, focusFirst$4 as focusFirst, focusLast$4 as focusLast, focusNext$6 as focusNext, focusPrevious$4 as focusPrevious, openKeyBindings, openUri, splitRight };
|
|
266
278
|
}
|
|
267
279
|
declare namespace Panel {
|
|
268
280
|
export { open$2 as open };
|
|
@@ -274,10 +286,10 @@ declare namespace Problems {
|
|
|
274
286
|
export { show$1 as show };
|
|
275
287
|
}
|
|
276
288
|
declare namespace QuickPick {
|
|
277
|
-
export { executeCommand, focusIndex$1 as focusIndex, focusNext$
|
|
289
|
+
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 };
|
|
278
290
|
}
|
|
279
291
|
declare namespace Search {
|
|
280
|
-
export { clearSearchResults, collapseDetails, dismissItem, focusFirst$
|
|
292
|
+
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 };
|
|
281
293
|
}
|
|
282
294
|
declare namespace Settings {
|
|
283
295
|
export { update };
|
|
@@ -292,7 +304,7 @@ declare namespace StatusBar {
|
|
|
292
304
|
export { update$1 as update };
|
|
293
305
|
}
|
|
294
306
|
declare namespace TitleBarMenuBar {
|
|
295
|
-
export { closeMenu, focus$2 as focus, focusFirst$
|
|
307
|
+
export { closeMenu, focus$2 as focus, focusFirst$7 as focusFirst, focusIndex$3 as focusIndex, focusLast$6 as focusLast, focusNext$9 as focusNext, focusPrevious$7 as focusPrevious, handleKeyArrowDown, handleKeyArrowLeft, handleKeyArrowRight, handleKeyArrowUp, handleKeyEnd, handleKeyEscape, handleKeyHome, handleKeySpace, toggleIndex, toggleMenu };
|
|
296
308
|
}
|
|
297
309
|
declare namespace WebView {
|
|
298
310
|
export { fromId };
|
|
@@ -313,6 +325,7 @@ export interface TestApi {
|
|
|
313
325
|
readonly FileSystem: typeof FileSystem,
|
|
314
326
|
readonly FindWidget: typeof FindWidget,
|
|
315
327
|
readonly IconTheme: typeof IconTheme,
|
|
328
|
+
readonly IframeInspector: typeof IframeInspector,
|
|
316
329
|
readonly KeyBindingsEditor: typeof KeyBindingsEditor,
|
|
317
330
|
readonly KeyBoard: typeof KeyBoard,
|
|
318
331
|
readonly Main: typeof Main,
|
package/dist/testWorkerMain.js
CHANGED
|
@@ -1334,17 +1334,17 @@ const handleClickClose = async () => {
|
|
|
1334
1334
|
const handleClickCopy = async () => {
|
|
1335
1335
|
return invoke('About.handleClickCopy');
|
|
1336
1336
|
};
|
|
1337
|
-
const focusNext$
|
|
1337
|
+
const focusNext$9 = async () => {
|
|
1338
1338
|
return invoke('About.focusNext');
|
|
1339
1339
|
};
|
|
1340
|
-
const focusPrevious$
|
|
1340
|
+
const focusPrevious$7 = async () => {
|
|
1341
1341
|
return invoke('About.focusPrevious');
|
|
1342
1342
|
};
|
|
1343
1343
|
|
|
1344
1344
|
const TestFrameWorkComponentAbout = {
|
|
1345
1345
|
__proto__: null,
|
|
1346
|
-
focusNext: focusNext$
|
|
1347
|
-
focusPrevious: focusPrevious$
|
|
1346
|
+
focusNext: focusNext$9,
|
|
1347
|
+
focusPrevious: focusPrevious$7,
|
|
1348
1348
|
handleClickClose,
|
|
1349
1349
|
handleClickCopy,
|
|
1350
1350
|
handleClickOk,
|
|
@@ -1354,16 +1354,16 @@ const TestFrameWorkComponentAbout = {
|
|
|
1354
1354
|
const focus$2 = async () => {
|
|
1355
1355
|
await invoke('ActivityBar.focus');
|
|
1356
1356
|
};
|
|
1357
|
-
const focusFirst$
|
|
1357
|
+
const focusFirst$7 = async () => {
|
|
1358
1358
|
await invoke('ActivityBar.focusFirst');
|
|
1359
1359
|
};
|
|
1360
|
-
const focusLast$
|
|
1360
|
+
const focusLast$6 = async () => {
|
|
1361
1361
|
await invoke('ActivityBar.focusLast');
|
|
1362
1362
|
};
|
|
1363
|
-
const focusNext$
|
|
1363
|
+
const focusNext$8 = async () => {
|
|
1364
1364
|
await invoke('ActivityBar.focusNext');
|
|
1365
1365
|
};
|
|
1366
|
-
const focusPrevious$
|
|
1366
|
+
const focusPrevious$6 = async () => {
|
|
1367
1367
|
await invoke('ActivityBar.focusPrevious');
|
|
1368
1368
|
};
|
|
1369
1369
|
const handleClick$2 = async index => {
|
|
@@ -1379,10 +1379,10 @@ const selectCurrent = async () => {
|
|
|
1379
1379
|
const TestFrameworkComponentActivityBar = {
|
|
1380
1380
|
__proto__: null,
|
|
1381
1381
|
focus: focus$2,
|
|
1382
|
-
focusFirst: focusFirst$
|
|
1383
|
-
focusLast: focusLast$
|
|
1384
|
-
focusNext: focusNext$
|
|
1385
|
-
focusPrevious: focusPrevious$
|
|
1382
|
+
focusFirst: focusFirst$7,
|
|
1383
|
+
focusLast: focusLast$6,
|
|
1384
|
+
focusNext: focusNext$8,
|
|
1385
|
+
focusPrevious: focusPrevious$6,
|
|
1386
1386
|
handleClick: handleClick$2,
|
|
1387
1387
|
handleContextMenu: handleContextMenu$1,
|
|
1388
1388
|
selectCurrent
|
|
@@ -1710,17 +1710,17 @@ const TestFrameWorkComponentEditor = {
|
|
|
1710
1710
|
type
|
|
1711
1711
|
};
|
|
1712
1712
|
|
|
1713
|
-
const selectIndex$
|
|
1713
|
+
const selectIndex$3 = async index => {
|
|
1714
1714
|
await invoke('EditorCompletion.selectIndex', index);
|
|
1715
1715
|
};
|
|
1716
|
-
const selectCurrentIndex = async () => {
|
|
1716
|
+
const selectCurrentIndex$1 = async () => {
|
|
1717
1717
|
await invoke('EditorCompletion.selectCurrentIndex');
|
|
1718
1718
|
};
|
|
1719
1719
|
|
|
1720
1720
|
const TestFrameWorkComponentEditorCompletion = {
|
|
1721
1721
|
__proto__: null,
|
|
1722
|
-
selectCurrentIndex,
|
|
1723
|
-
selectIndex: selectIndex$
|
|
1722
|
+
selectCurrentIndex: selectCurrentIndex$1,
|
|
1723
|
+
selectIndex: selectIndex$3
|
|
1724
1724
|
};
|
|
1725
1725
|
|
|
1726
1726
|
const openContextMenu = async index => {
|
|
@@ -1729,7 +1729,7 @@ const openContextMenu = async index => {
|
|
|
1729
1729
|
const focus$1 = async () => {
|
|
1730
1730
|
await invoke('Explorer.focusIndex', -1);
|
|
1731
1731
|
};
|
|
1732
|
-
const focusNext$
|
|
1732
|
+
const focusNext$7 = async () => {
|
|
1733
1733
|
await invoke('Explorer.focusNext');
|
|
1734
1734
|
};
|
|
1735
1735
|
const focusIndex$3 = async index => {
|
|
@@ -1741,10 +1741,10 @@ const clickCurrent = async () => {
|
|
|
1741
1741
|
const handleArrowLeft = async () => {
|
|
1742
1742
|
await invoke('Explorer.handleArrowLeft');
|
|
1743
1743
|
};
|
|
1744
|
-
const focusLast$
|
|
1744
|
+
const focusLast$5 = async () => {
|
|
1745
1745
|
await invoke('Explorer.focusLast');
|
|
1746
1746
|
};
|
|
1747
|
-
const focusFirst$
|
|
1747
|
+
const focusFirst$6 = async () => {
|
|
1748
1748
|
await invoke('Explorer.focusFirst');
|
|
1749
1749
|
};
|
|
1750
1750
|
const removeDirent = async () => {
|
|
@@ -1783,10 +1783,10 @@ const TestFrameWorkComponentExplorer = {
|
|
|
1783
1783
|
expandAll,
|
|
1784
1784
|
expandRecursively,
|
|
1785
1785
|
focus: focus$1,
|
|
1786
|
-
focusFirst: focusFirst$
|
|
1786
|
+
focusFirst: focusFirst$6,
|
|
1787
1787
|
focusIndex: focusIndex$3,
|
|
1788
|
-
focusLast: focusLast$
|
|
1789
|
-
focusNext: focusNext$
|
|
1788
|
+
focusLast: focusLast$5,
|
|
1789
|
+
focusNext: focusNext$7,
|
|
1790
1790
|
handleArrowLeft,
|
|
1791
1791
|
handleClick: handleClick$1,
|
|
1792
1792
|
newFile,
|
|
@@ -1893,7 +1893,7 @@ const TestFrameWorkComponentFileSystem = {
|
|
|
1893
1893
|
writeFile
|
|
1894
1894
|
};
|
|
1895
1895
|
|
|
1896
|
-
const focusNext$
|
|
1896
|
+
const focusNext$6 = async () => {
|
|
1897
1897
|
await invoke('FindWidget.focusNext');
|
|
1898
1898
|
};
|
|
1899
1899
|
const setValue$2 = async value => {
|
|
@@ -1902,7 +1902,7 @@ const setValue$2 = async value => {
|
|
|
1902
1902
|
|
|
1903
1903
|
const TestFrameWorkComponentFindWidget = {
|
|
1904
1904
|
__proto__: null,
|
|
1905
|
-
focusNext: focusNext$
|
|
1905
|
+
focusNext: focusNext$6,
|
|
1906
1906
|
setValue: setValue$2
|
|
1907
1907
|
};
|
|
1908
1908
|
|
|
@@ -1915,6 +1915,31 @@ const TestFrameWorkComponentIconTheme = {
|
|
|
1915
1915
|
setIconTheme
|
|
1916
1916
|
};
|
|
1917
1917
|
|
|
1918
|
+
const selectIndex$2 = async index => {
|
|
1919
|
+
return invoke('IframeInspector.selectIndex', index);
|
|
1920
|
+
};
|
|
1921
|
+
const focusNext$5 = async () => {
|
|
1922
|
+
return invoke('IframeInspector.focusNext');
|
|
1923
|
+
};
|
|
1924
|
+
const focusPrevious$5 = async () => {
|
|
1925
|
+
return invoke('IframeInspector.focusPrevious');
|
|
1926
|
+
};
|
|
1927
|
+
const focusFirst$5 = async () => {
|
|
1928
|
+
return invoke('IframeInspector.focusFirst');
|
|
1929
|
+
};
|
|
1930
|
+
const focusLast$4 = async () => {
|
|
1931
|
+
return invoke('IframeInspector.focusLast');
|
|
1932
|
+
};
|
|
1933
|
+
|
|
1934
|
+
const TestFrameWorkComponentIframeInspector = {
|
|
1935
|
+
__proto__: null,
|
|
1936
|
+
focusFirst: focusFirst$5,
|
|
1937
|
+
focusLast: focusLast$4,
|
|
1938
|
+
focusNext: focusNext$5,
|
|
1939
|
+
focusPrevious: focusPrevious$5,
|
|
1940
|
+
selectIndex: selectIndex$2
|
|
1941
|
+
};
|
|
1942
|
+
|
|
1918
1943
|
const open$3 = async () => {
|
|
1919
1944
|
await invoke('Main.openUri', 'app://keybindings');
|
|
1920
1945
|
};
|
|
@@ -1936,10 +1961,10 @@ const focusNext$4 = () => {
|
|
|
1936
1961
|
const focusPrevious$4 = () => {
|
|
1937
1962
|
return invoke('KeyBindings.focusPrevious');
|
|
1938
1963
|
};
|
|
1939
|
-
const focusFirst$
|
|
1964
|
+
const focusFirst$4 = () => {
|
|
1940
1965
|
return invoke('KeyBindings.focusFirst');
|
|
1941
1966
|
};
|
|
1942
|
-
const focusLast$
|
|
1967
|
+
const focusLast$3 = () => {
|
|
1943
1968
|
return invoke('KeyBindings.focusLast');
|
|
1944
1969
|
};
|
|
1945
1970
|
const toggleRecordingKeys = () => {
|
|
@@ -1989,8 +2014,8 @@ const TestFrameWorkComponentKeyBindingsEditor = {
|
|
|
1989
2014
|
clearInput,
|
|
1990
2015
|
copyCommandId,
|
|
1991
2016
|
copyCommandTitle,
|
|
1992
|
-
focusFirst: focusFirst$
|
|
1993
|
-
focusLast: focusLast$
|
|
2017
|
+
focusFirst: focusFirst$4,
|
|
2018
|
+
focusLast: focusLast$3,
|
|
1994
2019
|
focusNext: focusNext$4,
|
|
1995
2020
|
focusPrevious: focusPrevious$4,
|
|
1996
2021
|
handleClick,
|
|
@@ -2086,7 +2111,7 @@ const closeOthers = async () => {
|
|
|
2086
2111
|
const closeActiveEditor = async () => {
|
|
2087
2112
|
await invoke('Main.closeActiveEditor');
|
|
2088
2113
|
};
|
|
2089
|
-
const focusFirst$
|
|
2114
|
+
const focusFirst$3 = async () => {
|
|
2090
2115
|
await invoke('Main.focusFirst');
|
|
2091
2116
|
};
|
|
2092
2117
|
const focusNext$3 = async () => {
|
|
@@ -2095,7 +2120,7 @@ const focusNext$3 = async () => {
|
|
|
2095
2120
|
const focusPrevious$3 = async () => {
|
|
2096
2121
|
await invoke('Main.focusPrevious');
|
|
2097
2122
|
};
|
|
2098
|
-
const focusLast$
|
|
2123
|
+
const focusLast$2 = async () => {
|
|
2099
2124
|
await invoke('Main.focusLast');
|
|
2100
2125
|
};
|
|
2101
2126
|
|
|
@@ -2106,8 +2131,8 @@ const TestFrameWorkComponentMain = {
|
|
|
2106
2131
|
closeOthers,
|
|
2107
2132
|
closeTabsLeft,
|
|
2108
2133
|
closeTabsRight,
|
|
2109
|
-
focusFirst: focusFirst$
|
|
2110
|
-
focusLast: focusLast$
|
|
2134
|
+
focusFirst: focusFirst$3,
|
|
2135
|
+
focusLast: focusLast$2,
|
|
2111
2136
|
focusNext: focusNext$3,
|
|
2112
2137
|
focusPrevious: focusPrevious$3,
|
|
2113
2138
|
openKeyBindings,
|
|
@@ -2176,12 +2201,21 @@ const open$1 = async () => {
|
|
|
2176
2201
|
const handleInput$1 = async value => {
|
|
2177
2202
|
await invoke('QuickPick.handleInput', value, 0);
|
|
2178
2203
|
};
|
|
2204
|
+
const handleClickAt = async (x, y) => {
|
|
2205
|
+
await invoke('QuickPick.handleClickAt', x, y);
|
|
2206
|
+
};
|
|
2179
2207
|
const setValue$1 = async value => {
|
|
2180
2208
|
await invoke('QuickPick.setValue', value);
|
|
2181
2209
|
};
|
|
2182
2210
|
const focusNext$2 = async () => {
|
|
2183
2211
|
await invoke('QuickPick.focusNext');
|
|
2184
2212
|
};
|
|
2213
|
+
const focusFirst$2 = async () => {
|
|
2214
|
+
await invoke('QuickPick.focusFirst');
|
|
2215
|
+
};
|
|
2216
|
+
const focusLast$1 = async () => {
|
|
2217
|
+
await invoke('QuickPick.focusLast');
|
|
2218
|
+
};
|
|
2185
2219
|
const focusIndex$2 = async index => {
|
|
2186
2220
|
await invoke('QuickPick.focusIndex', index);
|
|
2187
2221
|
};
|
|
@@ -2194,6 +2228,9 @@ const selectItem = async label => {
|
|
|
2194
2228
|
const selectIndex$1 = async index => {
|
|
2195
2229
|
await invoke('QuickPick.selectIndex', index);
|
|
2196
2230
|
};
|
|
2231
|
+
const selectCurrentIndex = async () => {
|
|
2232
|
+
await invoke('QuickPick.selectCurrentIndex');
|
|
2233
|
+
};
|
|
2197
2234
|
const executeCommand = async label => {
|
|
2198
2235
|
await invoke('QuickPick.showCommands');
|
|
2199
2236
|
await invoke('QuickPick.handleInput', label, 0);
|
|
@@ -2203,11 +2240,15 @@ const executeCommand = async label => {
|
|
|
2203
2240
|
const TestFrameWorkComponentQuickPick = {
|
|
2204
2241
|
__proto__: null,
|
|
2205
2242
|
executeCommand,
|
|
2243
|
+
focusFirst: focusFirst$2,
|
|
2206
2244
|
focusIndex: focusIndex$2,
|
|
2245
|
+
focusLast: focusLast$1,
|
|
2207
2246
|
focusNext: focusNext$2,
|
|
2208
2247
|
focusPrevious: focusPrevious$2,
|
|
2248
|
+
handleClickAt,
|
|
2209
2249
|
handleInput: handleInput$1,
|
|
2210
2250
|
open: open$1,
|
|
2251
|
+
selectCurrentIndex,
|
|
2211
2252
|
selectIndex: selectIndex$1,
|
|
2212
2253
|
selectItem,
|
|
2213
2254
|
setValue: setValue$1
|
|
@@ -2527,6 +2568,7 @@ const TestFrameWorkComponent = {
|
|
|
2527
2568
|
FileSystem: TestFrameWorkComponentFileSystem,
|
|
2528
2569
|
FindWidget: TestFrameWorkComponentFindWidget,
|
|
2529
2570
|
IconTheme: TestFrameWorkComponentIconTheme,
|
|
2571
|
+
IframeInspector: TestFrameWorkComponentIframeInspector,
|
|
2530
2572
|
KeyBindingsEditor: TestFrameWorkComponentKeyBindingsEditor,
|
|
2531
2573
|
KeyBoard: TestFrameWorkComponentKeyBoard,
|
|
2532
2574
|
Main: TestFrameWorkComponentMain,
|