@openfin/core 46.100.72 → 46.100.74
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/out/mock-alpha.d.ts +38 -0
- package/out/mock-beta.d.ts +38 -0
- package/out/mock-public.d.ts +38 -0
- package/out/stub.d.ts +38 -0
- package/package.json +1 -1
package/out/mock-alpha.d.ts
CHANGED
|
@@ -9336,8 +9336,26 @@ declare type LayoutOptions = {
|
|
|
9336
9336
|
content?: LayoutContent;
|
|
9337
9337
|
dimensions?: {
|
|
9338
9338
|
borderWidth?: number;
|
|
9339
|
+
/**
|
|
9340
|
+
* Minimum height a layout item can be resized to, in pixels.
|
|
9341
|
+
* On web layouts this is mapped to Golden Layout 2 `defaultMinItemHeight`.
|
|
9342
|
+
*/
|
|
9339
9343
|
minItemHeight?: number;
|
|
9344
|
+
/**
|
|
9345
|
+
* Minimum width a layout item can be resized to, in pixels.
|
|
9346
|
+
* On web layouts this is mapped to Golden Layout 2 `defaultMinItemWidth`.
|
|
9347
|
+
*/
|
|
9340
9348
|
minItemWidth?: number;
|
|
9349
|
+
/**
|
|
9350
|
+
* Minimum height a layout item can be resized to (CSS size, e.g. `'500px'`).
|
|
9351
|
+
* Web layouts only. Takes precedence over {@link LayoutOptions.dimensions.minItemHeight} when both are set.
|
|
9352
|
+
*/
|
|
9353
|
+
defaultMinItemHeight?: string;
|
|
9354
|
+
/**
|
|
9355
|
+
* Minimum width a layout item can be resized to (CSS size, e.g. `'500px'`).
|
|
9356
|
+
* Web layouts only. Takes precedence over {@link LayoutOptions.dimensions.minItemWidth} when both are set.
|
|
9357
|
+
*/
|
|
9358
|
+
defaultMinItemWidth?: string;
|
|
9341
9359
|
headerHeight?: number;
|
|
9342
9360
|
};
|
|
9343
9361
|
};
|
|
@@ -10015,6 +10033,18 @@ declare type MutableViewOptions = {
|
|
|
10015
10033
|
interop?: InteropConfig;
|
|
10016
10034
|
/* Excluded from this release type: _internalWorkspaceData */
|
|
10017
10035
|
/* Excluded from this release type: workspacePlatform */
|
|
10036
|
+
/**
|
|
10037
|
+
* Per-view tab icon. Exception to `showFavicons` / `defaultFaviconUrl`.
|
|
10038
|
+
*
|
|
10039
|
+
* Distinct from Window `icon` (taskbar).
|
|
10040
|
+
*
|
|
10041
|
+
* - Omitted / `''` / `'unset'`: inherit — if `showFavicons`, page favicon then `defaultFaviconUrl`, else hide
|
|
10042
|
+
* - URL string: always show that URL, even when `showFavicons` is false. Load failure uses `defaultFaviconUrl`
|
|
10043
|
+
* - `'hide'`: always hide, even when `showFavicons` is true
|
|
10044
|
+
*
|
|
10045
|
+
* On `updateOptions`, omitted keys are a no-op; set `'unset'` to return to inherit.
|
|
10046
|
+
*/
|
|
10047
|
+
icon?: ViewTabIcon;
|
|
10018
10048
|
/**
|
|
10019
10049
|
* {@inheritDoc ViewThrottling}
|
|
10020
10050
|
*
|
|
@@ -10766,6 +10796,7 @@ declare namespace OpenFin_2 {
|
|
|
10766
10796
|
ViewInfo,
|
|
10767
10797
|
WindowThrottling,
|
|
10768
10798
|
ViewThrottling,
|
|
10799
|
+
ViewTabIcon,
|
|
10769
10800
|
UpdatableViewOptions,
|
|
10770
10801
|
ViewCreationOptions,
|
|
10771
10802
|
MutableViewOptions,
|
|
@@ -18776,6 +18807,13 @@ declare type ViewTabAccessibilityOptions = {
|
|
|
18776
18807
|
*/
|
|
18777
18808
|
declare type ViewTabElements = 'active-tab' | 'inactive-tab' | 'active-tab-close-button' | 'inactive-tab-close-button' | 'add-tab-button' | 'active-tab-custom-control' | 'inactive-tab-custom-control';
|
|
18778
18809
|
|
|
18810
|
+
/**
|
|
18811
|
+
* Per-view tab icon. A URL, or the reserved sentinels `'hide'` / `'unset'`.
|
|
18812
|
+
*
|
|
18813
|
+
* `'hide'` and `'unset'` are not URLs. `''` is also unset (inherit) and is the default.
|
|
18814
|
+
*/
|
|
18815
|
+
declare type ViewTabIcon = string | 'hide' | 'unset';
|
|
18816
|
+
|
|
18779
18817
|
/**
|
|
18780
18818
|
* View throttling state.
|
|
18781
18819
|
*
|
package/out/mock-beta.d.ts
CHANGED
|
@@ -9336,8 +9336,26 @@ declare type LayoutOptions = {
|
|
|
9336
9336
|
content?: LayoutContent;
|
|
9337
9337
|
dimensions?: {
|
|
9338
9338
|
borderWidth?: number;
|
|
9339
|
+
/**
|
|
9340
|
+
* Minimum height a layout item can be resized to, in pixels.
|
|
9341
|
+
* On web layouts this is mapped to Golden Layout 2 `defaultMinItemHeight`.
|
|
9342
|
+
*/
|
|
9339
9343
|
minItemHeight?: number;
|
|
9344
|
+
/**
|
|
9345
|
+
* Minimum width a layout item can be resized to, in pixels.
|
|
9346
|
+
* On web layouts this is mapped to Golden Layout 2 `defaultMinItemWidth`.
|
|
9347
|
+
*/
|
|
9340
9348
|
minItemWidth?: number;
|
|
9349
|
+
/**
|
|
9350
|
+
* Minimum height a layout item can be resized to (CSS size, e.g. `'500px'`).
|
|
9351
|
+
* Web layouts only. Takes precedence over {@link LayoutOptions.dimensions.minItemHeight} when both are set.
|
|
9352
|
+
*/
|
|
9353
|
+
defaultMinItemHeight?: string;
|
|
9354
|
+
/**
|
|
9355
|
+
* Minimum width a layout item can be resized to (CSS size, e.g. `'500px'`).
|
|
9356
|
+
* Web layouts only. Takes precedence over {@link LayoutOptions.dimensions.minItemWidth} when both are set.
|
|
9357
|
+
*/
|
|
9358
|
+
defaultMinItemWidth?: string;
|
|
9341
9359
|
headerHeight?: number;
|
|
9342
9360
|
};
|
|
9343
9361
|
};
|
|
@@ -10015,6 +10033,18 @@ declare type MutableViewOptions = {
|
|
|
10015
10033
|
interop?: InteropConfig;
|
|
10016
10034
|
/* Excluded from this release type: _internalWorkspaceData */
|
|
10017
10035
|
/* Excluded from this release type: workspacePlatform */
|
|
10036
|
+
/**
|
|
10037
|
+
* Per-view tab icon. Exception to `showFavicons` / `defaultFaviconUrl`.
|
|
10038
|
+
*
|
|
10039
|
+
* Distinct from Window `icon` (taskbar).
|
|
10040
|
+
*
|
|
10041
|
+
* - Omitted / `''` / `'unset'`: inherit — if `showFavicons`, page favicon then `defaultFaviconUrl`, else hide
|
|
10042
|
+
* - URL string: always show that URL, even when `showFavicons` is false. Load failure uses `defaultFaviconUrl`
|
|
10043
|
+
* - `'hide'`: always hide, even when `showFavicons` is true
|
|
10044
|
+
*
|
|
10045
|
+
* On `updateOptions`, omitted keys are a no-op; set `'unset'` to return to inherit.
|
|
10046
|
+
*/
|
|
10047
|
+
icon?: ViewTabIcon;
|
|
10018
10048
|
/**
|
|
10019
10049
|
* {@inheritDoc ViewThrottling}
|
|
10020
10050
|
*
|
|
@@ -10766,6 +10796,7 @@ declare namespace OpenFin_2 {
|
|
|
10766
10796
|
ViewInfo,
|
|
10767
10797
|
WindowThrottling,
|
|
10768
10798
|
ViewThrottling,
|
|
10799
|
+
ViewTabIcon,
|
|
10769
10800
|
UpdatableViewOptions,
|
|
10770
10801
|
ViewCreationOptions,
|
|
10771
10802
|
MutableViewOptions,
|
|
@@ -18776,6 +18807,13 @@ declare type ViewTabAccessibilityOptions = {
|
|
|
18776
18807
|
*/
|
|
18777
18808
|
declare type ViewTabElements = 'active-tab' | 'inactive-tab' | 'active-tab-close-button' | 'inactive-tab-close-button' | 'add-tab-button' | 'active-tab-custom-control' | 'inactive-tab-custom-control';
|
|
18778
18809
|
|
|
18810
|
+
/**
|
|
18811
|
+
* Per-view tab icon. A URL, or the reserved sentinels `'hide'` / `'unset'`.
|
|
18812
|
+
*
|
|
18813
|
+
* `'hide'` and `'unset'` are not URLs. `''` is also unset (inherit) and is the default.
|
|
18814
|
+
*/
|
|
18815
|
+
declare type ViewTabIcon = string | 'hide' | 'unset';
|
|
18816
|
+
|
|
18779
18817
|
/**
|
|
18780
18818
|
* View throttling state.
|
|
18781
18819
|
*
|
package/out/mock-public.d.ts
CHANGED
|
@@ -9336,8 +9336,26 @@ declare type LayoutOptions = {
|
|
|
9336
9336
|
content?: LayoutContent;
|
|
9337
9337
|
dimensions?: {
|
|
9338
9338
|
borderWidth?: number;
|
|
9339
|
+
/**
|
|
9340
|
+
* Minimum height a layout item can be resized to, in pixels.
|
|
9341
|
+
* On web layouts this is mapped to Golden Layout 2 `defaultMinItemHeight`.
|
|
9342
|
+
*/
|
|
9339
9343
|
minItemHeight?: number;
|
|
9344
|
+
/**
|
|
9345
|
+
* Minimum width a layout item can be resized to, in pixels.
|
|
9346
|
+
* On web layouts this is mapped to Golden Layout 2 `defaultMinItemWidth`.
|
|
9347
|
+
*/
|
|
9340
9348
|
minItemWidth?: number;
|
|
9349
|
+
/**
|
|
9350
|
+
* Minimum height a layout item can be resized to (CSS size, e.g. `'500px'`).
|
|
9351
|
+
* Web layouts only. Takes precedence over {@link LayoutOptions.dimensions.minItemHeight} when both are set.
|
|
9352
|
+
*/
|
|
9353
|
+
defaultMinItemHeight?: string;
|
|
9354
|
+
/**
|
|
9355
|
+
* Minimum width a layout item can be resized to (CSS size, e.g. `'500px'`).
|
|
9356
|
+
* Web layouts only. Takes precedence over {@link LayoutOptions.dimensions.minItemWidth} when both are set.
|
|
9357
|
+
*/
|
|
9358
|
+
defaultMinItemWidth?: string;
|
|
9341
9359
|
headerHeight?: number;
|
|
9342
9360
|
};
|
|
9343
9361
|
};
|
|
@@ -10015,6 +10033,18 @@ declare type MutableViewOptions = {
|
|
|
10015
10033
|
interop?: InteropConfig;
|
|
10016
10034
|
/* Excluded from this release type: _internalWorkspaceData */
|
|
10017
10035
|
/* Excluded from this release type: workspacePlatform */
|
|
10036
|
+
/**
|
|
10037
|
+
* Per-view tab icon. Exception to `showFavicons` / `defaultFaviconUrl`.
|
|
10038
|
+
*
|
|
10039
|
+
* Distinct from Window `icon` (taskbar).
|
|
10040
|
+
*
|
|
10041
|
+
* - Omitted / `''` / `'unset'`: inherit — if `showFavicons`, page favicon then `defaultFaviconUrl`, else hide
|
|
10042
|
+
* - URL string: always show that URL, even when `showFavicons` is false. Load failure uses `defaultFaviconUrl`
|
|
10043
|
+
* - `'hide'`: always hide, even when `showFavicons` is true
|
|
10044
|
+
*
|
|
10045
|
+
* On `updateOptions`, omitted keys are a no-op; set `'unset'` to return to inherit.
|
|
10046
|
+
*/
|
|
10047
|
+
icon?: ViewTabIcon;
|
|
10018
10048
|
/**
|
|
10019
10049
|
* {@inheritDoc ViewThrottling}
|
|
10020
10050
|
*
|
|
@@ -10766,6 +10796,7 @@ declare namespace OpenFin_2 {
|
|
|
10766
10796
|
ViewInfo,
|
|
10767
10797
|
WindowThrottling,
|
|
10768
10798
|
ViewThrottling,
|
|
10799
|
+
ViewTabIcon,
|
|
10769
10800
|
UpdatableViewOptions,
|
|
10770
10801
|
ViewCreationOptions,
|
|
10771
10802
|
MutableViewOptions,
|
|
@@ -18776,6 +18807,13 @@ declare type ViewTabAccessibilityOptions = {
|
|
|
18776
18807
|
*/
|
|
18777
18808
|
declare type ViewTabElements = 'active-tab' | 'inactive-tab' | 'active-tab-close-button' | 'inactive-tab-close-button' | 'add-tab-button' | 'active-tab-custom-control' | 'inactive-tab-custom-control';
|
|
18778
18809
|
|
|
18810
|
+
/**
|
|
18811
|
+
* Per-view tab icon. A URL, or the reserved sentinels `'hide'` / `'unset'`.
|
|
18812
|
+
*
|
|
18813
|
+
* `'hide'` and `'unset'` are not URLs. `''` is also unset (inherit) and is the default.
|
|
18814
|
+
*/
|
|
18815
|
+
declare type ViewTabIcon = string | 'hide' | 'unset';
|
|
18816
|
+
|
|
18779
18817
|
/**
|
|
18780
18818
|
* View throttling state.
|
|
18781
18819
|
*
|
package/out/stub.d.ts
CHANGED
|
@@ -9698,8 +9698,26 @@ declare type LayoutOptions = {
|
|
|
9698
9698
|
content?: LayoutContent;
|
|
9699
9699
|
dimensions?: {
|
|
9700
9700
|
borderWidth?: number;
|
|
9701
|
+
/**
|
|
9702
|
+
* Minimum height a layout item can be resized to, in pixels.
|
|
9703
|
+
* On web layouts this is mapped to Golden Layout 2 `defaultMinItemHeight`.
|
|
9704
|
+
*/
|
|
9701
9705
|
minItemHeight?: number;
|
|
9706
|
+
/**
|
|
9707
|
+
* Minimum width a layout item can be resized to, in pixels.
|
|
9708
|
+
* On web layouts this is mapped to Golden Layout 2 `defaultMinItemWidth`.
|
|
9709
|
+
*/
|
|
9702
9710
|
minItemWidth?: number;
|
|
9711
|
+
/**
|
|
9712
|
+
* Minimum height a layout item can be resized to (CSS size, e.g. `'500px'`).
|
|
9713
|
+
* Web layouts only. Takes precedence over {@link LayoutOptions.dimensions.minItemHeight} when both are set.
|
|
9714
|
+
*/
|
|
9715
|
+
defaultMinItemHeight?: string;
|
|
9716
|
+
/**
|
|
9717
|
+
* Minimum width a layout item can be resized to (CSS size, e.g. `'500px'`).
|
|
9718
|
+
* Web layouts only. Takes precedence over {@link LayoutOptions.dimensions.minItemWidth} when both are set.
|
|
9719
|
+
*/
|
|
9720
|
+
defaultMinItemWidth?: string;
|
|
9703
9721
|
headerHeight?: number;
|
|
9704
9722
|
};
|
|
9705
9723
|
};
|
|
@@ -10386,6 +10404,18 @@ declare type MutableViewOptions = {
|
|
|
10386
10404
|
* Persisted on create, {@link View.View#updateOptions updateOptions}, snapshot, and {@link View.View#getOptions getOptions} — the same way windows persist `workspacePlatform`.
|
|
10387
10405
|
*/
|
|
10388
10406
|
workspacePlatform?: WorkspacePlatformOptions;
|
|
10407
|
+
/**
|
|
10408
|
+
* Per-view tab icon. Exception to `showFavicons` / `defaultFaviconUrl`.
|
|
10409
|
+
*
|
|
10410
|
+
* Distinct from Window `icon` (taskbar).
|
|
10411
|
+
*
|
|
10412
|
+
* - Omitted / `''` / `'unset'`: inherit — if `showFavicons`, page favicon then `defaultFaviconUrl`, else hide
|
|
10413
|
+
* - URL string: always show that URL, even when `showFavicons` is false. Load failure uses `defaultFaviconUrl`
|
|
10414
|
+
* - `'hide'`: always hide, even when `showFavicons` is true
|
|
10415
|
+
*
|
|
10416
|
+
* On `updateOptions`, omitted keys are a no-op; set `'unset'` to return to inherit.
|
|
10417
|
+
*/
|
|
10418
|
+
icon?: ViewTabIcon;
|
|
10389
10419
|
/**
|
|
10390
10420
|
* {@inheritDoc ViewThrottling}
|
|
10391
10421
|
*
|
|
@@ -11158,6 +11188,7 @@ declare namespace OpenFin_2 {
|
|
|
11158
11188
|
ViewInfo,
|
|
11159
11189
|
WindowThrottling,
|
|
11160
11190
|
ViewThrottling,
|
|
11191
|
+
ViewTabIcon,
|
|
11161
11192
|
UpdatableViewOptions,
|
|
11162
11193
|
ViewCreationOptions,
|
|
11163
11194
|
MutableViewOptions,
|
|
@@ -19301,6 +19332,13 @@ declare type ViewTabAccessibilityOptions = {
|
|
|
19301
19332
|
*/
|
|
19302
19333
|
declare type ViewTabElements = 'active-tab' | 'inactive-tab' | 'active-tab-close-button' | 'inactive-tab-close-button' | 'add-tab-button' | 'active-tab-custom-control' | 'inactive-tab-custom-control';
|
|
19303
19334
|
|
|
19335
|
+
/**
|
|
19336
|
+
* Per-view tab icon. A URL, or the reserved sentinels `'hide'` / `'unset'`.
|
|
19337
|
+
*
|
|
19338
|
+
* `'hide'` and `'unset'` are not URLs. `''` is also unset (inherit) and is the default.
|
|
19339
|
+
*/
|
|
19340
|
+
declare type ViewTabIcon = string | 'hide' | 'unset';
|
|
19341
|
+
|
|
19304
19342
|
/**
|
|
19305
19343
|
* View throttling state.
|
|
19306
19344
|
*
|