2020-03-23 15:35:58 +01:00
|
|
|
/*
|
|
|
|
|
* MIT License
|
|
|
|
|
*
|
|
|
|
|
* Copyright (c) 2020-present Cloudogu GmbH and Contributors
|
|
|
|
|
*
|
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
|
*
|
|
|
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
|
|
|
* copies or substantial portions of the Software.
|
|
|
|
|
*
|
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
|
* SOFTWARE.
|
|
|
|
|
*/
|
|
|
|
|
|
2019-02-27 11:56:50 +01:00
|
|
|
import * as diffs from "./diffs";
|
2019-08-15 10:51:36 +02:00
|
|
|
|
2019-10-19 16:38:07 +02:00
|
|
|
import {
|
2019-02-27 11:56:50 +01:00
|
|
|
BaseContext,
|
|
|
|
|
AnnotationFactory,
|
|
|
|
|
AnnotationFactoryContext,
|
|
|
|
|
DiffEventHandler,
|
2021-06-04 14:05:47 +02:00
|
|
|
DiffEventContext,
|
2019-02-27 11:56:50 +01:00
|
|
|
} from "./DiffTypes";
|
2019-10-19 16:38:07 +02:00
|
|
|
|
2021-03-12 13:52:17 +01:00
|
|
|
import { FileDiff as File, FileChangeType, Hunk, Change, ChangeType } from "@scm-manager/ui-types";
|
2021-06-04 14:05:47 +02:00
|
|
|
|
2019-10-21 10:57:56 +02:00
|
|
|
export { diffs };
|
|
|
|
|
|
2020-06-16 10:50:38 +02:00
|
|
|
export * from "./annotate";
|
2019-10-21 10:57:56 +02:00
|
|
|
export * from "./changesets";
|
|
|
|
|
|
|
|
|
|
export { default as Diff } from "./Diff";
|
|
|
|
|
export { default as DiffFile } from "./DiffFile";
|
2020-02-10 15:33:32 +01:00
|
|
|
export { default as DiffButton } from "./DiffButton";
|
2020-08-10 20:48:08 +02:00
|
|
|
export { FileControlFactory } from "./DiffTypes";
|
2019-10-21 10:57:56 +02:00
|
|
|
export { default as LoadingDiff } from "./LoadingDiff";
|
2020-02-07 14:57:36 +01:00
|
|
|
export { DefaultCollapsed, DefaultCollapsedFunction } from "./defaultCollapsed";
|
2020-03-25 10:27:38 +01:00
|
|
|
export { default as RepositoryAvatar } from "./RepositoryAvatar";
|
|
|
|
|
export { default as RepositoryEntry } from "./RepositoryEntry";
|
2021-06-04 14:05:47 +02:00
|
|
|
export { default as RepositoryFlag } from "./RepositoryFlag";
|
2020-03-25 10:27:38 +01:00
|
|
|
export { default as RepositoryEntryLink } from "./RepositoryEntryLink";
|
2020-08-10 20:48:08 +02:00
|
|
|
export { default as JumpToFileButton } from "./JumpToFileButton";
|
2020-10-14 16:26:25 +02:00
|
|
|
export { default as CommitAuthor } from "./CommitAuthor";
|
2021-04-21 10:09:23 +02:00
|
|
|
export { default as HealthCheckFailureDetail } from "./HealthCheckFailureDetail";
|
2019-10-21 10:57:56 +02:00
|
|
|
|
2019-10-19 16:38:07 +02:00
|
|
|
export {
|
|
|
|
|
File,
|
|
|
|
|
FileChangeType,
|
|
|
|
|
Hunk,
|
|
|
|
|
Change,
|
|
|
|
|
ChangeType,
|
|
|
|
|
BaseContext,
|
|
|
|
|
AnnotationFactory,
|
|
|
|
|
AnnotationFactoryContext,
|
|
|
|
|
DiffEventHandler,
|
2021-06-04 14:05:47 +02:00
|
|
|
DiffEventContext,
|
2019-10-19 16:38:07 +02:00
|
|
|
};
|