@lvce-editor/test-worker 4.6.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 CHANGED
@@ -162,6 +162,8 @@ declare const handleInput$1: (value: string) => Promise<void>;
162
162
  declare const handleClickAt: (x: number, y: number) => Promise<void>;
163
163
  declare const setValue$1: (value: string) => Promise<void>;
164
164
  declare const focusNext$7: () => Promise<void>;
165
+ declare const focusFirst$5: () => Promise<void>;
166
+ declare const focusLast$5: () => Promise<void>;
165
167
  declare const focusIndex$1: (index: number) => Promise<void>;
166
168
  declare const focusPrevious$5: () => Promise<void>;
167
169
  declare const selectItem$1: (label: string) => Promise<void>;
@@ -177,7 +179,7 @@ declare const clearSearchResults: () => Promise<void>;
177
179
  declare const openDetails: () => Promise<void>;
178
180
  declare const collapseDetails: () => Promise<void>;
179
181
  declare const dismissItem: () => Promise<void>;
180
- declare const focusFirst$5: () => Promise<void>;
182
+ declare const focusFirst$6: () => Promise<void>;
181
183
  declare const focusIndex$2: (index: number) => Promise<void>;
182
184
  declare const selectIndex$3: (index: number) => Promise<void>;
183
185
  declare const focusNext$8: () => Promise<void>;
@@ -199,9 +201,9 @@ declare const handleInput$2: (text: string) => Promise<void>;
199
201
  declare const update$1: () => Promise<void>;
200
202
  declare const closeMenu: () => Promise<void>;
201
203
  declare const focus$2: () => Promise<void>;
202
- declare const focusFirst$6: () => Promise<void>;
204
+ declare const focusFirst$7: () => Promise<void>;
203
205
  declare const focusIndex$3: (index: number) => Promise<void>;
204
- declare const focusLast$5: () => Promise<void>;
206
+ declare const focusLast$6: () => Promise<void>;
205
207
  declare const focusNext$9: () => Promise<void>;
206
208
  declare const focusPrevious$7: () => Promise<void>;
207
209
  declare const handleKeyArrowDown: () => Promise<void>;
@@ -284,10 +286,10 @@ declare namespace Problems {
284
286
  export { show$1 as show };
285
287
  }
286
288
  declare namespace QuickPick {
287
- export { executeCommand, focusIndex$1 as focusIndex, 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 };
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 };
288
290
  }
289
291
  declare namespace Search {
290
- export { clearSearchResults, collapseDetails, dismissItem, focusFirst$5 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 };
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 };
291
293
  }
292
294
  declare namespace Settings {
293
295
  export { update };
@@ -302,7 +304,7 @@ declare namespace StatusBar {
302
304
  export { update$1 as update };
303
305
  }
304
306
  declare namespace TitleBarMenuBar {
305
- export { closeMenu, focus$2 as focus, focusFirst$6 as focusFirst, focusIndex$3 as focusIndex, focusLast$5 as focusLast, focusNext$9 as focusNext, focusPrevious$7 as focusPrevious, handleKeyArrowDown, handleKeyArrowLeft, handleKeyArrowRight, handleKeyArrowUp, handleKeyEnd, handleKeyEscape, handleKeyHome, handleKeySpace, toggleIndex, toggleMenu };
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 };
306
308
  }
