@interopio/desktop 6.13.0 → 6.13.1
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/changelog.md +2 -0
- package/dist/desktop.browser.js +7 -5
- package/dist/desktop.browser.js.map +1 -1
- package/dist/desktop.browser.min.js +1 -1
- package/dist/desktop.browser.min.js.map +1 -1
- package/dist/desktop.es.js +7 -5
- package/dist/desktop.es.js.map +1 -1
- package/dist/desktop.umd.js +7 -5
- package/dist/desktop.umd.js.map +1 -1
- package/dist/desktop.umd.min.js +1 -1
- package/dist/desktop.umd.min.js.map +1 -1
- package/package.json +2 -2
package/dist/desktop.es.js
CHANGED
|
@@ -15406,6 +15406,8 @@ class GDExecutor {
|
|
|
15406
15406
|
}
|
|
15407
15407
|
nonWindowHandlersCore(targetId, type, isGroup, callback) {
|
|
15408
15408
|
const id = `${targetId}-${type}`;
|
|
15409
|
+
const noOperationHandler = () => {
|
|
15410
|
+
};
|
|
15409
15411
|
const unsub = () => {
|
|
15410
15412
|
var _a;
|
|
15411
15413
|
if (this.unsubCallbacks[id]) {
|
|
@@ -15424,13 +15426,13 @@ class GDExecutor {
|
|
|
15424
15426
|
this.executeGroup(type, {
|
|
15425
15427
|
groupId: targetId,
|
|
15426
15428
|
options
|
|
15427
|
-
});
|
|
15429
|
+
}).catch(noOperationHandler);
|
|
15428
15430
|
}
|
|
15429
15431
|
else {
|
|
15430
15432
|
this.execute(type, {
|
|
15431
15433
|
windowId: targetId,
|
|
15432
15434
|
options
|
|
15433
|
-
});
|
|
15435
|
+
}).catch(noOperationHandler);
|
|
15434
15436
|
}
|
|
15435
15437
|
}
|
|
15436
15438
|
};
|
|
@@ -15442,10 +15444,10 @@ class GDExecutor {
|
|
|
15442
15444
|
this.unsubCallbacks[id] = [callback];
|
|
15443
15445
|
}
|
|
15444
15446
|
if (isGroup) {
|
|
15445
|
-
this.executeGroup(type, { groupId: targetId });
|
|
15447
|
+
this.executeGroup(type, { groupId: targetId }).catch(noOperationHandler);
|
|
15446
15448
|
}
|
|
15447
15449
|
else {
|
|
15448
|
-
this.execute(type, { windowId: targetId });
|
|
15450
|
+
this.execute(type, { windowId: targetId }).catch(noOperationHandler);
|
|
15449
15451
|
}
|
|
15450
15452
|
return unsub;
|
|
15451
15453
|
}
|
|
@@ -19175,7 +19177,7 @@ function factory$3(agm) {
|
|
|
19175
19177
|
};
|
|
19176
19178
|
}
|
|
19177
19179
|
|
|
19178
|
-
var version = "6.13.
|
|
19180
|
+
var version = "6.13.1";
|
|
19179
19181
|
|
|
19180
19182
|
var prepareConfig = (options) => {
|
|
19181
19183
|
function getLibConfig(value, defaultMode, trueMode) {
|