@gitkraken/gitkraken-components 1.1.0-rc.18 → 1.1.0-rc.21
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.
|
@@ -66,6 +66,12 @@ export type RowContexts = {
|
|
|
66
66
|
sha?: GraphItemContext;
|
|
67
67
|
};
|
|
68
68
|
|
|
69
|
+
export type RowStats = {
|
|
70
|
+
files: number;
|
|
71
|
+
additions: number;
|
|
72
|
+
deletions: number;
|
|
73
|
+
};
|
|
74
|
+
|
|
69
75
|
export type GraphContexts = {
|
|
70
76
|
graph?: GraphItemContext;
|
|
71
77
|
header?: GraphItemContext;
|
|
@@ -101,6 +107,7 @@ export type GraphRow = {
|
|
|
101
107
|
remotes?: Remote[];
|
|
102
108
|
tags?: Tag[];
|
|
103
109
|
contexts?: RowContexts;
|
|
110
|
+
stats?: RowStats;
|
|
104
111
|
};
|
|
105
112
|
|
|
106
113
|
export type GraphColumnSetting = {
|
|
@@ -270,7 +277,7 @@ export interface GraphContainerProps {
|
|
|
270
277
|
onEmailsMissingAvatarUrls?: OnEmailsMissingAvatarUrls;
|
|
271
278
|
onRefsMissingMetadata?: OnRefsMissingMetadata;
|
|
272
279
|
formatCommitDateTime?: OnFormatCommitDateTime;
|
|
273
|
-
shaLength?: number;
|
|
280
|
+
shaLength?: number | null;
|
|
274
281
|
nonce?: string;
|
|
275
282
|
}
|
|
276
283
|
|