@openfin/fdc3-api 38.82.62 → 38.82.64
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/fdc3-api-alpha.d.ts +21 -1
- package/out/fdc3-api-beta.d.ts +21 -1
- package/out/fdc3-api-public.d.ts +21 -1
- package/out/fdc3-api.d.ts +21 -1
- package/package.json +1 -1
package/out/fdc3-api-alpha.d.ts
CHANGED
|
@@ -42,6 +42,15 @@ declare type Accelerator = {
|
|
|
42
42
|
zoom: boolean;
|
|
43
43
|
};
|
|
44
44
|
|
|
45
|
+
/**
|
|
46
|
+
* Generated when a View is added to a layout.
|
|
47
|
+
* @interface
|
|
48
|
+
*/
|
|
49
|
+
declare type AddedToLayoutEvent = BaseEvent_4 & {
|
|
50
|
+
type: 'added-to-layout';
|
|
51
|
+
layoutIdentity: OpenFin.LayoutIdentity;
|
|
52
|
+
};
|
|
53
|
+
|
|
45
54
|
/**
|
|
46
55
|
* Options to use when adding a view to a {@link TabStack}.
|
|
47
56
|
*
|
|
@@ -4758,7 +4767,7 @@ declare type Event_3 = ViewEvents.PropagatedEvent<'application'> | WindowEvents.
|
|
|
4758
4767
|
*/
|
|
4759
4768
|
declare type Event_4 = (WebContentsEvents.Event<'view'> & {
|
|
4760
4769
|
target: OpenFin.Identity;
|
|
4761
|
-
}) | CreatedEvent | DestroyedEvent | HiddenEvent | HotkeyEvent | ShownEvent | TargetChangedEvent | HostContextChangedEvent;
|
|
4770
|
+
}) | CreatedEvent | DestroyedEvent | HiddenEvent | HotkeyEvent | ShownEvent | TargetChangedEvent | HostContextChangedEvent | AddedToLayoutEvent | RemovedFromLayoutEvent;
|
|
4762
4771
|
|
|
4763
4772
|
/**
|
|
4764
4773
|
* [Union](https://www.typescriptlang.org/docs/handbook/2/everyday-types.html#union-types) containing events shared by all WebContents elements
|
|
@@ -12222,6 +12231,15 @@ declare interface RemoteConfig extends ExistingConnectConfig {
|
|
|
12222
12231
|
token: string;
|
|
12223
12232
|
}
|
|
12224
12233
|
|
|
12234
|
+
/**
|
|
12235
|
+
* Generated when a View is removed from a layout.
|
|
12236
|
+
* @interface
|
|
12237
|
+
*/
|
|
12238
|
+
declare type RemovedFromLayoutEvent = BaseEvent_4 & {
|
|
12239
|
+
type: 'removed-from-layout';
|
|
12240
|
+
layoutIdentity: OpenFin.LayoutIdentity;
|
|
12241
|
+
};
|
|
12242
|
+
|
|
12225
12243
|
/**
|
|
12226
12244
|
* @interface
|
|
12227
12245
|
*/
|
|
@@ -15578,6 +15596,8 @@ declare namespace ViewEvents {
|
|
|
15578
15596
|
BaseEvent_4 as BaseEvent,
|
|
15579
15597
|
BaseViewEvent,
|
|
15580
15598
|
TargetChangedEvent,
|
|
15599
|
+
AddedToLayoutEvent,
|
|
15600
|
+
RemovedFromLayoutEvent,
|
|
15581
15601
|
NonPropagatedViewEvent,
|
|
15582
15602
|
CreatedEvent,
|
|
15583
15603
|
DestroyedEvent,
|
package/out/fdc3-api-beta.d.ts
CHANGED
|
@@ -42,6 +42,15 @@ declare type Accelerator = {
|
|
|
42
42
|
zoom: boolean;
|
|
43
43
|
};
|
|
44
44
|
|
|
45
|
+
/**
|
|
46
|
+
* Generated when a View is added to a layout.
|
|
47
|
+
* @interface
|
|
48
|
+
*/
|
|
49
|
+
declare type AddedToLayoutEvent = BaseEvent_4 & {
|
|
50
|
+
type: 'added-to-layout';
|
|
51
|
+
layoutIdentity: OpenFin.LayoutIdentity;
|
|
52
|
+
};
|
|
53
|
+
|
|
45
54
|
/**
|
|
46
55
|
* Options to use when adding a view to a {@link TabStack}.
|
|
47
56
|
*
|
|
@@ -4758,7 +4767,7 @@ declare type Event_3 = ViewEvents.PropagatedEvent<'application'> | WindowEvents.
|
|
|
4758
4767
|
*/
|
|
4759
4768
|
declare type Event_4 = (WebContentsEvents.Event<'view'> & {
|
|
4760
4769
|
target: OpenFin.Identity;
|
|
4761
|
-
}) | CreatedEvent | DestroyedEvent | HiddenEvent | HotkeyEvent | ShownEvent | TargetChangedEvent | HostContextChangedEvent;
|
|
4770
|
+
}) | CreatedEvent | DestroyedEvent | HiddenEvent | HotkeyEvent | ShownEvent | TargetChangedEvent | HostContextChangedEvent | AddedToLayoutEvent | RemovedFromLayoutEvent;
|
|
4762
4771
|
|
|
4763
4772
|
/**
|
|
4764
4773
|
* [Union](https://www.typescriptlang.org/docs/handbook/2/everyday-types.html#union-types) containing events shared by all WebContents elements
|
|
@@ -12222,6 +12231,15 @@ declare interface RemoteConfig extends ExistingConnectConfig {
|
|
|
12222
12231
|
token: string;
|
|
12223
12232
|
}
|
|
12224
12233
|
|
|
12234
|
+
/**
|
|
12235
|
+
* Generated when a View is removed from a layout.
|
|
12236
|
+
* @interface
|
|
12237
|
+
*/
|
|
12238
|
+
declare type RemovedFromLayoutEvent = BaseEvent_4 & {
|
|
12239
|
+
type: 'removed-from-layout';
|
|
12240
|
+
layoutIdentity: OpenFin.LayoutIdentity;
|
|
12241
|
+
};
|
|
12242
|
+
|
|
12225
12243
|
/**
|
|
12226
12244
|
* @interface
|
|
12227
12245
|
*/
|
|
@@ -15578,6 +15596,8 @@ declare namespace ViewEvents {
|
|
|
15578
15596
|
BaseEvent_4 as BaseEvent,
|
|
15579
15597
|
BaseViewEvent,
|
|
15580
15598
|
TargetChangedEvent,
|
|
15599
|
+
AddedToLayoutEvent,
|
|
15600
|
+
RemovedFromLayoutEvent,
|
|
15581
15601
|
NonPropagatedViewEvent,
|
|
15582
15602
|
CreatedEvent,
|
|
15583
15603
|
DestroyedEvent,
|
package/out/fdc3-api-public.d.ts
CHANGED
|
@@ -42,6 +42,15 @@ declare type Accelerator = {
|
|
|
42
42
|
zoom: boolean;
|
|
43
43
|
};
|
|
44
44
|
|
|
45
|
+
/**
|
|
46
|
+
* Generated when a View is added to a layout.
|
|
47
|
+
* @interface
|
|
48
|
+
*/
|
|
49
|
+
declare type AddedToLayoutEvent = BaseEvent_4 & {
|
|
50
|
+
type: 'added-to-layout';
|
|
51
|
+
layoutIdentity: OpenFin.LayoutIdentity;
|
|
52
|
+
};
|
|
53
|
+
|
|
45
54
|
/**
|
|
46
55
|
* Options to use when adding a view to a {@link TabStack}.
|
|
47
56
|
*
|
|
@@ -4758,7 +4767,7 @@ declare type Event_3 = ViewEvents.PropagatedEvent<'application'> | WindowEvents.
|
|
|
4758
4767
|
*/
|
|
4759
4768
|
declare type Event_4 = (WebContentsEvents.Event<'view'> & {
|
|
4760
4769
|
target: OpenFin.Identity;
|
|
4761
|
-
}) | CreatedEvent | DestroyedEvent | HiddenEvent | HotkeyEvent | ShownEvent | TargetChangedEvent | HostContextChangedEvent;
|
|
4770
|
+
}) | CreatedEvent | DestroyedEvent | HiddenEvent | HotkeyEvent | ShownEvent | TargetChangedEvent | HostContextChangedEvent | AddedToLayoutEvent | RemovedFromLayoutEvent;
|
|
4762
4771
|
|
|
4763
4772
|
/**
|
|
4764
4773
|
* [Union](https://www.typescriptlang.org/docs/handbook/2/everyday-types.html#union-types) containing events shared by all WebContents elements
|
|
@@ -12222,6 +12231,15 @@ declare interface RemoteConfig extends ExistingConnectConfig {
|
|
|
12222
12231
|
token: string;
|
|
12223
12232
|
}
|
|
12224
12233
|
|
|
12234
|
+
/**
|
|
12235
|
+
* Generated when a View is removed from a layout.
|
|
12236
|
+
* @interface
|
|
12237
|
+
*/
|
|
12238
|
+
declare type RemovedFromLayoutEvent = BaseEvent_4 & {
|
|
12239
|
+
type: 'removed-from-layout';
|
|
12240
|
+
layoutIdentity: OpenFin.LayoutIdentity;
|
|
12241
|
+
};
|
|
12242
|
+
|
|
12225
12243
|
/**
|
|
12226
12244
|
* @interface
|
|
12227
12245
|
*/
|
|
@@ -15578,6 +15596,8 @@ declare namespace ViewEvents {
|
|
|
15578
15596
|
BaseEvent_4 as BaseEvent,
|
|
15579
15597
|
BaseViewEvent,
|
|
15580
15598
|
TargetChangedEvent,
|
|
15599
|
+
AddedToLayoutEvent,
|
|
15600
|
+
RemovedFromLayoutEvent,
|
|
15581
15601
|
NonPropagatedViewEvent,
|
|
15582
15602
|
CreatedEvent,
|
|
15583
15603
|
DestroyedEvent,
|
package/out/fdc3-api.d.ts
CHANGED
|
@@ -42,6 +42,15 @@ declare type Accelerator = {
|
|
|
42
42
|
zoom: boolean;
|
|
43
43
|
};
|
|
44
44
|
|
|
45
|
+
/**
|
|
46
|
+
* Generated when a View is added to a layout.
|
|
47
|
+
* @interface
|
|
48
|
+
*/
|
|
49
|
+
declare type AddedToLayoutEvent = BaseEvent_4 & {
|
|
50
|
+
type: 'added-to-layout';
|
|
51
|
+
layoutIdentity: OpenFin.LayoutIdentity;
|
|
52
|
+
};
|
|
53
|
+
|
|
45
54
|
/**
|
|
46
55
|
* Options to use when adding a view to a {@link TabStack}.
|
|
47
56
|
*
|
|
@@ -4822,7 +4831,7 @@ declare type Event_3 = ViewEvents.PropagatedEvent<'application'> | WindowEvents.
|
|
|
4822
4831
|
*/
|
|
4823
4832
|
declare type Event_4 = (WebContentsEvents.Event<'view'> & {
|
|
4824
4833
|
target: OpenFin.Identity;
|
|
4825
|
-
}) | CreatedEvent | DestroyedEvent | HiddenEvent | HotkeyEvent | ShownEvent | TargetChangedEvent | HostContextChangedEvent;
|
|
4834
|
+
}) | CreatedEvent | DestroyedEvent | HiddenEvent | HotkeyEvent | ShownEvent | TargetChangedEvent | HostContextChangedEvent | AddedToLayoutEvent | RemovedFromLayoutEvent;
|
|
4826
4835
|
|
|
4827
4836
|
/**
|
|
4828
4837
|
* [Union](https://www.typescriptlang.org/docs/handbook/2/everyday-types.html#union-types) containing events shared by all WebContents elements
|
|
@@ -12615,6 +12624,15 @@ declare interface RemoteConfig extends ExistingConnectConfig {
|
|
|
12615
12624
|
token: string;
|
|
12616
12625
|
}
|
|
12617
12626
|
|
|
12627
|
+
/**
|
|
12628
|
+
* Generated when a View is removed from a layout.
|
|
12629
|
+
* @interface
|
|
12630
|
+
*/
|
|
12631
|
+
declare type RemovedFromLayoutEvent = BaseEvent_4 & {
|
|
12632
|
+
type: 'removed-from-layout';
|
|
12633
|
+
layoutIdentity: OpenFin.LayoutIdentity;
|
|
12634
|
+
};
|
|
12635
|
+
|
|
12618
12636
|
/**
|
|
12619
12637
|
* @interface
|
|
12620
12638
|
*/
|
|
@@ -16021,6 +16039,8 @@ declare namespace ViewEvents {
|
|
|
16021
16039
|
BaseEvent_4 as BaseEvent,
|
|
16022
16040
|
BaseViewEvent,
|
|
16023
16041
|
TargetChangedEvent,
|
|
16042
|
+
AddedToLayoutEvent,
|
|
16043
|
+
RemovedFromLayoutEvent,
|
|
16024
16044
|
NonPropagatedViewEvent,
|
|
16025
16045
|
CreatedEvent,
|
|
16026
16046
|
DestroyedEvent,
|