@lvce-editor/renderer-process 6.0.0 → 6.2.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 +88 -94
- package/package.json +1 -1
|
@@ -769,7 +769,7 @@ const getErrorProperty = (error, prettyError) => {
|
|
|
769
769
|
}
|
|
770
770
|
};
|
|
771
771
|
};
|
|
772
|
-
const getErrorResponse = (message, error,
|
|
772
|
+
const getErrorResponse = (message, error, preparePrettyError, logError) => {
|
|
773
773
|
const prettyError = preparePrettyError(error);
|
|
774
774
|
logError(error, prettyError);
|
|
775
775
|
const errorProperty = getErrorProperty(error, prettyError);
|
|
@@ -791,7 +791,7 @@ const getResponse = async (message, ipc, execute, preparePrettyError, logError,
|
|
|
791
791
|
const result = requiresSocket(message.method) ? await execute(message.method, ipc, ...message.params) : await execute(message.method, ...message.params);
|
|
792
792
|
return getSuccessResponse(message, result);
|
|
793
793
|
} catch (error) {
|
|
794
|
-
return getErrorResponse(message, error,
|
|
794
|
+
return getErrorResponse(message, error, preparePrettyError, logError);
|
|
795
795
|
}
|
|
796
796
|
};
|
|
797
797
|
const handleJsonRpcMessage = async (ipc, message, execute, resolve, preparePrettyError, logError, requiresSocket) => {
|
|
@@ -801,7 +801,7 @@ const handleJsonRpcMessage = async (ipc, message, execute, resolve, preparePrett
|
|
|
801
801
|
try {
|
|
802
802
|
ipc.send(response);
|
|
803
803
|
} catch (error) {
|
|
804
|
-
const errorResponse = getErrorResponse(message, error,
|
|
804
|
+
const errorResponse = getErrorResponse(message, error, preparePrettyError, logError);
|
|
805
805
|
ipc.send(errorResponse);
|
|
806
806
|
}
|
|
807
807
|
return;
|
|
@@ -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');
|
|
@@ -5868,7 +5869,7 @@ const handleScrollBarThumbPointerMove$3 = forwardViewletCommand('handleScrollBar
|
|
|
5868
5869
|
forwardViewletCommand('handleScrollBarMove');
|
|
5869
5870
|
forwardViewletCommand('handleScrollBarVerticalPointerDown');
|
|
5870
5871
|
forwardViewletCommand('handleSliderPointerDown');
|
|
5871
|
-
|
|
5872
|
+
forwardViewletCommand('handleSliderPointerMove');
|
|
5872
5873
|
const handleTabClick = forwardViewletCommand('handleTabClick');
|
|
5873
5874
|
const handleTabContextMenu = forwardViewletCommand('handleTabContextMenu');
|
|
5874
5875
|
forwardViewletCommand('handleTabsPointerOut');
|
|
@@ -5976,32 +5977,54 @@ const stopTracking$1 = ($Target, pointerId, handlePointerMove, handlePointerUp)
|
|
|
5976
5977
|
// TODO use pointerlost event instead
|
|
5977
5978
|
$Target.removeEventListener(PointerUp, handlePointerUp);
|
|
5978
5979
|
};
|
|
5979
|
-
|
|
5980
|
-
const
|
|
5981
|
-
|
|
5982
|
-
|
|
5983
|
-
|
|
5984
|
-
|
|
5985
|
-
|
|
5980
|
+
const create$v = (pointerDown, pointerMove, pointerUp) => {
|
|
5981
|
+
const shared = (fn, event) => {
|
|
5982
|
+
const message = fn(event);
|
|
5983
|
+
if (!message || message.length === 0) {
|
|
5984
|
+
return;
|
|
5985
|
+
}
|
|
5986
|
+
const uid = fromEvent(event);
|
|
5987
|
+
send('Viewlet.executeViewletCommand', uid, ...message);
|
|
5988
|
+
};
|
|
5989
|
+
const handlePointerMove = event => {
|
|
5990
|
+
shared(pointerMove, event);
|
|
5991
|
+
};
|
|
5992
|
+
const handlePointerUp = event => {
|
|
5993
|
+
const {
|
|
5994
|
+
target,
|
|
5995
|
+
pointerId
|
|
5996
|
+
} = event;
|
|
5997
|
+
stopTracking$1(target, pointerId, handlePointerMove, handlePointerUp);
|
|
5998
|
+
shared(pointerUp, event);
|
|
5999
|
+
};
|
|
6000
|
+
const handlePointerDown = event => {
|
|
6001
|
+
const {
|
|
6002
|
+
target,
|
|
6003
|
+
pointerId
|
|
6004
|
+
} = event;
|
|
6005
|
+
startTracking$1(target, pointerId, handlePointerMove, handlePointerUp);
|
|
6006
|
+
shared(pointerDown, event);
|
|
6007
|
+
return [];
|
|
6008
|
+
};
|
|
6009
|
+
return handlePointerDown;
|
|
5986
6010
|
};
|
|
5987
|
-
|
|
6011
|
+
|
|
6012
|
+
const handleOffset = 20;
|
|
6013
|
+
const handleSliderPointerDown = create$v(event => {
|
|
5988
6014
|
const {
|
|
5989
6015
|
clientX,
|
|
5990
6016
|
clientY
|
|
5991
6017
|
} = event;
|
|
5992
|
-
|
|
5993
|
-
|
|
5994
|
-
};
|
|
5995
|
-
const handleSliderPointerDown = event => {
|
|
6018
|
+
return ['handleSliderPointerDown', clientX - handleOffset, clientY];
|
|
6019
|
+
}, event => {
|
|
5996
6020
|
const {
|
|
5997
6021
|
clientX,
|
|
5998
|
-
clientY
|
|
5999
|
-
target,
|
|
6000
|
-
pointerId
|
|
6022
|
+
clientY
|
|
6001
6023
|
} = event;
|
|
6002
|
-
|
|
6003
|
-
|
|
6004
|
-
|
|
6024
|
+
return ['handleSliderPointerMove', clientX - handleOffset, clientY];
|
|
6025
|
+
}, () => {
|
|
6026
|
+
return [];
|
|
6027
|
+
});
|
|
6005
6028
|
const handlePointerDown$6 = event => {
|
|
6006
6029
|
const {
|
|
6007
6030
|
target
|
|
@@ -6061,7 +6084,7 @@ const ViewletDebugConsoleEvents = {
|
|
|
6061
6084
|
handleInput: handleInput$7
|
|
6062
6085
|
};
|
|
6063
6086
|
|
|
6064
|
-
const create$
|
|
6087
|
+
const create$u = () => {
|
|
6065
6088
|
const $Viewlet = document.createElement('div');
|
|
6066
6089
|
$Viewlet.className = 'Viewlet DebugConsole';
|
|
6067
6090
|
return {
|
|
@@ -6077,7 +6100,7 @@ const setDom$8 = (state, dom) => {
|
|
|
6077
6100
|
|
|
6078
6101
|
const ViewletDebugConsole = {
|
|
6079
6102
|
__proto__: null,
|
|
6080
|
-
create: create$
|
|
6103
|
+
create: create$u,
|
|
6081
6104
|
setDom: setDom$8
|
|
6082
6105
|
};
|
|
6083
6106
|
|
|
@@ -6138,7 +6161,7 @@ const setMaskImage = ($Element, icon) => {
|
|
|
6138
6161
|
}
|
|
6139
6162
|
};
|
|
6140
6163
|
|
|
6141
|
-
const create$
|
|
6164
|
+
const create$t = icon => {
|
|
6142
6165
|
const $Icon = document.createElement('div');
|
|
6143
6166
|
$Icon.className = 'MaskIcon';
|
|
6144
6167
|
setMaskImage($Icon, icon);
|
|
@@ -6148,7 +6171,7 @@ const create$u = icon => {
|
|
|
6148
6171
|
|
|
6149
6172
|
const create$Button = (label, icon) => {
|
|
6150
6173
|
// TODO icon div might not be needed (unnecessary html element)
|
|
6151
|
-
const $Icon = create$
|
|
6174
|
+
const $Icon = create$t(icon);
|
|
6152
6175
|
const $Button = document.createElement('button');
|
|
6153
6176
|
$Button.className = 'IconButton';
|
|
6154
6177
|
$Button.title = label;
|
|
@@ -6169,7 +6192,7 @@ const handleClick$7 = event => {
|
|
|
6169
6192
|
handleClick$8(index);
|
|
6170
6193
|
};
|
|
6171
6194
|
|
|
6172
|
-
const create$
|
|
6195
|
+
const create$s = () => {
|
|
6173
6196
|
const $DialogTitle = document.createElement('h2');
|
|
6174
6197
|
$DialogTitle.id = 'DialogTitle';
|
|
6175
6198
|
const $DialogCloseButton = create$Button('Close', 'Close');
|
|
@@ -6250,7 +6273,7 @@ const setErrorStack = (state, errorStack) => {
|
|
|
6250
6273
|
|
|
6251
6274
|
const ViewletDialog = {
|
|
6252
6275
|
__proto__: null,
|
|
6253
|
-
create: create$
|
|
6276
|
+
create: create$s,
|
|
6254
6277
|
postAppend,
|
|
6255
6278
|
setButtons,
|
|
6256
6279
|
setCodeFrame,
|
|
@@ -6310,6 +6333,19 @@ const Capture = {
|
|
|
6310
6333
|
capture: true
|
|
6311
6334
|
};
|
|
6312
6335
|
|
|
6336
|
+
const startTracking = ($Target, pointerId, handlePointerMove, handlePointerUp) => {
|
|
6337
|
+
$Target.setPointerCapture(pointerId);
|
|
6338
|
+
$Target.addEventListener(PointerMove, handlePointerMove);
|
|
6339
|
+
// TODO use pointerlost event instead
|
|
6340
|
+
$Target.addEventListener(PointerUp, handlePointerUp);
|
|
6341
|
+
};
|
|
6342
|
+
const stopTracking = ($Target, pointerId, handlePointerMove, handlePointerUp) => {
|
|
6343
|
+
$Target.releasePointerCapture(pointerId);
|
|
6344
|
+
$Target.removeEventListener(PointerMove, handlePointerMove);
|
|
6345
|
+
// TODO use pointerlost event instead
|
|
6346
|
+
$Target.removeEventListener(PointerUp, handlePointerUp);
|
|
6347
|
+
};
|
|
6348
|
+
|
|
6313
6349
|
const handleMousedown = event => {
|
|
6314
6350
|
preventDefault(event);
|
|
6315
6351
|
const {
|
|
@@ -6331,7 +6367,7 @@ const handlePointerCaptureLost$2 = event => {
|
|
|
6331
6367
|
target,
|
|
6332
6368
|
pointerId
|
|
6333
6369
|
} = event;
|
|
6334
|
-
stopTracking
|
|
6370
|
+
stopTracking(target, pointerId, handleScrollBarThumbPointerMove$2, handlePointerCaptureLost$2);
|
|
6335
6371
|
};
|
|
6336
6372
|
const handleScrollBarPointerDown$3 = event => {
|
|
6337
6373
|
preventDefault(event);
|
|
@@ -6340,7 +6376,7 @@ const handleScrollBarPointerDown$3 = event => {
|
|
|
6340
6376
|
pointerId,
|
|
6341
6377
|
clientY
|
|
6342
6378
|
} = event;
|
|
6343
|
-
startTracking
|
|
6379
|
+
startTracking(target, pointerId, handleScrollBarThumbPointerMove$2, handlePointerCaptureLost$2);
|
|
6344
6380
|
const uid = fromEvent(event);
|
|
6345
6381
|
handleScrollBarClick(uid, clientY);
|
|
6346
6382
|
};
|
|
@@ -6392,7 +6428,7 @@ const setNegativeMargin = (state, negativeMargin) => {
|
|
|
6392
6428
|
setTop($ListItems, negativeMargin);
|
|
6393
6429
|
};
|
|
6394
6430
|
|
|
6395
|
-
const create$
|
|
6431
|
+
const create$r = () => {
|
|
6396
6432
|
const $ListItems = document.createElement('div');
|
|
6397
6433
|
$ListItems.className = 'ListItems';
|
|
6398
6434
|
$ListItems.role = ListBox;
|
|
@@ -6475,7 +6511,7 @@ const setBounds$4 = (state, x, y, width, height) => {
|
|
|
6475
6511
|
const ViewletEditorCompletion = {
|
|
6476
6512
|
__proto__: null,
|
|
6477
6513
|
attachEvents: attachEvents$a,
|
|
6478
|
-
create: create$
|
|
6514
|
+
create: create$r,
|
|
6479
6515
|
dispose: dispose$c,
|
|
6480
6516
|
handleError: handleError$6,
|
|
6481
6517
|
setBounds: setBounds$4,
|
|
@@ -6500,7 +6536,7 @@ const ViewletEditorCompletion = {
|
|
|
6500
6536
|
|
|
6501
6537
|
// TODO aria alert
|
|
6502
6538
|
|
|
6503
|
-
const create$
|
|
6539
|
+
const create$q = () => {
|
|
6504
6540
|
const $Viewlet = document.createElement('div');
|
|
6505
6541
|
$Viewlet.className = 'Viewlet EditorError';
|
|
6506
6542
|
return {
|
|
@@ -6522,57 +6558,13 @@ const setBounds$3 = (state, x, y, width, height) => {
|
|
|
6522
6558
|
|
|
6523
6559
|
const ViewletEditorError = {
|
|
6524
6560
|
__proto__: null,
|
|
6525
|
-
create: create$
|
|
6561
|
+
create: create$q,
|
|
6526
6562
|
setBounds: setBounds$3,
|
|
6527
6563
|
setDom: setDom$6
|
|
6528
6564
|
};
|
|
6529
6565
|
|
|
6530
|
-
const startTracking = ($Target, pointerId, handlePointerMove, handlePointerUp) => {
|
|
6531
|
-
$Target.setPointerCapture(pointerId);
|
|
6532
|
-
$Target.addEventListener(PointerMove, handlePointerMove);
|
|
6533
|
-
// TODO use pointerlost event instead
|
|
6534
|
-
$Target.addEventListener(PointerUp, handlePointerUp);
|
|
6535
|
-
};
|
|
6536
|
-
const stopTracking = ($Target, pointerId, handlePointerMove, handlePointerUp) => {
|
|
6537
|
-
$Target.releasePointerCapture(pointerId);
|
|
6538
|
-
$Target.removeEventListener(PointerMove, handlePointerMove);
|
|
6539
|
-
// TODO use pointerlost event instead
|
|
6540
|
-
$Target.removeEventListener(PointerUp, handlePointerUp);
|
|
6541
|
-
};
|
|
6542
|
-
const create$q = (pointerDown, pointerMove, pointerUp) => {
|
|
6543
|
-
const shared = (fn, event) => {
|
|
6544
|
-
const message = fn(event);
|
|
6545
|
-
if (!message || message.length === 0) {
|
|
6546
|
-
return;
|
|
6547
|
-
}
|
|
6548
|
-
const uid = fromEvent(event);
|
|
6549
|
-
send('Viewlet.executeViewletCommand', uid, ...message);
|
|
6550
|
-
};
|
|
6551
|
-
const handlePointerMove = event => {
|
|
6552
|
-
shared(pointerMove, event);
|
|
6553
|
-
};
|
|
6554
|
-
const handlePointerUp = event => {
|
|
6555
|
-
const {
|
|
6556
|
-
target,
|
|
6557
|
-
pointerId
|
|
6558
|
-
} = event;
|
|
6559
|
-
stopTracking(target, pointerId, handlePointerMove, handlePointerUp);
|
|
6560
|
-
shared(pointerUp, event);
|
|
6561
|
-
};
|
|
6562
|
-
const handlePointerDown = event => {
|
|
6563
|
-
const {
|
|
6564
|
-
target,
|
|
6565
|
-
pointerId
|
|
6566
|
-
} = event;
|
|
6567
|
-
startTracking(target, pointerId, handlePointerMove, handlePointerUp);
|
|
6568
|
-
shared(pointerDown, event);
|
|
6569
|
-
return [];
|
|
6570
|
-
};
|
|
6571
|
-
return handlePointerDown;
|
|
6572
|
-
};
|
|
6573
|
-
|
|
6574
6566
|
const returnValue$4 = true;
|
|
6575
|
-
const handleSashPointerDown$2 = create$
|
|
6567
|
+
const handleSashPointerDown$2 = create$v(event => {
|
|
6576
6568
|
const {
|
|
6577
6569
|
clientX,
|
|
6578
6570
|
clientY
|
|
@@ -7036,7 +7028,7 @@ const handlePaste = event => {
|
|
|
7036
7028
|
const text = getText(clipboardData);
|
|
7037
7029
|
return ['paste', text];
|
|
7038
7030
|
};
|
|
7039
|
-
const handleScrollBarVerticalPointerDown = create$
|
|
7031
|
+
const handleScrollBarVerticalPointerDown = create$v(event => {
|
|
7040
7032
|
const {
|
|
7041
7033
|
clientY
|
|
7042
7034
|
} = event;
|
|
@@ -7070,7 +7062,7 @@ const handleScrollBarHorizontalPointerUp = event => {
|
|
|
7070
7062
|
target,
|
|
7071
7063
|
pointerId
|
|
7072
7064
|
} = event;
|
|
7073
|
-
stopTracking
|
|
7065
|
+
stopTracking(target, pointerId, handleScrollBarThumbHorizontalPointerMove, handleScrollBarHorizontalPointerUp);
|
|
7074
7066
|
return [];
|
|
7075
7067
|
};
|
|
7076
7068
|
|
|
@@ -7084,7 +7076,7 @@ const handleScrollBarHorizontalPointerDown = event => {
|
|
|
7084
7076
|
pointerId,
|
|
7085
7077
|
clientX
|
|
7086
7078
|
} = event;
|
|
7087
|
-
startTracking
|
|
7079
|
+
startTracking(target, pointerId, handleScrollBarThumbHorizontalPointerMove, handleScrollBarHorizontalPointerUp);
|
|
7088
7080
|
return ['handleScrollBarHorizontalPointerDown', clientX];
|
|
7089
7081
|
};
|
|
7090
7082
|
const handleScrollBarContextMenu = event => {
|
|
@@ -7596,6 +7588,11 @@ const handleClick$6 = event => {
|
|
|
7596
7588
|
const uid = fromEvent(event);
|
|
7597
7589
|
handleClickAt(uid, button, clientX, clientY);
|
|
7598
7590
|
};
|
|
7591
|
+
const handleClickOpenFolder = event => {
|
|
7592
|
+
preventDefault(event);
|
|
7593
|
+
const uid = fromEvent(event);
|
|
7594
|
+
handleClickOpenFolder$1(uid);
|
|
7595
|
+
};
|
|
7599
7596
|
const handlePointerDown$4 = event => {
|
|
7600
7597
|
const {
|
|
7601
7598
|
button,
|
|
@@ -7642,6 +7639,7 @@ const ViewletExplorerEvents = {
|
|
|
7642
7639
|
__proto__: null,
|
|
7643
7640
|
handleBlur: handleBlur$5,
|
|
7644
7641
|
handleClick: handleClick$6,
|
|
7642
|
+
handleClickOpenFolder,
|
|
7645
7643
|
handleContextMenu: handleContextMenu$5,
|
|
7646
7644
|
handleDragEnd,
|
|
7647
7645
|
handleDragLeave,
|
|
@@ -7779,7 +7777,7 @@ const handleScrollBarPointerCaptureLost = event => {
|
|
|
7779
7777
|
target,
|
|
7780
7778
|
pointerId
|
|
7781
7779
|
} = event;
|
|
7782
|
-
stopTracking
|
|
7780
|
+
stopTracking(target, pointerId, handleScrollBarThumbPointerMove$1, handleScrollBarPointerCaptureLost);
|
|
7783
7781
|
const uid = fromEvent(event);
|
|
7784
7782
|
handleScrollBarCaptureLost(uid);
|
|
7785
7783
|
};
|
|
@@ -7789,7 +7787,7 @@ const handleScrollBarPointerDown$2 = event => {
|
|
|
7789
7787
|
pointerId,
|
|
7790
7788
|
clientY
|
|
7791
7789
|
} = event;
|
|
7792
|
-
startTracking
|
|
7790
|
+
startTracking(target, pointerId, handleScrollBarThumbPointerMove$1, handleScrollBarPointerCaptureLost);
|
|
7793
7791
|
const uid = fromEvent(event);
|
|
7794
7792
|
handleScrollBarClick(uid, clientY);
|
|
7795
7793
|
};
|
|
@@ -8231,7 +8229,7 @@ const handleResizerPointerUp = event => {
|
|
|
8231
8229
|
target,
|
|
8232
8230
|
pointerId
|
|
8233
8231
|
} = event;
|
|
8234
|
-
stopTracking
|
|
8232
|
+
stopTracking(target, pointerId, handleResizerPointerMove, handleResizerPointerUp);
|
|
8235
8233
|
};
|
|
8236
8234
|
const handleResizerPointerDown = event => {
|
|
8237
8235
|
const {
|
|
@@ -8239,7 +8237,7 @@ const handleResizerPointerDown = event => {
|
|
|
8239
8237
|
pointerId,
|
|
8240
8238
|
clientX
|
|
8241
8239
|
} = event;
|
|
8242
|
-
startTracking
|
|
8240
|
+
startTracking(target, pointerId, handleResizerPointerMove, handleResizerPointerUp);
|
|
8243
8241
|
const id = target.nextSibling ? 1 : 2;
|
|
8244
8242
|
const uid = fromEvent(event);
|
|
8245
8243
|
handleResizerClick(uid, id, clientX);
|
|
@@ -8760,7 +8758,7 @@ const handlePointerCaptureLost = event => {
|
|
|
8760
8758
|
target,
|
|
8761
8759
|
pointerId
|
|
8762
8760
|
} = event;
|
|
8763
|
-
stopTracking
|
|
8761
|
+
stopTracking(target, pointerId, handleSashPointerMove, handlePointerCaptureLost);
|
|
8764
8762
|
const id = getSashId(target);
|
|
8765
8763
|
handleSashPointerUp(id);
|
|
8766
8764
|
};
|
|
@@ -8769,7 +8767,7 @@ const handleSashPointerDown = event => {
|
|
|
8769
8767
|
target,
|
|
8770
8768
|
pointerId
|
|
8771
8769
|
} = event;
|
|
8772
|
-
startTracking
|
|
8770
|
+
startTracking(target, pointerId, handleSashPointerMove, handlePointerCaptureLost);
|
|
8773
8771
|
const id = getSashId(target);
|
|
8774
8772
|
handleSashPointerDown$1(id);
|
|
8775
8773
|
};
|
|
@@ -9838,7 +9836,7 @@ const handleScrollBarPointerUp = event => {
|
|
|
9838
9836
|
target,
|
|
9839
9837
|
pointerId
|
|
9840
9838
|
} = event;
|
|
9841
|
-
stopTracking
|
|
9839
|
+
stopTracking(target, pointerId, handleScrollBarThumbPointerMove, handleScrollBarPointerUp);
|
|
9842
9840
|
};
|
|
9843
9841
|
const handleScrollBarPointerDown$1 = event => {
|
|
9844
9842
|
const {
|
|
@@ -9846,7 +9844,7 @@ const handleScrollBarPointerDown$1 = event => {
|
|
|
9846
9844
|
pointerId,
|
|
9847
9845
|
clientY
|
|
9848
9846
|
} = event;
|
|
9849
|
-
startTracking
|
|
9847
|
+
startTracking(target, pointerId, handleScrollBarThumbPointerMove, handleScrollBarPointerUp);
|
|
9850
9848
|
return ['handleScrollBarClick', clientY];
|
|
9851
9849
|
};
|
|
9852
9850
|
const handleToggleButtonClick = event => {
|
|
@@ -11070,10 +11068,6 @@ const setFocused = (state, selector) => {
|
|
|
11070
11068
|
$Viewlet
|
|
11071
11069
|
} = state;
|
|
11072
11070
|
const $Focusable = $Viewlet.querySelector(selector);
|
|
11073
|
-
console.log({
|
|
11074
|
-
$Focusable,
|
|
11075
|
-
selector
|
|
11076
|
-
});
|
|
11077
11071
|
$Focusable.focus();
|
|
11078
11072
|
};
|
|
11079
11073
|
|