@lvce-editor/test-worker 3.5.0 → 3.6.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
|
@@ -1881,6 +1881,9 @@ 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
|
};
|
|
@@ -1923,6 +1926,7 @@ const TestFrameWorkComponentSearch = {
|
|
|
1923
1926
|
focusPrevious: focusPrevious$1,
|
|
1924
1927
|
focusPreviousPage,
|
|
1925
1928
|
replaceAll,
|
|
1929
|
+
selectIndex,
|
|
1926
1930
|
setExcludeValue,
|
|
1927
1931
|
setIncludeValue,
|
|
1928
1932
|
setReplaceValue,
|