@openfin/fdc3-api 41.100.29 → 41.100.31

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.
@@ -5250,6 +5250,10 @@ declare namespace FDC3 {
5250
5250
  }
5251
5251
  }
5252
5252
 
5253
+ declare type FDC3Factory = typeof fdc3Factory;
5254
+
5255
+ declare const fdc3Factory: (version: '1.2' | '2.0', interopClient: OpenFin.InteropClient, wire: Transport<'unknown'>) => OpenFin.FDC3.v2_0.DesktopAgent | OpenFin.FDC3.v1_2.DesktopAgent;
5256
+
5253
5257
  export declare function fdc3FromFin(fin: OpenFin.Fin<OpenFin.EntityType>, { fdc3Version }?: {
5254
5258
  fdc3Version?: Fdc3Version;
5255
5259
  }): Promise<Fdc3Module | Fdc3Module2>;
@@ -7222,7 +7226,7 @@ declare class InteropBroker extends Base {
7222
7226
  };
7223
7227
  private getClientState;
7224
7228
  private static toObject;
7225
- static checkContextIntegrity(context: OpenFin.Context): {
7229
+ static checkContextIntegrity: (context: OpenFin.Context) => {
7226
7230
  isValid: true;
7227
7231
  } | {
7228
7232
  isValid: false;
@@ -8245,6 +8249,24 @@ declare type LayoutComponent = Omit<LayoutItemConfig, 'content' | 'type'> & {
8245
8249
 
8246
8250
  declare type LayoutContent = Array<LayoutItemConfig | LayoutRow | LayoutColumn | LayoutComponent>;
8247
8251
 
8252
+ /**
8253
+ * Generated after a layout is created.
8254
+ * @interface
8255
+ */
8256
+ declare type LayoutCreatedEvent = BaseEvent_5 & {
8257
+ type: 'layout-created';
8258
+ layoutIdentity: OpenFin.LayoutIdentity;
8259
+ };
8260
+
8261
+ /**
8262
+ * Generated after a layout is destroyed.
8263
+ * @interface
8264
+ */
8265
+ declare type LayoutDestroyedEvent = BaseEvent_5 & {
8266
+ type: 'layout-destroyed';
8267
+ layoutIdentity: OpenFin.LayoutIdentity;
8268
+ };
8269
+
8248
8270
  /**
8249
8271
  * The base payload for the CustomEvent.detail property for Layout events emitted on the layout container element.
8250
8272
  */
@@ -8730,6 +8752,15 @@ declare type LayoutSnapshot = {
8730
8752
  layouts: Record<string, LayoutOptions>;
8731
8753
  };
8732
8754
 
8755
+ /**
8756
+ * Generated after a snapshot is applied.
8757
+ * @interface
8758
+ */
8759
+ declare type LayoutSnapshotAppliedEvent = BaseEvent_5 & {
8760
+ type: 'layout-snapshot-applied';
8761
+ layoutIdentity: OpenFin.LayoutIdentity;
8762
+ };
8763
+
8733
8764
  /**
8734
8765
  * Generated when the Layout experiences a state change, for example tabs added/removed.
8735
8766
  * @interface
@@ -19034,6 +19065,9 @@ declare namespace WindowEvents {
19034
19065
  PerformanceReportEvent,
19035
19066
  InputEvent_2 as InputEvent,
19036
19067
  LayoutInitializedEvent,
19068
+ LayoutCreatedEvent,
19069
+ LayoutDestroyedEvent,
19070
+ LayoutSnapshotAppliedEvent,
19037
19071
  LayoutReadyEvent,
19038
19072
  CloseRequestedEvent,
19039
19073
  WindowCloseRequestedEvent,
@@ -19267,7 +19301,7 @@ declare type WindowShowRequestedEvent = ShowRequestedEvent;
19267
19301
  * A union of all events that emit natively on the `Window` topic, i.e. excluding those that propagate
19268
19302
  * from {@link OpenFin.ViewEvents}.
19269
19303
  */
19270
- declare type WindowSourcedEvent = WebContentsEvents.Event<'window'> | WindowViewEvent | AuthRequestedEvent | BeginUserBoundsChangingEvent | BoundsChangedEvent | BoundsChangingEvent | ContextChangedEvent | CloseRequestedEvent | ClosedEvent_2 | ClosingEvent | DisabledMovementBoundsChangedEvent | DisabledMovementBoundsChangingEvent | EmbeddedEvent | EndUserBoundsChangingEvent | ExternalProcessExitedEvent | ExternalProcessStartedEvent | HiddenEvent_2 | HotkeyEvent_2 | InitializedEvent_2 | LayoutInitializedEvent | LayoutReadyEvent | MaximizedEvent | MinimizedEvent | OptionsChangedEvent | PerformanceReportEvent | PreloadScriptsStateChangedEvent | PreloadScriptsStateChangingEvent | ReloadedEvent | RestoredEvent | ShowRequestedEvent | ShownEvent_2 | UserMovementDisabledEvent | UserMovementEnabledEvent | WillMoveEvent | WillResizeEvent | ShowAllDownloadsEvent | DownloadShelfVisibilityChangedEvent;
19304
+ declare type WindowSourcedEvent = WebContentsEvents.Event<'window'> | WindowViewEvent | AuthRequestedEvent | BeginUserBoundsChangingEvent | BoundsChangedEvent | BoundsChangingEvent | ContextChangedEvent | CloseRequestedEvent | ClosedEvent_2 | ClosingEvent | DisabledMovementBoundsChangedEvent | DisabledMovementBoundsChangingEvent | EmbeddedEvent | EndUserBoundsChangingEvent | ExternalProcessExitedEvent | ExternalProcessStartedEvent | HiddenEvent_2 | HotkeyEvent_2 | InitializedEvent_2 | LayoutInitializedEvent | LayoutReadyEvent | LayoutCreatedEvent | LayoutDestroyedEvent | LayoutSnapshotAppliedEvent | MaximizedEvent | MinimizedEvent | OptionsChangedEvent | PerformanceReportEvent | PreloadScriptsStateChangedEvent | PreloadScriptsStateChangingEvent | ReloadedEvent | RestoredEvent | ShowRequestedEvent | ShownEvent_2 | UserMovementDisabledEvent | UserMovementEnabledEvent | WillMoveEvent | WillResizeEvent | ShowAllDownloadsEvent | DownloadShelfVisibilityChangedEvent;
19271
19305
 
19272
19306
  /**
19273
19307
  * Generated when a child window starts loading.
@@ -5250,6 +5250,10 @@ declare namespace FDC3 {
5250
5250
  }
5251
5251
  }
5252
5252
 
5253
+ declare type FDC3Factory = typeof fdc3Factory;
5254
+
5255
+ declare const fdc3Factory: (version: '1.2' | '2.0', interopClient: OpenFin.InteropClient, wire: Transport<'unknown'>) => OpenFin.FDC3.v2_0.DesktopAgent | OpenFin.FDC3.v1_2.DesktopAgent;
5256
+
5253
5257
  export declare function fdc3FromFin(fin: OpenFin.Fin<OpenFin.EntityType>, { fdc3Version }?: {
5254
5258
  fdc3Version?: Fdc3Version;
5255
5259
  }): Promise<Fdc3Module | Fdc3Module2>;
@@ -7222,7 +7226,7 @@ declare class InteropBroker extends Base {
7222
7226
  };
7223
7227
  private getClientState;
7224
7228
  private static toObject;
7225
- static checkContextIntegrity(context: OpenFin.Context): {
7229
+ static checkContextIntegrity: (context: OpenFin.Context) => {
7226
7230
  isValid: true;
7227
7231
  } | {
7228
7232
  isValid: false;
@@ -8245,6 +8249,24 @@ declare type LayoutComponent = Omit<LayoutItemConfig, 'content' | 'type'> & {
8245
8249
 
8246
8250
  declare type LayoutContent = Array<LayoutItemConfig | LayoutRow | LayoutColumn | LayoutComponent>;
8247
8251
 
8252
+ /**
8253
+ * Generated after a layout is created.
8254
+ * @interface
8255
+ */
8256
+ declare type LayoutCreatedEvent = BaseEvent_5 & {
8257
+ type: 'layout-created';
8258
+ layoutIdentity: OpenFin.LayoutIdentity;
8259
+ };
8260
+
8261
+ /**
8262
+ * Generated after a layout is destroyed.
8263
+ * @interface
8264
+ */
8265
+ declare type LayoutDestroyedEvent = BaseEvent_5 & {
8266
+ type: 'layout-destroyed';
8267
+ layoutIdentity: OpenFin.LayoutIdentity;
8268
+ };
8269
+
8248
8270
  /**
8249
8271
  * The base payload for the CustomEvent.detail property for Layout events emitted on the layout container element.
8250
8272
  */
@@ -8730,6 +8752,15 @@ declare type LayoutSnapshot = {
8730
8752
  layouts: Record<string, LayoutOptions>;
8731
8753
  };
8732
8754
 
8755
+ /**
8756
+ * Generated after a snapshot is applied.
8757
+ * @interface
8758
+ */
8759
+ declare type LayoutSnapshotAppliedEvent = BaseEvent_5 & {
8760
+ type: 'layout-snapshot-applied';
8761
+ layoutIdentity: OpenFin.LayoutIdentity;
8762
+ };
8763
+
8733
8764
  /**
8734
8765
  * Generated when the Layout experiences a state change, for example tabs added/removed.
8735
8766
  * @interface
@@ -19034,6 +19065,9 @@ declare namespace WindowEvents {
19034
19065
  PerformanceReportEvent,
19035
19066
  InputEvent_2 as InputEvent,
19036
19067
  LayoutInitializedEvent,
19068
+ LayoutCreatedEvent,
19069
+ LayoutDestroyedEvent,
19070
+ LayoutSnapshotAppliedEvent,
19037
19071
  LayoutReadyEvent,
19038
19072
  CloseRequestedEvent,
19039
19073
  WindowCloseRequestedEvent,
@@ -19267,7 +19301,7 @@ declare type WindowShowRequestedEvent = ShowRequestedEvent;
19267
19301
  * A union of all events that emit natively on the `Window` topic, i.e. excluding those that propagate
19268
19302
  * from {@link OpenFin.ViewEvents}.
19269
19303
  */
19270
- declare type WindowSourcedEvent = WebContentsEvents.Event<'window'> | WindowViewEvent | AuthRequestedEvent | BeginUserBoundsChangingEvent | BoundsChangedEvent | BoundsChangingEvent | ContextChangedEvent | CloseRequestedEvent | ClosedEvent_2 | ClosingEvent | DisabledMovementBoundsChangedEvent | DisabledMovementBoundsChangingEvent | EmbeddedEvent | EndUserBoundsChangingEvent | ExternalProcessExitedEvent | ExternalProcessStartedEvent | HiddenEvent_2 | HotkeyEvent_2 | InitializedEvent_2 | LayoutInitializedEvent | LayoutReadyEvent | MaximizedEvent | MinimizedEvent | OptionsChangedEvent | PerformanceReportEvent | PreloadScriptsStateChangedEvent | PreloadScriptsStateChangingEvent | ReloadedEvent | RestoredEvent | ShowRequestedEvent | ShownEvent_2 | UserMovementDisabledEvent | UserMovementEnabledEvent | WillMoveEvent | WillResizeEvent | ShowAllDownloadsEvent | DownloadShelfVisibilityChangedEvent;
19304
+ declare type WindowSourcedEvent = WebContentsEvents.Event<'window'> | WindowViewEvent | AuthRequestedEvent | BeginUserBoundsChangingEvent | BoundsChangedEvent | BoundsChangingEvent | ContextChangedEvent | CloseRequestedEvent | ClosedEvent_2 | ClosingEvent | DisabledMovementBoundsChangedEvent | DisabledMovementBoundsChangingEvent | EmbeddedEvent | EndUserBoundsChangingEvent | ExternalProcessExitedEvent | ExternalProcessStartedEvent | HiddenEvent_2 | HotkeyEvent_2 | InitializedEvent_2 | LayoutInitializedEvent | LayoutReadyEvent | LayoutCreatedEvent | LayoutDestroyedEvent | LayoutSnapshotAppliedEvent | MaximizedEvent | MinimizedEvent | OptionsChangedEvent | PerformanceReportEvent | PreloadScriptsStateChangedEvent | PreloadScriptsStateChangingEvent | ReloadedEvent | RestoredEvent | ShowRequestedEvent | ShownEvent_2 | UserMovementDisabledEvent | UserMovementEnabledEvent | WillMoveEvent | WillResizeEvent | ShowAllDownloadsEvent | DownloadShelfVisibilityChangedEvent;
19271
19305
 
19272
19306
  /**
19273
19307
  * Generated when a child window starts loading.
@@ -5250,6 +5250,10 @@ declare namespace FDC3 {
5250
5250
  }
5251
5251
  }
5252
5252
 
5253
+ declare type FDC3Factory = typeof fdc3Factory;
5254
+
5255
+ declare const fdc3Factory: (version: '1.2' | '2.0', interopClient: OpenFin.InteropClient, wire: Transport<'unknown'>) => OpenFin.FDC3.v2_0.DesktopAgent | OpenFin.FDC3.v1_2.DesktopAgent;
5256
+
5253
5257
  export declare function fdc3FromFin(fin: OpenFin.Fin<OpenFin.EntityType>, { fdc3Version }?: {
5254
5258
  fdc3Version?: Fdc3Version;
5255
5259
  }): Promise<Fdc3Module | Fdc3Module2>;
@@ -7222,7 +7226,7 @@ declare class InteropBroker extends Base {
7222
7226
  };
7223
7227
  private getClientState;
7224
7228
  private static toObject;
7225
- static checkContextIntegrity(context: OpenFin.Context): {
7229
+ static checkContextIntegrity: (context: OpenFin.Context) => {
7226
7230
  isValid: true;
7227
7231
  } | {
7228
7232
  isValid: false;
@@ -8245,6 +8249,24 @@ declare type LayoutComponent = Omit<LayoutItemConfig, 'content' | 'type'> & {
8245
8249
 
8246
8250
  declare type LayoutContent = Array<LayoutItemConfig | LayoutRow | LayoutColumn | LayoutComponent>;
8247
8251
 
8252
+ /**
8253
+ * Generated after a layout is created.
8254
+ * @interface
8255
+ */
8256
+ declare type LayoutCreatedEvent = BaseEvent_5 & {
8257
+ type: 'layout-created';
8258
+ layoutIdentity: OpenFin.LayoutIdentity;
8259
+ };
8260
+
8261
+ /**
8262
+ * Generated after a layout is destroyed.
8263
+ * @interface
8264
+ */
8265
+ declare type LayoutDestroyedEvent = BaseEvent_5 & {
8266
+ type: 'layout-destroyed';
8267
+ layoutIdentity: OpenFin.LayoutIdentity;
8268
+ };
8269
+
8248
8270
  /**
8249
8271
  * The base payload for the CustomEvent.detail property for Layout events emitted on the layout container element.
8250
8272
  */
@@ -8730,6 +8752,15 @@ declare type LayoutSnapshot = {
8730
8752
  layouts: Record<string, LayoutOptions>;
8731
8753
  };
8732
8754
 
8755
+ /**
8756
+ * Generated after a snapshot is applied.
8757
+ * @interface
8758
+ */
8759
+ declare type LayoutSnapshotAppliedEvent = BaseEvent_5 & {
8760
+ type: 'layout-snapshot-applied';
8761
+ layoutIdentity: OpenFin.LayoutIdentity;
8762
+ };
8763
+
8733
8764
  /**
8734
8765
  * Generated when the Layout experiences a state change, for example tabs added/removed.
8735
8766
  * @interface
@@ -19034,6 +19065,9 @@ declare namespace WindowEvents {
19034
19065
  PerformanceReportEvent,
19035
19066
  InputEvent_2 as InputEvent,
19036
19067
  LayoutInitializedEvent,
19068
+ LayoutCreatedEvent,
19069
+ LayoutDestroyedEvent,
19070
+ LayoutSnapshotAppliedEvent,
19037
19071
  LayoutReadyEvent,
19038
19072
  CloseRequestedEvent,
19039
19073
  WindowCloseRequestedEvent,
@@ -19267,7 +19301,7 @@ declare type WindowShowRequestedEvent = ShowRequestedEvent;
19267
19301
  * A union of all events that emit natively on the `Window` topic, i.e. excluding those that propagate
19268
19302
  * from {@link OpenFin.ViewEvents}.
19269
19303
  */
19270
- declare type WindowSourcedEvent = WebContentsEvents.Event<'window'> | WindowViewEvent | AuthRequestedEvent | BeginUserBoundsChangingEvent | BoundsChangedEvent | BoundsChangingEvent | ContextChangedEvent | CloseRequestedEvent | ClosedEvent_2 | ClosingEvent | DisabledMovementBoundsChangedEvent | DisabledMovementBoundsChangingEvent | EmbeddedEvent | EndUserBoundsChangingEvent | ExternalProcessExitedEvent | ExternalProcessStartedEvent | HiddenEvent_2 | HotkeyEvent_2 | InitializedEvent_2 | LayoutInitializedEvent | LayoutReadyEvent | MaximizedEvent | MinimizedEvent | OptionsChangedEvent | PerformanceReportEvent | PreloadScriptsStateChangedEvent | PreloadScriptsStateChangingEvent | ReloadedEvent | RestoredEvent | ShowRequestedEvent | ShownEvent_2 | UserMovementDisabledEvent | UserMovementEnabledEvent | WillMoveEvent | WillResizeEvent | ShowAllDownloadsEvent | DownloadShelfVisibilityChangedEvent;
19304
+ declare type WindowSourcedEvent = WebContentsEvents.Event<'window'> | WindowViewEvent | AuthRequestedEvent | BeginUserBoundsChangingEvent | BoundsChangedEvent | BoundsChangingEvent | ContextChangedEvent | CloseRequestedEvent | ClosedEvent_2 | ClosingEvent | DisabledMovementBoundsChangedEvent | DisabledMovementBoundsChangingEvent | EmbeddedEvent | EndUserBoundsChangingEvent | ExternalProcessExitedEvent | ExternalProcessStartedEvent | HiddenEvent_2 | HotkeyEvent_2 | InitializedEvent_2 | LayoutInitializedEvent | LayoutReadyEvent | LayoutCreatedEvent | LayoutDestroyedEvent | LayoutSnapshotAppliedEvent | MaximizedEvent | MinimizedEvent | OptionsChangedEvent | PerformanceReportEvent | PreloadScriptsStateChangedEvent | PreloadScriptsStateChangingEvent | ReloadedEvent | RestoredEvent | ShowRequestedEvent | ShownEvent_2 | UserMovementDisabledEvent | UserMovementEnabledEvent | WillMoveEvent | WillResizeEvent | ShowAllDownloadsEvent | DownloadShelfVisibilityChangedEvent;
19271
19305
 
19272
19306
  /**
19273
19307
  * Generated when a child window starts loading.
package/out/fdc3-api.d.ts CHANGED
@@ -5335,6 +5335,10 @@ declare namespace FDC3 {
5335
5335
  }
5336
5336
  }
5337
5337
 
5338
+ declare type FDC3Factory = typeof fdc3Factory;
5339
+
5340
+ declare const fdc3Factory: (version: '1.2' | '2.0', interopClient: OpenFin.InteropClient, wire: Transport<'unknown'>) => OpenFin.FDC3.v2_0.DesktopAgent | OpenFin.FDC3.v1_2.DesktopAgent;
5341
+
5338
5342
  export declare function fdc3FromFin(fin: OpenFin.Fin<OpenFin.EntityType>, { fdc3Version }?: {
5339
5343
  fdc3Version?: Fdc3Version;
5340
5344
  }): Promise<Fdc3Module | Fdc3Module2>;
@@ -7331,7 +7335,7 @@ declare class InteropBroker extends Base {
7331
7335
  };
7332
7336
  private getClientState;
7333
7337
  private static toObject;
7334
- static checkContextIntegrity(context: OpenFin.Context): {
7338
+ static checkContextIntegrity: (context: OpenFin.Context) => {
7335
7339
  isValid: true;
7336
7340
  } | {
7337
7341
  isValid: false;
@@ -7430,7 +7434,7 @@ declare class InteropClient extends Base {
7430
7434
  /**
7431
7435
  * @internal
7432
7436
  */
7433
- constructor(wire: Transport, clientPromise: Promise<OpenFin.ChannelClient>);
7437
+ constructor(wire: Transport, clientPromise: Promise<OpenFin.ChannelClient>, fdc3Factory: FDC3Factory);
7434
7438
  /**
7435
7439
  * Sets a context for the context group of the current entity.
7436
7440
  *
@@ -8371,6 +8375,24 @@ declare type LayoutComponent = Omit<LayoutItemConfig, 'content' | 'type'> & {
8371
8375
 
8372
8376
  declare type LayoutContent = Array<LayoutItemConfig | LayoutRow | LayoutColumn | LayoutComponent>;
8373
8377
 
8378
+ /**
8379
+ * Generated after a layout is created.
8380
+ * @interface
8381
+ */
8382
+ declare type LayoutCreatedEvent = BaseEvent_5 & {
8383
+ type: 'layout-created';
8384
+ layoutIdentity: OpenFin.LayoutIdentity;
8385
+ };
8386
+
8387
+ /**
8388
+ * Generated after a layout is destroyed.
8389
+ * @interface
8390
+ */
8391
+ declare type LayoutDestroyedEvent = BaseEvent_5 & {
8392
+ type: 'layout-destroyed';
8393
+ layoutIdentity: OpenFin.LayoutIdentity;
8394
+ };
8395
+
8374
8396
  /**
8375
8397
  * The base payload for the CustomEvent.detail property for Layout events emitted on the layout container element.
8376
8398
  */
@@ -9026,6 +9048,15 @@ declare type LayoutSnapshot = {
9026
9048
  layouts: Record<string, LayoutOptions>;
9027
9049
  };
9028
9050
 
9051
+ /**
9052
+ * Generated after a snapshot is applied.
9053
+ * @interface
9054
+ */
9055
+ declare type LayoutSnapshotAppliedEvent = BaseEvent_5 & {
9056
+ type: 'layout-snapshot-applied';
9057
+ layoutIdentity: OpenFin.LayoutIdentity;
9058
+ };
9059
+
9029
9060
  /**
9030
9061
  * Generated when the Layout experiences a state change, for example tabs added/removed.
9031
9062
  * @interface
@@ -19488,6 +19519,9 @@ declare namespace WindowEvents {
19488
19519
  PerformanceReportEvent,
19489
19520
  InputEvent_2 as InputEvent,
19490
19521
  LayoutInitializedEvent,
19522
+ LayoutCreatedEvent,
19523
+ LayoutDestroyedEvent,
19524
+ LayoutSnapshotAppliedEvent,
19491
19525
  LayoutReadyEvent,
19492
19526
  CloseRequestedEvent,
19493
19527
  WindowCloseRequestedEvent,
@@ -19721,7 +19755,7 @@ declare type WindowShowRequestedEvent = ShowRequestedEvent;
19721
19755
  * A union of all events that emit natively on the `Window` topic, i.e. excluding those that propagate
19722
19756
  * from {@link OpenFin.ViewEvents}.
19723
19757
  */
19724
- declare type WindowSourcedEvent = WebContentsEvents.Event<'window'> | WindowViewEvent | AuthRequestedEvent | BeginUserBoundsChangingEvent | BoundsChangedEvent | BoundsChangingEvent | ContextChangedEvent | CloseRequestedEvent | ClosedEvent_2 | ClosingEvent | DisabledMovementBoundsChangedEvent | DisabledMovementBoundsChangingEvent | EmbeddedEvent | EndUserBoundsChangingEvent | ExternalProcessExitedEvent | ExternalProcessStartedEvent | HiddenEvent_2 | HotkeyEvent_2 | InitializedEvent_2 | LayoutInitializedEvent | LayoutReadyEvent | MaximizedEvent | MinimizedEvent | OptionsChangedEvent | PerformanceReportEvent | PreloadScriptsStateChangedEvent | PreloadScriptsStateChangingEvent | ReloadedEvent | RestoredEvent | ShowRequestedEvent | ShownEvent_2 | UserMovementDisabledEvent | UserMovementEnabledEvent | WillMoveEvent | WillResizeEvent | ShowAllDownloadsEvent | DownloadShelfVisibilityChangedEvent;
19758
+ declare type WindowSourcedEvent = WebContentsEvents.Event<'window'> | WindowViewEvent | AuthRequestedEvent | BeginUserBoundsChangingEvent | BoundsChangedEvent | BoundsChangingEvent | ContextChangedEvent | CloseRequestedEvent | ClosedEvent_2 | ClosingEvent | DisabledMovementBoundsChangedEvent | DisabledMovementBoundsChangingEvent | EmbeddedEvent | EndUserBoundsChangingEvent | ExternalProcessExitedEvent | ExternalProcessStartedEvent | HiddenEvent_2 | HotkeyEvent_2 | InitializedEvent_2 | LayoutInitializedEvent | LayoutReadyEvent | LayoutCreatedEvent | LayoutDestroyedEvent | LayoutSnapshotAppliedEvent | MaximizedEvent | MinimizedEvent | OptionsChangedEvent | PerformanceReportEvent | PreloadScriptsStateChangedEvent | PreloadScriptsStateChangingEvent | ReloadedEvent | RestoredEvent | ShowRequestedEvent | ShownEvent_2 | UserMovementDisabledEvent | UserMovementEnabledEvent | WillMoveEvent | WillResizeEvent | ShowAllDownloadsEvent | DownloadShelfVisibilityChangedEvent;
19725
19759
 
19726
19760
  /**
19727
19761
  * Generated when a child window starts loading.