@lvce-editor/renderer-process 10.48.0 → 10.49.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.
|
@@ -2161,6 +2161,7 @@ forwardViewletCommand('handleDrop');
|
|
|
2161
2161
|
const handleDropFilePath = forwardViewletCommand('handleDropFilePath');
|
|
2162
2162
|
const handleDropFiles = forwardViewletCommand('handleDrop');
|
|
2163
2163
|
const handleFeaturesClick$1 = forwardViewletCommand('handleFeaturesClick');
|
|
2164
|
+
const handleClickSize$1 = forwardViewletCommand('handleClickSize');
|
|
2164
2165
|
forwardViewletCommand('handleFilterInput');
|
|
2165
2166
|
const handleFocus$c = forwardViewletCommand('handleFocus');
|
|
2166
2167
|
const handleFocusIn$4 = forwardViewletCommand('handleFocusIn');
|
|
@@ -8399,9 +8400,15 @@ const handleFeaturesClick = event => {
|
|
|
8399
8400
|
const uid = fromEvent(event);
|
|
8400
8401
|
handleFeaturesClick$1(uid, name);
|
|
8401
8402
|
};
|
|
8403
|
+
const handleClickSize = event => {
|
|
8404
|
+
preventDefault(event);
|
|
8405
|
+
const uid = fromEvent(event);
|
|
8406
|
+
handleClickSize$1(uid);
|
|
8407
|
+
};
|
|
8402
8408
|
|
|
8403
8409
|
const ViewletExtensionDetailEvents = {
|
|
8404
8410
|
__proto__: null,
|
|
8411
|
+
handleClickSize,
|
|
8405
8412
|
handleFeaturesClick,
|
|
8406
8413
|
handleIconError,
|
|
8407
8414
|
handleReadmeContextMenu,
|