@lvce-editor/test-worker 4.0.0 → 4.1.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 +3 -1
- package/dist/testWorkerMain.js +8 -0
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -150,6 +150,8 @@ declare const setExcludeValue: (value: string) => Promise<void>;
|
|
|
150
150
|
declare const replaceAll: () => Promise<void>;
|
|
151
151
|
declare const setIncludeValue: (value: string) => Promise<void>;
|
|
152
152
|
declare const clearSearchResults: () => Promise<void>;
|
|
153
|
+
declare const openDetails: () => Promise<void>;
|
|
154
|
+
declare const collapseDetails: () => Promise<void>;
|
|
153
155
|
declare const dismissItem: () => Promise<void>;
|
|
154
156
|
declare const focusFirst$3: () => Promise<void>;
|
|
155
157
|
declare const focusIndex$2: (index: number) => Promise<void>;
|
|
@@ -255,7 +257,7 @@ declare namespace QuickPick {
|
|
|
255
257
|
export { executeCommand, focusIndex$1 as focusIndex, focusNext$5 as focusNext, focusPrevious$3 as focusPrevious, handleInput$1 as handleInput, open$3 as open, selectIndex$1 as selectIndex, selectItem$1 as selectItem, setValue$1 as setValue };
|
|
256
258
|
}
|
|
257
259
|
declare namespace Search {
|
|
258
|
-
export { clearSearchResults, dismissItem, focusFirst$3 as focusFirst, focusIndex$2 as focusIndex, focusNext$6 as focusNext, focusNextPage, focusPrevious$4 as focusPrevious, focusPreviousPage, handleWheel$1 as handleWheel, replaceAll, selectIndex$2 as selectIndex, setExcludeValue, setIncludeValue, setReplaceValue, setValue$2 as setValue, toggleMatchCase, toggleMatchWholeWord, togglePreserveCase, toggleReplace, toggleSearchDetails, toggleUseRegularExpression };
|
|
260
|
+
export { clearSearchResults, collapseDetails, dismissItem, focusFirst$3 as focusFirst, focusIndex$2 as focusIndex, focusNext$6 as focusNext, focusNextPage, focusPrevious$4 as focusPrevious, focusPreviousPage, handleWheel$1 as handleWheel, openDetails, replaceAll, selectIndex$2 as selectIndex, setExcludeValue, setIncludeValue, setReplaceValue, setValue$2 as setValue, toggleMatchCase, toggleMatchWholeWord, togglePreserveCase, toggleReplace, toggleSearchDetails, toggleUseRegularExpression };
|
|
259
261
|
}
|
|
260
262
|
declare namespace Settings {
|
|
261
263
|
export { update };
|
package/dist/testWorkerMain.js
CHANGED
|
@@ -2156,6 +2156,12 @@ const setIncludeValue = async value => {
|
|
|
2156
2156
|
const clearSearchResults = async () => {
|
|
2157
2157
|
await invoke('Search.clearSearchResults');
|
|
2158
2158
|
};
|
|
2159
|
+
const openDetails = async () => {
|
|
2160
|
+
await invoke('Search.openDetails');
|
|
2161
|
+
};
|
|
2162
|
+
const collapseDetails = async () => {
|
|
2163
|
+
await invoke('Search.collapseDetails');
|
|
2164
|
+
};
|
|
2159
2165
|
const dismissItem = async () => {
|
|
2160
2166
|
await invoke('Search.dismissItem');
|
|
2161
2167
|
};
|
|
@@ -2205,6 +2211,7 @@ const toggleReplace = async () => {
|
|
|
2205
2211
|
const TestFrameWorkComponentSearch = {
|
|
2206
2212
|
__proto__: null,
|
|
2207
2213
|
clearSearchResults,
|
|
2214
|
+
collapseDetails,
|
|
2208
2215
|
dismissItem,
|
|
2209
2216
|
focusFirst: focusFirst$1,
|
|
2210
2217
|
focusIndex: focusIndex$1,
|
|
@@ -2213,6 +2220,7 @@ const TestFrameWorkComponentSearch = {
|
|
|
2213
2220
|
focusPrevious: focusPrevious$1,
|
|
2214
2221
|
focusPreviousPage,
|
|
2215
2222
|
handleWheel,
|
|
2223
|
+
openDetails,
|
|
2216
2224
|
replaceAll,
|
|
2217
2225
|
selectIndex,
|
|
2218
2226
|
setExcludeValue,
|