@lvce-editor/test-worker 3.6.0 → 3.7.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 +4 -0
- package/package.json +1 -1
package/dist/testWorkerMain.js
CHANGED
|
@@ -1887,6 +1887,9 @@ const selectIndex = async index => {
|
|
|
1887
1887
|
const focusNext$1 = async () => {
|
|
1888
1888
|
await invoke('Search.focusNext');
|
|
1889
1889
|
};
|
|
1890
|
+
const handleWheel = async (deltaMode, deltaY) => {
|
|
1891
|
+
await invoke('Search.handleWheel', deltaMode, deltaY);
|
|
1892
|
+
};
|
|
1890
1893
|
const focusNextPage = async () => {
|
|
1891
1894
|
await invoke('Search.focusPage');
|
|
1892
1895
|
};
|
|
@@ -1925,6 +1928,7 @@ const TestFrameWorkComponentSearch = {
|
|
|
1925
1928
|
focusNextPage,
|
|
1926
1929
|
focusPrevious: focusPrevious$1,
|
|
1927
1930
|
focusPreviousPage,
|
|
1931
|
+
handleWheel,
|
|
1928
1932
|
replaceAll,
|
|
1929
1933
|
selectIndex,
|
|
1930
1934
|
setExcludeValue,
|