@lvce-editor/test-worker 5.13.0 → 5.14.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
|
@@ -177,6 +177,7 @@ declare const setValue: (value: string) => Promise<void>;
|
|
|
177
177
|
declare const toggleReplace: () => Promise<void>;
|
|
178
178
|
declare const toggleMatchCase: () => Promise<void>;
|
|
179
179
|
declare const toggleMatchWholeWord: () => Promise<void>;
|
|
180
|
+
declare const togglePreserveCase: () => Promise<void>;
|
|
180
181
|
declare const toggleUseRegularExpression: () => Promise<void>;
|
|
181
182
|
declare const replace: () => Promise<void>;
|
|
182
183
|
declare const replaceAll: () => Promise<void>;
|
|
@@ -287,7 +288,7 @@ declare const focusPrevious$7: () => Promise<void>;
|
|
|
287
288
|
declare const toggleSearchDetails: () => Promise<void>;
|
|
288
289
|
declare const toggleMatchCase$1: () => Promise<void>;
|
|
289
290
|
declare const toggleMatchWholeWord$1: () => Promise<void>;
|
|
290
|
-
declare const togglePreserveCase: () => Promise<void>;
|
|
291
|
+
declare const togglePreserveCase$1: () => Promise<void>;
|
|
291
292
|
declare const toggleUseRegularExpression$1: () => Promise<void>;
|
|
292
293
|
declare const toggleReplace$1: () => Promise<void>;
|
|
293
294
|
declare const open$4: () => Promise<void>;
|
|
@@ -382,7 +383,7 @@ declare namespace FileSystem {
|
|
|
382
383
|
export { chmod, createDroppedFileHandle, createExecutable, createExecutableFrom, getTmpDir, mkdir, readFile, remove, writeFile, writeJson };
|
|
383
384
|
}
|
|
384
385
|
declare namespace FindWidget {
|
|
385
|
-
export { focusElement, focusNext$3 as focusNext, focusNextElement, focusPrevious$2 as focusPrevious, focusPreviousElement, replace, replaceAll, setReplaceValue, setValue, toggleMatchCase, toggleMatchWholeWord, toggleReplace, toggleUseRegularExpression };
|
|
386
|
+
export { focusElement, focusNext$3 as focusNext, focusNextElement, focusPrevious$2 as focusPrevious, focusPreviousElement, replace, replaceAll, setReplaceValue, setValue, toggleMatchCase, toggleMatchWholeWord, togglePreserveCase, toggleReplace, toggleUseRegularExpression };
|
|
386
387
|
}
|
|
387
388
|
declare namespace IconTheme {
|
|
388
389
|
export { setIconTheme };
|
|
@@ -421,7 +422,7 @@ declare namespace RunAndDebug {
|
|
|
421
422
|
export { acceptWatchExpressionEdit, addWatchExpression, handleClickSectionWatch, handleRename, handleSpace, handleWatchValueChange, selectIndex$4 as selectIndex, setPauseOnExceptions };
|
|
422
423
|
}
|
|
423
424
|
declare namespace Search {
|
|
424
|
-
export { clearSearchResults, collapseDetails, dismissItem, focusFirst$6 as focusFirst, focusIndex$4 as focusIndex, focusNext$8 as focusNext, focusNextPage, focusPrevious$7 as focusPrevious, focusPreviousPage, handleWheel$2 as handleWheel, open$4 as open, openDetails, replaceAll$1 as replaceAll, selectIndex$5 as selectIndex, setExcludeValue, setIncludeValue, setLimit, setReplaceValue$1 as setReplaceValue, setValue$2 as setValue, toggleMatchCase$1 as toggleMatchCase, toggleMatchWholeWord$1 as toggleMatchWholeWord, togglePreserveCase, toggleReplace$1 as toggleReplace, toggleSearchDetails, toggleUseRegularExpression$1 as toggleUseRegularExpression };
|
|
425
|
+
export { clearSearchResults, collapseDetails, dismissItem, focusFirst$6 as focusFirst, focusIndex$4 as focusIndex, focusNext$8 as focusNext, focusNextPage, focusPrevious$7 as focusPrevious, focusPreviousPage, handleWheel$2 as handleWheel, open$4 as open, openDetails, replaceAll$1 as replaceAll, selectIndex$5 as selectIndex, setExcludeValue, setIncludeValue, setLimit, setReplaceValue$1 as setReplaceValue, setValue$2 as setValue, toggleMatchCase$1 as toggleMatchCase, toggleMatchWholeWord$1 as toggleMatchWholeWord, togglePreserveCase$1 as togglePreserveCase, toggleReplace$1 as toggleReplace, toggleSearchDetails, toggleUseRegularExpression$1 as toggleUseRegularExpression };
|
|
425
426
|
}
|
|
426
427
|
declare namespace Settings {
|
|
427
428
|
export { update };
|
package/dist/testWorkerMain.js
CHANGED
|
@@ -2598,6 +2598,10 @@ const toggleMatchWholeWord$1 = async () => {
|
|
|
2598
2598
|
// @ts-ignore
|
|
2599
2599
|
await invoke$1('FindWidget.toggleMatchWholeWord');
|
|
2600
2600
|
};
|
|
2601
|
+
const togglePreserveCase$1 = async () => {
|
|
2602
|
+
// @ts-ignore
|
|
2603
|
+
await invoke$1('FindWidget.togglePreserveCase');
|
|
2604
|
+
};
|
|
2601
2605
|
const toggleUseRegularExpression$1 = async () => {
|
|
2602
2606
|
// @ts-ignore
|
|
2603
2607
|
await invoke$1('FindWidget.toggleUseRegularExpression');
|
|
@@ -2636,6 +2640,7 @@ const TestFrameWorkComponentFindWidget = {
|
|
|
2636
2640
|
setValue: setValue$2,
|
|
2637
2641
|
toggleMatchCase: toggleMatchCase$1,
|
|
2638
2642
|
toggleMatchWholeWord: toggleMatchWholeWord$1,
|
|
2643
|
+
togglePreserveCase: togglePreserveCase$1,
|
|
2639
2644
|
toggleReplace: toggleReplace$1,
|
|
2640
2645
|
toggleUseRegularExpression: toggleUseRegularExpression$1
|
|
2641
2646
|
};
|