@lvce-editor/test-with-playwright 2.22.0 → 2.23.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.
Files changed (2) hide show
  1. package/api.d.ts +25 -10
  2. package/package.json +2 -2
package/api.d.ts CHANGED
@@ -91,6 +91,7 @@ declare const handleInputBlur: () => Promise<void>;
91
91
  declare const focus$1: () => Promise<void>;
92
92
  declare const focusNext$2: () => Promise<void>;
93
93
  declare const selectUp: () => Promise<void>;
94
+ declare const handleDragOverIndex: (index: number) => Promise<void>;
94
95
  declare const selectDown: () => Promise<void>;
95
96
  declare const refresh: () => Promise<void>;
96
97
  declare const focusIndex: (index: number) => Promise<void>;
@@ -117,11 +118,16 @@ declare const handleCut: () => Promise<void>;
117
118
  declare const handleCopy: () => Promise<void>;
118
119
  declare const handlePaste: () => Promise<void>;
119
120
  declare const selectIndices: (indices: readonly number[]) => Promise<void>;
121
+ declare const toggleIndividualSelection: (index: number) => Promise<void>;
120
122
  declare const addWebExtension: (relativePath: string) => Promise<void>;
121
123
  declare const addNodeExtension: (relativePath: string) => Promise<void>;
122
124
  declare const selectFeature: (name: string) => Promise<void>;
123
125
  declare const selectTab: (name: string) => Promise<void>;
124
126
  declare const open: (extensionId: string) => Promise<void>;
127
+ declare const openFeature: (featureName: string) => Promise<void>;
128
+ declare const openThemes: () => Promise<void>;
129
+ declare const openCommands: () => Promise<void>;
130
+ declare const openWebViews: () => Promise<void>;
125
131
  declare const writeFile: (path: string, content: string) => Promise<void>;
126
132
  declare const mkdir: (path: string) => Promise<void>;
127
133
  declare const remove: (uri: string) => Promise<void>;
@@ -178,14 +184,23 @@ declare const open$2: (id: string) => Promise<void>;
178
184
  declare const getNodePath: () => Promise<string>;
179
185
  declare const isFirefox: () => boolean;
180
186
  declare const show$1: () => Promise<void>;
187
+ declare const handleFilterInput: (text: string) => Promise<void>;
188
+ declare const copyMessage: () => Promise<void>;
189
+ declare const focusIndex$1: (index: number) => Promise<void>;
190
+ declare const handleArrowLeft$1: () => Promise<void>;
191
+ declare const handleArrowRight: () => Promise<void>;
192
+ declare const handleClickAt$1: (x: number, y: number) => Promise<void>;
193
+ declare const handleIconThemeChange: () => Promise<void>;
194
+ declare const viewAsList: () => Promise<void>;
195
+ declare const viewAsTable: () => Promise<void>;
181
196
  declare const open$3: () => Promise<void>;
182
197
  declare const handleInput$1: (value: string) => Promise<void>;
183
- declare const handleClickAt$1: (x: number, y: number) => Promise<void>;
198
+ declare const handleClickAt$2: (x: number, y: number) => Promise<void>;
184
199
  declare const setValue$1: (value: string) => Promise<void>;
185
200
  declare const focusNext$7: () => Promise<void>;
186
201
  declare const focusFirst$5: () => Promise<void>;
187
202
  declare const focusLast$5: () => Promise<void>;
188
- declare const focusIndex$1: (index: number) => Promise<void>;
203
+ declare const focusIndex$2: (index: number) => Promise<void>;
189
204
  declare const focusPrevious$5: () => Promise<void>;
190
205
  declare const selectItem$1: (label: string) => Promise<void>;
191
206
  declare const selectIndex$2: (index: number) => Promise<void>;
@@ -209,7 +224,7 @@ declare const openDetails: () => Promise<void>;
209
224
  declare const collapseDetails: () => Promise<void>;
210
225
  declare const dismissItem: () => Promise<void>;
211
226
  declare const focusFirst$6: () => Promise<void>;
212
- declare const focusIndex$2: (index: number) => Promise<void>;
227
+ declare const focusIndex$3: (index: number) => Promise<void>;
213
228
  declare const selectIndex$4: (index: number) => Promise<void>;
214
229
  declare const focusNext$8: () => Promise<void>;
215
230
  declare const handleWheel$1: (deltaMode: number, deltaY: number) => Promise<void>;
@@ -233,7 +248,7 @@ declare const update$1: () => Promise<void>;
233
248
  declare const closeMenu: () => Promise<void>;
234
249
  declare const focus$2: () => Promise<void>;
235
250
  declare const focusFirst$7: () => Promise<void>;
236
- declare const focusIndex$3: (index: number) => Promise<void>;
251
+ declare const focusIndex$4: (index: number) => Promise<void>;
237
252
  declare const focusLast$6: () => Promise<void>;
238
253
  declare const focusNext$9: () => Promise<void>;
