@gitkraken/gitkraken-components 1.0.0-rc.15 → 1.0.0-rc.16
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.
|
@@ -54,6 +54,11 @@ export type RowContexts = {
|
|
|
54
54
|
sha?: string;
|
|
55
55
|
};
|
|
56
56
|
|
|
57
|
+
export type GraphContexts = {
|
|
58
|
+
graph?: string;
|
|
59
|
+
header?: string;
|
|
60
|
+
};
|
|
61
|
+
|
|
57
62
|
export type Head = {
|
|
58
63
|
name: string;
|
|
59
64
|
isCurrentHead?: boolean;
|
|
@@ -144,6 +149,7 @@ export type OnEmailsMissingAvatarUrls = (emails: { [email: string]: string }) =>
|
|
|
144
149
|
// Main graph component
|
|
145
150
|
export interface GraphContainerProps {
|
|
146
151
|
avatarUrlByEmail?: AvatarUrlByEmail;
|
|
152
|
+
contexts?: GraphContexts;
|
|
147
153
|
height?: number;
|
|
148
154
|
width?: number;
|
|
149
155
|
platform?: GraphPlatform;
|