@openfin/workspace-platform 17.0.5 → 17.0.7

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.
@@ -1,4 +1,8 @@
1
1
  import type OpenFin from '@openfin/core';
2
- export declare const DEFAULT_VIEW_OPTIONS: Partial<OpenFin.MutableViewOptions>;
2
+ type DefaultViewOptions = Partial<OpenFin.MutableViewOptions> & {
3
+ downloadShelf?: OpenFin.ConstWindowOptions['downloadShelf'];
4
+ };
5
+ export declare const DEFAULT_VIEW_OPTIONS: DefaultViewOptions;
3
6
  export declare const MANDATORY_VIEW_OPTIONS: Partial<OpenFin.MutableViewOptions>;
4
7
  export declare function applyViewDefaults(options: Partial<OpenFin.ViewOptions>, initViewOptions?: Partial<OpenFin.ViewOptions>): any;
8
+ export {};
@@ -10,7 +10,7 @@ import type { WorkflowIntegration } from '../../client-api/src/shapes/integratio
10
10
  export { AppManifestType } from '../../client-api/src/shapes';
11
11
  export type { App, AppIntent, Image } from '../../client-api/src/shapes';
12
12
  export type { CustomActionSpecifier, CustomButtonConfig } from '../../common/src/api/action';
13
- export type { AttachedPage, Page, PageLayout, PageLayoutDetails, PageWithUpdatableRuntimeAttribs, PanelConfigHorizontal, PanelConfigVertical, PanelConfig, ExtendedPanelConfig } from '../../common/src/api/pages/shapes';
13
+ export type { AttachedPage, Page, PageLayout, PageLayoutDetails, PageWithUpdatableRuntimeAttribs, PanelConfigHorizontal, PanelConfigVertical, PanelConfig, ExtendedPanelConfig, CopyPagePayload, HandleSaveModalOnPageClosePayload, SaveModalOnPageCloseResult, SetActivePageForWindowPayload } from '../../common/src/api/pages/shapes';
14
14
  export { PanelPosition } from '../../common/src/api/pages/shapes';
15
15
  export type { CustomThemes, CustomThemeOptions, CustomThemeOptionsWithScheme, CustomPaletteSet, BaseThemeOptions, ThemeExtension, WorkspaceThemePaletteSet, NotificationIndicatorColorsSet, NotificationIndicatorColorsSetDarkScheme, NotificationIndicatorColorsSetLightScheme, NotificationIndicatorColorsWithScheme } from '../../common/src/api/theming';
16
16
  export type { AnalyticsEvent } from '../../common/src/utils/usage-register';
@@ -6,6 +6,7 @@ export declare enum WindowName {
6
6
  Storefront = "openfin-storefront",
7
7
  HomeInternal = "openfin-home-internal",
8
8
  BrowserMenu = "openfin-browser-menu",
9
+ BrowserSaveMenu = "openfin-browser-save-menu",
9
10
  BrowserIndicator = "openfin-browser-indicator",
10
11
  BrowserWindow = "internal-generated-window",
11
12
  ClassicWindow = "internal-generated-classic-window"