@lvce-editor/test-worker 3.5.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 +8 -0
- package/package.json +1 -1
package/dist/testWorkerMain.js
CHANGED
|
@@ -1881,9 +1881,15 @@ const focusFirst$1 = async () => {
|
|
|
1881
1881
|
const focusIndex$1 = async index => {
|
|
1882
1882
|
await invoke('Search.focusIndex', index);
|
|
1883
1883
|
};
|
|
1884
|
+
const selectIndex = async index => {
|
|
1885
|
+
await invoke('Search.selectIndex', index);
|
|
1886
|
+
};
|
|
1884
1887
|
const focusNext$1 = async () => {
|
|
1885
1888
|
await invoke('Search.focusNext');
|
|
1886
1889
|
};
|
|
1890
|
+
const handleWheel = async (deltaMode, deltaY) => {
|
|
1891
|
+
await invoke('Search.handleWheel', deltaMode, deltaY);
|
|
1892
|
+
};
|
|
1887
1893
|
const focusNextPage = async () => {
|
|
1888
1894
|
await invoke('Search.focusPage');
|
|
1889
1895
|
};
|
|
@@ -1922,7 +1928,9 @@ const TestFrameWorkComponentSearch = {
|
|
|
1922
1928
|
focusNextPage,
|
|
1923
1929
|
focusPrevious: focusPrevious$1,
|
|
1924
1930
|
focusPreviousPage,
|
|
1931
|
+
handleWheel,
|
|
1925
1932
|
replaceAll,
|
|
1933
|
+
selectIndex,
|
|
1926
1934
|
setExcludeValue,
|
|
1927
1935
|
setIncludeValue,
|
|
1928
1936
|
setReplaceValue,
|