@lvce-editor/renderer-process 10.50.0 → 10.51.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/rendererProcessMain.js +14 -0
- package/package.json +1 -1
|
@@ -2163,6 +2163,8 @@ const handleDropFilePath = forwardViewletCommand('handleDropFilePath');
|
|
|
2163
2163
|
const handleDropFiles = forwardViewletCommand('handleDrop');
|
|
2164
2164
|
const handleFeaturesClick$1 = forwardViewletCommand('handleFeaturesClick');
|
|
2165
2165
|
const handleClickSize$1 = forwardViewletCommand('handleClickSize');
|
|
2166
|
+
const handleClickDisable$1 = forwardViewletCommand('handleClickDisable');
|
|
2167
|
+
const handleClickUninstall$1 = forwardViewletCommand('handleClickUninstall');
|
|
2166
2168
|
forwardViewletCommand('handleFilterInput');
|
|
2167
2169
|
const handleFocus$c = forwardViewletCommand('handleFocus');
|
|
2168
2170
|
const handleFocusIn$4 = forwardViewletCommand('handleFocusIn');
|
|
@@ -8406,10 +8408,22 @@ const handleClickSize = event => {
|
|
|
8406
8408
|
const uid = fromEvent(event);
|
|
8407
8409
|
handleClickSize$1(uid);
|
|
8408
8410
|
};
|
|
8411
|
+
const handleClickDisable = event => {
|
|
8412
|
+
preventDefault(event);
|
|
8413
|
+
const uid = fromEvent(event);
|
|
8414
|
+
handleClickDisable$1(uid);
|
|
8415
|
+
};
|
|
8416
|
+
const handleClickUninstall = event => {
|
|
8417
|
+
preventDefault(event);
|
|
8418
|
+
const uid = fromEvent(event);
|
|
8419
|
+
handleClickUninstall$1(uid);
|
|
8420
|
+
};
|
|
8409
8421
|
|
|
8410
8422
|
const ViewletExtensionDetailEvents = {
|
|
8411
8423
|
__proto__: null,
|
|
8424
|
+
handleClickDisable,
|
|
8412
8425
|
handleClickSize,
|
|
8426
|
+
handleClickUninstall,
|
|
8413
8427
|
handleFeaturesClick,
|
|
8414
8428
|
handleIconError,
|
|
8415
8429
|
handleReadmeContextMenu,
|