@lvce-editor/renderer-process 6.7.0 → 6.8.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.
@@ -8324,6 +8324,16 @@ const ViewletKeyBindings = {
8324
8324
  setValue: setValue$2
8325
8325
  };
8326
8326
 
8327
+ const getSashId = $Target => {
8328
+ if ($Target.id === 'SashPanel') {
8329
+ return 'Panel';
8330
+ }
8331
+ if ($Target.id === 'SashSideBar') {
8332
+ return 'SideBar';
8333
+ }
8334
+ return '';
8335
+ };
8336
+
8327
8337
  const Backspace$1 = 'Backspace';
8328
8338
  const Tab$1 = 'Tab';
8329
8339
  const Space$1 = ' ';
@@ -8756,15 +8766,6 @@ const handleBlur$4 = () => {
8756
8766
  send('Layout.handleBlur');
8757
8767
  };
8758
8768
 
8759
- const getSashId = $Target => {
8760
- if ($Target.id === 'SashPanel') {
8761
- return 'Panel';
8762
- }
8763
- if ($Target.id === 'SashSideBar') {
8764
- return 'SideBar';
8765
- }
8766
- return '';
8767
- };
8768
8769
  const handleSashPointerMove = event => {
8769
8770
  const {
8770
8771
  clientX,
@@ -11258,6 +11259,25 @@ const handleContextMenu = event => {
11258
11259
  } = event;
11259
11260
  return ['handleContextMenu', button, clientX, clientY];
11260
11261
  };
11262
+ const handleSashCornerPointerDown = create$v(event => {
11263
+ const {
11264
+ clientX,
11265
+ clientY
11266
+ } = event;
11267
+ return ['handleSashCornerPointerDown', clientX, clientY];
11268
+ }, event => {
11269
+ const {
11270
+ clientX,
11271
+ clientY
11272
+ } = event;
11273
+ return ['handleSashCornerPointerMove', clientX, clientY];
11274
+ }, event => {
11275
+ const {
11276
+ clientX,
11277
+ clientY
11278
+ } = event;
11279
+ return ['handleSashCornerPointerUp', clientX, clientY];
11280
+ });
11261
11281
  const returnValue = true;
11262
11282
 
11263
11283
  const ViewletE2eTestEvents = {
@@ -11265,6 +11285,7 @@ const ViewletE2eTestEvents = {
11265
11285
  handleClickAt,
11266
11286
  handleContextMenu,
11267
11287
  handleLoad,
11288
+ handleSashCornerPointerDown,
11268
11289
  returnValue
11269
11290
  };
11270
11291
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lvce-editor/renderer-process",
3
- "version": "6.7.0",
3
+ "version": "6.8.0",
4
4
  "description": "",
5
5
  "main": "dist/diffWorkerMain.js",
6
6
  "type": "module",