@openfin/core 29.72.5 → 29.72.7
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/OpenFin.d.ts +4 -3
- package/package.json +1 -1
- package/src/api/events/window.d.ts +2 -0
package/OpenFin.d.ts
CHANGED
|
@@ -283,8 +283,6 @@ declare namespace OpenFin {
|
|
|
283
283
|
defaultTop: number;
|
|
284
284
|
defaultWidth: number;
|
|
285
285
|
height: number;
|
|
286
|
-
hideOnClose: boolean;
|
|
287
|
-
includeInSnapshots: boolean;
|
|
288
286
|
layout: any;
|
|
289
287
|
modalParentIdentity: Identity;
|
|
290
288
|
name: string;
|
|
@@ -321,8 +319,10 @@ declare namespace OpenFin {
|
|
|
321
319
|
customContext: any;
|
|
322
320
|
customData: any;
|
|
323
321
|
frame: boolean;
|
|
322
|
+
hideOnClose: boolean;
|
|
324
323
|
hotkeys: Hotkey[];
|
|
325
324
|
icon: string;
|
|
325
|
+
includeInSnapshots: boolean;
|
|
326
326
|
maxHeight: number;
|
|
327
327
|
maximizable: boolean;
|
|
328
328
|
maxWidth: number;
|
|
@@ -769,7 +769,8 @@ declare namespace OpenFin {
|
|
|
769
769
|
| 'create-view-without-target'
|
|
770
770
|
| 'api-call'
|
|
771
771
|
| 'app-creation'
|
|
772
|
-
| 'restore'
|
|
772
|
+
| 'restore'
|
|
773
|
+
| 'apply-snapshot';
|
|
773
774
|
|
|
774
775
|
// TODO: Real PlatformProvider type def
|
|
775
776
|
export type PlatformProvider = {
|
package/package.json
CHANGED
|
@@ -164,6 +164,8 @@ export interface PropagatedWindowEventMapping<Topic = string, Type = string> ext
|
|
|
164
164
|
'window-shown': WindowEvent<Topic, Type>;
|
|
165
165
|
'window-user-movement-disabled': WindowEvent<Topic, Type>;
|
|
166
166
|
'window-user-movement-enabled': WindowEvent<Topic, Type>;
|
|
167
|
+
'window-view-attached': WindowEvent<Topic, Type>;
|
|
168
|
+
'window-view-detached': ViewDetached<Topic, Type>;
|
|
167
169
|
'window-will-move': WillMoveOrResize<Topic, Type>;
|
|
168
170
|
'window-will-redirect': WillRedirectEvent<Topic, Type>;
|
|
169
171
|
'window-will-resize': WillMoveOrResize<Topic, Type>;
|