@lvce-editor/renderer-process 6.0.0 → 6.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.
|
@@ -5819,6 +5819,7 @@ const handleClick$9 = forwardViewletCommand('handleClick');
|
|
|
5819
5819
|
const handleClickAction$2 = forwardViewletCommand('handleClickAction');
|
|
5820
5820
|
forwardViewletCommand('handleClickAdd');
|
|
5821
5821
|
const handleClickAt = forwardViewletCommand('handleClickAt');
|
|
5822
|
+
const handleClickOpenFolder$1 = forwardViewletCommand('handleClickOpenFolder');
|
|
5822
5823
|
forwardViewletCommand('handleClickClose');
|
|
5823
5824
|
forwardViewletCommand('handleClickCopy');
|
|
5824
5825
|
forwardViewletCommand('handleClickMinimize');
|
|
@@ -7596,6 +7597,11 @@ const handleClick$6 = event => {
|
|
|
7596
7597
|
const uid = fromEvent(event);
|
|
7597
7598
|
handleClickAt(uid, button, clientX, clientY);
|
|
7598
7599
|
};
|
|
7600
|
+
const handleClickOpenFolder = event => {
|
|
7601
|
+
preventDefault(event);
|
|
7602
|
+
const uid = fromEvent(event);
|
|
7603
|
+
handleClickOpenFolder$1(uid);
|
|
7604
|
+
};
|
|
7599
7605
|
const handlePointerDown$4 = event => {
|
|
7600
7606
|
const {
|
|
7601
7607
|
button,
|
|
@@ -7642,6 +7648,7 @@ const ViewletExplorerEvents = {
|
|
|
7642
7648
|
__proto__: null,
|
|
7643
7649
|
handleBlur: handleBlur$5,
|
|
7644
7650
|
handleClick: handleClick$6,
|
|
7651
|
+
handleClickOpenFolder,
|
|
7645
7652
|
handleContextMenu: handleContextMenu$5,
|
|
7646
7653
|
handleDragEnd,
|
|
7647
7654
|
handleDragLeave,
|