@lvce-editor/test-worker 4.13.0 → 4.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 +1 -1
- package/dist/testWorkerMain.js +2 -2
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -97,7 +97,7 @@ declare const expandRecursively: () => Promise<void>;
|
|
|
97
97
|
declare const newFile: () => Promise<void>;
|
|
98
98
|
declare const newFolder: () => Promise<void>;
|
|
99
99
|
declare const handleClick$1: (index: number) => Promise<void>;
|
|
100
|
-
declare const handleClickAt: (button: number, ctrlKey: boolean, shiftKey: boolean, x: number, y: number) => Promise<void>;
|
|
100
|
+
declare const handleClickAt: (preventDefault: boolean, button: number, ctrlKey: boolean, shiftKey: boolean, x: number, y: number) => Promise<void>;
|
|
101
101
|
declare const handleDrop: (x: number, y: number, fileIds: readonly number[], fileList: FileList | readonly File[]) => Promise<void>;
|
|
102
102
|
declare const rename$1: () => Promise<void>;
|
|
103
103
|
declare const selectAll$1: () => Promise<void>;
|
package/dist/testWorkerMain.js
CHANGED
|
@@ -1774,8 +1774,8 @@ const newFolder = async () => {
|
|
|
1774
1774
|
const handleClick$1 = async index => {
|
|
1775
1775
|
await invoke('Explorer.handleClick', index);
|
|
1776
1776
|
};
|
|
1777
|
-
const handleClickAt$1 = async (button, ctrlKey, shiftKey, x, y) => {
|
|
1778
|
-
await invoke('Explorer.handleClickAt', button, ctrlKey, shiftKey, x, y);
|
|
1777
|
+
const handleClickAt$1 = async (preventDefault, button, ctrlKey, shiftKey, x, y) => {
|
|
1778
|
+
await invoke('Explorer.handleClickAt', preventDefault, button, ctrlKey, shiftKey, x, y);
|
|
1779
1779
|
};
|
|
1780
1780
|
const handleDrop = async (x, y, fileIds, fileList) => {
|
|
1781
1781
|
await invoke('Explorer.handleDrop', x, y, fileIds, fileIds);
|