@openfin/workspace-platform 10.3.1 → 10.3.2
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.
|
@@ -10,6 +10,7 @@ export type { App, AppIntent, Image } from '../../client-api/src/shapes';
|
|
|
10
10
|
export type { CustomActionSpecifier, CustomButtonConfig } from '../../common/src/api/action';
|
|
11
11
|
export type { AttachedPage, Page, PageLayout, PageLayoutDetails, PageWithUpdatableRuntimeAttribs } from '../../common/src/api/pages/shapes';
|
|
12
12
|
export type { CustomThemes, CustomThemeOptions, CustomThemeOptionsWithScheme, CustomPaletteSet } from '../../common/src/api/theming';
|
|
13
|
+
export type { AnalyticsEvent } from '../../common/src/utils/usage-register';
|
|
13
14
|
/**
|
|
14
15
|
* Request for creating a saved page in persistent storage.
|
|
15
16
|
*/
|
|
@@ -1473,7 +1474,7 @@ export interface BrowserInitConfig {
|
|
|
1473
1474
|
/**
|
|
1474
1475
|
* Default options for creating a new browser window. Any option not included in WorkspacePlatform.getCurrentSync().Browser.createWindow(options) call will default to the value provided in this field.
|
|
1475
1476
|
*/
|
|
1476
|
-
defaultWindowOptions?: BrowserCreateWindowRequest
|
|
1477
|
+
defaultWindowOptions?: Partial<BrowserCreateWindowRequest>;
|
|
1477
1478
|
/** Default options when creating a new page. If `iconUrl`, `unsavedIconUrl` or `closeButton` are not defined when creating a page, setting will default to `defaultPageOptions`. */
|
|
1478
1479
|
defaultPageOptions?: Pick<Page, 'iconUrl' | 'unsavedIconUrl' | 'closeButton'>;
|
|
1479
1480
|
/**
|
|
@@ -11,6 +11,7 @@ export declare const getChannelClient: (identity: OpenFin.Identity) => Promise<C
|
|
|
11
11
|
* (Should only happen in local development)
|
|
12
12
|
*/
|
|
13
13
|
export declare const createChannel: () => Promise<import("@openfin/core/src/api/interappbus/channel/provider").ChannelProvider>;
|
|
14
|
+
export declare const makeGetBrowserChannelClient: () => Promise<import("@openfin/core/src/api/interappbus/channel/provider").ChannelProvider>;
|
|
14
15
|
export interface AddToChannelRequest {
|
|
15
16
|
newChannelId: string;
|
|
16
17
|
selectedViews: OpenFin.Identity[];
|
|
@@ -135,6 +135,7 @@ export declare function forceBodySize(): void;
|
|
|
135
135
|
* Gets all currently open browser windows.
|
|
136
136
|
*/
|
|
137
137
|
export declare function getBrowserWindows(): Promise<OpenFin.Window[]>;
|
|
138
|
+
export declare function getModalWindows(): Promise<OpenFin.Window[]>;
|
|
138
139
|
/**
|
|
139
140
|
* Closes all currently open Browser windows.
|
|
140
141
|
*/
|