@lvce-editor/test-worker 3.0.0 → 3.1.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
|
@@ -1195,9 +1195,17 @@ const handleClickClose = async () => {
|
|
|
1195
1195
|
const handleClickCopy = async () => {
|
|
1196
1196
|
return invoke('About.handleClickCopy');
|
|
1197
1197
|
};
|
|
1198
|
+
const focusNext$6 = async () => {
|
|
1199
|
+
return invoke('About.focusNext');
|
|
1200
|
+
};
|
|
1201
|
+
const focusPrevious$4 = async () => {
|
|
1202
|
+
return invoke('About.focusPrevious');
|
|
1203
|
+
};
|
|
1198
1204
|
|
|
1199
1205
|
const TestFrameWorkComponentAbout = {
|
|
1200
1206
|
__proto__: null,
|
|
1207
|
+
focusNext: focusNext$6,
|
|
1208
|
+
focusPrevious: focusPrevious$4,
|
|
1201
1209
|
handleClickClose,
|
|
1202
1210
|
handleClickCopy,
|
|
1203
1211
|
handleClickOk,
|