@gitkraken/gitkraken-components 10.1.28 → 10.1.30

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.
@@ -168,6 +168,9 @@ type ColumnsToFreeBySha = {
168
168
  type ColumnsUsed = {
169
169
  [column: number]: boolean;
170
170
  };
171
+ type HasMergeNodeChildBySha = {
172
+ [sha: Sha]: boolean;
173
+ };
171
174
  declare class GraphContainer extends React.PureComponent<Props, ComponentState> {
172
175
  graphContainerRef: any;
173
176
  resizeObserver: ResizeObserver;
@@ -185,6 +188,7 @@ declare class GraphContainer extends React.PureComponent<Props, ComponentState>
185
188
  rowStatsConstraints: RowStatsConstraints;
186
189
  shouldFireShowMoreCommits: boolean;
187
190
  columnsToFreeWhenFound: ColumnsToFreeBySha;
191
+ hasMergeNodeChildBySha: HasMergeNodeChildBySha;
188
192
  reserverInfoBySha: ReserverInfoBySha;
189
193
  columnsUsed: ColumnsUsed;
190
194
  rowsStats?: Record<string, RowStats>;
@@ -21,7 +21,7 @@ type Props = {
21
21
  onGraphZoneResize?: OnGraphZoneResize;
22
22
  onGraphZoneResizeEnd?: OnGraphZoneResizeEnd;
23
23
  onGraphZoneResizeFromPropChange?: OnGraphZoneResizeFromPropChange;
24
- onSettingsClick?: OnSettingsClick;
24
+ onSettingsClick: OnSettingsClick;
25
25
  onToggleRefNodesShown: OnToggleRefNodesShown;
26
26
  graphZones: GraphZone[];
27
27
  repoPath: string;