@openfin/workspace 15.0.4 → 15.0.6
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/client-api-platform/src/api/app-directory.d.ts +1 -1
- package/common/src/api/pages/shapes.d.ts +5 -1
- package/common/src/utils/env.d.ts +1 -1
- package/home.js +1 -1
- package/index.js +1 -1
- package/notifications.js +1 -1
- package/notifications.js.map +1 -1
- package/package.json +3 -3
- package/store.js +1 -1
|
@@ -5,4 +5,4 @@ import type { LaunchAppRequest } from '../shapes';
|
|
|
5
5
|
* @param app the app directory entry.
|
|
6
6
|
* @param opts launch options.
|
|
7
7
|
*/
|
|
8
|
-
export declare function launchApp({ app, target }: LaunchAppRequest): Promise<void | OpenFin.
|
|
8
|
+
export declare function launchApp({ app, target }: LaunchAppRequest): Promise<void | OpenFin.View | OpenFin.Identity | OpenFin.Platform | OpenFin.Application>;
|
|
@@ -48,7 +48,11 @@ export interface Page {
|
|
|
48
48
|
description?: string;
|
|
49
49
|
/** A optional UI friendly tooltip for the page. */
|
|
50
50
|
tooltip?: string;
|
|
51
|
-
/**
|
|
51
|
+
/**
|
|
52
|
+
* True if the page is read only. In this state, the page is locked and cannot be unlocked.
|
|
53
|
+
*
|
|
54
|
+
* @deprecated This property is deprecated and will be removed in a future release. Setting it has no effect. To _"lock"_ a page, and prevent the ability to close pages, drag pages within the window and drag pages into/out of the window, use the `isLocked` property.
|
|
55
|
+
*/
|
|
52
56
|
isReadOnly?: boolean;
|
|
53
57
|
/** Icon that appears on a page tab if there are unsaved changes (dirty state). If 'undefined', default icon will appear. */
|
|
54
58
|
unsavedIconUrl?: string;
|
|
@@ -11,7 +11,7 @@ export declare const isDocumentDefined: boolean;
|
|
|
11
11
|
export declare const isWindowDefinedWithIndexDB: boolean;
|
|
12
12
|
export declare const finUUID: string;
|
|
13
13
|
export declare const finName: string;
|
|
14
|
-
export declare const finEntityType: "" | "
|
|
14
|
+
export declare const finEntityType: "" | "window" | "view" | "iframe" | "external connection" | "unknown";
|
|
15
15
|
export declare const isEnvLocal: boolean;
|
|
16
16
|
export declare const isEnvDev: boolean;
|
|
17
17
|
export declare const isEnvStaging: boolean;
|