@openfin/core 29.71.32 → 29.72.1
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 -10
- package/package.json +1 -1
- package/src/api/platform/layout/SplitterController/bounds-observer.d.ts +1 -0
- package/src/api/platform/layout/SplitterController/bounds-observer.js +1 -0
- package/src/api/platform/layout/SplitterController/index.d.ts +1 -0
- package/src/api/platform/layout/SplitterController/index.js +1 -0
- package/src/api/platform/layout/SplitterController/view-overlay.d.ts +1 -0
- package/src/api/platform/layout/SplitterController/view-overlay.js +1 -0
package/OpenFin.d.ts
CHANGED
|
@@ -87,8 +87,8 @@ declare namespace OpenFin {
|
|
|
87
87
|
commands: ShortcutOverride[];
|
|
88
88
|
isPlatformController: boolean;
|
|
89
89
|
maxViewPoolSize: number;
|
|
90
|
-
defaultWindowOptions: Partial<
|
|
91
|
-
defaultViewOptions: Partial<
|
|
90
|
+
defaultWindowOptions: Partial<WindowOptions>;
|
|
91
|
+
defaultViewOptions: Partial<ViewOptions>;
|
|
92
92
|
snapshot: Snapshot;
|
|
93
93
|
preventQuitOnLastWindowClosed: boolean;
|
|
94
94
|
interopBrokerConfiguration: InteropBrokerOptions;
|
|
@@ -248,10 +248,6 @@ declare namespace OpenFin {
|
|
|
248
248
|
|
|
249
249
|
export type UpdatableWindowOptions = Partial<MutableWindowOptions>;
|
|
250
250
|
|
|
251
|
-
export type DefaultWindowOptions = WindowOptions & {
|
|
252
|
-
permissions: Partial<Permissions>;
|
|
253
|
-
};
|
|
254
|
-
|
|
255
251
|
export type WindowOptions = MutableWindowOptions & ConstWindowOptions;
|
|
256
252
|
|
|
257
253
|
export interface ShowViewOnWindowResizeOptions {
|
|
@@ -291,6 +287,7 @@ declare namespace OpenFin {
|
|
|
291
287
|
layout: any;
|
|
292
288
|
modalParentIdentity: Identity;
|
|
293
289
|
name: string;
|
|
290
|
+
permissions: Partial<Permissions>;
|
|
294
291
|
preloadScripts: PreloadScript[];
|
|
295
292
|
processAffinity: string;
|
|
296
293
|
saveWindowState: boolean;
|
|
@@ -503,10 +500,6 @@ declare namespace OpenFin {
|
|
|
503
500
|
interop?: InteropConfig;
|
|
504
501
|
};
|
|
505
502
|
|
|
506
|
-
export type DefaultViewOptions = ViewOptions & {
|
|
507
|
-
permissions: Partial<Permissions>;
|
|
508
|
-
};
|
|
509
|
-
|
|
510
503
|
export type ViewOptions = ConstViewOptions & MutableViewOptions;
|
|
511
504
|
|
|
512
505
|
export type ConstViewOptions = {
|
|
@@ -516,6 +509,7 @@ declare namespace OpenFin {
|
|
|
516
509
|
contentCreation: ContentCreationOptions;
|
|
517
510
|
customRequestHeaders: CustomRequestHeaders[];
|
|
518
511
|
bounds: Bounds;
|
|
512
|
+
permissions: Partial<Permissions>;
|
|
519
513
|
processAffinity: string;
|
|
520
514
|
hotkeys: Hotkey[];
|
|
521
515
|
preloadScripts: PreloadScript[];
|
package/package.json
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.observeBounds = void 0;
|
|
4
4
|
/**
|
|
5
|
+
* @ignore
|
|
5
6
|
* Observes the bounding client box rectangle of the given element for changes.
|
|
6
7
|
*
|
|
7
8
|
* This solution only works for 2 scenarios, though could be updated to support more
|