@lvce-editor/renderer-process 10.54.0 → 10.55.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.
|
@@ -1395,7 +1395,7 @@ var getEventListenerOptions$1 = (eventName, value) => {
|
|
|
1395
1395
|
passive: true
|
|
1396
1396
|
};
|
|
1397
1397
|
default:
|
|
1398
|
-
return
|
|
1398
|
+
return void 0;
|
|
1399
1399
|
}
|
|
1400
1400
|
};
|
|
1401
1401
|
|
|
@@ -1410,7 +1410,7 @@ var getUidTarget = $Element => {
|
|
|
1410
1410
|
}
|
|
1411
1411
|
$Element = $Element.parentNode;
|
|
1412
1412
|
}
|
|
1413
|
-
return
|
|
1413
|
+
return void 0;
|
|
1414
1414
|
};
|
|
1415
1415
|
|
|
1416
1416
|
// src/parts/ComponentUid/ComponentUid.ts
|
|
@@ -1434,7 +1434,7 @@ var getComponentUidFromEvent = event => {
|
|
|
1434
1434
|
|
|
1435
1435
|
// src/parts/IpcState/IpcState.ts
|
|
1436
1436
|
var state$8 = {
|
|
1437
|
-
ipc:
|
|
1437
|
+
ipc: void 0
|
|
1438
1438
|
};
|
|
1439
1439
|
var getIpc = () => {
|
|
1440
1440
|
return state$8.ipc;
|
|
@@ -1490,7 +1490,7 @@ var getOptions = fn => {
|
|
|
1490
1490
|
passive: true
|
|
1491
1491
|
};
|
|
1492
1492
|
}
|
|
1493
|
-
return
|
|
1493
|
+
return void 0;
|
|
1494
1494
|
};
|
|
1495
1495
|
var attachEvent$1 = ($Node, eventMap, key, value, newEventMap) => {
|
|
1496
1496
|
if (newEventMap && newEventMap[value]) {
|
|
@@ -3030,6 +3030,8 @@ const EditorCodeGenerator = 'EditorCodeGenerator';
|
|
|
3030
3030
|
|
|
3031
3031
|
const state$6 = {
|
|
3032
3032
|
instances: Object.create(null),
|
|
3033
|
+
currentSideBarView: undefined,
|
|
3034
|
+
currentPanelView: undefined,
|
|
3033
3035
|
modules: Object.create(null)
|
|
3034
3036
|
};
|
|
3035
3037
|
|
|
@@ -6491,6 +6493,8 @@ const getFn = command => {
|
|
|
6491
6493
|
return registerEventListeners;
|
|
6492
6494
|
case 'Viewlet.setPatches':
|
|
6493
6495
|
return setPatches;
|
|
6496
|
+
case 'Viewlet.focusSelector':
|
|
6497
|
+
return focusSelector;
|
|
6494
6498
|
default:
|
|
6495
6499
|
throw new Error(`unknown command ${command}`);
|
|
6496
6500
|
}
|