@gitkraken/gitkraken-components 7.1.0 → 7.3.0
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.
|
@@ -151,6 +151,8 @@ declare class GraphContainer extends React.PureComponent<Props, ComponentState>
|
|
|
151
151
|
processedGraphRowBySha: ProcessedGraphRowBySha;
|
|
152
152
|
childrenBySha: ChildrenBySha;
|
|
153
153
|
scrollToSha?: Sha;
|
|
154
|
+
headSha?: Sha;
|
|
155
|
+
headUpstreamSha?: Sha;
|
|
154
156
|
lastLazyLoadHeight: number;
|
|
155
157
|
lastTopVisibleRowIndex: number;
|
|
156
158
|
lastBottomVisibleRowIndex: number;
|
|
@@ -270,6 +272,7 @@ declare class GraphContainer extends React.PureComponent<Props, ComponentState>
|
|
|
270
272
|
onMissingRefMetadata: GetMissingRefMetadata;
|
|
271
273
|
selectNext(topological?: boolean): void;
|
|
272
274
|
selectPrevious(topological?: boolean): void;
|
|
275
|
+
selectHead(upstream?: boolean): void;
|
|
273
276
|
getAvailableColumnAndUseIt(): number;
|
|
274
277
|
getColumns(graphRow: GraphRow): number;
|
|
275
278
|
getFilteredHeadsForGraphRow(row: GraphRow, hasIncludes: boolean): Head[];
|