@clickview/curator 1.0.16 → 1.0.17-rc.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/dist/curator-app.css.map +1 -0
- package/dist/curator-app.js +1 -1
- package/dist/curator-app.js.map +1 -0
- package/dist/libs/common/src/react/constants/ViewModelActions.d.ts +3 -0
- package/dist/libs/common/src/react/hooks/UseViewModel.d.ts +4 -0
- package/dist/libs/common/src/react/interfaces/ViewModelAction.d.ts +5 -0
- package/dist/libs/common/src/react/interfaces/ViewModelPayload.d.ts +5 -0
- package/dist/libs/common/src/react/reducers/ViewModelReducer.d.ts +3 -0
- package/dist/libs/shared/src/constants/BootstrapKeys.d.ts +6 -0
- package/dist/libs/shared/src/constants/DataPrefixes.d.ts +12 -0
- package/dist/libs/shared/src/constants/RadioChannels.d.ts +20 -0
- package/dist/libs/shared/src/constants/SharedServices.d.ts +25 -0
- package/dist/{projects/curator/src/shared → libs/shared/src}/services/LanguageDataService.d.ts +2 -6
- package/dist/projects/curator/src/apps/cherry-picker/CherryPickerApplication.d.ts +14 -0
- package/dist/projects/curator/src/apps/cherry-picker/components/cherry-picker-form/CherryPickerForm.d.ts +9 -0
- package/dist/projects/curator/src/apps/cherry-picker/interfaces/CherryPickerConfig.d.ts +5 -0
- package/dist/projects/curator/src/apps/cherry-picker/validation/CherryPickerValidation.d.ts +3 -0
- package/dist/projects/curator/src/apps/cherry-picker/views/cherry-picker-form/CherryPickerFormView.d.ts +2 -0
- package/dist/projects/curator/src/apps/cherry-picker/views/cherry-picker-results/CherryPickerResultsView.d.ts +2 -0
- package/dist/projects/curator/src/apps/release-notes/ReleaseNotesApplication.d.ts +15 -0
- package/dist/projects/curator/src/apps/release-notes/components/GenerateReleaseNotesForm.d.ts +9 -0
- package/dist/projects/curator/src/apps/release-notes/constants/GitLabPageLimit.d.ts +1 -0
- package/dist/projects/curator/src/apps/release-notes/constants/GitLabProjects.d.ts +3 -0
- package/dist/projects/curator/src/apps/release-notes/constants/MonorepoVersions.d.ts +1 -0
- package/dist/projects/curator/src/apps/release-notes/flight-requests/GitLabRequests.d.ts +10 -0
- package/dist/projects/curator/src/apps/release-notes/interfaces/GitLabProject.d.ts +4 -0
- package/dist/projects/curator/src/apps/release-notes/interfaces/ReleaseNotesConfig.d.ts +5 -0
- package/dist/projects/curator/src/apps/release-notes/utils/getMergeRequestDescriptionChanges.d.ts +1 -0
- package/dist/projects/curator/src/apps/release-notes/utils/getMonorepoMergeRequestDescriptionChanges.d.ts +2 -0
- package/dist/projects/curator/src/apps/release-notes/utils/serializeMergeRequestHeading.d.ts +1 -0
- package/dist/projects/curator/src/apps/release-notes/utils/serializeMonorepoMergeRequestSubheading.d.ts +1 -0
- package/dist/projects/curator/src/apps/release-notes/utils/shouldFilterMergeRequestHeading.d.ts +1 -0
- package/dist/projects/curator/src/apps/release-notes/validation/ReleaseNotesValidation.d.ts +3 -0
- package/dist/projects/curator/src/apps/release-notes/views/ReleaseNotesFormView.d.ts +2 -0
- package/dist/projects/curator/src/apps/release-notes/views/ReleaseNotesGeneratorView.d.ts +2 -0
- package/dist/projects/curator/src/apps/subjects/components/levels/edit-level-nav/EditLevelNav.d.ts +7 -0
- package/dist/projects/curator/src/apps/subjects/components/levels/level-audiences/LevelAudiences.d.ts +11 -0
- package/dist/projects/curator/src/apps/subjects/components/levels/level-member-list/LevelMemberItem.d.ts +12 -0
- package/dist/projects/curator/src/apps/subjects/components/levels/level-member-list/LevelMemberList.d.ts +25 -0
- package/dist/projects/curator/src/apps/subjects/components/levels/level-member-list/LevelMemberListHeader.d.ts +14 -0
- package/dist/projects/curator/src/apps/subjects/components/levels/level-member-list/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/enums/ObjectMemberType.d.ts +10 -0
- package/dist/projects/curator/src/apps/subjects/utils/LevelMemberHelper.d.ts +8 -0
- package/dist/projects/curator/src/apps/subjects/utils/LevelsNavHelper.d.ts +4 -0
- package/dist/projects/curator/src/apps/subjects/views/levels/edit-level-members/EditLevelMembersUtils.d.ts +16 -0
- package/dist/projects/curator/src/apps/subjects/views/levels/edit-level-members/EditLevelMembersView.d.ts +16 -0
- package/dist/projects/curator/src/apps/subjects/views/levels/level-audiences/LevelAudiencesView.d.ts +6 -0
- package/dist/projects/curator/src/apps/subjects/views/levels/level-nav/LevelNavView.d.ts +6 -0
- package/dist/projects/curator/src/apps/subjects/views/levels/levels-redirect/LevelsRedirectView.d.ts +2 -0
- package/dist/projects/curator/src/apps/subjects/views/levels/levels-redirect/index.d.ts +1 -0
- package/dist/projects/curator/src/apps/subjects/views/levels/remove-level-member/RemoveLevelMemberView.d.ts +11 -0
- package/dist/projects/curator/src/index.d.ts +2 -1
- package/dist/projects/curator/src/shared/constants/ViewModelKeys.d.ts +4 -0
- package/dist/projects/curator/src/shared/services/index.d.ts +0 -1
- package/package.json +1 -1
- package/dist/libs/common/src/backbone/utils/ConcurrencyHelper.d.ts +0 -13
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export declare const SharedDataPrefixes: {
|
|
2
|
+
SUBJECT_PLAYLISTS: string;
|
|
3
|
+
CURRENT_USER: string;
|
|
4
|
+
WORKSPACE: string;
|
|
5
|
+
CONFIG: string;
|
|
6
|
+
LOCALE: string;
|
|
7
|
+
PHRASES: string;
|
|
8
|
+
SEARCH_FILTERS: string;
|
|
9
|
+
SERIES: string;
|
|
10
|
+
NOTIFICATIONS: string;
|
|
11
|
+
SUGGEST_EDIT: string;
|
|
12
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export declare const SharedDataChannels: {
|
|
2
|
+
CONFIG: string;
|
|
3
|
+
USER: string;
|
|
4
|
+
LANGUAGE: string;
|
|
5
|
+
LIBRARY: string;
|
|
6
|
+
SEARCH: string;
|
|
7
|
+
SERIES: string;
|
|
8
|
+
NOTIFICATIONS: string;
|
|
9
|
+
NOTIFICATIONS_SOCKET: string;
|
|
10
|
+
};
|
|
11
|
+
export declare const SharedServiceChannels: {
|
|
12
|
+
PENDING_ITEMS: string;
|
|
13
|
+
VIDEO_UPLOAD: string;
|
|
14
|
+
SUBTITLE_UPLOAD: string;
|
|
15
|
+
RESOURCE_UPLOAD: string;
|
|
16
|
+
CONTEXTUAL_SEARCH: string;
|
|
17
|
+
};
|
|
18
|
+
export declare const SharedAppChannels: {
|
|
19
|
+
NOTIFICATIONS: string;
|
|
20
|
+
};
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
export declare const SharedDataServices: {
|
|
2
|
+
Config: string;
|
|
3
|
+
User: string;
|
|
4
|
+
Language: string;
|
|
5
|
+
Video: string;
|
|
6
|
+
VideoUpload: string;
|
|
7
|
+
Library: string;
|
|
8
|
+
Search: string;
|
|
9
|
+
Series: string;
|
|
10
|
+
Notification: string;
|
|
11
|
+
NotificationSocket: string;
|
|
12
|
+
};
|
|
13
|
+
export declare const SharedServices: {
|
|
14
|
+
ImageUrl: string;
|
|
15
|
+
PendingItems: string;
|
|
16
|
+
Alerts: string;
|
|
17
|
+
VideoUpload: string;
|
|
18
|
+
ResourceUpload: string;
|
|
19
|
+
SubtitleUpload: string;
|
|
20
|
+
VideoMixin: string;
|
|
21
|
+
ContextualSearch: string;
|
|
22
|
+
Context: string;
|
|
23
|
+
Notification: string;
|
|
24
|
+
AppOptions: string;
|
|
25
|
+
};
|
package/dist/{projects/curator/src/shared → libs/shared/src}/services/LanguageDataService.d.ts
RENAMED
|
@@ -1,11 +1,7 @@
|
|
|
1
|
-
import { BaseDataService } from "
|
|
2
|
-
|
|
3
|
-
locale: string;
|
|
4
|
-
phrases: any;
|
|
5
|
-
}
|
|
1
|
+
import { BaseDataService } from "../../../common/src/backbone/services/BaseDataService";
|
|
2
|
+
import { LanguageConfig } from "../interfaces";
|
|
6
3
|
export declare class LanguageDataService extends BaseDataService {
|
|
7
4
|
get name(): string;
|
|
8
5
|
get channelName(): string;
|
|
9
6
|
getLanguageConfig(callback?: (languageConfig: LanguageConfig) => void): void;
|
|
10
7
|
}
|
|
11
|
-
export {};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { ObjectHash } from 'backbone';
|
|
2
|
+
import { Core } from "../../../../../libs/common/src/backbone";
|
|
3
|
+
import { CuratorLayoutView, CuratorLayoutViewOptions } from "../../shared/layouts";
|
|
4
|
+
export declare class CherryPickerApplication extends Core.Application {
|
|
5
|
+
protected layout: CuratorLayoutView;
|
|
6
|
+
get name(): string;
|
|
7
|
+
static get router(): any;
|
|
8
|
+
get channelName(): string;
|
|
9
|
+
get layoutOptions(): Core.LayoutOptions<CuratorLayoutViewOptions>;
|
|
10
|
+
index(): void;
|
|
11
|
+
results(): void;
|
|
12
|
+
protected onShowAlert(options?: ObjectHash): void;
|
|
13
|
+
private getPopupProps;
|
|
14
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
interface CherryPickerFormProps {
|
|
3
|
+
getMilestones: (projectId: string) => void;
|
|
4
|
+
milestones: string[];
|
|
5
|
+
getBranchNames: (projectId: string) => void;
|
|
6
|
+
branchNames: string[];
|
|
7
|
+
}
|
|
8
|
+
export declare function CherryPickerForm(props: CherryPickerFormProps): JSX.Element;
|
|
9
|
+
export {};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { ObjectHash } from 'backbone';
|
|
2
|
+
import { Core } from "../../../../../libs/common/src/backbone";
|
|
3
|
+
import { CuratorLayoutView, CuratorLayoutViewOptions } from "../../shared/layouts";
|
|
4
|
+
export declare class ReleaseNotesApplication extends Core.Application {
|
|
5
|
+
protected layout: CuratorLayoutView;
|
|
6
|
+
get name(): string;
|
|
7
|
+
static get router(): any;
|
|
8
|
+
get channelName(): string;
|
|
9
|
+
get layoutOptions(): Core.LayoutOptions<CuratorLayoutViewOptions>;
|
|
10
|
+
index(): void;
|
|
11
|
+
form(): void;
|
|
12
|
+
generator(): void;
|
|
13
|
+
protected onShowAlert(options?: ObjectHash): void;
|
|
14
|
+
private getPopupProps;
|
|
15
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
interface GenerateReleaseNotesFormProps {
|
|
3
|
+
getMilestones: (projectId: string) => void;
|
|
4
|
+
milestones: string[];
|
|
5
|
+
getBranchNames: (projectId: string) => void;
|
|
6
|
+
branchNames: string[];
|
|
7
|
+
}
|
|
8
|
+
export declare function GenerateReleaseNotesForm(props: GenerateReleaseNotesFormProps): JSX.Element;
|
|
9
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const GITLAB_PAGE_LIMIT = 50;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const monorepoVersionsTemplate = "# Final Package Versions\n\n| Package | Version |\n| ------------------------- | ------------------------ |\n| @clickview/analytics | <analytics-version> |\n| @clickview/styles | <styles-version> |\n| @clickview/tooling | <tooling-version> |\n| @clickview/curator | <curator-version> |\n| @clickview/library-editor | <library-editor-version> |\n| @clickview/lite | <lite-version> |\n| @clickview/online | <online-version> |\n";
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { Flight } from "../../../../../../libs/common/src/react";
|
|
2
|
+
import { HashObject } from "../../../../../../libs/common/src/react/interfaces";
|
|
3
|
+
export declare const GitLabRequests: {
|
|
4
|
+
milestones(projectId: string, success: (milestones: string[]) => void): Flight.Request;
|
|
5
|
+
branchNames(projectId: string, success: (branchNames: string[]) => void): Flight.Request;
|
|
6
|
+
mergeRequestsByMilestone(projectId: string, milestone: string, page: number, order: "created_at" | "updated_at", sort: "desc" | "asc", success: (data: HashObject<any>[]) => void): Flight.Request;
|
|
7
|
+
getFilesPaths(projectId: string, fileName: string, success: (data: HashObject<any>[]) => void): Flight.Request;
|
|
8
|
+
getFile(projectId: string, path: string, branchName: string, success: (data: HashObject<any>) => void): Flight.Request;
|
|
9
|
+
cherryPickCommit(projectId: string, commitSha: string, branchName: string, success: () => void, error: () => void): Flight.Request;
|
|
10
|
+
};
|
package/dist/projects/curator/src/apps/release-notes/utils/getMergeRequestDescriptionChanges.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function getMergeRequestDescriptionChanges(descriptions: string[]): string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function serializeMergeRequestHeading(heading: string): string;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function serializeMonorepoMergeRequestSubheading(heading: string): string;
|
package/dist/projects/curator/src/apps/release-notes/utils/shouldFilterMergeRequestHeading.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function shouldFilterMergeRequestHeading(heading: string): boolean;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { PresentationAudience } from "../../../../../../../../libs/shared/src/interfaces";
|
|
3
|
+
import { Presentation } from "../../../interfaces";
|
|
4
|
+
interface LevelAudiencesProps {
|
|
5
|
+
presentations: Presentation[];
|
|
6
|
+
audienceDictionary: {
|
|
7
|
+
[presentationId: string]: PresentationAudience[];
|
|
8
|
+
};
|
|
9
|
+
}
|
|
10
|
+
export declare const LevelAudiences: (props: LevelAudiencesProps) => JSX.Element;
|
|
11
|
+
export {};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { Core } from "../../../../../../../../libs/common/src/backbone";
|
|
3
|
+
import { ActionOptions } from "../../../../../../../../libs/shared/src/components/actions/Actions";
|
|
4
|
+
import { LevelMemberViewModel } from './LevelMemberList';
|
|
5
|
+
interface LevelMemberItemProps {
|
|
6
|
+
member: LevelMemberViewModel;
|
|
7
|
+
getMemberAppLink: (memberId: string) => Core.AppLink;
|
|
8
|
+
onToggleAudience: (audienceId: string, selected: boolean, memberId: string) => void;
|
|
9
|
+
actions?: ActionOptions[];
|
|
10
|
+
}
|
|
11
|
+
export declare function LevelMemberItem(props: LevelMemberItemProps): React.ReactElement;
|
|
12
|
+
export {};
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { Core } from "../../../../../../../../libs/common/src/backbone";
|
|
3
|
+
import { PresentationAudience } from "../../../../../../../../libs/shared/src/interfaces";
|
|
4
|
+
import { ActionOptions } from "../../../../../../../../libs/shared/src/components/actions/Actions";
|
|
5
|
+
import { LevelMemberType } from "../../../enums";
|
|
6
|
+
declare type AudienceViewModel = {
|
|
7
|
+
id: string;
|
|
8
|
+
selected: boolean;
|
|
9
|
+
};
|
|
10
|
+
export interface LevelMemberViewModel {
|
|
11
|
+
id: string;
|
|
12
|
+
name: string;
|
|
13
|
+
audiences?: AudienceViewModel[];
|
|
14
|
+
}
|
|
15
|
+
interface LevelMemberListProps {
|
|
16
|
+
members: LevelMemberViewModel[];
|
|
17
|
+
memberType: LevelMemberType;
|
|
18
|
+
audiences: PresentationAudience[];
|
|
19
|
+
getMemberAppLink: (memberId: string) => Core.AppLink;
|
|
20
|
+
getAudienceAppLink: (audienceId: string) => Core.AppLink;
|
|
21
|
+
onToggleAudience: (audienceId: string, selected: boolean, memberId?: string) => void;
|
|
22
|
+
getActions?: (itemId: string) => ActionOptions[];
|
|
23
|
+
}
|
|
24
|
+
export declare function LevelMemberList(props: LevelMemberListProps): React.ReactElement;
|
|
25
|
+
export {};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { Core } from "../../../../../../../../libs/common/src/backbone";
|
|
3
|
+
import { PresentationAudience } from "../../../../../../../../libs/shared/src/interfaces";
|
|
4
|
+
import { LevelMemberType } from "../../../enums";
|
|
5
|
+
interface LevelMemberListHeaderProps {
|
|
6
|
+
memberType: LevelMemberType;
|
|
7
|
+
hasActions: boolean;
|
|
8
|
+
audiences: PresentationAudience[];
|
|
9
|
+
getIsAudienceSelected: (audience: PresentationAudience) => boolean;
|
|
10
|
+
onToggleAudience: (audienceId: string, selected: boolean) => void;
|
|
11
|
+
getAudienceAppLink: (audienceId: string) => Core.AppLink;
|
|
12
|
+
}
|
|
13
|
+
export declare function LevelMemberListHeader(props: LevelMemberListHeaderProps): React.ReactElement;
|
|
14
|
+
export {};
|
package/dist/projects/curator/src/apps/subjects/components/levels/level-member-list/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './LevelMemberList';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Core } from "../../../../../../libs/common/src/backbone";
|
|
2
|
+
import { ActionOptions } from "../../../../../../libs/shared/src/components/actions/Actions";
|
|
3
|
+
import { LevelMemberType, OwnerType } from "../enums";
|
|
4
|
+
export declare const LevelMemberHelper: {
|
|
5
|
+
singularizeMemberType(memberType: LevelMemberType): string;
|
|
6
|
+
getMemberAppLink(memberType: LevelMemberType, memberId: string): Core.AppLink;
|
|
7
|
+
getMemberActions(levelId: string, ownerType: OwnerType, memberType: LevelMemberType, memberId: string): ActionOptions[];
|
|
8
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { Flight } from "../../../../../../../../libs/common/src/react";
|
|
3
|
+
import { Core } from "../../../../../../../../libs/common/src/backbone";
|
|
4
|
+
import { BaseObject } from "../../../../../../../../libs/shared/src/interfaces";
|
|
5
|
+
import { SubjectDataService } from "../../../services";
|
|
6
|
+
import { LevelMemberType } from "../../../enums";
|
|
7
|
+
import { EditLevelMembersState, EditLevelMembersViewProps } from './EditLevelMembersView';
|
|
8
|
+
declare type SetState = React.Dispatch<React.SetStateAction<EditLevelMembersState>>;
|
|
9
|
+
export declare function getSetState(setState: SetState, key: keyof EditLevelMembersState): (data: any) => void;
|
|
10
|
+
export declare function useFetchData(props: EditLevelMembersViewProps, state: EditLevelMembersState, setState: SetState): void;
|
|
11
|
+
export declare function useMapData(members: BaseObject[], props: EditLevelMembersViewProps, state: EditLevelMembersState, setState: SetState): void;
|
|
12
|
+
export declare function getMembersRequest(memberType: LevelMemberType, ids: string[]): Flight.Request;
|
|
13
|
+
export declare const getAudienceAppLink: (memberType: LevelMemberType, presentationId: string) => (audienceId: string) => Core.AppLink;
|
|
14
|
+
export declare function toggleObjectsInAudience(d: SubjectDataService, memberType: LevelMemberType, memberIds: string[], levelId: string, presentationId: string, audienceId: string, selected: boolean): void;
|
|
15
|
+
export declare function getActiveAction(memberType: LevelMemberType): string;
|
|
16
|
+
export {};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { PresentationAudience } from "../../../../../../../../libs/shared/src/interfaces";
|
|
3
|
+
import { LevelMemberViewModel } from "../../../components";
|
|
4
|
+
import { LevelMemberType } from "../../../enums";
|
|
5
|
+
import { Presentation } from "../../../interfaces";
|
|
6
|
+
export interface EditLevelMembersState {
|
|
7
|
+
presentations?: Presentation[];
|
|
8
|
+
audiences?: PresentationAudience[];
|
|
9
|
+
memberIds?: string[];
|
|
10
|
+
membersWithAudiences?: LevelMemberViewModel[];
|
|
11
|
+
}
|
|
12
|
+
export interface EditLevelMembersViewProps {
|
|
13
|
+
levelId: string;
|
|
14
|
+
memberType: LevelMemberType;
|
|
15
|
+
}
|
|
16
|
+
export declare function EditLevelMembersView(props: EditLevelMembersViewProps): React.ReactElement;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './LevelsRedirectView';
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { PopupViewProps } from "../../../../../../../../libs/shared/src/interfaces";
|
|
3
|
+
import { LevelMemberType } from "../../../enums";
|
|
4
|
+
interface RemoveLevelMemberViewProps {
|
|
5
|
+
levelId: string;
|
|
6
|
+
memberId: string;
|
|
7
|
+
memberType: LevelMemberType;
|
|
8
|
+
}
|
|
9
|
+
declare type PropTypes = RemoveLevelMemberViewProps & PopupViewProps;
|
|
10
|
+
export declare function RemoveLevelMemberView(props: PropTypes): React.ReactElement;
|
|
11
|
+
export {};
|
|
@@ -51,5 +51,6 @@ import { LanguageService } from "../../../libs/common/src/backbone/services/Lang
|
|
|
51
51
|
import { Flight } from "../../../libs/common/src/react";
|
|
52
52
|
import { Core } from "../../../libs/common/src/backbone";
|
|
53
53
|
import { CacheDurations } from "../../../libs/shared/src/constants/CacheDurations";
|
|
54
|
+
import { LanguageDataService } from "../../../libs/shared/src/services/LanguageDataService";
|
|
54
55
|
import { AlertList } from "../../../libs/shared/src/components/alert/AlertList";
|
|
55
|
-
export { Core, InstanceManager, FifoMemoryCache, AjaxDataProvider, AlertList, AlertType, BaseAlertService, LanguageService, Flight, CacheDurations };
|
|
56
|
+
export { Core, InstanceManager, FifoMemoryCache, AjaxDataProvider, AlertList, AlertType, BaseAlertService, LanguageService, Flight, CacheDurations, LanguageDataService };
|
package/package.json
CHANGED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Not really for concurrency 😂
|
|
3
|
-
* But useful in circumstances where we need to manually wait for
|
|
4
|
-
* a sequence of callbacks or other resources to execute and don't
|
|
5
|
-
* want the overhead of promises.
|
|
6
|
-
*/
|
|
7
|
-
export declare class ConcurrencyHelper {
|
|
8
|
-
private value;
|
|
9
|
-
constructor(initialValue: number);
|
|
10
|
-
increment(): void;
|
|
11
|
-
decrement(): void;
|
|
12
|
-
getValue(): number;
|
|
13
|
-
}
|