239
254
  declare const focusPrevious$7: () => Promise<void>;
@@ -284,13 +299,13 @@ declare namespace EditorCompletion {
284
299
  export { selectCurrentIndex, selectIndex };
285
300
  }
286
301
  declare namespace Explorer {
287
- 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, handleDrop, handleInputBlur, handlePaste, newFile, newFolder, openContextMenu$1 as openContextMenu, refresh, removeDirent, rename$1 as rename, renameDirent, selectAll$1 as selectAll, selectDown, selectIndices, selectUp, updateEditingValue };
302
+ 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 };
288
303
  }
289
304
  declare namespace Extension {
290
305
  export { addNodeExtension, addWebExtension };
291
306
  }
292
307
  declare namespace ExtensionDetail {
293
- export { open, selectFeature, selectTab };
308
+ export { open, openCommands, openFeature, openThemes, openWebViews, selectFeature, selectTab };
294
309
  }
295
310
  declare namespace FileSystem {
296
311
  export { chmod, createExecutable, createExecutableFrom, getTmpDir, mkdir, remove, writeFile };
@@ -320,16 +335,16 @@ declare namespace Platform {
320
335
  export { getNodePath, isFirefox };
321
336
  }
322
337
  declare namespace Problems {
323
- export { show$1 as show };
338
+ export { copyMessage, focusIndex$1 as focusIndex, handleArrowLeft$1 as handleArrowLeft, handleArrowRight, handleClickAt$1 as handleClickAt, handleFilterInput, handleIconThemeChange, show$1 as show, viewAsList, viewAsTable };
324
339
  }
325
340
  declare namespace QuickPick {
326
- export { executeCommand, focusFirst$5 as focusFirst, focusIndex$1 as focusIndex, focusLast$5 as focusLast, focusNext$7 as focusNext, focusPrevious$5 as focusPrevious, handleClickAt$1 as 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 };
341
+ export { executeCommand, focusFirst$5 as focusFirst, focusIndex$2 as focusIndex, focusLast$5 as focusLast, focusNext$7 as focusNext, focusPrevious$5 as focusPrevious, handleClickAt$2 as 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 };
327
342
  }
328
343
  declare namespace RunAndDebug {
329
344
  export { acceptWatchExpressionEdit, addWatchExpression, handleClickSectionWatch, handleRename, handleSpace, handleWatchValueChange, selectIndex$3 as selectIndex, setPauseOnExceptions };
330
345
  }
331
346
  declare namespace Search {
332
- 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$4 as selectIndex, setExcludeValue, setIncludeValue, setReplaceValue, setValue$2 as setValue, toggleMatchCase, toggleMatchWholeWord, togglePreserveCase, toggleReplace, toggleSearchDetails, toggleUseRegularExpression };
347
+ export { clearSearchResults, collapseDetails, dismissItem, focusFirst$6 as focusFirst, focusIndex$3 as focusIndex, focusNext$8 as focusNext, focusNextPage, focusPrevious$6 as focusPrevious, focusPreviousPage, handleWheel$1 as handleWheel, openDetails, replaceAll, selectIndex$4 as selectIndex, setExcludeValue, setIncludeValue, setReplaceValue, setValue$2 as setValue, toggleMatchCase, toggleMatchWholeWord, togglePreserveCase, toggleReplace, toggleSearchDetails, toggleUseRegularExpression };
333
348
  }
334
349
  declare namespace Settings {
335
350
  export { update };
@@ -344,7 +359,7 @@ declare namespace StatusBar {
344
359
  export { update$1 as update };
345
360
  }
346
361
  declare namespace TitleBarMenuBar {
347
- 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 };
362
+ export { closeMenu, focus$2 as focus, focusFirst$7 as focusFirst, focusIndex$4 as focusIndex, focusLast$6 as focusLast, focusNext$9 as focusNext, focusPrevious$7 as focusPrevious, handleKeyArrowDown, handleKeyArrowLeft, handleKeyArrowRight, handleKeyArrowUp, handleKeyEnd, handleKeyEscape, handleKeyHome, handleKeySpace, toggleIndex, toggleMenu };
348
363
  }
349
364
  declare namespace Url {
350
365
  export { resolve, setUrl };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lvce-editor/test-with-playwright",
3
- "version": "2.22.0",
3
+ "version": "2.23.0",
4
4
  "description": "",
5
5
  "main": "src/main.js",
6
6
  "type": "module",
@@ -19,7 +19,7 @@
19
19
  "@lvce-editor/json-rpc": "^6.2.0",
20
20
  "@lvce-editor/verror": "^1.7.0",
21
21
  "minimist": "^1.2.8",
22
- "@lvce-editor/test-with-playwright-worker": "2.22.0"
22
+ "@lvce-editor/test-with-playwright-worker": "2.23.0"
23
23
  },
24
24
  "devDependencies": {
25
25
  "@types/jest": "^30.0.0",