@openfin/fdc3-api 41.100.17 → 41.100.19
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 +20 -0
- package/out/fdc3-api-beta.d.ts +20 -0
- package/out/fdc3-api-public.d.ts +20 -0
- package/out/fdc3-api.d.ts +20 -0
- package/package.json +1 -1
package/out/fdc3-api-alpha.d.ts
CHANGED
|
@@ -590,6 +590,23 @@ declare class Application extends EmitterBase<OpenFin.ApplicationEvent> {
|
|
|
590
590
|
* ```
|
|
591
591
|
*/
|
|
592
592
|
setTrayIcon(icon: string): Promise<void>;
|
|
593
|
+
/**
|
|
594
|
+
* Set hover text for this application's system tray icon.
|
|
595
|
+
* Note: Application must first set a tray icon with {@link Application.setTrayIcon}.
|
|
596
|
+
* @param toolTip
|
|
597
|
+
*
|
|
598
|
+
* @example
|
|
599
|
+
*
|
|
600
|
+
* ```js
|
|
601
|
+
* const app = fin.Application.getCurrentSync();
|
|
602
|
+
* const iconUrl = "http://cdn.openfin.co/assets/testing/icons/circled-digit-one.png";
|
|
603
|
+
*
|
|
604
|
+
* await app.setTrayIcon(iconUrl);
|
|
605
|
+
*
|
|
606
|
+
* await app.setTrayIconToolTip('My Application');
|
|
607
|
+
* ```
|
|
608
|
+
*/
|
|
609
|
+
setTrayIconToolTip(toolTip: string): Promise<void>;
|
|
593
610
|
/**
|
|
594
611
|
* Sets new application's shortcut configuration. Windows only.
|
|
595
612
|
* @param config New application's shortcut configuration.
|
|
@@ -12151,6 +12168,9 @@ declare interface ProtocolMap extends ProtocolMapBase {
|
|
|
12151
12168
|
'set-tray-icon': ApplicationIdentityCall<{
|
|
12152
12169
|
enabledIcon: string;
|
|
12153
12170
|
}, void>;
|
|
12171
|
+
'set-tray-icon-tooltip': ApplicationIdentityCall<{
|
|
12172
|
+
toolTip: string;
|
|
12173
|
+
}>;
|
|
12154
12174
|
'set-shortcuts': ApplicationIdentityCall<{
|
|
12155
12175
|
data: OpenFin.ShortCutConfig;
|
|
12156
12176
|
}, void>;
|
package/out/fdc3-api-beta.d.ts
CHANGED
|
@@ -590,6 +590,23 @@ declare class Application extends EmitterBase<OpenFin.ApplicationEvent> {
|
|
|
590
590
|
* ```
|
|
591
591
|
*/
|
|
592
592
|
setTrayIcon(icon: string): Promise<void>;
|
|
593
|
+
/**
|
|
594
|
+
* Set hover text for this application's system tray icon.
|
|
595
|
+
* Note: Application must first set a tray icon with {@link Application.setTrayIcon}.
|
|
596
|
+
* @param toolTip
|
|
597
|
+
*
|
|
598
|
+
* @example
|
|
599
|
+
*
|
|
600
|
+
* ```js
|
|
601
|
+
* const app = fin.Application.getCurrentSync();
|
|
602
|
+
* const iconUrl = "http://cdn.openfin.co/assets/testing/icons/circled-digit-one.png";
|
|
603
|
+
*
|
|
604
|
+
* await app.setTrayIcon(iconUrl);
|
|
605
|
+
*
|
|
606
|
+
* await app.setTrayIconToolTip('My Application');
|
|
607
|
+
* ```
|
|
608
|
+
*/
|
|
609
|
+
setTrayIconToolTip(toolTip: string): Promise<void>;
|
|
593
610
|
/**
|
|
594
611
|
* Sets new application's shortcut configuration. Windows only.
|
|
595
612
|
* @param config New application's shortcut configuration.
|
|
@@ -12151,6 +12168,9 @@ declare interface ProtocolMap extends ProtocolMapBase {
|
|
|
12151
12168
|
'set-tray-icon': ApplicationIdentityCall<{
|
|
12152
12169
|
enabledIcon: string;
|
|
12153
12170
|
}, void>;
|
|
12171
|
+
'set-tray-icon-tooltip': ApplicationIdentityCall<{
|
|
12172
|
+
toolTip: string;
|
|
12173
|
+
}>;
|
|
12154
12174
|
'set-shortcuts': ApplicationIdentityCall<{
|
|
12155
12175
|
data: OpenFin.ShortCutConfig;
|
|
12156
12176
|
}, void>;
|
package/out/fdc3-api-public.d.ts
CHANGED
|
@@ -590,6 +590,23 @@ declare class Application extends EmitterBase<OpenFin.ApplicationEvent> {
|
|
|
590
590
|
* ```
|
|
591
591
|
*/
|
|
592
592
|
setTrayIcon(icon: string): Promise<void>;
|
|
593
|
+
/**
|
|
594
|
+
* Set hover text for this application's system tray icon.
|
|
595
|
+
* Note: Application must first set a tray icon with {@link Application.setTrayIcon}.
|
|
596
|
+
* @param toolTip
|
|
597
|
+
*
|
|
598
|
+
* @example
|
|
599
|
+
*
|
|
600
|
+
* ```js
|
|
601
|
+
* const app = fin.Application.getCurrentSync();
|
|
602
|
+
* const iconUrl = "http://cdn.openfin.co/assets/testing/icons/circled-digit-one.png";
|
|
603
|
+
*
|
|
604
|
+
* await app.setTrayIcon(iconUrl);
|
|
605
|
+
*
|
|
606
|
+
* await app.setTrayIconToolTip('My Application');
|
|
607
|
+
* ```
|
|
608
|
+
*/
|
|
609
|
+
setTrayIconToolTip(toolTip: string): Promise<void>;
|
|
593
610
|
/**
|
|
594
611
|
* Sets new application's shortcut configuration. Windows only.
|
|
595
612
|
* @param config New application's shortcut configuration.
|
|
@@ -12151,6 +12168,9 @@ declare interface ProtocolMap extends ProtocolMapBase {
|
|
|
12151
12168
|
'set-tray-icon': ApplicationIdentityCall<{
|
|
12152
12169
|
enabledIcon: string;
|
|
12153
12170
|
}, void>;
|
|
12171
|
+
'set-tray-icon-tooltip': ApplicationIdentityCall<{
|
|
12172
|
+
toolTip: string;
|
|
12173
|
+
}>;
|
|
12154
12174
|
'set-shortcuts': ApplicationIdentityCall<{
|
|
12155
12175
|
data: OpenFin.ShortCutConfig;
|
|
12156
12176
|
}, void>;
|
package/out/fdc3-api.d.ts
CHANGED
|
@@ -596,6 +596,23 @@ declare class Application extends EmitterBase<OpenFin.ApplicationEvent> {
|
|
|
596
596
|
* ```
|
|
597
597
|
*/
|
|
598
598
|
setTrayIcon(icon: string): Promise<void>;
|
|
599
|
+
/**
|
|
600
|
+
* Set hover text for this application's system tray icon.
|
|
601
|
+
* Note: Application must first set a tray icon with {@link Application.setTrayIcon}.
|
|
602
|
+
* @param toolTip
|
|
603
|
+
*
|
|
604
|
+
* @example
|
|
605
|
+
*
|
|
606
|
+
* ```js
|
|
607
|
+
* const app = fin.Application.getCurrentSync();
|
|
608
|
+
* const iconUrl = "http://cdn.openfin.co/assets/testing/icons/circled-digit-one.png";
|
|
609
|
+
*
|
|
610
|
+
* await app.setTrayIcon(iconUrl);
|
|
611
|
+
*
|
|
612
|
+
* await app.setTrayIconToolTip('My Application');
|
|
613
|
+
* ```
|
|
614
|
+
*/
|
|
615
|
+
setTrayIconToolTip(toolTip: string): Promise<void>;
|
|
599
616
|
/**
|
|
600
617
|
* Sets new application's shortcut configuration. Windows only.
|
|
601
618
|
* @param config New application's shortcut configuration.
|
|
@@ -12552,6 +12569,9 @@ declare interface ProtocolMap extends ProtocolMapBase {
|
|
|
12552
12569
|
'set-tray-icon': ApplicationIdentityCall<{
|
|
12553
12570
|
enabledIcon: string;
|
|
12554
12571
|
}, void>;
|
|
12572
|
+
'set-tray-icon-tooltip': ApplicationIdentityCall<{
|
|
12573
|
+
toolTip: string;
|
|
12574
|
+
}>;
|
|
12555
12575
|
'set-shortcuts': ApplicationIdentityCall<{
|
|
12556
12576
|
data: OpenFin.ShortCutConfig;
|
|
12557
12577
|
}, void>;
|