@openfin/remote-adapter 38.82.1 → 38.82.53

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.
@@ -9254,6 +9254,8 @@ function requireInstance () {
9254
9254
  * left: 100,
9255
9255
  * width: 300,
9256
9256
  * height: 300
9257
+ * }, {
9258
+ * bringToFront : true
9257
9259
  * });
9258
9260
  * }
9259
9261
  *
@@ -9263,8 +9265,18 @@ function requireInstance () {
9263
9265
  * ```
9264
9266
  * @experimental
9265
9267
  */
9266
- this.showAt = async (bounds) => {
9267
- await this.wire.sendAction('show-view-at', { bounds, ...this.identity });
9268
+ this.showAt = async (bounds, options = {}) => {
9269
+ await this.wire.sendAction('show-view-at', { bounds, ...this.identity, options });
9270
+ };
9271
+ /**
9272
+ * Brings the specified view to the front of its current window. This ensures the view will be visible on top of any other views
9273
+ * which have overlapping bounds with it.
9274
+ *
9275
+ * 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
9276
+ * in the window that share bounds with it.
9277
+ */
9278
+ this.bringToFront = async () => {
9279
+ await this.wire.sendAction('bring-view-to-front', { ...this.identity });
9268
9280
  };
9269
9281
  /**
9270
9282
  * 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": "38.82.1",
3
+ "version": "38.82.53",
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": "38.82.1"
22
+ "@openfin/core": "38.82.53"
23
23
  }
24
24
  }