@openfin/core 43.100.26 → 43.100.27

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
@@ -5026,6 +5026,9 @@ function requireInstance () {
5026
5026
  * ```
5027
5027
  */
5028
5028
  updateOptions(options) {
5029
+ if ('frame' in options) {
5030
+ console.warn(`Deprecation Warning: Starting with version 45 it will not be possible to change the frame value after window has been created.`);
5031
+ }
5029
5032
  return this.wire.sendAction('update-window-options', { options, ...this.identity }).then(() => undefined);
5030
5033
  }
5031
5034
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfin/core",
3
- "version": "43.100.26",
3
+ "version": "43.100.27",
4
4
  "description": "The core renderer entry point of OpenFin",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "main": "out/stub.js",