@lvce-editor/test-worker 1.13.0 → 1.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/testWorkerMain.js +8 -0
- package/package.json +1 -1
package/dist/testWorkerMain.js
CHANGED
|
@@ -1082,6 +1082,12 @@ const getText = async () => {
|
|
|
1082
1082
|
const rename$1 = async () => {
|
|
1083
1083
|
await invoke('Editor.rename');
|
|
1084
1084
|
};
|
|
1085
|
+
const showHover = async () => {
|
|
1086
|
+
await invoke('Editor.showHover2');
|
|
1087
|
+
};
|
|
1088
|
+
const openRename = async () => {
|
|
1089
|
+
await invoke('Editor.openRename');
|
|
1090
|
+
};
|
|
1085
1091
|
|
|
1086
1092
|
const TestFrameWorkComponentEditor = {
|
|
1087
1093
|
__proto__: null,
|
|
@@ -1121,6 +1127,7 @@ const TestFrameWorkComponentEditor = {
|
|
|
1121
1127
|
openFind,
|
|
1122
1128
|
openFindWidget,
|
|
1123
1129
|
openHover,
|
|
1130
|
+
openRename,
|
|
1124
1131
|
openSourceActions,
|
|
1125
1132
|
organizeImports,
|
|
1126
1133
|
rename: rename$1,
|
|
@@ -1128,6 +1135,7 @@ const TestFrameWorkComponentEditor = {
|
|
|
1128
1135
|
setCursor,
|
|
1129
1136
|
setDeltaY,
|
|
1130
1137
|
setSelections,
|
|
1138
|
+
showHover,
|
|
1131
1139
|
sortImports,
|
|
1132
1140
|
sourceActionsSelectCurrent,
|
|
1133
1141
|
toggleBlockComment,
|