@openfin/core 41.100.72 → 41.100.73
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 +5 -4
- package/out/mock-beta.d.ts +5 -4
- package/out/mock-public.d.ts +5 -4
- package/out/mock.d.ts +5 -4
- package/out/mock.js +4 -4
- package/package.json +1 -1
package/out/mock-alpha.d.ts
CHANGED
|
@@ -7661,7 +7661,7 @@ declare type LaunchIntoPlatformPayload = {
|
|
|
7661
7661
|
*
|
|
7662
7662
|
* @remarks The built-in event emitter is not an OpenFin event emitter so it doesn't share propagation semantics.
|
|
7663
7663
|
*
|
|
7664
|
-
* ####
|
|
7664
|
+
* #### [addEventListener(type, listener [, options]);](https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/addEventListener)
|
|
7665
7665
|
* Adds a listener to the end of the listeners array for the specified event.
|
|
7666
7666
|
* @example
|
|
7667
7667
|
* ```js
|
|
@@ -7678,7 +7678,7 @@ declare type LaunchIntoPlatformPayload = {
|
|
|
7678
7678
|
* });
|
|
7679
7679
|
* ```
|
|
7680
7680
|
*
|
|
7681
|
-
* ####
|
|
7681
|
+
* #### [removeEventListener(type, listener [, options]);](https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/removeEventListener)
|
|
7682
7682
|
* Adds a listener to the end of the listeners array for the specified event.
|
|
7683
7683
|
* @example
|
|
7684
7684
|
* ```js
|
|
@@ -7942,7 +7942,7 @@ declare class Layout extends Base {
|
|
|
7942
7942
|
*/
|
|
7943
7943
|
applyPreset: (options: PresetLayoutOptions) => Promise<void>;
|
|
7944
7944
|
/**
|
|
7945
|
-
* Adds a view to the platform layout. Behaves like @link
|
|
7945
|
+
* Adds a view to the platform layout. Behaves like {@link Platform#createView Platform.createView} with the current layout as the target.
|
|
7946
7946
|
*
|
|
7947
7947
|
* @param viewOptions - The options for creating the view.
|
|
7948
7948
|
* @param options - Optional parameters for adding the view.
|
|
@@ -7958,7 +7958,7 @@ declare class Layout extends Base {
|
|
|
7958
7958
|
}>;
|
|
7959
7959
|
/**
|
|
7960
7960
|
* Closes a view by its identity. Throws an error if the view does not belong to the current layout.
|
|
7961
|
-
* Behaves like @link
|
|
7961
|
+
* Behaves like {@link Platform#closeView Platform.closeView} but only closes the view if it belongs the current layout.
|
|
7962
7962
|
*
|
|
7963
7963
|
* @param viewIdentity - The identity of the view to close.
|
|
7964
7964
|
* @returns A promise that resolves when the view is closed.
|
|
@@ -13534,6 +13534,7 @@ declare type Snapshot = {
|
|
|
13534
13534
|
declare type SnapshotAppliedEvent = BaseEvents.BaseEvent & {
|
|
13535
13535
|
topic: 'application';
|
|
13536
13536
|
type: 'platform-snapshot-applied';
|
|
13537
|
+
snapshot: Snapshot;
|
|
13537
13538
|
};
|
|
13538
13539
|
|
|
13539
13540
|
/**
|
package/out/mock-beta.d.ts
CHANGED
|
@@ -7661,7 +7661,7 @@ declare type LaunchIntoPlatformPayload = {
|
|
|
7661
7661
|
*
|
|
7662
7662
|
* @remarks The built-in event emitter is not an OpenFin event emitter so it doesn't share propagation semantics.
|
|
7663
7663
|
*
|
|
7664
|
-
* ####
|
|
7664
|
+
* #### [addEventListener(type, listener [, options]);](https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/addEventListener)
|
|
7665
7665
|
* Adds a listener to the end of the listeners array for the specified event.
|
|
7666
7666
|
* @example
|
|
7667
7667
|
* ```js
|
|
@@ -7678,7 +7678,7 @@ declare type LaunchIntoPlatformPayload = {
|
|
|
7678
7678
|
* });
|
|
7679
7679
|
* ```
|
|
7680
7680
|
*
|
|
7681
|
-
* ####
|
|
7681
|
+
* #### [removeEventListener(type, listener [, options]);](https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/removeEventListener)
|
|
7682
7682
|
* Adds a listener to the end of the listeners array for the specified event.
|
|
7683
7683
|
* @example
|
|
7684
7684
|
* ```js
|
|
@@ -7942,7 +7942,7 @@ declare class Layout extends Base {
|
|
|
7942
7942
|
*/
|
|
7943
7943
|
applyPreset: (options: PresetLayoutOptions) => Promise<void>;
|
|
7944
7944
|
/**
|
|
7945
|
-
* Adds a view to the platform layout. Behaves like @link
|
|
7945
|
+
* Adds a view to the platform layout. Behaves like {@link Platform#createView Platform.createView} with the current layout as the target.
|
|
7946
7946
|
*
|
|
7947
7947
|
* @param viewOptions - The options for creating the view.
|
|
7948
7948
|
* @param options - Optional parameters for adding the view.
|
|
@@ -7958,7 +7958,7 @@ declare class Layout extends Base {
|
|
|
7958
7958
|
}>;
|
|
7959
7959
|
/**
|
|
7960
7960
|
* Closes a view by its identity. Throws an error if the view does not belong to the current layout.
|
|
7961
|
-
* Behaves like @link
|
|
7961
|
+
* Behaves like {@link Platform#closeView Platform.closeView} but only closes the view if it belongs the current layout.
|
|
7962
7962
|
*
|
|
7963
7963
|
* @param viewIdentity - The identity of the view to close.
|
|
7964
7964
|
* @returns A promise that resolves when the view is closed.
|
|
@@ -13534,6 +13534,7 @@ declare type Snapshot = {
|
|
|
13534
13534
|
declare type SnapshotAppliedEvent = BaseEvents.BaseEvent & {
|
|
13535
13535
|
topic: 'application';
|
|
13536
13536
|
type: 'platform-snapshot-applied';
|
|
13537
|
+
snapshot: Snapshot;
|
|
13537
13538
|
};
|
|
13538
13539
|
|
|
13539
13540
|
/**
|
package/out/mock-public.d.ts
CHANGED
|
@@ -7661,7 +7661,7 @@ declare type LaunchIntoPlatformPayload = {
|
|
|
7661
7661
|
*
|
|
7662
7662
|
* @remarks The built-in event emitter is not an OpenFin event emitter so it doesn't share propagation semantics.
|
|
7663
7663
|
*
|
|
7664
|
-
* ####
|
|
7664
|
+
* #### [addEventListener(type, listener [, options]);](https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/addEventListener)
|
|
7665
7665
|
* Adds a listener to the end of the listeners array for the specified event.
|
|
7666
7666
|
* @example
|
|
7667
7667
|
* ```js
|
|
@@ -7678,7 +7678,7 @@ declare type LaunchIntoPlatformPayload = {
|
|
|
7678
7678
|
* });
|
|
7679
7679
|
* ```
|
|
7680
7680
|
*
|
|
7681
|
-
* ####
|
|
7681
|
+
* #### [removeEventListener(type, listener [, options]);](https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/removeEventListener)
|
|
7682
7682
|
* Adds a listener to the end of the listeners array for the specified event.
|
|
7683
7683
|
* @example
|
|
7684
7684
|
* ```js
|
|
@@ -7942,7 +7942,7 @@ declare class Layout extends Base {
|
|
|
7942
7942
|
*/
|
|
7943
7943
|
applyPreset: (options: PresetLayoutOptions) => Promise<void>;
|
|
7944
7944
|
/**
|
|
7945
|
-
* Adds a view to the platform layout. Behaves like @link
|
|
7945
|
+
* Adds a view to the platform layout. Behaves like {@link Platform#createView Platform.createView} with the current layout as the target.
|
|
7946
7946
|
*
|
|
7947
7947
|
* @param viewOptions - The options for creating the view.
|
|
7948
7948
|
* @param options - Optional parameters for adding the view.
|
|
@@ -7958,7 +7958,7 @@ declare class Layout extends Base {
|
|
|
7958
7958
|
}>;
|
|
7959
7959
|
/**
|
|
7960
7960
|
* Closes a view by its identity. Throws an error if the view does not belong to the current layout.
|
|
7961
|
-
* Behaves like @link
|
|
7961
|
+
* Behaves like {@link Platform#closeView Platform.closeView} but only closes the view if it belongs the current layout.
|
|
7962
7962
|
*
|
|
7963
7963
|
* @param viewIdentity - The identity of the view to close.
|
|
7964
7964
|
* @returns A promise that resolves when the view is closed.
|
|
@@ -13534,6 +13534,7 @@ declare type Snapshot = {
|
|
|
13534
13534
|
declare type SnapshotAppliedEvent = BaseEvents.BaseEvent & {
|
|
13535
13535
|
topic: 'application';
|
|
13536
13536
|
type: 'platform-snapshot-applied';
|
|
13537
|
+
snapshot: Snapshot;
|
|
13537
13538
|
};
|
|
13538
13539
|
|
|
13539
13540
|
/**
|
package/out/mock.d.ts
CHANGED
|
@@ -7778,7 +7778,7 @@ declare type LaunchIntoPlatformPayload = {
|
|
|
7778
7778
|
*
|
|
7779
7779
|
* @remarks The built-in event emitter is not an OpenFin event emitter so it doesn't share propagation semantics.
|
|
7780
7780
|
*
|
|
7781
|
-
* ####
|
|
7781
|
+
* #### [addEventListener(type, listener [, options]);](https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/addEventListener)
|
|
7782
7782
|
* Adds a listener to the end of the listeners array for the specified event.
|
|
7783
7783
|
* @example
|
|
7784
7784
|
* ```js
|
|
@@ -7795,7 +7795,7 @@ declare type LaunchIntoPlatformPayload = {
|
|
|
7795
7795
|
* });
|
|
7796
7796
|
* ```
|
|
7797
7797
|
*
|
|
7798
|
-
* ####
|
|
7798
|
+
* #### [removeEventListener(type, listener [, options]);](https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/removeEventListener)
|
|
7799
7799
|
* Adds a listener to the end of the listeners array for the specified event.
|
|
7800
7800
|
* @example
|
|
7801
7801
|
* ```js
|
|
@@ -8068,7 +8068,7 @@ declare class Layout extends Base {
|
|
|
8068
8068
|
*/
|
|
8069
8069
|
applyPreset: (options: PresetLayoutOptions) => Promise<void>;
|
|
8070
8070
|
/**
|
|
8071
|
-
* Adds a view to the platform layout. Behaves like @link
|
|
8071
|
+
* Adds a view to the platform layout. Behaves like {@link Platform#createView Platform.createView} with the current layout as the target.
|
|
8072
8072
|
*
|
|
8073
8073
|
* @param viewOptions - The options for creating the view.
|
|
8074
8074
|
* @param options - Optional parameters for adding the view.
|
|
@@ -8084,7 +8084,7 @@ declare class Layout extends Base {
|
|
|
8084
8084
|
}>;
|
|
8085
8085
|
/**
|
|
8086
8086
|
* Closes a view by its identity. Throws an error if the view does not belong to the current layout.
|
|
8087
|
-
* Behaves like @link
|
|
8087
|
+
* Behaves like {@link Platform#closeView Platform.closeView} but only closes the view if it belongs the current layout.
|
|
8088
8088
|
*
|
|
8089
8089
|
* @param viewIdentity - The identity of the view to close.
|
|
8090
8090
|
* @returns A promise that resolves when the view is closed.
|
|
@@ -13935,6 +13935,7 @@ declare type Snapshot = {
|
|
|
13935
13935
|
declare type SnapshotAppliedEvent = BaseEvents.BaseEvent & {
|
|
13936
13936
|
topic: 'application';
|
|
13937
13937
|
type: 'platform-snapshot-applied';
|
|
13938
|
+
snapshot: Snapshot;
|
|
13938
13939
|
};
|
|
13939
13940
|
|
|
13940
13941
|
/**
|
package/out/mock.js
CHANGED
|
@@ -11991,7 +11991,7 @@ const layout_constants_1$1 = layout_constants;
|
|
|
11991
11991
|
*
|
|
11992
11992
|
* @remarks The built-in event emitter is not an OpenFin event emitter so it doesn't share propagation semantics.
|
|
11993
11993
|
*
|
|
11994
|
-
* ####
|
|
11994
|
+
* #### [addEventListener(type, listener [, options]);](https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/addEventListener)
|
|
11995
11995
|
* Adds a listener to the end of the listeners array for the specified event.
|
|
11996
11996
|
* @example
|
|
11997
11997
|
* ```js
|
|
@@ -12008,7 +12008,7 @@ const layout_constants_1$1 = layout_constants;
|
|
|
12008
12008
|
* });
|
|
12009
12009
|
* ```
|
|
12010
12010
|
*
|
|
12011
|
-
* ####
|
|
12011
|
+
* #### [removeEventListener(type, listener [, options]);](https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/removeEventListener)
|
|
12012
12012
|
* Adds a listener to the end of the listeners array for the specified event.
|
|
12013
12013
|
* @example
|
|
12014
12014
|
* ```js
|
|
@@ -12359,7 +12359,7 @@ class Layout extends base_1$8.Base {
|
|
|
12359
12359
|
return layout_entities_1.LayoutNode.getEntity(stack, client);
|
|
12360
12360
|
}
|
|
12361
12361
|
/**
|
|
12362
|
-
* Adds a view to the platform layout. Behaves like @link
|
|
12362
|
+
* Adds a view to the platform layout. Behaves like {@link Platform#createView Platform.createView} with the current layout as the target.
|
|
12363
12363
|
*
|
|
12364
12364
|
* @param viewOptions - The options for creating the view.
|
|
12365
12365
|
* @param options - Optional parameters for adding the view.
|
|
@@ -12380,7 +12380,7 @@ class Layout extends base_1$8.Base {
|
|
|
12380
12380
|
}
|
|
12381
12381
|
/**
|
|
12382
12382
|
* Closes a view by its identity. Throws an error if the view does not belong to the current layout.
|
|
12383
|
-
* Behaves like @link
|
|
12383
|
+
* Behaves like {@link Platform#closeView Platform.closeView} but only closes the view if it belongs the current layout.
|
|
12384
12384
|
*
|
|
12385
12385
|
* @param viewIdentity - The identity of the view to close.
|
|
12386
12386
|
* @returns A promise that resolves when the view is closed.
|