@openfin/fdc3-api 39.83.2 → 39.83.3
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 +25 -1
- package/out/fdc3-api-beta.d.ts +25 -1
- package/out/fdc3-api-public.d.ts +25 -1
- package/out/fdc3-api.d.ts +25 -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
|
*
|
|
@@ -4755,7 +4764,7 @@ declare type Event_3 = ViewEvents.PropagatedEvent<'application'> | WindowEvents.
|
|
|
4755
4764
|
*/
|
|
4756
4765
|
declare type Event_4 = (WebContentsEvents.Event<'view'> & {
|
|
4757
4766
|
target: OpenFin.Identity;
|
|
4758
|
-
}) | CreatedEvent | DestroyedEvent | HiddenEvent | HotkeyEvent | ShownEvent | TargetChangedEvent | HostContextChangedEvent;
|
|
4767
|
+
}) | CreatedEvent | DestroyedEvent | HiddenEvent | HotkeyEvent | ShownEvent | TargetChangedEvent | HostContextChangedEvent | AddedToLayoutEvent | RemovedFromLayoutEvent;
|
|
4759
4768
|
|
|
4760
4769
|
/**
|
|
4761
4770
|
* [Union](https://www.typescriptlang.org/docs/handbook/2/everyday-types.html#union-types) containing events shared by all WebContents elements
|
|
@@ -5497,6 +5506,10 @@ declare type FileDownloadEvent = {
|
|
|
5497
5506
|
* The number of bytes of the item that have already been downloaded.
|
|
5498
5507
|
*/
|
|
5499
5508
|
downloadedBytes: number;
|
|
5509
|
+
/**
|
|
5510
|
+
* Unique identifier for the downloaded file.
|
|
5511
|
+
*/
|
|
5512
|
+
fileUuid: string;
|
|
5500
5513
|
} & NamedEvent;
|
|
5501
5514
|
|
|
5502
5515
|
/**
|
|
@@ -12246,6 +12259,15 @@ declare interface RemoteConfig extends ExistingConnectConfig {
|
|
|
12246
12259
|
token: string;
|
|
12247
12260
|
}
|
|
12248
12261
|
|
|
12262
|
+
/**
|
|
12263
|
+
* Generated when a View is removed from a layout.
|
|
12264
|
+
* @interface
|
|
12265
|
+
*/
|
|
12266
|
+
declare type RemovedFromLayoutEvent = BaseEvent_4 & {
|
|
12267
|
+
type: 'removed-from-layout';
|
|
12268
|
+
layoutIdentity: OpenFin.LayoutIdentity;
|
|
12269
|
+
};
|
|
12270
|
+
|
|
12249
12271
|
/**
|
|
12250
12272
|
* @interface
|
|
12251
12273
|
*/
|
|
@@ -15602,6 +15624,8 @@ declare namespace ViewEvents {
|
|
|
15602
15624
|
BaseEvent_4 as BaseEvent,
|
|
15603
15625
|
BaseViewEvent,
|
|
15604
15626
|
TargetChangedEvent,
|
|
15627
|
+
AddedToLayoutEvent,
|
|
15628
|
+
RemovedFromLayoutEvent,
|
|
15605
15629
|
NonPropagatedViewEvent,
|
|
15606
15630
|
CreatedEvent,
|
|
15607
15631
|
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
|
*
|
|
@@ -4755,7 +4764,7 @@ declare type Event_3 = ViewEvents.PropagatedEvent<'application'> | WindowEvents.
|
|
|
4755
4764
|
*/
|
|
4756
4765
|
declare type Event_4 = (WebContentsEvents.Event<'view'> & {
|
|
4757
4766
|
target: OpenFin.Identity;
|
|
4758
|
-
}) | CreatedEvent | DestroyedEvent | HiddenEvent | HotkeyEvent | ShownEvent | TargetChangedEvent | HostContextChangedEvent;
|
|
4767
|
+
}) | CreatedEvent | DestroyedEvent | HiddenEvent | HotkeyEvent | ShownEvent | TargetChangedEvent | HostContextChangedEvent | AddedToLayoutEvent | RemovedFromLayoutEvent;
|
|
4759
4768
|
|
|
4760
4769
|
/**
|
|
4761
4770
|
* [Union](https://www.typescriptlang.org/docs/handbook/2/everyday-types.html#union-types) containing events shared by all WebContents elements
|
|
@@ -5497,6 +5506,10 @@ declare type FileDownloadEvent = {
|
|
|
5497
5506
|
* The number of bytes of the item that have already been downloaded.
|
|
5498
5507
|
*/
|
|
5499
5508
|
downloadedBytes: number;
|
|
5509
|
+
/**
|
|
5510
|
+
* Unique identifier for the downloaded file.
|
|
5511
|
+
*/
|
|
5512
|
+
fileUuid: string;
|
|
5500
5513
|
} & NamedEvent;
|
|
5501
5514
|
|
|
5502
5515
|
/**
|
|
@@ -12246,6 +12259,15 @@ declare interface RemoteConfig extends ExistingConnectConfig {
|
|
|
12246
12259
|
token: string;
|
|
12247
12260
|
}
|
|
12248
12261
|
|
|
12262
|
+
/**
|
|
12263
|
+
* Generated when a View is removed from a layout.
|
|
12264
|
+
* @interface
|
|
12265
|
+
*/
|
|
12266
|
+
declare type RemovedFromLayoutEvent = BaseEvent_4 & {
|
|
12267
|
+
type: 'removed-from-layout';
|
|
12268
|
+
layoutIdentity: OpenFin.LayoutIdentity;
|
|
12269
|
+
};
|
|
12270
|
+
|
|
12249
12271
|
/**
|
|
12250
12272
|
* @interface
|
|
12251
12273
|
*/
|
|
@@ -15602,6 +15624,8 @@ declare namespace ViewEvents {
|
|
|
15602
15624
|
BaseEvent_4 as BaseEvent,
|
|
15603
15625
|
BaseViewEvent,
|
|
15604
15626
|
TargetChangedEvent,
|
|
15627
|
+
AddedToLayoutEvent,
|
|
15628
|
+
RemovedFromLayoutEvent,
|
|
15605
15629
|
NonPropagatedViewEvent,
|
|
15606
15630
|
CreatedEvent,
|
|
15607
15631
|
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
|
*
|
|
@@ -4755,7 +4764,7 @@ declare type Event_3 = ViewEvents.PropagatedEvent<'application'> | WindowEvents.
|
|
|
4755
4764
|
*/
|
|
4756
4765
|
declare type Event_4 = (WebContentsEvents.Event<'view'> & {
|
|
4757
4766
|
target: OpenFin.Identity;
|
|
4758
|
-
}) | CreatedEvent | DestroyedEvent | HiddenEvent | HotkeyEvent | ShownEvent | TargetChangedEvent | HostContextChangedEvent;
|
|
4767
|
+
}) | CreatedEvent | DestroyedEvent | HiddenEvent | HotkeyEvent | ShownEvent | TargetChangedEvent | HostContextChangedEvent | AddedToLayoutEvent | RemovedFromLayoutEvent;
|
|
4759
4768
|
|
|
4760
4769
|
/**
|
|
4761
4770
|
* [Union](https://www.typescriptlang.org/docs/handbook/2/everyday-types.html#union-types) containing events shared by all WebContents elements
|
|
@@ -5497,6 +5506,10 @@ declare type FileDownloadEvent = {
|
|
|
5497
5506
|
* The number of bytes of the item that have already been downloaded.
|
|
5498
5507
|
*/
|
|
5499
5508
|
downloadedBytes: number;
|
|
5509
|
+
/**
|
|
5510
|
+
* Unique identifier for the downloaded file.
|
|
5511
|
+
*/
|
|
5512
|
+
fileUuid: string;
|
|
5500
5513
|
} & NamedEvent;
|
|
5501
5514
|
|
|
5502
5515
|
/**
|
|
@@ -12246,6 +12259,15 @@ declare interface RemoteConfig extends ExistingConnectConfig {
|
|
|
12246
12259
|
token: string;
|
|
12247
12260
|
}
|
|
12248
12261
|
|
|
12262
|
+
/**
|
|
12263
|
+
* Generated when a View is removed from a layout.
|
|
12264
|
+
* @interface
|
|
12265
|
+
*/
|
|
12266
|
+
declare type RemovedFromLayoutEvent = BaseEvent_4 & {
|
|
12267
|
+
type: 'removed-from-layout';
|
|
12268
|
+
layoutIdentity: OpenFin.LayoutIdentity;
|
|
12269
|
+
};
|
|
12270
|
+
|
|
12249
12271
|
/**
|
|
12250
12272
|
* @interface
|
|
12251
12273
|
*/
|
|
@@ -15602,6 +15624,8 @@ declare namespace ViewEvents {
|
|
|
15602
15624
|
BaseEvent_4 as BaseEvent,
|
|
15603
15625
|
BaseViewEvent,
|
|
15604
15626
|
TargetChangedEvent,
|
|
15627
|
+
AddedToLayoutEvent,
|
|
15628
|
+
RemovedFromLayoutEvent,
|
|
15605
15629
|
NonPropagatedViewEvent,
|
|
15606
15630
|
CreatedEvent,
|
|
15607
15631
|
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
|
*
|
|
@@ -4819,7 +4828,7 @@ declare type Event_3 = ViewEvents.PropagatedEvent<'application'> | WindowEvents.
|
|
|
4819
4828
|
*/
|
|
4820
4829
|
declare type Event_4 = (WebContentsEvents.Event<'view'> & {
|
|
4821
4830
|
target: OpenFin.Identity;
|
|
4822
|
-
}) | CreatedEvent | DestroyedEvent | HiddenEvent | HotkeyEvent | ShownEvent | TargetChangedEvent | HostContextChangedEvent;
|
|
4831
|
+
}) | CreatedEvent | DestroyedEvent | HiddenEvent | HotkeyEvent | ShownEvent | TargetChangedEvent | HostContextChangedEvent | AddedToLayoutEvent | RemovedFromLayoutEvent;
|
|
4823
4832
|
|
|
4824
4833
|
/**
|
|
4825
4834
|
* [Union](https://www.typescriptlang.org/docs/handbook/2/everyday-types.html#union-types) containing events shared by all WebContents elements
|
|
@@ -5582,6 +5591,10 @@ declare type FileDownloadEvent = {
|
|
|
5582
5591
|
* The number of bytes of the item that have already been downloaded.
|
|
5583
5592
|
*/
|
|
5584
5593
|
downloadedBytes: number;
|
|
5594
|
+
/**
|
|
5595
|
+
* Unique identifier for the downloaded file.
|
|
5596
|
+
*/
|
|
5597
|
+
fileUuid: string;
|
|
5585
5598
|
} & NamedEvent;
|
|
5586
5599
|
|
|
5587
5600
|
/**
|
|
@@ -12639,6 +12652,15 @@ declare interface RemoteConfig extends ExistingConnectConfig {
|
|
|
12639
12652
|
token: string;
|
|
12640
12653
|
}
|
|
12641
12654
|
|
|
12655
|
+
/**
|
|
12656
|
+
* Generated when a View is removed from a layout.
|
|
12657
|
+
* @interface
|
|
12658
|
+
*/
|
|
12659
|
+
declare type RemovedFromLayoutEvent = BaseEvent_4 & {
|
|
12660
|
+
type: 'removed-from-layout';
|
|
12661
|
+
layoutIdentity: OpenFin.LayoutIdentity;
|
|
12662
|
+
};
|
|
12663
|
+
|
|
12642
12664
|
/**
|
|
12643
12665
|
* @interface
|
|
12644
12666
|
*/
|
|
@@ -16045,6 +16067,8 @@ declare namespace ViewEvents {
|
|
|
16045
16067
|
BaseEvent_4 as BaseEvent,
|
|
16046
16068
|
BaseViewEvent,
|
|
16047
16069
|
TargetChangedEvent,
|
|
16070
|
+
AddedToLayoutEvent,
|
|
16071
|
+
RemovedFromLayoutEvent,
|
|
16048
16072
|
NonPropagatedViewEvent,
|
|
16049
16073
|
CreatedEvent,
|
|
16050
16074
|
DestroyedEvent,
|