@openfin/core 42.100.2 → 42.100.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/mock-alpha.d.ts +19 -1
- package/out/mock-beta.d.ts +19 -1
- package/out/mock-public.d.ts +19 -1
- package/out/stub.d.ts +19 -1
- package/package.json +1 -1
package/out/mock-alpha.d.ts
CHANGED
@@ -4493,6 +4493,10 @@ declare type DomainSettings = {
|
|
4493
4493
|
* more information, see the documentation for the individual properties.
|
4494
4494
|
*/
|
4495
4495
|
default?: PerDomainSettings;
|
4496
|
+
/**
|
4497
|
+
* {@inheritDoc MultipleDomainMatchBehavior}
|
4498
|
+
*/
|
4499
|
+
multipleMatchBehavior?: MultipleDomainMatchBehavior;
|
4496
4500
|
};
|
4497
4501
|
|
4498
4502
|
/**
|
@@ -4505,7 +4509,7 @@ declare type DomainSettingsRule = {
|
|
4505
4509
|
* Array of [match patterns](https://developer.chrome.com/docs/extensions/develop/concepts/match-patterns) specifying
|
4506
4510
|
* the domain(s) for which the rule applies.
|
4507
4511
|
*/
|
4508
|
-
match
|
4512
|
+
match: string[];
|
4509
4513
|
/**
|
4510
4514
|
* Settings applied when a webcontents has been navigated to a matched domain.
|
4511
4515
|
*/
|
@@ -8902,6 +8906,19 @@ declare type MonitorInfoChangedEvent = BaseEvent_9 & OpenFin_2.MonitorInfo & {
|
|
8902
8906
|
*/
|
8903
8907
|
declare type MultiInstanceViewBehavior = 'reparent' | 'duplicate' | 'default';
|
8904
8908
|
|
8909
|
+
/**
|
8910
|
+
* Behavior for handling multiple {@link DomainSettingsRule} matches.
|
8911
|
+
*/
|
8912
|
+
declare type MultipleDomainMatchBehavior =
|
8913
|
+
/**
|
8914
|
+
* Apply only the first matching rule in the list.
|
8915
|
+
*/
|
8916
|
+
'pick-first'
|
8917
|
+
/**
|
8918
|
+
* Deep-merge all matching rules in the list, prioritizing earlier matches. Treats arrays as primitives.
|
8919
|
+
*/
|
8920
|
+
| 'deep-merge';
|
8921
|
+
|
8905
8922
|
/**
|
8906
8923
|
* @interface
|
8907
8924
|
*/
|
@@ -9646,6 +9663,7 @@ declare namespace OpenFin_2 {
|
|
9646
9663
|
RuntimeInfo,
|
9647
9664
|
DefaultDomainSettings,
|
9648
9665
|
DefaultDomainSettingsRule,
|
9666
|
+
MultipleDomainMatchBehavior,
|
9649
9667
|
DomainSettings,
|
9650
9668
|
ApiInjection,
|
9651
9669
|
DomainApiSettings,
|
package/out/mock-beta.d.ts
CHANGED
@@ -4493,6 +4493,10 @@ declare type DomainSettings = {
|
|
4493
4493
|
* more information, see the documentation for the individual properties.
|
4494
4494
|
*/
|
4495
4495
|
default?: PerDomainSettings;
|
4496
|
+
/**
|
4497
|
+
* {@inheritDoc MultipleDomainMatchBehavior}
|
4498
|
+
*/
|
4499
|
+
multipleMatchBehavior?: MultipleDomainMatchBehavior;
|
4496
4500
|
};
|
4497
4501
|
|
4498
4502
|
/**
|
@@ -4505,7 +4509,7 @@ declare type DomainSettingsRule = {
|
|
4505
4509
|
* Array of [match patterns](https://developer.chrome.com/docs/extensions/develop/concepts/match-patterns) specifying
|
4506
4510
|
* the domain(s) for which the rule applies.
|
4507
4511
|
*/
|
4508
|
-
match
|
4512
|
+
match: string[];
|
4509
4513
|
/**
|
4510
4514
|
* Settings applied when a webcontents has been navigated to a matched domain.
|
4511
4515
|
*/
|
@@ -8902,6 +8906,19 @@ declare type MonitorInfoChangedEvent = BaseEvent_9 & OpenFin_2.MonitorInfo & {
|
|
8902
8906
|
*/
|
8903
8907
|
declare type MultiInstanceViewBehavior = 'reparent' | 'duplicate' | 'default';
|
8904
8908
|
|
8909
|
+
/**
|
8910
|
+
* Behavior for handling multiple {@link DomainSettingsRule} matches.
|
8911
|
+
*/
|
8912
|
+
declare type MultipleDomainMatchBehavior =
|
8913
|
+
/**
|
8914
|
+
* Apply only the first matching rule in the list.
|
8915
|
+
*/
|
8916
|
+
'pick-first'
|
8917
|
+
/**
|
8918
|
+
* Deep-merge all matching rules in the list, prioritizing earlier matches. Treats arrays as primitives.
|
8919
|
+
*/
|
8920
|
+
| 'deep-merge';
|
8921
|
+
|
8905
8922
|
/**
|
8906
8923
|
* @interface
|
8907
8924
|
*/
|
@@ -9646,6 +9663,7 @@ declare namespace OpenFin_2 {
|
|
9646
9663
|
RuntimeInfo,
|
9647
9664
|
DefaultDomainSettings,
|
9648
9665
|
DefaultDomainSettingsRule,
|
9666
|
+
MultipleDomainMatchBehavior,
|
9649
9667
|
DomainSettings,
|
9650
9668
|
ApiInjection,
|
9651
9669
|
DomainApiSettings,
|
package/out/mock-public.d.ts
CHANGED
@@ -4493,6 +4493,10 @@ declare type DomainSettings = {
|
|
4493
4493
|
* more information, see the documentation for the individual properties.
|
4494
4494
|
*/
|
4495
4495
|
default?: PerDomainSettings;
|
4496
|
+
/**
|
4497
|
+
* {@inheritDoc MultipleDomainMatchBehavior}
|
4498
|
+
*/
|
4499
|
+
multipleMatchBehavior?: MultipleDomainMatchBehavior;
|
4496
4500
|
};
|
4497
4501
|
|
4498
4502
|
/**
|
@@ -4505,7 +4509,7 @@ declare type DomainSettingsRule = {
|
|
4505
4509
|
* Array of [match patterns](https://developer.chrome.com/docs/extensions/develop/concepts/match-patterns) specifying
|
4506
4510
|
* the domain(s) for which the rule applies.
|
4507
4511
|
*/
|
4508
|
-
match
|
4512
|
+
match: string[];
|
4509
4513
|
/**
|
4510
4514
|
* Settings applied when a webcontents has been navigated to a matched domain.
|
4511
4515
|
*/
|
@@ -8902,6 +8906,19 @@ declare type MonitorInfoChangedEvent = BaseEvent_9 & OpenFin_2.MonitorInfo & {
|
|
8902
8906
|
*/
|
8903
8907
|
declare type MultiInstanceViewBehavior = 'reparent' | 'duplicate' | 'default';
|
8904
8908
|
|
8909
|
+
/**
|
8910
|
+
* Behavior for handling multiple {@link DomainSettingsRule} matches.
|
8911
|
+
*/
|
8912
|
+
declare type MultipleDomainMatchBehavior =
|
8913
|
+
/**
|
8914
|
+
* Apply only the first matching rule in the list.
|
8915
|
+
*/
|
8916
|
+
'pick-first'
|
8917
|
+
/**
|
8918
|
+
* Deep-merge all matching rules in the list, prioritizing earlier matches. Treats arrays as primitives.
|
8919
|
+
*/
|
8920
|
+
| 'deep-merge';
|
8921
|
+
|
8905
8922
|
/**
|
8906
8923
|
* @interface
|
8907
8924
|
*/
|
@@ -9646,6 +9663,7 @@ declare namespace OpenFin_2 {
|
|
9646
9663
|
RuntimeInfo,
|
9647
9664
|
DefaultDomainSettings,
|
9648
9665
|
DefaultDomainSettingsRule,
|
9666
|
+
MultipleDomainMatchBehavior,
|
9649
9667
|
DomainSettings,
|
9650
9668
|
ApiInjection,
|
9651
9669
|
DomainApiSettings,
|
package/out/stub.d.ts
CHANGED
@@ -4552,6 +4552,10 @@ declare type DomainSettings = {
|
|
4552
4552
|
* more information, see the documentation for the individual properties.
|
4553
4553
|
*/
|
4554
4554
|
default?: PerDomainSettings;
|
4555
|
+
/**
|
4556
|
+
* {@inheritDoc MultipleDomainMatchBehavior}
|
4557
|
+
*/
|
4558
|
+
multipleMatchBehavior?: MultipleDomainMatchBehavior;
|
4555
4559
|
};
|
4556
4560
|
|
4557
4561
|
/**
|
@@ -4564,7 +4568,7 @@ declare type DomainSettingsRule = {
|
|
4564
4568
|
* Array of [match patterns](https://developer.chrome.com/docs/extensions/develop/concepts/match-patterns) specifying
|
4565
4569
|
* the domain(s) for which the rule applies.
|
4566
4570
|
*/
|
4567
|
-
match
|
4571
|
+
match: string[];
|
4568
4572
|
/**
|
4569
4573
|
* Settings applied when a webcontents has been navigated to a matched domain.
|
4570
4574
|
*/
|
@@ -9198,6 +9202,19 @@ declare type MonitorInfoChangedEvent = BaseEvent_9 & OpenFin_2.MonitorInfo & {
|
|
9198
9202
|
*/
|
9199
9203
|
declare type MultiInstanceViewBehavior = 'reparent' | 'duplicate' | 'default';
|
9200
9204
|
|
9205
|
+
/**
|
9206
|
+
* Behavior for handling multiple {@link DomainSettingsRule} matches.
|
9207
|
+
*/
|
9208
|
+
declare type MultipleDomainMatchBehavior =
|
9209
|
+
/**
|
9210
|
+
* Apply only the first matching rule in the list.
|
9211
|
+
*/
|
9212
|
+
'pick-first'
|
9213
|
+
/**
|
9214
|
+
* Deep-merge all matching rules in the list, prioritizing earlier matches. Treats arrays as primitives.
|
9215
|
+
*/
|
9216
|
+
| 'deep-merge';
|
9217
|
+
|
9201
9218
|
/**
|
9202
9219
|
* @interface
|
9203
9220
|
*/
|
@@ -9964,6 +9981,7 @@ declare namespace OpenFin_2 {
|
|
9964
9981
|
RuntimeInfo,
|
9965
9982
|
DefaultDomainSettings,
|
9966
9983
|
DefaultDomainSettingsRule,
|
9984
|
+
MultipleDomainMatchBehavior,
|
9967
9985
|
DomainSettings,
|
9968
9986
|
ApiInjection,
|
9969
9987
|
DomainApiSettings,
|