@lvce-editor/test-worker 11.15.0 → 11.16.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 -1
- package/dist/testWorkerMain.js +3 -3
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -413,7 +413,7 @@ interface Main {
|
|
|
413
413
|
readonly focusNext: () => Promise<void>;
|
|
414
414
|
readonly focusPrevious: () => Promise<void>;
|
|
415
415
|
readonly handleModifiedStatusChange: (uri: string, newStatus: boolean) => Promise<void>;
|
|
416
|
-
readonly
|
|
416
|
+
readonly handleTabContextMenu: (button: number, x: number, y: number) => Promise<void>;
|
|
417
417
|
readonly openKeyBindings: () => Promise<void>;
|
|
418
418
|
readonly openUri: (uri: string) => Promise<void>;
|
|
419
419
|
readonly save: () => Promise<void>;
|
package/dist/testWorkerMain.js
CHANGED
|
@@ -3082,8 +3082,8 @@ const focusPrevious$3 = async () => {
|
|
|
3082
3082
|
const focusLast$2 = async () => {
|
|
3083
3083
|
await invoke('Main.focusLast');
|
|
3084
3084
|
};
|
|
3085
|
-
const
|
|
3086
|
-
await invoke('Main.
|
|
3085
|
+
const handleTabContextMenu = async (button, x, y) => {
|
|
3086
|
+
await invoke('Main.handleTabContextMenu', button, x, y);
|
|
3087
3087
|
};
|
|
3088
3088
|
const copyPath$1 = async () => {
|
|
3089
3089
|
await invoke('Main.copyPath');
|
|
@@ -3106,7 +3106,7 @@ const Main = {
|
|
|
3106
3106
|
focusNext: focusNext$3,
|
|
3107
3107
|
focusPrevious: focusPrevious$3,
|
|
3108
3108
|
handleModifiedStatusChange,
|
|
3109
|
-
|
|
3109
|
+
handleTabContextMenu,
|
|
3110
3110
|
openKeyBindings,
|
|
3111
3111
|
openUri,
|
|
3112
3112
|
save,
|