@openfin/remote-adapter 39.81.18 → 39.82.2

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.
@@ -9251,6 +9251,8 @@ function requireInstance () {
9251
9251
  * left: 100,
9252
9252
  * width: 300,
9253
9253
  * height: 300
9254
+ * }, {
9255
+ * bringToFront : true
9254
9256
  * });
9255
9257
  * }
9256
9258
  *
@@ -9260,8 +9262,18 @@ function requireInstance () {
9260
9262
  * ```
9261
9263
  * @experimental
9262
9264
  */
9263
- this.showAt = async (bounds) => {
9264
- await this.wire.sendAction('show-view-at', { bounds, ...this.identity });
9265
+ this.showAt = async (bounds, options = {}) => {
9266
+ await this.wire.sendAction('show-view-at', { bounds, ...this.identity, options });
9267
+ };
9268
+ /**
9269
+ * Brings the specified view to the front of its current window. This ensures the view will be visible on top of any other views
9270
+ * which have overlapping bounds with it.
9271
+ *
9272
+ * Please note, this is not a permanent action - when a new view is created or attached to the window, it will display on top of all other views
9273
+ * in the window that share bounds with it.
9274
+ */
9275
+ this.bringToFront = async () => {
9276
+ await this.wire.sendAction('bring-view-to-front', { ...this.identity });
9265
9277
  };
9266
9278
  /**
9267
9279
  * Hides the current view if it is currently visible.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfin/remote-adapter",
3
- "version": "39.81.18",
3
+ "version": "39.82.2",
4
4
  "description": "Establish intermachine runtime connections using webRTC.",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "private": false,
@@ -19,6 +19,6 @@
19
19
  "author": "OpenFin",
20
20
  "dependencies": {
21
21
  "lodash": "^4.17.21",
22
- "@openfin/core": "39.81.18"
22
+ "@openfin/core": "39.82.2"
23
23
  }
24
24
  }