@gitkraken/gitkraken-components 1.1.0-rc.16 → 1.1.0-rc.18
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.
|
@@ -216,6 +216,7 @@ export type OnGraphRefNodeUnhovered = (event: any, refGroup: GraphRefGroup, grap
|
|
|
216
216
|
export type OnGraphColumnsReOrdered = (columnsSettings: GraphColumnsSettings) => void;
|
|
217
217
|
export type OnGraphColumnResized = (graphZoneType: GraphZoneType, columnSettings: GraphColumnSetting) => void;
|
|
218
218
|
export type OnGraphResized = (width: number, height: number) => void;
|
|
219
|
+
export type OnGraphVisibleRowsChanged = (topVisibleRow: GraphRow, bottomVisibleRow: GraphRow) => void;
|
|
219
220
|
export type OnShowMoreCommits = () => void;
|
|
220
221
|
export type OnEmailsMissingAvatarUrls = (emails: AvatarUrlByEmail) => void;
|
|
221
222
|
export type OnRefsMissingMetadata = (refs: RefsMissingMetadata) => void;
|
|
@@ -228,13 +229,13 @@ export interface GraphContainerProps {
|
|
|
228
229
|
cssVariables?: CssVariables;
|
|
229
230
|
dimMergeCommits?: boolean;
|
|
230
231
|
getExternalIcon: GetExternalIcon;
|
|
231
|
-
highlightRowsOnRefHover?: boolean
|
|
232
|
+
highlightRowsOnRefHover?: boolean;
|
|
232
233
|
isContainerWindowFocused?: boolean;
|
|
233
|
-
showGhostRefsOnRowHover?: boolean
|
|
234
|
-
showRemoteNamesOnRefs?: boolean
|
|
235
|
-
showUpstreamStatus?: boolean
|
|
236
|
-
scrollRowPadding?: number
|
|
237
|
-
enableMultiSelection?: boolean
|
|
234
|
+
showGhostRefsOnRowHover?: boolean;
|
|
235
|
+
showRemoteNamesOnRefs?: boolean;
|
|
236
|
+
showUpstreamStatus?: boolean;
|
|
237
|
+
scrollRowPadding?: number;
|
|
238
|
+
enableMultiSelection?: boolean;
|
|
238
239
|
graphRows: GraphRow[];
|
|
239
240
|
hasMoreCommits?: boolean;
|
|
240
241
|
highlightedShas?: HighlightedShas;
|
|
@@ -251,12 +252,12 @@ export interface GraphContainerProps {
|
|
|
251
252
|
workDirStats?: WorkDirStats;
|
|
252
253
|
onRowContextMenu?: OnRowContextMenu;
|
|
253
254
|
onRefContextMenu?: OnRefContextMenu;
|
|
254
|
-
onToggleRefsVisibilityClick?: OnToggleRefsVisibilityClick
|
|
255
|
+
onToggleRefsVisibilityClick?: OnToggleRefsVisibilityClick;
|
|
255
256
|
onGraphRowHovered?: OnGraphRowHovered;
|
|
256
257
|
onGraphRowUnhovered?: OnGraphRowUnhovered;
|
|
257
258
|
onGraphRefNodeHovered?: OnGraphRefNodeHovered;
|
|
258
259
|
onGraphRefNodeUnhovered?: OnGraphRefNodeUnhovered;
|
|
259
|
-
onGraphColumnsReOrdered?: OnGraphColumnsReOrdered
|
|
260
|
+
onGraphColumnsReOrdered?: OnGraphColumnsReOrdered;
|
|
260
261
|
onColumnResized?: OnGraphColumnResized;
|
|
261
262
|
onClickGraphRef?: OnClickGraphRef;
|
|
262
263
|
onClickGraphRow?: OnClickGraphRow;
|
|
@@ -265,6 +266,7 @@ export interface GraphContainerProps {
|
|
|
265
266
|
onSelectGraphRows?: OnSelectGraphRows;
|
|
266
267
|
onShowMoreCommits?: OnShowMoreCommits;
|
|
267
268
|
onGraphResized?: OnGraphResized;
|
|
269
|
+
onGraphVisibleRowsChanged?: OnGraphVisibleRowsChanged;
|
|
268
270
|
onEmailsMissingAvatarUrls?: OnEmailsMissingAvatarUrls;
|
|
269
271
|
onRefsMissingMetadata?: OnRefsMissingMetadata;
|
|
270
272
|
formatCommitDateTime?: OnFormatCommitDateTime;
|