@openfin/core 46.100.62 → 46.100.64

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.
@@ -12003,6 +12003,20 @@ declare type PlatformOptions = ApplicationCreationOptions & {
12003
12003
  * @default true
12004
12004
  */
12005
12005
  allowLaunchIntoPlatform?: boolean;
12006
+ /**
12007
+ * @experimental
12008
+ *
12009
+ * Creates window chrome before views. `createWindow` resolves when the window exists
12010
+ * (`window-created`) instead of waiting for layout creation to finish (`layout-ready`).
12011
+ *
12012
+ * Views start after the window exists. During `applySnapshot`, every window shell is
12013
+ * created first; view creation starts after `platform-snapshot-applied`.
12014
+ *
12015
+ * Tradeoff: windows appear sooner, but view content and `layout-ready` are delayed.
12016
+ *
12017
+ * @default false
12018
+ */
12019
+ deferViewCreation?: boolean;
12006
12020
  };
12007
12021
 
12008
12022
  /**
@@ -12003,6 +12003,20 @@ declare type PlatformOptions = ApplicationCreationOptions & {
12003
12003
  * @default true
12004
12004
  */
12005
12005
  allowLaunchIntoPlatform?: boolean;
12006
+ /**
12007
+ * @experimental
12008
+ *
12009
+ * Creates window chrome before views. `createWindow` resolves when the window exists
12010
+ * (`window-created`) instead of waiting for layout creation to finish (`layout-ready`).
12011
+ *
12012
+ * Views start after the window exists. During `applySnapshot`, every window shell is
12013
+ * created first; view creation starts after `platform-snapshot-applied`.
12014
+ *
12015
+ * Tradeoff: windows appear sooner, but view content and `layout-ready` are delayed.
12016
+ *
12017
+ * @default false
12018
+ */
12019
+ deferViewCreation?: boolean;
12006
12020
  };
12007
12021
 
12008
12022
  /**
@@ -12003,6 +12003,20 @@ declare type PlatformOptions = ApplicationCreationOptions & {
12003
12003
  * @default true
12004
12004
  */
12005
12005
  allowLaunchIntoPlatform?: boolean;
12006
+ /**
12007
+ * @experimental
12008
+ *
12009
+ * Creates window chrome before views. `createWindow` resolves when the window exists
12010
+ * (`window-created`) instead of waiting for layout creation to finish (`layout-ready`).
12011
+ *
12012
+ * Views start after the window exists. During `applySnapshot`, every window shell is
12013
+ * created first; view creation starts after `platform-snapshot-applied`.
12014
+ *
12015
+ * Tradeoff: windows appear sooner, but view content and `layout-ready` are delayed.
12016
+ *
12017
+ * @default false
12018
+ */
12019
+ deferViewCreation?: boolean;
12006
12020
  };
12007
12021
 
12008
12022
  /**
package/out/stub.d.ts CHANGED
@@ -12450,6 +12450,20 @@ declare type PlatformOptions = ApplicationCreationOptions & {
12450
12450
  * @default true
12451
12451
  */
12452
12452
  allowLaunchIntoPlatform?: boolean;
12453
+ /**
12454
+ * @experimental
12455
+ *
12456
+ * Creates window chrome before views. `createWindow` resolves when the window exists
12457
+ * (`window-created`) instead of waiting for layout creation to finish (`layout-ready`).
12458
+ *
12459
+ * Views start after the window exists. During `applySnapshot`, every window shell is
12460
+ * created first; view creation starts after `platform-snapshot-applied`.
12461
+ *
12462
+ * Tradeoff: windows appear sooner, but view content and `layout-ready` are delayed.
12463
+ *
12464
+ * @default false
12465
+ */
12466
+ deferViewCreation?: boolean;
12453
12467
  };
12454
12468
 
12455
12469
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfin/core",
3
- "version": "46.100.62",
3
+ "version": "46.100.64",
4
4
  "description": "The core renderer entry point of OpenFin",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "main": "out/stub.js",
@@ -34,7 +34,7 @@
34
34
  "@types/node": "^20.14.2",
35
35
  "events": "^3.0.0",
36
36
  "es-toolkit": "^1.39.3",
37
- "ws": "^7.5.10",
37
+ "ws": "^7.5.11",
38
38
  "tslib": "2.8.1"
39
39
  },
40
40
  "scripts": {