@openfin/remote-adapter 37.80.18 → 37.80.19
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/out/remote-adapter.js +2 -3
- package/package.json +1 -1
package/out/remote-adapter.js
CHANGED
|
@@ -15123,8 +15123,7 @@ class LayoutModule extends base_1$3.Base {
|
|
|
15123
15123
|
const managerProxy = new Proxy(layoutManager, {
|
|
15124
15124
|
get(target, key) {
|
|
15125
15125
|
console.warn(`[Layout-mgr-proxy] accessing ${key.toString()}`);
|
|
15126
|
-
|
|
15127
|
-
return target[key];
|
|
15126
|
+
throw new Error(msg);
|
|
15128
15127
|
}
|
|
15129
15128
|
});
|
|
15130
15129
|
const layout = Object.assign(this.wrapSync(layoutIdentity), { layoutManager: managerProxy });
|
|
@@ -15132,7 +15131,7 @@ class LayoutModule extends base_1$3.Base {
|
|
|
15132
15131
|
get(target, key) {
|
|
15133
15132
|
if (key === 'layoutManager') {
|
|
15134
15133
|
console.warn(`[Layout-proxy] accessing ${key.toString()}`);
|
|
15135
|
-
|
|
15134
|
+
throw new Error(msg);
|
|
15136
15135
|
}
|
|
15137
15136
|
return target[key];
|
|
15138
15137
|
}
|