@openfin/core 29.71.31 → 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 CHANGED
@@ -87,8 +87,8 @@ declare namespace OpenFin {
87
87
  commands: ShortcutOverride[];
88
88
  isPlatformController: boolean;
89
89
  maxViewPoolSize: number;
90
- defaultWindowOptions: Partial<DefaultWindowOptions>;
91
- defaultViewOptions: Partial<DefaultViewOptions>;
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfin/core",
3
- "version": "29.71.31",
3
+ "version": "29.72.1",
4
4
  "license": "Apache-2.0",
5
5
  "main": "./src/mock.js",
6
6
  "types": "./src/mock.d.ts",
@@ -1,4 +1,5 @@
1
1
  /**
2
+ * @ignore
2
3
  * Observes the bounding client box rectangle of the given element for changes.
3
4
  *
4
5
  * This solution only works for 2 scenarios, though could be updated to support more
@@ -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
@@ -4,6 +4,7 @@ export declare type SplitterItem = GoldenLayout.ContentItem & {
4
4
  isVertical: boolean;
5
5
  };
6
6
  /**
7
+ * @ignore
7
8
  * Utility class for managing Golden Layout splitter drag interactions.
8
9
  */
9
10
  export declare class SplitterController {
@@ -14,6 +14,7 @@ const applyBoundsOffset = (bounds, offsets = {}) => {
14
14
  };
15
15
  };
16
16
  /**
17
+ * @ignore
17
18
  * Utility class for managing Golden Layout splitter drag interactions.
18
19
  */
19
20
  class SplitterController {
@@ -1,5 +1,6 @@
1
1
  import Transport from "../../../../transport/transport";
2
2
  /**
3
+ * @ignore
3
4
  * Api client allowing an empty electron BrowserView to be rendered
4
5
  * in the current window with the specified bounds.
5
6
  *
@@ -2,6 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.ViewOverlay = void 0;
4
4
  /**
5
+ * @ignore
5
6
  * Api client allowing an empty electron BrowserView to be rendered
6
7
  * in the current window with the specified bounds.
7
8
  *