@gitkraken/gitkraken-components 1.0.0-rc.1 → 1.0.0-rc.2
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.
|
@@ -95,6 +95,7 @@ export type GraphRef = Head
|
|
|
95
95
|
export type GraphRefGroup = Array<GraphRef>;
|
|
96
96
|
|
|
97
97
|
// Callbacks
|
|
98
|
+
export type GetExternalIcon = (key: string) => ReactElement<*>;
|
|
98
99
|
export type TranslationFn = (key: string, ...formatArgs: any) => string;
|
|
99
100
|
export type OnFormatCommitDateTime = (commitDateTime: number) => string;
|
|
100
101
|
|
|
@@ -119,6 +120,8 @@ export interface GraphContainerProps {
|
|
|
119
120
|
width?: number;
|
|
120
121
|
platform?: GraphPlatform;
|
|
121
122
|
cssVariables?: CssVariables;
|
|
123
|
+
getExternalIcon: GetExternalIcon;
|
|
124
|
+
enableMultiSelection?: boolean,
|
|
122
125
|
graphRows: GraphRow[];
|
|
123
126
|
hasMoreCommits?: boolean;
|
|
124
127
|
// isCommitting: boolean;
|