@openfin/node-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/node-adapter.js +5 -5
- package/package.json +2 -2
package/out/node-adapter.js
CHANGED
|
@@ -11682,7 +11682,7 @@ const layout_constants_1$1 = layout_constants;
|
|
|
11682
11682
|
*
|
|
11683
11683
|
* @remarks The built-in event emitter is not an OpenFin event emitter so it doesn't share propagation semantics.
|
|
11684
11684
|
*
|
|
11685
|
-
* ####
|
|
11685
|
+
* #### [addEventListener(type, listener [, options]);](https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/addEventListener)
|
|
11686
11686
|
* Adds a listener to the end of the listeners array for the specified event.
|
|
11687
11687
|
* @example
|
|
11688
11688
|
* ```js
|
|
@@ -11699,7 +11699,7 @@ const layout_constants_1$1 = layout_constants;
|
|
|
11699
11699
|
* });
|
|
11700
11700
|
* ```
|
|
11701
11701
|
*
|
|
11702
|
-
* ####
|
|
11702
|
+
* #### [removeEventListener(type, listener [, options]);](https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/removeEventListener)
|
|
11703
11703
|
* Adds a listener to the end of the listeners array for the specified event.
|
|
11704
11704
|
* @example
|
|
11705
11705
|
* ```js
|
|
@@ -12050,7 +12050,7 @@ class Layout extends base_1$8.Base {
|
|
|
12050
12050
|
return layout_entities_1.LayoutNode.getEntity(stack, client);
|
|
12051
12051
|
}
|
|
12052
12052
|
/**
|
|
12053
|
-
* Adds a view to the platform layout. Behaves like @link
|
|
12053
|
+
* Adds a view to the platform layout. Behaves like {@link Platform#createView Platform.createView} with the current layout as the target.
|
|
12054
12054
|
*
|
|
12055
12055
|
* @param viewOptions - The options for creating the view.
|
|
12056
12056
|
* @param options - Optional parameters for adding the view.
|
|
@@ -12071,7 +12071,7 @@ class Layout extends base_1$8.Base {
|
|
|
12071
12071
|
}
|
|
12072
12072
|
/**
|
|
12073
12073
|
* Closes a view by its identity. Throws an error if the view does not belong to the current layout.
|
|
12074
|
-
* Behaves like @link
|
|
12074
|
+
* Behaves like {@link Platform#closeView Platform.closeView} but only closes the view if it belongs the current layout.
|
|
12075
12075
|
*
|
|
12076
12076
|
* @param viewIdentity - The identity of the view to close.
|
|
12077
12077
|
* @returns A promise that resolves when the view is closed.
|
|
@@ -17700,7 +17700,7 @@ class NodeEnvironment extends BaseEnvironment_1 {
|
|
|
17700
17700
|
};
|
|
17701
17701
|
}
|
|
17702
17702
|
getAdapterVersionSync() {
|
|
17703
|
-
return "41.100.
|
|
17703
|
+
return "41.100.73";
|
|
17704
17704
|
}
|
|
17705
17705
|
observeBounds(element, onChange) {
|
|
17706
17706
|
throw new Error('Method not implemented.');
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openfin/node-adapter",
|
|
3
|
-
"version": "41.100.
|
|
3
|
+
"version": "41.100.73",
|
|
4
4
|
"description": "See README.md",
|
|
5
5
|
"main": "out/node-adapter.js",
|
|
6
6
|
"types": "out/node-adapter.d.ts",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"author": "OpenFin",
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"@types/node": "^20.14.2",
|
|
27
|
-
"@openfin/core": "41.100.
|
|
27
|
+
"@openfin/core": "41.100.73",
|
|
28
28
|
"lodash": "^4.17.21",
|
|
29
29
|
"ws": "^7.3.0"
|
|
30
30
|
}
|