307
309
  declare namespace WebView {
308
310
  export { fromId };
@@ -1354,10 +1354,10 @@ const TestFrameWorkComponentAbout = {
1354
1354
  const focus$2 = async () => {
1355
1355
  await invoke('ActivityBar.focus');
1356
1356
  };
1357
- const focusFirst$6 = async () => {
1357
+ const focusFirst$7 = async () => {
1358
1358
  await invoke('ActivityBar.focusFirst');
1359
1359
  };
1360
- const focusLast$5 = async () => {
1360
+ const focusLast$6 = async () => {
1361
1361
  await invoke('ActivityBar.focusLast');
1362
1362
  };
1363
1363
  const focusNext$8 = async () => {
@@ -1379,8 +1379,8 @@ const selectCurrent = async () => {
1379
1379
  const TestFrameworkComponentActivityBar = {
1380
1380
  __proto__: null,
1381
1381
  focus: focus$2,
1382
- focusFirst: focusFirst$6,
1383
- focusLast: focusLast$5,
1382
+ focusFirst: focusFirst$7,
1383
+ focusLast: focusLast$6,
1384
1384
  focusNext: focusNext$8,
1385
1385
  focusPrevious: focusPrevious$6,
1386
1386
  handleClick: handleClick$2,
@@ -1741,10 +1741,10 @@ const clickCurrent = async () => {
1741
1741
  const handleArrowLeft = async () => {
1742
1742
  await invoke('Explorer.handleArrowLeft');
1743
1743
  };
1744
- const focusLast$4 = async () => {
1744
+ const focusLast$5 = async () => {
1745
1745
  await invoke('Explorer.focusLast');
1746
1746
  };
1747
- const focusFirst$5 = async () => {
1747
+ const focusFirst$6 = async () => {
1748
1748
  await invoke('Explorer.focusFirst');
1749
1749
  };
1750
1750
  const removeDirent = async () => {
@@ -1783,9 +1783,9 @@ const TestFrameWorkComponentExplorer = {
1783
1783
  expandAll,
1784
1784
  expandRecursively,
1785
1785
  focus: focus$1,
1786
- focusFirst: focusFirst$5,
1786
+ focusFirst: focusFirst$6,
1787
1787
  focusIndex: focusIndex$3,
1788
- focusLast: focusLast$4,
1788
+ focusLast: focusLast$5,
1789
1789
  focusNext: focusNext$7,
1790
1790
  handleArrowLeft,
1791
1791
  handleClick: handleClick$1,
@@ -1924,17 +1924,17 @@ const focusNext$5 = async () => {
1924
1924
  const focusPrevious$5 = async () => {
1925
1925
  return invoke('IframeInspector.focusPrevious');
1926
1926
  };
1927
- const focusFirst$4 = async () => {
1927
+ const focusFirst$5 = async () => {
1928
1928
  return invoke('IframeInspector.focusFirst');
1929
1929
  };
1930
- const focusLast$3 = async () => {
1930
+ const focusLast$4 = async () => {
1931
1931
  return invoke('IframeInspector.focusLast');
1932
1932
  };
1933
1933
 
1934
1934
  const TestFrameWorkComponentIframeInspector = {
1935
1935
  __proto__: null,
1936
- focusFirst: focusFirst$4,
1937
- focusLast: focusLast$3,
1936
+ focusFirst: focusFirst$5,
1937
+ focusLast: focusLast$4,
1938
1938
  focusNext: focusNext$5,
1939
1939
  focusPrevious: focusPrevious$5,
1940
1940
  selectIndex: selectIndex$2
@@ -1961,10 +1961,10 @@ const focusNext$4 = () => {
1961
1961
  const focusPrevious$4 = () => {
1962
1962
  return invoke('KeyBindings.focusPrevious');
1963
1963
  };
1964
- const focusFirst$3 = () => {
1964
+ const focusFirst$4 = () => {
1965
1965
  return invoke('KeyBindings.focusFirst');
1966
1966
  };
1967
- const focusLast$2 = () => {
1967
+ const focusLast$3 = () => {
1968
1968
  return invoke('KeyBindings.focusLast');
1969
1969
  };
1970
1970
  const toggleRecordingKeys = () => {
@@ -2014,8 +2014,8 @@ const TestFrameWorkComponentKeyBindingsEditor = {
2014
2014
  clearInput,
2015
2015
  copyCommandId,
2016
2016
  copyCommandTitle,
2017
- focusFirst: focusFirst$3,
2018
- focusLast: focusLast$2,
2017
+ focusFirst: focusFirst$4,
2018
+ focusLast: focusLast$3,
2019
2019
  focusNext: focusNext$4,
2020
2020
  focusPrevious: focusPrevious$4,
2021
2021
  handleClick,
@@ -2111,7 +2111,7 @@ const closeOthers = async () => {
2111
2111
  const closeActiveEditor = async () => {
2112
2112
  await invoke('Main.closeActiveEditor');
2113
2113
  };
2114
- const focusFirst$2 = async () => {
2114
+ const focusFirst$3 = async () => {
2115
2115
  await invoke('Main.focusFirst');
2116
2116
  };
2117
2117
  const focusNext$3 = async () => {
@@ -2120,7 +2120,7 @@ const focusNext$3 = async () => {
2120
2120
  const focusPrevious$3 = async () => {
2121
2121
  await invoke('Main.focusPrevious');
2122
2122
  };
2123
- const focusLast$1 = async () => {
2123
+ const focusLast$2 = async () => {
2124
2124
  await invoke('Main.focusLast');
2125
2125
  };
2126
2126
 
@@ -2131,8 +2131,8 @@ const TestFrameWorkComponentMain = {
2131
2131
  closeOthers,
2132
2132
  closeTabsLeft,
2133
2133
  closeTabsRight,
2134
- focusFirst: focusFirst$2,
2135
- focusLast: focusLast$1,
2134
+ focusFirst: focusFirst$3,
2135
+ focusLast: focusLast$2,
2136
2136
  focusNext: focusNext$3,
2137
2137
  focusPrevious: focusPrevious$3,
2138
2138
  openKeyBindings,
@@ -2210,6 +2210,12 @@ const setValue$1 = async value => {
2210
2210
  const focusNext$2 = async () => {
2211
2211
  await invoke('QuickPick.focusNext');
2212
2212
  };
2213
+ const focusFirst$2 = async () => {
2214
+ await invoke('QuickPick.focusFirst');
2215
+ };
2216
+ const focusLast$1 = async () => {
2217
+ await invoke('QuickPick.focusLast');
2218
+ };
2213
2219
  const focusIndex$2 = async index => {
2214
2220
  await invoke('QuickPick.focusIndex', index);
2215
2221
  };
@@ -2234,7 +2240,9 @@ const executeCommand = async label => {
2234
2240
  const TestFrameWorkComponentQuickPick = {
2235
2241
  __proto__: null,
2236
2242
  executeCommand,
2243
+ focusFirst: focusFirst$2,
2237
2244
  focusIndex: focusIndex$2,
2245
+ focusLast: focusLast$1,
2238
2246
  focusNext: focusNext$2,
2239
2247
  focusPrevious: focusPrevious$2,
2240
2248
  handleClickAt,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lvce-editor/test-worker",
3
- "version": "4.6.0",
3
+ "version": "4.7.0",
4
4
  "description": "Test Worker",
5
5
  "repository": {
6
6
  "type": "git",