@openfin/remote-adapter 41.100.71 → 41.100.73
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 +4 -4
- package/package.json +2 -2
package/out/remote-adapter.js
CHANGED
|
@@ -14104,7 +14104,7 @@ const layout_constants_1$1 = layout_constants;
|
|
|
14104
14104
|
*
|
|
14105
14105
|
* @remarks The built-in event emitter is not an OpenFin event emitter so it doesn't share propagation semantics.
|
|
14106
14106
|
*
|
|
14107
|
-
* ####
|
|
14107
|
+
* #### [addEventListener(type, listener [, options]);](https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/addEventListener)
|
|
14108
14108
|
* Adds a listener to the end of the listeners array for the specified event.
|
|
14109
14109
|
* @example
|
|
14110
14110
|
* ```js
|
|
@@ -14121,7 +14121,7 @@ const layout_constants_1$1 = layout_constants;
|
|
|
14121
14121
|
* });
|
|
14122
14122
|
* ```
|
|
14123
14123
|
*
|
|
14124
|
-
* ####
|
|
14124
|
+
* #### [removeEventListener(type, listener [, options]);](https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/removeEventListener)
|
|
14125
14125
|
* Adds a listener to the end of the listeners array for the specified event.
|
|
14126
14126
|
* @example
|
|
14127
14127
|
* ```js
|
|
@@ -14472,7 +14472,7 @@ class Layout extends base_1$7.Base {
|
|
|
14472
14472
|
return layout_entities_1.LayoutNode.getEntity(stack, client);
|
|
14473
14473
|
}
|
|
14474
14474
|
/**
|
|
14475
|
-
* Adds a view to the platform layout. Behaves like @link
|
|
14475
|
+
* Adds a view to the platform layout. Behaves like {@link Platform#createView Platform.createView} with the current layout as the target.
|
|
14476
14476
|
*
|
|
14477
14477
|
* @param viewOptions - The options for creating the view.
|
|
14478
14478
|
* @param options - Optional parameters for adding the view.
|
|
@@ -14493,7 +14493,7 @@ class Layout extends base_1$7.Base {
|
|
|
14493
14493
|
}
|
|
14494
14494
|
/**
|
|
14495
14495
|
* Closes a view by its identity. Throws an error if the view does not belong to the current layout.
|
|
14496
|
-
* Behaves like @link
|
|
14496
|
+
* Behaves like {@link Platform#closeView Platform.closeView} but only closes the view if it belongs the current layout.
|
|
14497
14497
|
*
|
|
14498
14498
|
* @param viewIdentity - The identity of the view to close.
|
|
14499
14499
|
* @returns A promise that resolves when the view is closed.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openfin/remote-adapter",
|
|
3
|
-
"version": "41.100.
|
|
3
|
+
"version": "41.100.73",
|
|
4
4
|
"description": "Establish intermachine runtime connections using webRTC.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"private": false,
|
|
@@ -20,6 +20,6 @@
|
|
|
20
20
|
"author": "OpenFin",
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"lodash": "^4.17.21",
|
|
23
|
-
"@openfin/core": "41.100.
|
|
23
|
+
"@openfin/core": "41.100.73"
|
|
24
24
|
}
|
|
25
25
|
}
|