@openfin/core 42.100.89 → 42.100.91

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.
@@ -9192,6 +9192,7 @@ declare type MutableWindowOptions = {
9192
9192
  customData: any;
9193
9193
  /**
9194
9194
  * @defaultValue true
9195
+ * @deprecated Will be removed in runtime version 45
9195
9196
  *
9196
9197
  * Show the window's frame.
9197
9198
  */
@@ -9192,6 +9192,7 @@ declare type MutableWindowOptions = {
9192
9192
  customData: any;
9193
9193
  /**
9194
9194
  * @defaultValue true
9195
+ * @deprecated Will be removed in runtime version 45
9195
9196
  *
9196
9197
  * Show the window's frame.
9197
9198
  */
@@ -9192,6 +9192,7 @@ declare type MutableWindowOptions = {
9192
9192
  customData: any;
9193
9193
  /**
9194
9194
  * @defaultValue true
9195
+ * @deprecated Will be removed in runtime version 45
9195
9196
  *
9196
9197
  * Show the window's frame.
9197
9198
  */
package/out/stub.d.ts CHANGED
@@ -9492,6 +9492,7 @@ declare type MutableWindowOptions = {
9492
9492
  customData: any;
9493
9493
  /**
9494
9494
  * @defaultValue true
9495
+ * @deprecated Will be removed in runtime version 45
9495
9496
  *
9496
9497
  * Show the window's frame.
9497
9498
  */
package/out/stub.js CHANGED
@@ -4995,6 +4995,9 @@ function requireInstance () {
4995
4995
  * ```
4996
4996
  */
4997
4997
  updateOptions(options) {
4998
+ if ('frame' in options) {
4999
+ console.warn(`Deprecation Warning: Starting with version 45 it will not be possible to change the frame value after window has been created.`);
5000
+ }
4998
5001
  return this.wire.sendAction('update-window-options', { options, ...this.identity }).then(() => undefined);
4999
5002
  }
5000
5003
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfin/core",
3
- "version": "42.100.89",
3
+ "version": "42.100.91",
4
4
  "description": "The core renderer entry point of OpenFin",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "main": "out/stub.js",