@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.
@@ -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,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lvce-editor/test-worker",
3
- "version": "3.6.0",
3
+ "version": "3.7.0",
4
4
  "description": "",
5
5
  "main": "dist/testWorkerMain.js",
6
6
  "type": "module",