@openfin/workspace-platform 45.1.19 → 45.2.0
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 +4 -3
- package/client-api-platform/src/api/language.test.d.ts +1 -0
- package/client-api-platform/src/init/override-callback/view-components.d.ts +1 -0
- package/client-api-platform/src/init/override-callback/view-components.test.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 +35 -6
- 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 +12 -0
- 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 +44 -0
- package/common/src/utils/color-linking.d.ts +1 -38
- package/common/src/utils/enabled-locales.d.ts +5 -0
- 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/index.js +1 -1
- package/index.js.map +1 -1
- package/package.json +6 -5
- package/workspace_platform.zip +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type OpenFin from '@openfin/core';
|
|
2
2
|
import { App } from '../../../client-api/src/shapes';
|
|
3
3
|
import { SearchProvider } from '../../../client-api-platform/src/shapes';
|
|
4
|
-
import type { LaunchAppRequest, SearchSitesRequest, SearchSitesResponse, Site } from '../shapes';
|
|
4
|
+
import type { ContentSortRequest, LaunchAppRequest, SearchSitesRequest, SearchSitesResponse, Site } from '../shapes';
|
|
5
5
|
/**
|
|
6
6
|
* Launch the app described by an App Directory entry.
|
|
7
7
|
* @param app the app directory entry.
|
|
@@ -19,7 +19,8 @@ export declare function getSearchProviders(payload: {
|
|
|
19
19
|
}): Promise<SearchProvider[]>;
|
|
20
20
|
export declare function getCuratedContent(payload: {
|
|
21
21
|
identity: OpenFin.Identity;
|
|
22
|
+
req?: ContentSortRequest;
|
|
22
23
|
}): Promise<Site[]>;
|
|
23
|
-
export declare function getRecentlyVisited(payload: {
|
|
24
|
-
identity
|
|
24
|
+
export declare function getRecentlyVisited(payload: ContentSortRequest & {
|
|
25
|
+
identity?: OpenFin.Identity;
|
|
25
26
|
}): Promise<App[]>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import '@common/test/fin-mocks';
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import type OpenFin from '@openfin/core';
|
|
2
|
+
import type { BrowserCreateViewRequest } from '../../../../client-api-platform/src/shapes';
|
|
2
3
|
type DefaultViewOptions = Partial<OpenFin.MutableViewOptions> & {
|
|
3
4
|
downloadShelf?: OpenFin.ConstWindowOptions['downloadShelf'];
|
|
4
5
|
hotkeys?: OpenFin.ViewOptions['hotkeys'];
|
|
5
6
|
};
|
|
6
7
|
export declare const DEFAULT_VIEW_OPTIONS: DefaultViewOptions;
|
|
7
|
-
export declare function applyViewDefaults(options: Partial<
|
|
8
|
+
export declare function applyViewDefaults(options: Partial<BrowserCreateViewRequest>, initViewOptions?: Partial<BrowserCreateViewRequest>): Promise<any>;
|
|
8
9
|
export {};
|
|
@@ -658,13 +658,23 @@ export interface BrowserWorkspacePlatformWindowOptions {
|
|
|
658
658
|
*/
|
|
659
659
|
title?: WindowTitle | string;
|
|
660
660
|
/**
|
|
661
|
-
*
|
|
662
|
-
*
|
|
661
|
+
* URL used for new-tab actions: the plus button in the tabstrip, the new-tab hotkey, and the
|
|
662
|
+
* "New tab" context menu entry.
|
|
663
|
+
*
|
|
664
|
+
* If you do not provide a newTabUrl, then the plus button in the tabstrip will not be shown and
|
|
665
|
+
* users cannot create a new empty tab.
|
|
666
|
+
*
|
|
667
|
+
* This does not control a newly created window's initial content; that comes from `pages`.
|
|
663
668
|
*/
|
|
664
669
|
newTabUrl?: string;
|
|
665
670
|
/**
|
|
666
|
-
*
|
|
667
|
-
*
|
|
671
|
+
* URL used for new-page and new-window actions.
|
|
672
|
+
*
|
|
673
|
+
* If you do not provide a newPageUrl, then the new Page plus button will not be shown and you
|
|
674
|
+
* cannot create a new empty Page or Window.
|
|
675
|
+
*
|
|
676
|
+
* This does not automatically control a newly created window's initial content; a caller of
|
|
677
|
+
* `Browser.createWindow` must include a page using this URL in `pages`.
|
|
668
678
|
*/
|
|
669
679
|
newPageUrl?: string;
|
|
670
680
|
toolbarOptions?: ToolbarOptions;
|
|
@@ -2497,9 +2507,28 @@ export interface BrowserInitConfig {
|
|
|
2497
2507
|
/** Default options when creating a new page. If `iconUrl`, `unsavedIconUrl`, `panels` or `closeButton` are not defined when creating a page, setting will default to `defaultPageOptions`. */
|
|
2498
2508
|
defaultPageOptions?: Pick<Page, 'iconUrl' | 'unsavedIconUrl' | 'closeButton' | 'panels'>;
|
|
2499
2509
|
/**
|
|
2500
|
-
* The default options when creating a new
|
|
2510
|
+
* The default options when creating a new view. Any option not included in WorkspacePlatform.getCurrentSync().Browser.createView(options) call will default to the value provided in this field.
|
|
2511
|
+
*
|
|
2512
|
+
* @example
|
|
2513
|
+
* ```ts
|
|
2514
|
+
* import * as WorkspacePlatform from '@openfin/workspace-platform';
|
|
2515
|
+
*
|
|
2516
|
+
* await WorkspacePlatform.init({
|
|
2517
|
+
* browser: {
|
|
2518
|
+
* defaultViewOptions: {
|
|
2519
|
+
* workspacePlatform: {
|
|
2520
|
+
* browserNavigationButtons: {
|
|
2521
|
+
* back: true,
|
|
2522
|
+
* forward: true,
|
|
2523
|
+
* reload: true
|
|
2524
|
+
* }
|
|
2525
|
+
* }
|
|
2526
|
+
* }
|
|
2527
|
+
* }
|
|
2528
|
+
* });
|
|
2529
|
+
* ```
|
|
2501
2530
|
*/
|
|
2502
|
-
defaultViewOptions?: Partial<
|
|
2531
|
+
defaultViewOptions?: Partial<BrowserCreateViewRequest>;
|
|
2503
2532
|
/**
|
|
2504
2533
|
* The platform title. UI friendly title for the platform in browser.
|
|
2505
2534
|
*/
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
export declare enum Flag {
|
|
2
|
+
WorkspaceStorefrontEnabled = "WorkspaceStorefrontEnabled",
|
|
3
|
+
SentryEnabled = "SentryEnabled",
|
|
4
|
+
WorkspaceDockEnabled = "WorkspaceDockEnabled",
|
|
5
|
+
WorkspaceHomeEnabled = "WorkspaceHomeEnabled",
|
|
6
|
+
DevDebug = "DevDebug",
|
|
7
|
+
HttpLanguagePacksEnabled = "HttpLanguagePacksEnabled"
|
|
8
|
+
}
|
|
9
|
+
export type WorkspaceFlags = Record<Flag, boolean>;
|
|
10
|
+
export declare const flags: Partial<WorkspaceFlags>;
|
|
11
|
+
/**
|
|
12
|
+
* Initialize flags from overrides. This should be called early in the application lifecycle.
|
|
13
|
+
* This is a no-op if flags have already been initialized.
|
|
14
|
+
*/
|
|
15
|
+
export declare const initializeFlags: () => Promise<void>;
|
|
16
|
+
/**
|
|
17
|
+
* Flag Interface --
|
|
18
|
+
*
|
|
19
|
+
* @example Enabled / Disabled Closures
|
|
20
|
+
* flag(
|
|
21
|
+
* 'feature',
|
|
22
|
+
* () => 'Enabled Feature',
|
|
23
|
+
* () => 'Disabled Feature'
|
|
24
|
+
* );
|
|
25
|
+
*
|
|
26
|
+
* @example Enabled only
|
|
27
|
+
* flag('feature', myFeatureFunc);
|
|
28
|
+
*
|
|
29
|
+
* @example Boolean
|
|
30
|
+
* flag('feature');
|
|
31
|
+
*/
|
|
32
|
+
export declare function flag<EnabledReturn, DisabledReturn>(flagName: Flag, cbEnabled?: () => EnabledReturn, cbDisabled?: () => DisabledReturn): EnabledReturn | DisabledReturn | boolean;
|
|
33
|
+
declare global {
|
|
34
|
+
interface Window {
|
|
35
|
+
__WORKSPACE_FLAGS__: typeof flags;
|
|
36
|
+
}
|
|
37
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { type Resource } from 'i18next';
|
|
2
|
+
/**
|
|
3
|
+
* All seven statically bundled locale dictionaries. Loaded only on the flag-off
|
|
4
|
+
* (legacy) path so the http regime does not pull non-English packs into the
|
|
5
|
+
* main common chunk.
|
|
6
|
+
*/
|
|
7
|
+
export declare const bundledResources: Resource;
|
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
import i18next, { type Resource } from 'i18next';
|
|
2
2
|
import { Locale } from '../../../client-api-platform/src/shapes';
|
|
3
|
+
export type LanguagePacksRegime = 'http' | 'legacy';
|
|
4
|
+
export declare const HTTP_BACKEND_REQUEST_OPTIONS: RequestInit;
|
|
5
|
+
export declare const resolveLanguagePacksRegime: (httpFlagEnabled: boolean, languagePacksApiUrl?: string) => LanguagePacksRegime;
|
|
6
|
+
export declare const getHttpBackendOptions: (loadPath: string) => {
|
|
7
|
+
loadPath: string;
|
|
8
|
+
requestOptions: RequestInit;
|
|
9
|
+
};
|
|
10
|
+
/**
|
|
11
|
+
* Overlay OFD's canonical en-US pack on the bootstrap stub.
|
|
12
|
+
* Fire-and-forget: first paint and the logo menu must not wait on this GET.
|
|
13
|
+
*/
|
|
14
|
+
export declare const overlayEnglishFromHttpBackend: () => void;
|
|
3
15
|
declare function initI18next(language?: Locale): Promise<void>;
|
|
4
16
|
export declare const setLanguageInI18next: (locale: Locale) => Promise<void>;
|
|
5
17
|
declare const t: import("i18next").TFunction<["translation", ...string[]], undefined>;
|
|
@@ -16,6 +16,16 @@ export interface Overrides {
|
|
|
16
16
|
disableOpenFinAnalytics: boolean;
|
|
17
17
|
analyticsEndpoint: string;
|
|
18
18
|
translationOverridesUrl: string;
|
|
19
|
+
/**
|
|
20
|
+
* i18next-http-backend loadPath injected when org `languagePacks.enabled` is on
|
|
21
|
+
* (e.g. `${base}/platform/api/localization/{{lng}}/{{ns}}.json`).
|
|
22
|
+
*/
|
|
23
|
+
languagePacksApiUrl: string;
|
|
24
|
+
/**
|
|
25
|
+
* BCP-47 tags shown in the Language submenu. This is the org Active set
|
|
26
|
+
* (HERE defaults and/or admin-uploaded packs), not only bundled client languages.
|
|
27
|
+
*/
|
|
28
|
+
activeLanguages: string[];
|
|
19
29
|
/**
|
|
20
30
|
* WRK-4846
|
|
21
31
|
* This property is internal but is being temporarily exposed for Wells Fargo.
|
|
@@ -264,8 +264,6 @@ export type AddDefaultPagePayload = {
|
|
|
264
264
|
identity: OpenFin.Identity;
|
|
265
265
|
/** The page to attach. */
|
|
266
266
|
page: PageWithUpdatableRuntimeAttribs;
|
|
267
|
-
/** The newPageUrl provided. */
|
|
268
|
-
newPageUrl: string;
|
|
269
267
|
};
|
|
270
268
|
export type AddPagePayload = {
|
|
271
269
|
/** The OF window identity to attach the pages to. */
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Kept in a standalone module with type-only imports so consumers can pull it in
|
|
3
|
+
* via the `@openfin/enterprise-api/color-channels` subpath without bundling the SDK.
|
|
4
|
+
*
|
|
5
|
+
* TODO: https://openfin.jira.com/browse/WRK-5704 - need to rewrite this to use color tokens
|
|
6
|
+
*/
|
|
7
|
+
export declare const ENTERPRISE_COLOR_CHANNELS: {
|
|
8
|
+
readonly blue: {
|
|
9
|
+
readonly name: "Blue";
|
|
10
|
+
readonly color: "#0091EB";
|
|
11
|
+
};
|
|
12
|
+
readonly indigo: {
|
|
13
|
+
readonly name: "Indigo";
|
|
14
|
+
readonly color: "#6450FF";
|
|
15
|
+
};
|
|
16
|
+
readonly pink: {
|
|
17
|
+
readonly name: "Pink";
|
|
18
|
+
readonly color: "#E878CF";
|
|
19
|
+
};
|
|
20
|
+
readonly teal: {
|
|
21
|
+
readonly name: "Teal";
|
|
22
|
+
readonly color: "#24D1D1";
|
|
23
|
+
};
|
|
24
|
+
readonly green: {
|
|
25
|
+
readonly name: "Green";
|
|
26
|
+
readonly color: "#00AF78";
|
|
27
|
+
};
|
|
28
|
+
readonly orange: {
|
|
29
|
+
readonly name: "Orange";
|
|
30
|
+
readonly color: "#FF7D37";
|
|
31
|
+
};
|
|
32
|
+
readonly red: {
|
|
33
|
+
readonly name: "Red";
|
|
34
|
+
readonly color: "#F94144";
|
|
35
|
+
};
|
|
36
|
+
readonly yellow: {
|
|
37
|
+
readonly name: "Yellow";
|
|
38
|
+
readonly color: "#F9C74F";
|
|
39
|
+
};
|
|
40
|
+
readonly gray: {
|
|
41
|
+
readonly name: "Gray";
|
|
42
|
+
readonly color: "#828788";
|
|
43
|
+
};
|
|
44
|
+
};
|
|
@@ -1,41 +1,4 @@
|
|
|
1
1
|
import type OpenFin from '@openfin/core';
|
|
2
2
|
import { ViewTabContextMenuTemplate } from '../../../client-api-platform/src/shapes';
|
|
3
3
|
export declare const getChannelsMenuOptions: (channelsForViews: string[], colorGroups: OpenFin.ContextGroupInfo[]) => Promise<ViewTabContextMenuTemplate[]>;
|
|
4
|
-
export
|
|
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
|
-
};
|
|
4
|
+
export { ENTERPRISE_COLOR_CHANNELS } from './color-channels';
|
|
@@ -100,6 +100,9 @@ export declare const downloads: () => {
|
|
|
100
100
|
export declare const appearance: () => {
|
|
101
101
|
label: string;
|
|
102
102
|
};
|
|
103
|
+
export declare const language: () => {
|
|
104
|
+
label: string;
|
|
105
|
+
};
|
|
103
106
|
export declare const getSavedWorkspaceContextMenuOptions: (activeWorkspace: Workspace, savedWorkspaces: Pick<Workspace, "workspaceId" | "title">[], contextMenuOptionType: GlobalContextMenuOptionType) => {
|
|
104
107
|
label: string;
|
|
105
108
|
type: MenuItemType;
|
|
@@ -119,4 +122,13 @@ export declare const getAppearanceContextMenuOptions: () => Promise<{
|
|
|
119
122
|
scheme: WP.ColorSchemeOptionType;
|
|
120
123
|
};
|
|
121
124
|
}[]>;
|
|
125
|
+
export declare const getLanguageContextMenuOptions: () => Promise<{
|
|
126
|
+
label: string;
|
|
127
|
+
type: MenuItemType;
|
|
128
|
+
checked: boolean;
|
|
129
|
+
data: {
|
|
130
|
+
type: WP.EnterpriseMainContextMenuOptionType;
|
|
131
|
+
locale: string;
|
|
132
|
+
};
|
|
133
|
+
}[]>;
|
|
122
134
|
export declare const getGlobalContextMenuTemplate: (winIdentity: OpenFin.Identity, selectedViews?: OpenFin.Identity[]) => Promise<GlobalContextMenuItemTemplate[]>;
|
|
@@ -3,14 +3,19 @@ interface LandingPageUrls {
|
|
|
3
3
|
newPageUrl: string | false;
|
|
4
4
|
newTabUrl: string | false;
|
|
5
5
|
}
|
|
6
|
+
/**
|
|
7
|
+
* Which window option supplies the landing URL: `newTabUrl` for a new tab, `newPageUrl` for a new
|
|
8
|
+
* page or window. Enterprise Browser presents pages as tabs, so both go through page creation.
|
|
9
|
+
*/
|
|
10
|
+
export type NewLandingPageUrlSource = 'newTab' | 'newPage';
|
|
6
11
|
export declare const getLandingPageUrls: (winIdentity?: OpenFin.Identity) => Promise<LandingPageUrls>;
|
|
7
12
|
export declare const checkHasNewTabUrl: () => Promise<boolean>;
|
|
8
13
|
export declare const getNewLandingTabViewOptions: (target: OpenFin.Identity) => Promise<OpenFin.PlatformViewCreationOptions>;
|
|
9
14
|
/**
|
|
10
15
|
* Makes a new landing page.
|
|
11
16
|
*
|
|
12
|
-
* If winIdentity is specified, it uses the
|
|
13
|
-
* Otherwise, if the platform is Enterprise, it will use the landing page URL.
|
|
17
|
+
* If winIdentity is specified, it uses the URL defined by the browser window options for the given
|
|
18
|
+
* `urlSource`. Otherwise, if the platform is Enterprise, it will use the landing page URL.
|
|
14
19
|
*/
|
|
15
|
-
export declare const makeNewLandingPage: (winIdentity?: OpenFin.Identity) => Promise<import("client-api-platform").PageWithUpdatableRuntimeAttribs>;
|
|
20
|
+
export declare const makeNewLandingPage: (winIdentity?: OpenFin.Identity, urlSource?: NewLandingPageUrlSource) => Promise<import("client-api-platform").PageWithUpdatableRuntimeAttribs>;
|
|
16
21
|
export {};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type OpenFin from '@openfin/core';
|
|
2
2
|
import { WindowIdentity } from '../../../common/src/utils/window';
|
|
3
3
|
import type { PagePinnedState } from '../../../common/src/api/pages/shapes';
|
|
4
|
-
import { AttachedPage, PageLayout } from '../../../client-api-platform/src/shapes';
|
|
4
|
+
import { AttachedPage, BrowserCreateViewRequest, PageLayout } from '../../../client-api-platform/src/shapes';
|
|
5
5
|
export type LayoutDOMEventType =
|
|
6
6
|
/**
|
|
7
7
|
* Fired when a tab is created in a container. (Emmitted by ??)
|
|
@@ -90,7 +90,7 @@ export declare const generateViewNameAndIdentifierNameIfNotExists: <T extends {
|
|
|
90
90
|
* @param layout The Layout to be cloned
|
|
91
91
|
* @returns A Promise resolving to a copy of the layout with view options converted
|
|
92
92
|
*/
|
|
93
|
-
export declare const cloneLayoutAndConvertViewOptions: (layout: PageLayout, initViewOptions?: Partial<
|
|
93
|
+
export declare const cloneLayoutAndConvertViewOptions: (layout: PageLayout, initViewOptions?: Partial<BrowserCreateViewRequest>) => Promise<PageLayout>;
|
|
94
94
|
export declare const cloneViewComponentWithoutName: (componentState: any) => any;
|
|
95
95
|
/**
|
|
96
96
|
* Deep clones a layout and removes generated view names.
|
|
@@ -6,6 +6,7 @@ declare enum LocalStorageKey {
|
|
|
6
6
|
NewTabPageSort = "NewTabPageSort",
|
|
7
7
|
DockPosition = "DockPosition",
|
|
8
8
|
SelectedColorScheme = "SelectedColorScheme",
|
|
9
|
+
SelectedLanguage = "SelectedLanguage",
|
|
9
10
|
ThemePaletteSheet = "ThemePaletteSheet",
|
|
10
11
|
HasMovedStore = "HasMovedStore",
|
|
11
12
|
PageDragState = "BrowserPageDragState",
|
|
@@ -171,8 +171,5 @@ export type SearchMenuChannelResponse = {
|
|
|
171
171
|
} | {
|
|
172
172
|
type: 'single-provider-results-announcement';
|
|
173
173
|
message: string;
|
|
174
|
-
} | {
|
|
175
|
-
/** Landing page was clicked. Chrome collapses search if view-focused never arrived. */
|
|
176
|
-
type: 'page-clicked';
|
|
177
174
|
};
|
|
178
175
|
export {};
|
package/externals.report.json
CHANGED
|
@@ -13,26 +13,26 @@
|
|
|
13
13
|
"issuer": "common/src/utils/layout.ts"
|
|
14
14
|
}
|
|
15
15
|
],
|
|
16
|
-
"
|
|
16
|
+
"react-i18next": [
|
|
17
17
|
{
|
|
18
18
|
"type": "explicit",
|
|
19
|
-
"version": "
|
|
19
|
+
"version": "^17.0.11",
|
|
20
20
|
"packageName": "common/package.json",
|
|
21
|
-
"issuer": "common/src/
|
|
21
|
+
"issuer": "common/src/api/i18next.ts"
|
|
22
22
|
}
|
|
23
23
|
],
|
|
24
|
-
"
|
|
24
|
+
"i18next": [
|
|
25
25
|
{
|
|
26
26
|
"type": "explicit",
|
|
27
|
-
"version": "
|
|
27
|
+
"version": "^26.3.6",
|
|
28
28
|
"packageName": "common/package.json",
|
|
29
29
|
"issuer": "common/src/api/i18next.ts"
|
|
30
30
|
}
|
|
31
31
|
],
|
|
32
|
-
"i18next": [
|
|
32
|
+
"i18next-http-backend": [
|
|
33
33
|
{
|
|
34
34
|
"type": "explicit",
|
|
35
|
-
"version": "^
|
|
35
|
+
"version": "^4.0.0",
|
|
36
36
|
"packageName": "common/package.json",
|
|
37
37
|
"issuer": "common/src/api/i18next.ts"
|
|
38
38
|
}
|
|
@@ -45,12 +45,20 @@
|
|
|
45
45
|
"issuer": "common/src/utils/layout.ts"
|
|
46
46
|
}
|
|
47
47
|
],
|
|
48
|
+
"title-case": [
|
|
49
|
+
{
|
|
50
|
+
"type": "explicit",
|
|
51
|
+
"version": "3.0.3",
|
|
52
|
+
"packageName": "common/package.json",
|
|
53
|
+
"issuer": "common/src/utils/color-linking.ts"
|
|
54
|
+
}
|
|
55
|
+
],
|
|
48
56
|
"dexie": [
|
|
49
57
|
{
|
|
50
58
|
"type": "explicit",
|
|
51
59
|
"version": "^4.0.11",
|
|
52
|
-
"packageName": "
|
|
53
|
-
"issuer": "
|
|
60
|
+
"packageName": "common/package.json",
|
|
61
|
+
"issuer": "common/src/api/pages/idb.ts"
|
|
54
62
|
},
|
|
55
63
|
{
|
|
56
64
|
"type": "root-implicit",
|
|
@@ -61,8 +69,8 @@
|
|
|
61
69
|
{
|
|
62
70
|
"type": "explicit",
|
|
63
71
|
"version": "^4.0.11",
|
|
64
|
-
"packageName": "
|
|
65
|
-
"issuer": "
|
|
72
|
+
"packageName": "client-api-platform/package.json",
|
|
73
|
+
"issuer": "client-api-platform/src/api/dock/idb.ts"
|
|
66
74
|
},
|
|
67
75
|
{
|
|
68
76
|
"type": "explicit",
|