@openfin/cloud-api
Advanced tools
+26
-13
@@ -324,6 +324,2 @@ import * as OpenFin from '@openfin/core'; | ||
| /** | ||
| * URL or data URI of an icon that will be displayed within the action button when HERE is in Light mode. | ||
| */ | ||
| darkIcon?: string; | ||
| /** | ||
| * A fuller description of the action that will be displayed in HERE's search UI when the user hovers over the action button. | ||
@@ -333,5 +329,11 @@ */ | ||
| /** | ||
| * URL or data URI of an icon that will be displayed within the action button when HERE is in Dark mode. | ||
| * Icon that will be displayed within the action button in HERE's search UI. | ||
| * | ||
| * This can be a URL/data URI string (used for both Light and Dark modes), | ||
| * or an object containing separate icons for Light and Dark modes. | ||
| */ | ||
| lightIcon?: string; | ||
| icon?: string | { | ||
| dark: string; | ||
| light: string; | ||
| }; | ||
| /** | ||
@@ -563,2 +565,6 @@ * Internal identifier for the action which is used to identify the action in the {@link OnActionListener}. | ||
| * title: "View Owner", | ||
| * icon: { | ||
| * dark: "data:image/svg+xml,...", | ||
| * light: "data:image/svg+xml,...", | ||
| * }, | ||
| * }, | ||
@@ -632,6 +638,2 @@ * ], | ||
| /** | ||
| * URL or data URI of an icon that will be displayed within the action button when HERE is in Light mode. | ||
| */ | ||
| darkIcon?: string; | ||
| /** | ||
| * A fuller description of the action that will be displayed in HERE's search UI when the user hovers over the action button. | ||
@@ -641,5 +643,11 @@ */ | ||
| /** | ||
| * URL or data URI of an icon that will be displayed within the action button when HERE is in Dark mode. | ||
| * Icon that will be displayed within the action button in HERE's search UI. | ||
| * | ||
| * This can be a URL/data URI string (used for both Light and Dark modes), | ||
| * or an object containing separate icons for Light and Dark modes. | ||
| */ | ||
| lightIcon?: string; | ||
| icon?: string | { | ||
| dark: string; | ||
| light: string; | ||
| }; | ||
| /** | ||
@@ -890,2 +898,6 @@ * Internal identifier for the action which is used to identify the action in the {@link OnSearchActionListener}. | ||
| * title: "View Owner", | ||
| * icon: { | ||
| * dark: "data:image/svg+xml,...", | ||
| * light: "data:image/svg+xml,...", | ||
| * }, | ||
| * }, | ||
@@ -931,6 +943,7 @@ * ], | ||
| type index_SearchListenerRequest = SearchListenerRequest; | ||
| type index_SearchResult = SearchResult; | ||
| declare const index_getConfiguration: typeof getConfiguration; | ||
| declare const index_register: typeof register; | ||
| declare namespace index { | ||
| export { type index_Agent as Agent, type index_AgentFeatures as AgentFeatures, type index_AgentRegistrationConfig as AgentRegistrationConfig, type index_AgentSearchFilter as AgentSearchFilter, type index_InteropColorChannel as InteropColorChannel, type index_OnSearchActionListener as OnSearchActionListener, type index_OnSearchRequestListener as OnSearchRequestListener, type index_SearchListenerRequest as SearchListenerRequest, index_getConfiguration as getConfiguration, index_register as register }; | ||
| export { type index_Agent as Agent, type index_AgentFeatures as AgentFeatures, type index_AgentRegistrationConfig as AgentRegistrationConfig, type index_AgentSearchFilter as AgentSearchFilter, type index_InteropColorChannel as InteropColorChannel, type index_OnSearchActionListener as OnSearchActionListener, type index_OnSearchRequestListener as OnSearchRequestListener, type index_SearchListenerRequest as SearchListenerRequest, type index_SearchResult as SearchResult, index_getConfiguration as getConfiguration, index_register as register }; | ||
| } | ||
@@ -937,0 +950,0 @@ |
+26
-13
@@ -324,6 +324,2 @@ import * as OpenFin from '@openfin/core'; | ||
| /** | ||
| * URL or data URI of an icon that will be displayed within the action button when HERE is in Light mode. | ||
| */ | ||
| darkIcon?: string; | ||
| /** | ||
| * A fuller description of the action that will be displayed in HERE's search UI when the user hovers over the action button. | ||
@@ -333,5 +329,11 @@ */ | ||
| /** | ||
| * URL or data URI of an icon that will be displayed within the action button when HERE is in Dark mode. | ||
| * Icon that will be displayed within the action button in HERE's search UI. | ||
| * | ||
| * This can be a URL/data URI string (used for both Light and Dark modes), | ||
| * or an object containing separate icons for Light and Dark modes. | ||
| */ | ||
| lightIcon?: string; | ||
| icon?: string | { | ||
| dark: string; | ||
| light: string; | ||
| }; | ||
| /** | ||
@@ -563,2 +565,6 @@ * Internal identifier for the action which is used to identify the action in the {@link OnActionListener}. | ||
| * title: "View Owner", | ||
| * icon: { | ||
| * dark: "data:image/svg+xml,...", | ||
| * light: "data:image/svg+xml,...", | ||
| * }, | ||
| * }, | ||
@@ -632,6 +638,2 @@ * ], | ||
| /** | ||
| * URL or data URI of an icon that will be displayed within the action button when HERE is in Light mode. | ||
| */ | ||
| darkIcon?: string; | ||
| /** | ||
| * A fuller description of the action that will be displayed in HERE's search UI when the user hovers over the action button. | ||
@@ -641,5 +643,11 @@ */ | ||
| /** | ||
| * URL or data URI of an icon that will be displayed within the action button when HERE is in Dark mode. | ||
| * Icon that will be displayed within the action button in HERE's search UI. | ||
| * | ||
| * This can be a URL/data URI string (used for both Light and Dark modes), | ||
| * or an object containing separate icons for Light and Dark modes. | ||
| */ | ||
| lightIcon?: string; | ||
| icon?: string | { | ||
| dark: string; | ||
| light: string; | ||
| }; | ||
| /** | ||
@@ -890,2 +898,6 @@ * Internal identifier for the action which is used to identify the action in the {@link OnSearchActionListener}. | ||
| * title: "View Owner", | ||
| * icon: { | ||
| * dark: "data:image/svg+xml,...", | ||
| * light: "data:image/svg+xml,...", | ||
| * }, | ||
| * }, | ||
@@ -931,6 +943,7 @@ * ], | ||
| type index_SearchListenerRequest = SearchListenerRequest; | ||
| type index_SearchResult = SearchResult; | ||
| declare const index_getConfiguration: typeof getConfiguration; | ||
| declare const index_register: typeof register; | ||
| declare namespace index { | ||
| export { type index_Agent as Agent, type index_AgentFeatures as AgentFeatures, type index_AgentRegistrationConfig as AgentRegistrationConfig, type index_AgentSearchFilter as AgentSearchFilter, type index_InteropColorChannel as InteropColorChannel, type index_OnSearchActionListener as OnSearchActionListener, type index_OnSearchRequestListener as OnSearchRequestListener, type index_SearchListenerRequest as SearchListenerRequest, index_getConfiguration as getConfiguration, index_register as register }; | ||
| export { type index_Agent as Agent, type index_AgentFeatures as AgentFeatures, type index_AgentRegistrationConfig as AgentRegistrationConfig, type index_AgentSearchFilter as AgentSearchFilter, type index_InteropColorChannel as InteropColorChannel, type index_OnSearchActionListener as OnSearchActionListener, type index_OnSearchRequestListener as OnSearchRequestListener, type index_SearchListenerRequest as SearchListenerRequest, type index_SearchResult as SearchResult, index_getConfiguration as getConfiguration, index_register as register }; | ||
| } | ||
@@ -937,0 +950,0 @@ |
+3
-3
| { | ||
| "name": "@openfin/cloud-api", | ||
| "version": "0.0.1-alpha.17b7582", | ||
| "version": "0.0.1-alpha.17f9bb3", | ||
| "sideEffects": false, | ||
@@ -30,6 +30,6 @@ "description": "", | ||
| "devDependencies": { | ||
| "@openfin/core": "43.102.2", | ||
| "@openfin/core": "45.100.90", | ||
| "@openfin/search-api": "^2.0.1", | ||
| "@openfin/typedoc-theme": "^2.0.2", | ||
| "@openfin/workspace": "23.2.14", | ||
| "@openfin/workspace": "45.0.5", | ||
| "@typescript-eslint/eslint-plugin": "^8.32.0", | ||
@@ -36,0 +36,0 @@ "@typescript-eslint/parser": "^8.32.0", |
133022
0.8%1146
1.15%