@openfin/workspace 45.1.19 → 45.2.1
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 +5 -4
- package/client-api-platform/src/api/language.d.ts +3 -1
- package/client-api-platform/src/init/override-callback/view-components.d.ts +1 -0
- package/client-api-platform/src/init/override-callback/view-defaults.d.ts +2 -1
- package/client-api-platform/src/shapes.d.ts +71 -12
- package/common/src/api/flags/index.d.ts +37 -0
- package/common/src/api/i18next-bundled-resources.d.ts +7 -0
- package/common/src/api/i18next.d.ts +16 -1
- package/common/src/api/overrides.d.ts +10 -0
- package/common/src/api/pages/shapes.d.ts +0 -2
- package/common/src/utils/color-channels.d.ts +47 -0
- package/common/src/utils/enabled-locales.d.ts +5 -0
- package/common/src/utils/enterpriseBrowser.d.ts +0 -1
- package/common/src/utils/env.d.ts +1 -1
- package/common/src/utils/global-context-menu.d.ts +12 -0
- package/common/src/utils/landing-page.d.ts +8 -3
- package/common/src/utils/layout.d.ts +2 -2
- package/common/src/utils/local-storage-key.d.ts +1 -0
- package/common/src/utils/popup-window.d.ts +0 -3
- package/externals.report.json +19 -11
- 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 +7 -6
- package/store.js +1 -1
- package/store.js.map +1 -1
- package/common/src/utils/color-linking.d.ts +0 -41
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
import type OpenFin from '@openfin/core';
|
|
2
|
-
import { ViewTabContextMenuTemplate } from '../../../client-api-platform/src/shapes';
|
|
3
|
-
export declare const getChannelsMenuOptions: (channelsForViews: string[], colorGroups: OpenFin.ContextGroupInfo[]) => Promise<ViewTabContextMenuTemplate[]>;
|
|
4
|
-
export declare const ENTERPRISE_COLOR_CHANNELS: {
|
|
5
|
-
readonly blue: {
|
|
6
|
-
readonly name: "Blue";
|
|
7
|
-
readonly color: "#0091EB";
|
|
8
|
-
};
|
|
9
|
-
readonly indigo: {
|
|
10
|
-
readonly name: "Indigo";
|
|
11
|
-
readonly color: "#6450FF";
|
|
12
|
-
};
|
|
13
|
-
readonly pink: {
|
|
14
|
-
readonly name: "Pink";
|
|
15
|
-
readonly color: "#E878CF";
|
|
16
|
-
};
|
|
17
|
-
readonly teal: {
|
|
18
|
-
readonly name: "Teal";
|
|
19
|
-
readonly color: "#24D1D1";
|
|
20
|
-
};
|
|
21
|
-
readonly green: {
|
|
22
|
-
readonly name: "Green";
|
|
23
|
-
readonly color: "#00AF78";
|
|
24
|
-
};
|
|
25
|
-
readonly orange: {
|
|
26
|
-
readonly name: "Orange";
|
|
27
|
-
readonly color: "#FF7D37";
|
|
28
|
-
};
|
|
29
|
-
readonly red: {
|
|
30
|
-
readonly name: "Red";
|
|
31
|
-
readonly color: "#F94144";
|
|
32
|
-
};
|
|
33
|
-
readonly yellow: {
|
|
34
|
-
readonly name: "Yellow";
|
|
35
|
-
readonly color: "#F9C74F";
|
|
36
|
-
};
|
|
37
|
-
readonly gray: {
|
|
38
|
-
readonly name: "Gray";
|
|
39
|
-
readonly color: "#828788";
|
|
40
|
-
};
|
|
41
|
-
};
|