@openfin/core 44.100.51 → 44.100.53
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 +2 -2
- package/out/mock-beta.d.ts +2 -2
- package/out/mock-public.d.ts +2 -2
- package/out/stub.d.ts +2 -2
- package/out/stub.js +1137 -1158
- package/package.json +1 -1
package/out/mock-alpha.d.ts
CHANGED
|
@@ -13422,7 +13422,7 @@ declare type ProtocolMap = ExternalAdapterOnlyCallsMap & AnalyticsProtocolMap &
|
|
|
13422
13422
|
'find-in-page': IdentityCall<{
|
|
13423
13423
|
searchTerm: string;
|
|
13424
13424
|
options?: OpenFin_2.FindInPageOptions;
|
|
13425
|
-
},
|
|
13425
|
+
}, OpenFin_2.FindInPageResult>;
|
|
13426
13426
|
'stop-find-in-page': IdentityCall<{
|
|
13427
13427
|
action: 'clearSelection' | 'keepSelection' | 'activateSelection';
|
|
13428
13428
|
}, void>;
|
|
@@ -18056,7 +18056,7 @@ declare class WebContents<T extends BaseEvent> extends EmitterBase<T> {
|
|
|
18056
18056
|
* We do not expose an explicit superclass for this functionality, but it does have its own
|
|
18057
18057
|
* {@link OpenFin.WebContentsEvents event namespace}.
|
|
18058
18058
|
*/
|
|
18059
|
-
findInPage(searchTerm: string, options?: OpenFin_2.FindInPageOptions): Promise<
|
|
18059
|
+
findInPage(searchTerm: string, options?: OpenFin_2.FindInPageOptions): Promise<OpenFin_2.FindInPageResult>;
|
|
18060
18060
|
/**
|
|
18061
18061
|
* Stop a {@link View#findInPage findInPage} call by specifying any of these actions:
|
|
18062
18062
|
*
|
package/out/mock-beta.d.ts
CHANGED
|
@@ -13422,7 +13422,7 @@ declare type ProtocolMap = ExternalAdapterOnlyCallsMap & AnalyticsProtocolMap &
|
|
|
13422
13422
|
'find-in-page': IdentityCall<{
|
|
13423
13423
|
searchTerm: string;
|
|
13424
13424
|
options?: OpenFin_2.FindInPageOptions;
|
|
13425
|
-
},
|
|
13425
|
+
}, OpenFin_2.FindInPageResult>;
|
|
13426
13426
|
'stop-find-in-page': IdentityCall<{
|
|
13427
13427
|
action: 'clearSelection' | 'keepSelection' | 'activateSelection';
|
|
13428
13428
|
}, void>;
|
|
@@ -18056,7 +18056,7 @@ declare class WebContents<T extends BaseEvent> extends EmitterBase<T> {
|
|
|
18056
18056
|
* We do not expose an explicit superclass for this functionality, but it does have its own
|
|
18057
18057
|
* {@link OpenFin.WebContentsEvents event namespace}.
|
|
18058
18058
|
*/
|
|
18059
|
-
findInPage(searchTerm: string, options?: OpenFin_2.FindInPageOptions): Promise<
|
|
18059
|
+
findInPage(searchTerm: string, options?: OpenFin_2.FindInPageOptions): Promise<OpenFin_2.FindInPageResult>;
|
|
18060
18060
|
/**
|
|
18061
18061
|
* Stop a {@link View#findInPage findInPage} call by specifying any of these actions:
|
|
18062
18062
|
*
|
package/out/mock-public.d.ts
CHANGED
|
@@ -13422,7 +13422,7 @@ declare type ProtocolMap = ExternalAdapterOnlyCallsMap & AnalyticsProtocolMap &
|
|
|
13422
13422
|
'find-in-page': IdentityCall<{
|
|
13423
13423
|
searchTerm: string;
|
|
13424
13424
|
options?: OpenFin_2.FindInPageOptions;
|
|
13425
|
-
},
|
|
13425
|
+
}, OpenFin_2.FindInPageResult>;
|
|
13426
13426
|
'stop-find-in-page': IdentityCall<{
|
|
13427
13427
|
action: 'clearSelection' | 'keepSelection' | 'activateSelection';
|
|
13428
13428
|
}, void>;
|
|
@@ -18056,7 +18056,7 @@ declare class WebContents<T extends BaseEvent> extends EmitterBase<T> {
|
|
|
18056
18056
|
* We do not expose an explicit superclass for this functionality, but it does have its own
|
|
18057
18057
|
* {@link OpenFin.WebContentsEvents event namespace}.
|
|
18058
18058
|
*/
|
|
18059
|
-
findInPage(searchTerm: string, options?: OpenFin_2.FindInPageOptions): Promise<
|
|
18059
|
+
findInPage(searchTerm: string, options?: OpenFin_2.FindInPageOptions): Promise<OpenFin_2.FindInPageResult>;
|
|
18060
18060
|
/**
|
|
18061
18061
|
* Stop a {@link View#findInPage findInPage} call by specifying any of these actions:
|
|
18062
18062
|
*
|
package/out/stub.d.ts
CHANGED
|
@@ -13839,7 +13839,7 @@ declare type ProtocolMap = ExternalAdapterOnlyCallsMap & AnalyticsProtocolMap &
|
|
|
13839
13839
|
'find-in-page': IdentityCall<{
|
|
13840
13840
|
searchTerm: string;
|
|
13841
13841
|
options?: OpenFin_2.FindInPageOptions;
|
|
13842
|
-
},
|
|
13842
|
+
}, OpenFin_2.FindInPageResult>;
|
|
13843
13843
|
'stop-find-in-page': IdentityCall<{
|
|
13844
13844
|
action: 'clearSelection' | 'keepSelection' | 'activateSelection';
|
|
13845
13845
|
}, void>;
|
|
@@ -18523,7 +18523,7 @@ declare class WebContents<T extends BaseEvent> extends EmitterBase<T> {
|
|
|
18523
18523
|
* We do not expose an explicit superclass for this functionality, but it does have its own
|
|
18524
18524
|
* {@link OpenFin.WebContentsEvents event namespace}.
|
|
18525
18525
|
*/
|
|
18526
|
-
findInPage(searchTerm: string, options?: OpenFin_2.FindInPageOptions): Promise<
|
|
18526
|
+
findInPage(searchTerm: string, options?: OpenFin_2.FindInPageOptions): Promise<OpenFin_2.FindInPageResult>;
|
|
18527
18527
|
/**
|
|
18528
18528
|
* Stop a {@link View#findInPage findInPage} call by specifying any of these actions:
|
|
18529
18529
|
*
|