@lvce-editor/test-worker 14.5.0 → 14.6.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 +1 -0
- package/dist/testWorkerMain.js +16 -12
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -743,6 +743,7 @@ interface Search {
|
|
|
743
743
|
readonly setLimit: (limit: number) => Promise<void>;
|
|
744
744
|
readonly setReplaceValue: (value: string) => Promise<void>;
|
|
745
745
|
readonly setValue: (value: string) => Promise<void>;
|
|
746
|
+
readonly show: () => Promise<void>;
|
|
746
747
|
readonly toggleMatchCase: () => Promise<void>;
|
|
747
748
|
readonly toggleMatchWholeWord: () => Promise<void>;
|
|
748
749
|
readonly togglePreserveCase: () => Promise<void>;
|
package/dist/testWorkerMain.js
CHANGED
|
@@ -1749,7 +1749,7 @@ const {
|
|
|
1749
1749
|
expect
|
|
1750
1750
|
} = Expect$1;
|
|
1751
1751
|
|
|
1752
|
-
const show$
|
|
1752
|
+
const show$8 = async () => {
|
|
1753
1753
|
return invoke('About.showAbout');
|
|
1754
1754
|
};
|
|
1755
1755
|
const handleClickOk = async () => {
|
|
@@ -1774,7 +1774,7 @@ const About = {
|
|
|
1774
1774
|
handleClickClose: handleClickClose$1,
|
|
1775
1775
|
handleClickCopy,
|
|
1776
1776
|
handleClickOk,
|
|
1777
|
-
show: show$
|
|
1777
|
+
show: show$8
|
|
1778
1778
|
};
|
|
1779
1779
|
|
|
1780
1780
|
const focus$2 = async () => {
|
|
@@ -1891,7 +1891,7 @@ const enterNewLine = async () => {
|
|
|
1891
1891
|
const setScrollDownButtonEnabled = async enabled => {
|
|
1892
1892
|
await invoke('Chat.setScrollDownButtonEnabled', enabled);
|
|
1893
1893
|
};
|
|
1894
|
-
const show$
|
|
1894
|
+
const show$7 = async () => {
|
|
1895
1895
|
await invoke('Layout.showSecondarySideBar');
|
|
1896
1896
|
await invoke('Chat.reset');
|
|
1897
1897
|
};
|
|
@@ -2076,7 +2076,7 @@ const Chat = {
|
|
|
2076
2076
|
setScrollDownButtonEnabled,
|
|
2077
2077
|
setSearchEnabled,
|
|
2078
2078
|
setStreamingEnabled,
|
|
2079
|
-
show: show$
|
|
2079
|
+
show: show$7,
|
|
2080
2080
|
showComposerAttachmentPreviewOverlay,
|
|
2081
2081
|
useMockApi
|
|
2082
2082
|
};
|
|
@@ -2915,7 +2915,7 @@ const EditorCompletion = {
|
|
|
2915
2915
|
selectIndex: selectIndex$6
|
|
2916
2916
|
};
|
|
2917
2917
|
|
|
2918
|
-
const show$
|
|
2918
|
+
const show$6 = async () => {
|
|
2919
2919
|
await invoke('Editor.showHover2');
|
|
2920
2920
|
};
|
|
2921
2921
|
const close$1 = async () => {
|
|
@@ -2924,7 +2924,7 @@ const close$1 = async () => {
|
|
|
2924
2924
|
|
|
2925
2925
|
const EditorHover = {
|
|
2926
2926
|
close: close$1,
|
|
2927
|
-
show: show$
|
|
2927
|
+
show: show$6
|
|
2928
2928
|
};
|
|
2929
2929
|
|
|
2930
2930
|
const handleInput$6 = async value => {
|
|
@@ -3816,7 +3816,7 @@ const Panel = {
|
|
|
3816
3816
|
openProblems
|
|
3817
3817
|
};
|
|
3818
3818
|
|
|
3819
|
-
const show$
|
|
3819
|
+
const show$5 = async () => {
|
|
3820
3820
|
await open$3('Output');
|
|
3821
3821
|
await invoke('Panel.selectIndex', 1);
|
|
3822
3822
|
};
|
|
@@ -3838,7 +3838,7 @@ const Output = {
|
|
|
3838
3838
|
handleFilterInput: handleFilterInput$1,
|
|
3839
3839
|
saveAs,
|
|
3840
3840
|
selectChannel,
|
|
3841
|
-
show: show$
|
|
3841
|
+
show: show$5
|
|
3842
3842
|
};
|
|
3843
3843
|
|
|
3844
3844
|
const getIsFirefox = () => {
|
|
@@ -3918,7 +3918,7 @@ const Preview = {
|
|
|
3918
3918
|
waitForMutation
|
|
3919
3919
|
};
|
|
3920
3920
|
|
|
3921
|
-
const show$
|
|
3921
|
+
const show$4 = async () => {
|
|
3922
3922
|
await invoke('Panel.selectIndex', 0);
|
|
3923
3923
|
};
|
|
3924
3924
|
const handleFilterInput = async text => {
|
|
@@ -3957,7 +3957,7 @@ const Problems = {
|
|
|
3957
3957
|
handleClickAt: handleClickAt$1,
|
|
3958
3958
|
handleFilterInput,
|
|
3959
3959
|
handleIconThemeChange,
|
|
3960
|
-
show: show$
|
|
3960
|
+
show: show$4,
|
|
3961
3961
|
viewAsList,
|
|
3962
3962
|
viewAsTable
|
|
3963
3963
|
};
|
|
@@ -4062,7 +4062,7 @@ const References = {
|
|
|
4062
4062
|
refresh
|
|
4063
4063
|
};
|
|
4064
4064
|
|
|
4065
|
-
const show$
|
|
4065
|
+
const show$3 = async () => {
|
|
4066
4066
|
await open$7('Run And Debug');
|
|
4067
4067
|
};
|
|
4068
4068
|
const handleClickSectionBreakPoints = async () => {
|
|
@@ -4103,9 +4103,12 @@ const RunAndDebug = {
|
|
|
4103
4103
|
handleWatchValueChange,
|
|
4104
4104
|
selectIndex: selectIndex$2,
|
|
4105
4105
|
setPauseOnExceptions,
|
|
4106
|
-
show: show$
|
|
4106
|
+
show: show$3
|
|
4107
4107
|
};
|
|
4108
4108
|
|
|
4109
|
+
const show$2 = async () => {
|
|
4110
|
+
await open$7('Search');
|
|
4111
|
+
};
|
|
4109
4112
|
const setValue = async value => {
|
|
4110
4113
|
await invoke('Search.handleInput', value, Script);
|
|
4111
4114
|
};
|
|
@@ -4250,6 +4253,7 @@ const Search = {
|
|
|
4250
4253
|
setLimit,
|
|
4251
4254
|
setReplaceValue,
|
|
4252
4255
|
setValue,
|
|
4256
|
+
show: show$2,
|
|
4253
4257
|
toggleMatchCase,
|
|
4254
4258
|
toggleMatchWholeWord,
|
|
4255
4259
|
togglePreserveCase,
|