@openfin/core 35.78.2 → 35.78.5
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/mock-alpha.d.ts +28 -22
- package/out/mock-beta.d.ts +28 -22
- package/out/mock-public.d.ts +28 -22
- package/out/mock.d.ts +28 -22
- package/out/mock.js +0 -13
- package/package.json +2 -2
package/out/mock-alpha.d.ts
CHANGED
|
@@ -918,7 +918,6 @@ declare namespace ApplicationEvents {
|
|
|
918
918
|
WindowRespondingEvent,
|
|
919
919
|
WindowStartLoadEvent,
|
|
920
920
|
ApplicationWindowEvent,
|
|
921
|
-
ApplicationWindowEventTypes,
|
|
922
921
|
ClosedEvent,
|
|
923
922
|
ConnectedEvent_2 as ConnectedEvent,
|
|
924
923
|
ApplicationConnectedEvent,
|
|
@@ -1337,11 +1336,6 @@ declare type ApplicationType = {
|
|
|
1337
1336
|
*/
|
|
1338
1337
|
declare type ApplicationWindowEvent = WindowAlertRequestedEvent | WindowCreatedEvent | WindowEndLoadEvent | WindowNotRespondingEvent | WindowRespondingEvent | WindowStartLoadEvent;
|
|
1339
1338
|
|
|
1340
|
-
/**
|
|
1341
|
-
* Array of valid `type` values for an {@link ApplicationWindowEvent}.
|
|
1342
|
-
*/
|
|
1343
|
-
declare const ApplicationWindowEventTypes: readonly ["window-alert-requested", "window-created", "window-end-load", "window-not-responding", "window-responding", "window-start-load"];
|
|
1344
|
-
|
|
1345
1339
|
declare type ApplicationWindowInfo = OpenFin_2.ApplicationWindowInfo;
|
|
1346
1340
|
|
|
1347
1341
|
/**
|
|
@@ -5111,7 +5105,7 @@ declare type Event_10 = ApplicationEvents.Event | ApiReadyEvent | SnapshotApplie
|
|
|
5111
5105
|
* under the {@link OpenFin.SystemEvents} namespace (payloads inherited from propagated events are defined in the namespace
|
|
5112
5106
|
* from which they propagate).
|
|
5113
5107
|
*/
|
|
5114
|
-
declare type Event_11 = ExcludeRequested<WindowEvents.PropagatedEvent<'system'>> | ViewEvents.PropagatedEvent<'system'
|
|
5108
|
+
declare type Event_11 = ExcludeRequested<WindowEvents.PropagatedEvent<'system'>> | ExcludeRequested<ViewEvents.PropagatedEvent<'system'>> | ExcludeRequested<ApplicationEvents.PropagatedEvent<'system'>> | ApplicationCreatedEvent | DesktopIconClickedEvent | IdleStateChangedEvent | MonitorInfoChangedEvent | SessionChangedEvent | AppVersionEventWithId | SystemShutdownEvent;
|
|
5115
5109
|
|
|
5116
5110
|
/**
|
|
5117
5111
|
* [Union](https://www.typescriptlang.org/docs/handbook/2/everyday-types.html#union-types) containing every possible event that can be emitted by a {@link Channel}. Events are
|
|
@@ -5645,7 +5639,7 @@ declare type FileDownloadEvent = {
|
|
|
5645
5639
|
*
|
|
5646
5640
|
* @interface
|
|
5647
5641
|
*/
|
|
5648
|
-
declare type FileDownloadLocationChangedEvent =
|
|
5642
|
+
declare type FileDownloadLocationChangedEvent = BaseEvent_3 & {
|
|
5649
5643
|
type: 'file-download-location-changed';
|
|
5650
5644
|
};
|
|
5651
5645
|
|
|
@@ -6652,6 +6646,11 @@ declare type IdentityEvent = BaseEvent & {
|
|
|
6652
6646
|
|
|
6653
6647
|
/* Excluded from this release type: IdEventType */
|
|
6654
6648
|
|
|
6649
|
+
/**
|
|
6650
|
+
* @deprecated Renamed to {@link IdleStateChangedEvent}.
|
|
6651
|
+
*/
|
|
6652
|
+
declare type IdleEvent = IdleStateChangedEvent;
|
|
6653
|
+
|
|
6655
6654
|
/**
|
|
6656
6655
|
* Generated when a user enters or returns from idle state.
|
|
6657
6656
|
* @remarks This method is continuously generated every minute while the user is in idle.
|
|
@@ -6659,7 +6658,7 @@ declare type IdentityEvent = BaseEvent & {
|
|
|
6659
6658
|
* A user returns from idle state when the computer is unlocked or keyboard/mouse activity has resumed.
|
|
6660
6659
|
* @interface
|
|
6661
6660
|
*/
|
|
6662
|
-
declare type
|
|
6661
|
+
declare type IdleStateChangedEvent = BaseEvent_8 & {
|
|
6663
6662
|
type: 'idle-state-changed';
|
|
6664
6663
|
elapsedTime: number;
|
|
6665
6664
|
isIdle: boolean;
|
|
@@ -9542,14 +9541,9 @@ declare type MonitorDetails = {
|
|
|
9542
9541
|
};
|
|
9543
9542
|
|
|
9544
9543
|
/**
|
|
9545
|
-
*
|
|
9546
|
-
* @remarks A monitor's size changes when the taskbar is resized or relocated.
|
|
9547
|
-
* The available space of a monitor defines a rectangle that is not occupied by the taskbar
|
|
9548
|
-
* @interface
|
|
9544
|
+
* @deprecated Renamed to {@link MonitorInfoChangedEvent}.
|
|
9549
9545
|
*/
|
|
9550
|
-
declare type MonitorEvent =
|
|
9551
|
-
type: 'monitor-info-changed';
|
|
9552
|
-
};
|
|
9546
|
+
declare type MonitorEvent = MonitorInfoChangedEvent;
|
|
9553
9547
|
|
|
9554
9548
|
/**
|
|
9555
9549
|
* @interface
|
|
@@ -9573,6 +9567,16 @@ declare type MonitorInfo = {
|
|
|
9573
9567
|
virtualScreen: DipRect;
|
|
9574
9568
|
};
|
|
9575
9569
|
|
|
9570
|
+
/**
|
|
9571
|
+
* Generated on changes of a monitor's size/location.
|
|
9572
|
+
* @remarks A monitor's size changes when the taskbar is resized or relocated.
|
|
9573
|
+
* The available space of a monitor defines a rectangle that is not occupied by the taskbar
|
|
9574
|
+
* @interface
|
|
9575
|
+
*/
|
|
9576
|
+
declare type MonitorInfoChangedEvent = BaseEvent_8 & OpenFin_2.MonitorInfo & {
|
|
9577
|
+
type: 'monitor-info-changed';
|
|
9578
|
+
};
|
|
9579
|
+
|
|
9576
9580
|
/**
|
|
9577
9581
|
* @interface
|
|
9578
9582
|
*/
|
|
@@ -15168,7 +15172,9 @@ declare namespace SystemEvents {
|
|
|
15168
15172
|
NotRequested,
|
|
15169
15173
|
ExcludeRequested,
|
|
15170
15174
|
BaseEvent_8 as BaseEvent,
|
|
15175
|
+
IdleStateChangedEvent,
|
|
15171
15176
|
IdleEvent,
|
|
15177
|
+
MonitorInfoChangedEvent,
|
|
15172
15178
|
MonitorEvent,
|
|
15173
15179
|
SessionChangedEvent,
|
|
15174
15180
|
AppVersionEvent,
|
|
@@ -19243,7 +19249,7 @@ declare class _Window extends WebContents<OpenFin_2.WindowEvent> {
|
|
|
19243
19249
|
* Generated when an alert is fired and suppressed due to the customWindowAlert flag being true.
|
|
19244
19250
|
* @interface
|
|
19245
19251
|
*/
|
|
19246
|
-
declare type WindowAlertRequestedEvent =
|
|
19252
|
+
declare type WindowAlertRequestedEvent = BaseEvent_3 & {
|
|
19247
19253
|
type: 'window-alert-requested';
|
|
19248
19254
|
};
|
|
19249
19255
|
|
|
@@ -19291,7 +19297,7 @@ declare class _Window extends WebContents<OpenFin_2.WindowEvent> {
|
|
|
19291
19297
|
* Generated when a child window is created.
|
|
19292
19298
|
* @interface
|
|
19293
19299
|
*/
|
|
19294
|
-
declare type WindowCreatedEvent =
|
|
19300
|
+
declare type WindowCreatedEvent = BaseEvent_3 & {
|
|
19295
19301
|
type: 'window-created';
|
|
19296
19302
|
};
|
|
19297
19303
|
|
|
@@ -19348,7 +19354,7 @@ declare class _Window extends WebContents<OpenFin_2.WindowEvent> {
|
|
|
19348
19354
|
* Generated when a child window ends loading.
|
|
19349
19355
|
* @interface
|
|
19350
19356
|
*/
|
|
19351
|
-
declare type WindowEndLoadEvent =
|
|
19357
|
+
declare type WindowEndLoadEvent = BaseEvent_3 & {
|
|
19352
19358
|
type: 'window-end-load';
|
|
19353
19359
|
};
|
|
19354
19360
|
|
|
@@ -19562,7 +19568,7 @@ declare class _Window extends WebContents<OpenFin_2.WindowEvent> {
|
|
|
19562
19568
|
* Generated when a child window is not responding.
|
|
19563
19569
|
* @interface
|
|
19564
19570
|
*/
|
|
19565
|
-
declare type WindowNotRespondingEvent =
|
|
19571
|
+
declare type WindowNotRespondingEvent = BaseEvent_3 & {
|
|
19566
19572
|
type: 'window-not-responding';
|
|
19567
19573
|
};
|
|
19568
19574
|
|
|
@@ -19594,7 +19600,7 @@ declare class _Window extends WebContents<OpenFin_2.WindowEvent> {
|
|
|
19594
19600
|
* Generated when a child window is responding.
|
|
19595
19601
|
* @interface
|
|
19596
19602
|
*/
|
|
19597
|
-
declare type WindowRespondingEvent =
|
|
19603
|
+
declare type WindowRespondingEvent = BaseEvent_3 & {
|
|
19598
19604
|
type: 'window-responding';
|
|
19599
19605
|
};
|
|
19600
19606
|
|
|
@@ -19623,7 +19629,7 @@ declare class _Window extends WebContents<OpenFin_2.WindowEvent> {
|
|
|
19623
19629
|
* Generated when a child window starts loading.
|
|
19624
19630
|
* @interface
|
|
19625
19631
|
*/
|
|
19626
|
-
declare type WindowStartLoadEvent =
|
|
19632
|
+
declare type WindowStartLoadEvent = BaseEvent_3 & {
|
|
19627
19633
|
type: 'window-start-load';
|
|
19628
19634
|
};
|
|
19629
19635
|
|
package/out/mock-beta.d.ts
CHANGED
|
@@ -918,7 +918,6 @@ declare namespace ApplicationEvents {
|
|
|
918
918
|
WindowRespondingEvent,
|
|
919
919
|
WindowStartLoadEvent,
|
|
920
920
|
ApplicationWindowEvent,
|
|
921
|
-
ApplicationWindowEventTypes,
|
|
922
921
|
ClosedEvent,
|
|
923
922
|
ConnectedEvent_2 as ConnectedEvent,
|
|
924
923
|
ApplicationConnectedEvent,
|
|
@@ -1337,11 +1336,6 @@ declare type ApplicationType = {
|
|
|
1337
1336
|
*/
|
|
1338
1337
|
declare type ApplicationWindowEvent = WindowAlertRequestedEvent | WindowCreatedEvent | WindowEndLoadEvent | WindowNotRespondingEvent | WindowRespondingEvent | WindowStartLoadEvent;
|
|
1339
1338
|
|
|
1340
|
-
/**
|
|
1341
|
-
* Array of valid `type` values for an {@link ApplicationWindowEvent}.
|
|
1342
|
-
*/
|
|
1343
|
-
declare const ApplicationWindowEventTypes: readonly ["window-alert-requested", "window-created", "window-end-load", "window-not-responding", "window-responding", "window-start-load"];
|
|
1344
|
-
|
|
1345
1339
|
declare type ApplicationWindowInfo = OpenFin_2.ApplicationWindowInfo;
|
|
1346
1340
|
|
|
1347
1341
|
/**
|
|
@@ -5111,7 +5105,7 @@ declare type Event_10 = ApplicationEvents.Event | ApiReadyEvent | SnapshotApplie
|
|
|
5111
5105
|
* under the {@link OpenFin.SystemEvents} namespace (payloads inherited from propagated events are defined in the namespace
|
|
5112
5106
|
* from which they propagate).
|
|
5113
5107
|
*/
|
|
5114
|
-
declare type Event_11 = ExcludeRequested<WindowEvents.PropagatedEvent<'system'>> | ViewEvents.PropagatedEvent<'system'
|
|
5108
|
+
declare type Event_11 = ExcludeRequested<WindowEvents.PropagatedEvent<'system'>> | ExcludeRequested<ViewEvents.PropagatedEvent<'system'>> | ExcludeRequested<ApplicationEvents.PropagatedEvent<'system'>> | ApplicationCreatedEvent | DesktopIconClickedEvent | IdleStateChangedEvent | MonitorInfoChangedEvent | SessionChangedEvent | AppVersionEventWithId | SystemShutdownEvent;
|
|
5115
5109
|
|
|
5116
5110
|
/**
|
|
5117
5111
|
* [Union](https://www.typescriptlang.org/docs/handbook/2/everyday-types.html#union-types) containing every possible event that can be emitted by a {@link Channel}. Events are
|
|
@@ -5645,7 +5639,7 @@ declare type FileDownloadEvent = {
|
|
|
5645
5639
|
*
|
|
5646
5640
|
* @interface
|
|
5647
5641
|
*/
|
|
5648
|
-
declare type FileDownloadLocationChangedEvent =
|
|
5642
|
+
declare type FileDownloadLocationChangedEvent = BaseEvent_3 & {
|
|
5649
5643
|
type: 'file-download-location-changed';
|
|
5650
5644
|
};
|
|
5651
5645
|
|
|
@@ -6652,6 +6646,11 @@ declare type IdentityEvent = BaseEvent & {
|
|
|
6652
6646
|
|
|
6653
6647
|
/* Excluded from this release type: IdEventType */
|
|
6654
6648
|
|
|
6649
|
+
/**
|
|
6650
|
+
* @deprecated Renamed to {@link IdleStateChangedEvent}.
|
|
6651
|
+
*/
|
|
6652
|
+
declare type IdleEvent = IdleStateChangedEvent;
|
|
6653
|
+
|
|
6655
6654
|
/**
|
|
6656
6655
|
* Generated when a user enters or returns from idle state.
|
|
6657
6656
|
* @remarks This method is continuously generated every minute while the user is in idle.
|
|
@@ -6659,7 +6658,7 @@ declare type IdentityEvent = BaseEvent & {
|
|
|
6659
6658
|
* A user returns from idle state when the computer is unlocked or keyboard/mouse activity has resumed.
|
|
6660
6659
|
* @interface
|
|
6661
6660
|
*/
|
|
6662
|
-
declare type
|
|
6661
|
+
declare type IdleStateChangedEvent = BaseEvent_8 & {
|
|
6663
6662
|
type: 'idle-state-changed';
|
|
6664
6663
|
elapsedTime: number;
|
|
6665
6664
|
isIdle: boolean;
|
|
@@ -9542,14 +9541,9 @@ declare type MonitorDetails = {
|
|
|
9542
9541
|
};
|
|
9543
9542
|
|
|
9544
9543
|
/**
|
|
9545
|
-
*
|
|
9546
|
-
* @remarks A monitor's size changes when the taskbar is resized or relocated.
|
|
9547
|
-
* The available space of a monitor defines a rectangle that is not occupied by the taskbar
|
|
9548
|
-
* @interface
|
|
9544
|
+
* @deprecated Renamed to {@link MonitorInfoChangedEvent}.
|
|
9549
9545
|
*/
|
|
9550
|
-
declare type MonitorEvent =
|
|
9551
|
-
type: 'monitor-info-changed';
|
|
9552
|
-
};
|
|
9546
|
+
declare type MonitorEvent = MonitorInfoChangedEvent;
|
|
9553
9547
|
|
|
9554
9548
|
/**
|
|
9555
9549
|
* @interface
|
|
@@ -9573,6 +9567,16 @@ declare type MonitorInfo = {
|
|
|
9573
9567
|
virtualScreen: DipRect;
|
|
9574
9568
|
};
|
|
9575
9569
|
|
|
9570
|
+
/**
|
|
9571
|
+
* Generated on changes of a monitor's size/location.
|
|
9572
|
+
* @remarks A monitor's size changes when the taskbar is resized or relocated.
|
|
9573
|
+
* The available space of a monitor defines a rectangle that is not occupied by the taskbar
|
|
9574
|
+
* @interface
|
|
9575
|
+
*/
|
|
9576
|
+
declare type MonitorInfoChangedEvent = BaseEvent_8 & OpenFin_2.MonitorInfo & {
|
|
9577
|
+
type: 'monitor-info-changed';
|
|
9578
|
+
};
|
|
9579
|
+
|
|
9576
9580
|
/**
|
|
9577
9581
|
* @interface
|
|
9578
9582
|
*/
|
|
@@ -15168,7 +15172,9 @@ declare namespace SystemEvents {
|
|
|
15168
15172
|
NotRequested,
|
|
15169
15173
|
ExcludeRequested,
|
|
15170
15174
|
BaseEvent_8 as BaseEvent,
|
|
15175
|
+
IdleStateChangedEvent,
|
|
15171
15176
|
IdleEvent,
|
|
15177
|
+
MonitorInfoChangedEvent,
|
|
15172
15178
|
MonitorEvent,
|
|
15173
15179
|
SessionChangedEvent,
|
|
15174
15180
|
AppVersionEvent,
|
|
@@ -19243,7 +19249,7 @@ declare class _Window extends WebContents<OpenFin_2.WindowEvent> {
|
|
|
19243
19249
|
* Generated when an alert is fired and suppressed due to the customWindowAlert flag being true.
|
|
19244
19250
|
* @interface
|
|
19245
19251
|
*/
|
|
19246
|
-
declare type WindowAlertRequestedEvent =
|
|
19252
|
+
declare type WindowAlertRequestedEvent = BaseEvent_3 & {
|
|
19247
19253
|
type: 'window-alert-requested';
|
|
19248
19254
|
};
|
|
19249
19255
|
|
|
@@ -19291,7 +19297,7 @@ declare class _Window extends WebContents<OpenFin_2.WindowEvent> {
|
|
|
19291
19297
|
* Generated when a child window is created.
|
|
19292
19298
|
* @interface
|
|
19293
19299
|
*/
|
|
19294
|
-
declare type WindowCreatedEvent =
|
|
19300
|
+
declare type WindowCreatedEvent = BaseEvent_3 & {
|
|
19295
19301
|
type: 'window-created';
|
|
19296
19302
|
};
|
|
19297
19303
|
|
|
@@ -19348,7 +19354,7 @@ declare class _Window extends WebContents<OpenFin_2.WindowEvent> {
|
|
|
19348
19354
|
* Generated when a child window ends loading.
|
|
19349
19355
|
* @interface
|
|
19350
19356
|
*/
|
|
19351
|
-
declare type WindowEndLoadEvent =
|
|
19357
|
+
declare type WindowEndLoadEvent = BaseEvent_3 & {
|
|
19352
19358
|
type: 'window-end-load';
|
|
19353
19359
|
};
|
|
19354
19360
|
|
|
@@ -19562,7 +19568,7 @@ declare class _Window extends WebContents<OpenFin_2.WindowEvent> {
|
|
|
19562
19568
|
* Generated when a child window is not responding.
|
|
19563
19569
|
* @interface
|
|
19564
19570
|
*/
|
|
19565
|
-
declare type WindowNotRespondingEvent =
|
|
19571
|
+
declare type WindowNotRespondingEvent = BaseEvent_3 & {
|
|
19566
19572
|
type: 'window-not-responding';
|
|
19567
19573
|
};
|
|
19568
19574
|
|
|
@@ -19594,7 +19600,7 @@ declare class _Window extends WebContents<OpenFin_2.WindowEvent> {
|
|
|
19594
19600
|
* Generated when a child window is responding.
|
|
19595
19601
|
* @interface
|
|
19596
19602
|
*/
|
|
19597
|
-
declare type WindowRespondingEvent =
|
|
19603
|
+
declare type WindowRespondingEvent = BaseEvent_3 & {
|
|
19598
19604
|
type: 'window-responding';
|
|
19599
19605
|
};
|
|
19600
19606
|
|
|
@@ -19623,7 +19629,7 @@ declare class _Window extends WebContents<OpenFin_2.WindowEvent> {
|
|
|
19623
19629
|
* Generated when a child window starts loading.
|
|
19624
19630
|
* @interface
|
|
19625
19631
|
*/
|
|
19626
|
-
declare type WindowStartLoadEvent =
|
|
19632
|
+
declare type WindowStartLoadEvent = BaseEvent_3 & {
|
|
19627
19633
|
type: 'window-start-load';
|
|
19628
19634
|
};
|
|
19629
19635
|
|
package/out/mock-public.d.ts
CHANGED
|
@@ -918,7 +918,6 @@ declare namespace ApplicationEvents {
|
|
|
918
918
|
WindowRespondingEvent,
|
|
919
919
|
WindowStartLoadEvent,
|
|
920
920
|
ApplicationWindowEvent,
|
|
921
|
-
ApplicationWindowEventTypes,
|
|
922
921
|
ClosedEvent,
|
|
923
922
|
ConnectedEvent_2 as ConnectedEvent,
|
|
924
923
|
ApplicationConnectedEvent,
|
|
@@ -1337,11 +1336,6 @@ declare type ApplicationType = {
|
|
|
1337
1336
|
*/
|
|
1338
1337
|
declare type ApplicationWindowEvent = WindowAlertRequestedEvent | WindowCreatedEvent | WindowEndLoadEvent | WindowNotRespondingEvent | WindowRespondingEvent | WindowStartLoadEvent;
|
|
1339
1338
|
|
|
1340
|
-
/**
|
|
1341
|
-
* Array of valid `type` values for an {@link ApplicationWindowEvent}.
|
|
1342
|
-
*/
|
|
1343
|
-
declare const ApplicationWindowEventTypes: readonly ["window-alert-requested", "window-created", "window-end-load", "window-not-responding", "window-responding", "window-start-load"];
|
|
1344
|
-
|
|
1345
1339
|
declare type ApplicationWindowInfo = OpenFin_2.ApplicationWindowInfo;
|
|
1346
1340
|
|
|
1347
1341
|
/**
|
|
@@ -5111,7 +5105,7 @@ declare type Event_10 = ApplicationEvents.Event | ApiReadyEvent | SnapshotApplie
|
|
|
5111
5105
|
* under the {@link OpenFin.SystemEvents} namespace (payloads inherited from propagated events are defined in the namespace
|
|
5112
5106
|
* from which they propagate).
|
|
5113
5107
|
*/
|
|
5114
|
-
declare type Event_11 = ExcludeRequested<WindowEvents.PropagatedEvent<'system'>> | ViewEvents.PropagatedEvent<'system'
|
|
5108
|
+
declare type Event_11 = ExcludeRequested<WindowEvents.PropagatedEvent<'system'>> | ExcludeRequested<ViewEvents.PropagatedEvent<'system'>> | ExcludeRequested<ApplicationEvents.PropagatedEvent<'system'>> | ApplicationCreatedEvent | DesktopIconClickedEvent | IdleStateChangedEvent | MonitorInfoChangedEvent | SessionChangedEvent | AppVersionEventWithId | SystemShutdownEvent;
|
|
5115
5109
|
|
|
5116
5110
|
/**
|
|
5117
5111
|
* [Union](https://www.typescriptlang.org/docs/handbook/2/everyday-types.html#union-types) containing every possible event that can be emitted by a {@link Channel}. Events are
|
|
@@ -5645,7 +5639,7 @@ declare type FileDownloadEvent = {
|
|
|
5645
5639
|
*
|
|
5646
5640
|
* @interface
|
|
5647
5641
|
*/
|
|
5648
|
-
declare type FileDownloadLocationChangedEvent =
|
|
5642
|
+
declare type FileDownloadLocationChangedEvent = BaseEvent_3 & {
|
|
5649
5643
|
type: 'file-download-location-changed';
|
|
5650
5644
|
};
|
|
5651
5645
|
|
|
@@ -6652,6 +6646,11 @@ declare type IdentityEvent = BaseEvent & {
|
|
|
6652
6646
|
|
|
6653
6647
|
/* Excluded from this release type: IdEventType */
|
|
6654
6648
|
|
|
6649
|
+
/**
|
|
6650
|
+
* @deprecated Renamed to {@link IdleStateChangedEvent}.
|
|
6651
|
+
*/
|
|
6652
|
+
declare type IdleEvent = IdleStateChangedEvent;
|
|
6653
|
+
|
|
6655
6654
|
/**
|
|
6656
6655
|
* Generated when a user enters or returns from idle state.
|
|
6657
6656
|
* @remarks This method is continuously generated every minute while the user is in idle.
|
|
@@ -6659,7 +6658,7 @@ declare type IdentityEvent = BaseEvent & {
|
|
|
6659
6658
|
* A user returns from idle state when the computer is unlocked or keyboard/mouse activity has resumed.
|
|
6660
6659
|
* @interface
|
|
6661
6660
|
*/
|
|
6662
|
-
declare type
|
|
6661
|
+
declare type IdleStateChangedEvent = BaseEvent_8 & {
|
|
6663
6662
|
type: 'idle-state-changed';
|
|
6664
6663
|
elapsedTime: number;
|
|
6665
6664
|
isIdle: boolean;
|
|
@@ -9542,14 +9541,9 @@ declare type MonitorDetails = {
|
|
|
9542
9541
|
};
|
|
9543
9542
|
|
|
9544
9543
|
/**
|
|
9545
|
-
*
|
|
9546
|
-
* @remarks A monitor's size changes when the taskbar is resized or relocated.
|
|
9547
|
-
* The available space of a monitor defines a rectangle that is not occupied by the taskbar
|
|
9548
|
-
* @interface
|
|
9544
|
+
* @deprecated Renamed to {@link MonitorInfoChangedEvent}.
|
|
9549
9545
|
*/
|
|
9550
|
-
declare type MonitorEvent =
|
|
9551
|
-
type: 'monitor-info-changed';
|
|
9552
|
-
};
|
|
9546
|
+
declare type MonitorEvent = MonitorInfoChangedEvent;
|
|
9553
9547
|
|
|
9554
9548
|
/**
|
|
9555
9549
|
* @interface
|
|
@@ -9573,6 +9567,16 @@ declare type MonitorInfo = {
|
|
|
9573
9567
|
virtualScreen: DipRect;
|
|
9574
9568
|
};
|
|
9575
9569
|
|
|
9570
|
+
/**
|
|
9571
|
+
* Generated on changes of a monitor's size/location.
|
|
9572
|
+
* @remarks A monitor's size changes when the taskbar is resized or relocated.
|
|
9573
|
+
* The available space of a monitor defines a rectangle that is not occupied by the taskbar
|
|
9574
|
+
* @interface
|
|
9575
|
+
*/
|
|
9576
|
+
declare type MonitorInfoChangedEvent = BaseEvent_8 & OpenFin_2.MonitorInfo & {
|
|
9577
|
+
type: 'monitor-info-changed';
|
|
9578
|
+
};
|
|
9579
|
+
|
|
9576
9580
|
/**
|
|
9577
9581
|
* @interface
|
|
9578
9582
|
*/
|
|
@@ -15168,7 +15172,9 @@ declare namespace SystemEvents {
|
|
|
15168
15172
|
NotRequested,
|
|
15169
15173
|
ExcludeRequested,
|
|
15170
15174
|
BaseEvent_8 as BaseEvent,
|
|
15175
|
+
IdleStateChangedEvent,
|
|
15171
15176
|
IdleEvent,
|
|
15177
|
+
MonitorInfoChangedEvent,
|
|
15172
15178
|
MonitorEvent,
|
|
15173
15179
|
SessionChangedEvent,
|
|
15174
15180
|
AppVersionEvent,
|
|
@@ -19243,7 +19249,7 @@ declare class _Window extends WebContents<OpenFin_2.WindowEvent> {
|
|
|
19243
19249
|
* Generated when an alert is fired and suppressed due to the customWindowAlert flag being true.
|
|
19244
19250
|
* @interface
|
|
19245
19251
|
*/
|
|
19246
|
-
declare type WindowAlertRequestedEvent =
|
|
19252
|
+
declare type WindowAlertRequestedEvent = BaseEvent_3 & {
|
|
19247
19253
|
type: 'window-alert-requested';
|
|
19248
19254
|
};
|
|
19249
19255
|
|
|
@@ -19291,7 +19297,7 @@ declare class _Window extends WebContents<OpenFin_2.WindowEvent> {
|
|
|
19291
19297
|
* Generated when a child window is created.
|
|
19292
19298
|
* @interface
|
|
19293
19299
|
*/
|
|
19294
|
-
declare type WindowCreatedEvent =
|
|
19300
|
+
declare type WindowCreatedEvent = BaseEvent_3 & {
|
|
19295
19301
|
type: 'window-created';
|
|
19296
19302
|
};
|
|
19297
19303
|
|
|
@@ -19348,7 +19354,7 @@ declare class _Window extends WebContents<OpenFin_2.WindowEvent> {
|
|
|
19348
19354
|
* Generated when a child window ends loading.
|
|
19349
19355
|
* @interface
|
|
19350
19356
|
*/
|
|
19351
|
-
declare type WindowEndLoadEvent =
|
|
19357
|
+
declare type WindowEndLoadEvent = BaseEvent_3 & {
|
|
19352
19358
|
type: 'window-end-load';
|
|
19353
19359
|
};
|
|
19354
19360
|
|
|
@@ -19562,7 +19568,7 @@ declare class _Window extends WebContents<OpenFin_2.WindowEvent> {
|
|
|
19562
19568
|
* Generated when a child window is not responding.
|
|
19563
19569
|
* @interface
|
|
19564
19570
|
*/
|
|
19565
|
-
declare type WindowNotRespondingEvent =
|
|
19571
|
+
declare type WindowNotRespondingEvent = BaseEvent_3 & {
|
|
19566
19572
|
type: 'window-not-responding';
|
|
19567
19573
|
};
|
|
19568
19574
|
|
|
@@ -19594,7 +19600,7 @@ declare class _Window extends WebContents<OpenFin_2.WindowEvent> {
|
|
|
19594
19600
|
* Generated when a child window is responding.
|
|
19595
19601
|
* @interface
|
|
19596
19602
|
*/
|
|
19597
|
-
declare type WindowRespondingEvent =
|
|
19603
|
+
declare type WindowRespondingEvent = BaseEvent_3 & {
|
|
19598
19604
|
type: 'window-responding';
|
|
19599
19605
|
};
|
|
19600
19606
|
|
|
@@ -19623,7 +19629,7 @@ declare class _Window extends WebContents<OpenFin_2.WindowEvent> {
|
|
|
19623
19629
|
* Generated when a child window starts loading.
|
|
19624
19630
|
* @interface
|
|
19625
19631
|
*/
|
|
19626
|
-
declare type WindowStartLoadEvent =
|
|
19632
|
+
declare type WindowStartLoadEvent = BaseEvent_3 & {
|
|
19627
19633
|
type: 'window-start-load';
|
|
19628
19634
|
};
|
|
19629
19635
|
|
package/out/mock.d.ts
CHANGED
|
@@ -924,7 +924,6 @@ declare namespace ApplicationEvents {
|
|
|
924
924
|
WindowRespondingEvent,
|
|
925
925
|
WindowStartLoadEvent,
|
|
926
926
|
ApplicationWindowEvent,
|
|
927
|
-
ApplicationWindowEventTypes,
|
|
928
927
|
ClosedEvent,
|
|
929
928
|
ConnectedEvent_2 as ConnectedEvent,
|
|
930
929
|
ApplicationConnectedEvent,
|
|
@@ -1343,11 +1342,6 @@ declare type ApplicationType = {
|
|
|
1343
1342
|
*/
|
|
1344
1343
|
declare type ApplicationWindowEvent = WindowAlertRequestedEvent | WindowCreatedEvent | WindowEndLoadEvent | WindowNotRespondingEvent | WindowRespondingEvent | WindowStartLoadEvent;
|
|
1345
1344
|
|
|
1346
|
-
/**
|
|
1347
|
-
* Array of valid `type` values for an {@link ApplicationWindowEvent}.
|
|
1348
|
-
*/
|
|
1349
|
-
declare const ApplicationWindowEventTypes: readonly ["window-alert-requested", "window-created", "window-end-load", "window-not-responding", "window-responding", "window-start-load"];
|
|
1350
|
-
|
|
1351
1345
|
declare type ApplicationWindowInfo = OpenFin_2.ApplicationWindowInfo;
|
|
1352
1346
|
|
|
1353
1347
|
/**
|
|
@@ -5210,7 +5204,7 @@ declare type Event_10 = ApplicationEvents.Event | ApiReadyEvent | SnapshotApplie
|
|
|
5210
5204
|
* under the {@link OpenFin.SystemEvents} namespace (payloads inherited from propagated events are defined in the namespace
|
|
5211
5205
|
* from which they propagate).
|
|
5212
5206
|
*/
|
|
5213
|
-
declare type Event_11 = ExcludeRequested<WindowEvents.PropagatedEvent<'system'>> | ViewEvents.PropagatedEvent<'system'
|
|
5207
|
+
declare type Event_11 = ExcludeRequested<WindowEvents.PropagatedEvent<'system'>> | ExcludeRequested<ViewEvents.PropagatedEvent<'system'>> | ExcludeRequested<ApplicationEvents.PropagatedEvent<'system'>> | ApplicationCreatedEvent | DesktopIconClickedEvent | IdleStateChangedEvent | MonitorInfoChangedEvent | SessionChangedEvent | AppVersionEventWithId | SystemShutdownEvent;
|
|
5214
5208
|
|
|
5215
5209
|
/**
|
|
5216
5210
|
* [Union](https://www.typescriptlang.org/docs/handbook/2/everyday-types.html#union-types) containing every possible event that can be emitted by a {@link Channel}. Events are
|
|
@@ -5765,7 +5759,7 @@ declare type FileDownloadEvent = {
|
|
|
5765
5759
|
*
|
|
5766
5760
|
* @interface
|
|
5767
5761
|
*/
|
|
5768
|
-
declare type FileDownloadLocationChangedEvent =
|
|
5762
|
+
declare type FileDownloadLocationChangedEvent = BaseEvent_3 & {
|
|
5769
5763
|
type: 'file-download-location-changed';
|
|
5770
5764
|
};
|
|
5771
5765
|
|
|
@@ -6781,6 +6775,11 @@ declare type IdentityEvent = BaseEvent & {
|
|
|
6781
6775
|
*/
|
|
6782
6776
|
declare type IdEventType = WithId<AppVersionEventType>;
|
|
6783
6777
|
|
|
6778
|
+
/**
|
|
6779
|
+
* @deprecated Renamed to {@link IdleStateChangedEvent}.
|
|
6780
|
+
*/
|
|
6781
|
+
declare type IdleEvent = IdleStateChangedEvent;
|
|
6782
|
+
|
|
6784
6783
|
/**
|
|
6785
6784
|
* Generated when a user enters or returns from idle state.
|
|
6786
6785
|
* @remarks This method is continuously generated every minute while the user is in idle.
|
|
@@ -6788,7 +6787,7 @@ declare type IdEventType = WithId<AppVersionEventType>;
|
|
|
6788
6787
|
* A user returns from idle state when the computer is unlocked or keyboard/mouse activity has resumed.
|
|
6789
6788
|
* @interface
|
|
6790
6789
|
*/
|
|
6791
|
-
declare type
|
|
6790
|
+
declare type IdleStateChangedEvent = BaseEvent_8 & {
|
|
6792
6791
|
type: 'idle-state-changed';
|
|
6793
6792
|
elapsedTime: number;
|
|
6794
6793
|
isIdle: boolean;
|
|
@@ -9872,14 +9871,9 @@ declare type MonitorDetails = {
|
|
|
9872
9871
|
};
|
|
9873
9872
|
|
|
9874
9873
|
/**
|
|
9875
|
-
*
|
|
9876
|
-
* @remarks A monitor's size changes when the taskbar is resized or relocated.
|
|
9877
|
-
* The available space of a monitor defines a rectangle that is not occupied by the taskbar
|
|
9878
|
-
* @interface
|
|
9874
|
+
* @deprecated Renamed to {@link MonitorInfoChangedEvent}.
|
|
9879
9875
|
*/
|
|
9880
|
-
declare type MonitorEvent =
|
|
9881
|
-
type: 'monitor-info-changed';
|
|
9882
|
-
};
|
|
9876
|
+
declare type MonitorEvent = MonitorInfoChangedEvent;
|
|
9883
9877
|
|
|
9884
9878
|
/**
|
|
9885
9879
|
* @interface
|
|
@@ -9903,6 +9897,16 @@ declare type MonitorInfo = {
|
|
|
9903
9897
|
virtualScreen: DipRect;
|
|
9904
9898
|
};
|
|
9905
9899
|
|
|
9900
|
+
/**
|
|
9901
|
+
* Generated on changes of a monitor's size/location.
|
|
9902
|
+
* @remarks A monitor's size changes when the taskbar is resized or relocated.
|
|
9903
|
+
* The available space of a monitor defines a rectangle that is not occupied by the taskbar
|
|
9904
|
+
* @interface
|
|
9905
|
+
*/
|
|
9906
|
+
declare type MonitorInfoChangedEvent = BaseEvent_8 & OpenFin_2.MonitorInfo & {
|
|
9907
|
+
type: 'monitor-info-changed';
|
|
9908
|
+
};
|
|
9909
|
+
|
|
9906
9910
|
/**
|
|
9907
9911
|
* @interface
|
|
9908
9912
|
*/
|
|
@@ -15615,7 +15619,9 @@ declare namespace SystemEvents {
|
|
|
15615
15619
|
NotRequested,
|
|
15616
15620
|
ExcludeRequested,
|
|
15617
15621
|
BaseEvent_8 as BaseEvent,
|
|
15622
|
+
IdleStateChangedEvent,
|
|
15618
15623
|
IdleEvent,
|
|
15624
|
+
MonitorInfoChangedEvent,
|
|
15619
15625
|
MonitorEvent,
|
|
15620
15626
|
SessionChangedEvent,
|
|
15621
15627
|
AppVersionEvent,
|
|
@@ -19868,7 +19874,7 @@ declare class _Window extends WebContents<OpenFin_2.WindowEvent> {
|
|
|
19868
19874
|
* Generated when an alert is fired and suppressed due to the customWindowAlert flag being true.
|
|
19869
19875
|
* @interface
|
|
19870
19876
|
*/
|
|
19871
|
-
declare type WindowAlertRequestedEvent =
|
|
19877
|
+
declare type WindowAlertRequestedEvent = BaseEvent_3 & {
|
|
19872
19878
|
type: 'window-alert-requested';
|
|
19873
19879
|
};
|
|
19874
19880
|
|
|
@@ -19916,7 +19922,7 @@ declare class _Window extends WebContents<OpenFin_2.WindowEvent> {
|
|
|
19916
19922
|
* Generated when a child window is created.
|
|
19917
19923
|
* @interface
|
|
19918
19924
|
*/
|
|
19919
|
-
declare type WindowCreatedEvent =
|
|
19925
|
+
declare type WindowCreatedEvent = BaseEvent_3 & {
|
|
19920
19926
|
type: 'window-created';
|
|
19921
19927
|
};
|
|
19922
19928
|
|
|
@@ -19973,7 +19979,7 @@ declare class _Window extends WebContents<OpenFin_2.WindowEvent> {
|
|
|
19973
19979
|
* Generated when a child window ends loading.
|
|
19974
19980
|
* @interface
|
|
19975
19981
|
*/
|
|
19976
|
-
declare type WindowEndLoadEvent =
|
|
19982
|
+
declare type WindowEndLoadEvent = BaseEvent_3 & {
|
|
19977
19983
|
type: 'window-end-load';
|
|
19978
19984
|
};
|
|
19979
19985
|
|
|
@@ -20187,7 +20193,7 @@ declare class _Window extends WebContents<OpenFin_2.WindowEvent> {
|
|
|
20187
20193
|
* Generated when a child window is not responding.
|
|
20188
20194
|
* @interface
|
|
20189
20195
|
*/
|
|
20190
|
-
declare type WindowNotRespondingEvent =
|
|
20196
|
+
declare type WindowNotRespondingEvent = BaseEvent_3 & {
|
|
20191
20197
|
type: 'window-not-responding';
|
|
20192
20198
|
};
|
|
20193
20199
|
|
|
@@ -20219,7 +20225,7 @@ declare class _Window extends WebContents<OpenFin_2.WindowEvent> {
|
|
|
20219
20225
|
* Generated when a child window is responding.
|
|
20220
20226
|
* @interface
|
|
20221
20227
|
*/
|
|
20222
|
-
declare type WindowRespondingEvent =
|
|
20228
|
+
declare type WindowRespondingEvent = BaseEvent_3 & {
|
|
20223
20229
|
type: 'window-responding';
|
|
20224
20230
|
};
|
|
20225
20231
|
|
|
@@ -20248,7 +20254,7 @@ declare class _Window extends WebContents<OpenFin_2.WindowEvent> {
|
|
|
20248
20254
|
* Generated when a child window starts loading.
|
|
20249
20255
|
* @interface
|
|
20250
20256
|
*/
|
|
20251
|
-
declare type WindowStartLoadEvent =
|
|
20257
|
+
declare type WindowStartLoadEvent = BaseEvent_3 & {
|
|
20252
20258
|
type: 'window-start-load';
|
|
20253
20259
|
};
|
|
20254
20260
|
|
package/out/mock.js
CHANGED
|
@@ -36,18 +36,6 @@ var application$1 = {};
|
|
|
36
36
|
* @packageDocumentation
|
|
37
37
|
*/
|
|
38
38
|
Object.defineProperty(application$1, "__esModule", { value: true });
|
|
39
|
-
application$1.ApplicationWindowEventTypes = void 0;
|
|
40
|
-
/**
|
|
41
|
-
* Array of valid `type` values for an {@link ApplicationWindowEvent}.
|
|
42
|
-
*/
|
|
43
|
-
application$1.ApplicationWindowEventTypes = [
|
|
44
|
-
'window-alert-requested',
|
|
45
|
-
'window-created',
|
|
46
|
-
'window-end-load',
|
|
47
|
-
'window-not-responding',
|
|
48
|
-
'window-responding',
|
|
49
|
-
'window-start-load'
|
|
50
|
-
];
|
|
51
39
|
|
|
52
40
|
var base$1 = {};
|
|
53
41
|
|
|
@@ -13024,7 +13012,6 @@ class Layout extends base_1$6.Base {
|
|
|
13024
13012
|
// don't expose
|
|
13025
13013
|
});
|
|
13026
13014
|
const client = await this.platform.getClient();
|
|
13027
|
-
console.log(`Layout::toConfig() called!`);
|
|
13028
13015
|
return client.dispatch('get-frame-snapshot', {
|
|
13029
13016
|
target: this.identity
|
|
13030
13017
|
});
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openfin/core",
|
|
3
|
-
"version": "35.78.
|
|
3
|
+
"version": "35.78.5",
|
|
4
4
|
"description": "The core renderer entry point of OpenFin",
|
|
5
|
-
"license": "SEE LICENSE IN LICENSE.
|
|
5
|
+
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"main": "out/mock.js",
|
|
7
7
|
"types": "out/mock.d.ts",
|
|
8
8
|
"private": false,
|