@openfin/workspace 19.1.15 → 19.1.16
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/init/override-callback/mutex.d.ts +7 -0
- package/common/src/utils/layout.d.ts +2 -0
- package/home.js +1 -1
- package/home.js.map +1 -1
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/notifications.js +1 -1
- package/notifications.js.map +1 -1
- package/package.json +1 -1
- package/store.js +1 -1
- package/store.js.map +1 -1
|
@@ -105,6 +105,8 @@ export declare const findViewInLayout: (node: any, viewId: OpenFin.Identity) =>
|
|
|
105
105
|
* @returns The total number of views in the layout configuration.
|
|
106
106
|
*/
|
|
107
107
|
export declare const countViews: (node: OpenFin.LayoutContent) => number;
|
|
108
|
+
export declare const getLayoutConfig: (layoutContainerKey: string) => Promise<any>;
|
|
109
|
+
export declare const updateTabStateBasedOnViewCount: (page: AttachedPageInternal, viewCount: number) => Promise<void>;
|
|
108
110
|
export declare const updatePageForViewCount: (activePage: AttachedPageInternal) => Promise<void>;
|
|
109
111
|
export declare const debouncedUpdatePageForViewCount: import("lodash").DebouncedFunc<(activePage: AttachedPageInternal) => Promise<void>>;
|
|
110
112
|
export declare const findPageForView: (viewName: string, browserWindowIdentity?: WindowIdentity) => Promise<AttachedPage | undefined>;
|