@gitkraken/gitkraken-components 8.1.3 → 8.2.1

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.
@@ -22,6 +22,7 @@ type Props = {
22
22
  hasTimeline: boolean;
23
23
  isActiveSha: boolean;
24
24
  isInUnsupportedRebase: boolean;
25
+ isLastColumn: boolean;
25
26
  isSelected: boolean;
26
27
  leftGutterBoxShadowAlpha: number;
27
28
  leftGutterWidth: number;
@@ -38,6 +39,7 @@ type Props = {
38
39
  scrollLeft: number;
39
40
  setAsCurrentlyHoveredGraphCommit: OnCurrentlyHoveredGraphCommit;
40
41
  sha: Sha;
42
+ shouldShowRefLine: boolean;
41
43
  style: Style;
42
44
  type: CommitType;
43
45
  useAuthorInitialsForAvatars: boolean;
@@ -35,6 +35,8 @@ type RefZoneProps = {
35
35
  refZoneHovered: OnRefZoneHovered;
36
36
  refZoneUnhovered: OnRefZoneUnhovered;
37
37
  sha: Sha;
38
+ shouldShowRefLine: boolean;
39
+ showColorStrip?: boolean;
38
40
  showContextMenuForGroupedRef: OnRefZoneContextMenu;
39
41
  enabledRefMetadataTypes: RefMetadataType[];
40
42
  style: Style;
@@ -13,6 +13,7 @@ interface OwnProps {
13
13
  rightGutterBoxShadowAlpha: number;
14
14
  rightGutterWidth: number;
15
15
  scrollLeft: number;
16
+ shouldShowRefLine: boolean;
16
17
  }
17
18
  interface Props extends CommonGraphRowProps, CommonGraphRowDispatchProps, OwnProps {
18
19
  }
@@ -11,6 +11,7 @@ interface StateProps {
11
11
  isInUnsupportedRebase: boolean;
12
12
  hoveredRefZoneSha?: Sha;
13
13
  refMetadataById?: RefMetadataById | null;
14
+ shouldShowRefLine: boolean;
14
15
  }
15
16
  interface DispatchProps {
16
17
  onClickRef: OnClickRef;
@@ -24,6 +24,7 @@ export declare function getZoneWidthsTotal(activeGraphZones: GraphZone[], zoneTy
24
24
  export declare function getFollowingZoneMinWidthsTotal(activeGraphZones: GraphZone[], startingIndex?: number): number;
25
25
  export declare function getPrecedingZoneCurrentWidthsTotal(activeGraphZones: GraphZone[], endingIndex?: number): number;
26
26
  export declare const isLastColumn: (graphZoneType: GraphZoneType, activeGraphZones: GraphZone[]) => boolean;
27
+ export declare const isColumnFollowingGraphColumn: (graphZoneType: GraphZoneType, activeGraphZones: GraphZone[]) => boolean;
27
28
  export declare function getClampedZoneWidth(graphZone: GraphZone, activeGraphZones: GraphZone[], width: number): number;
28
29
  export declare function getGraphZoneFromGraphZones(graphZoneType: GraphZoneType, activeGraphZones: GraphZone[]): GraphZone | undefined;
29
30
  export declare function getGraphZoneIndexFromGraphZones(graphZoneType: GraphZoneType, activeGraphZones: GraphZone[]): number;
@@ -61,6 +62,7 @@ export declare class GraphRowHelper {
61
62
  getZoneWidth(graphZoneType: GraphZoneType): number;
62
63
  isDateTimeZoneActive(): boolean;
63
64
  isFirstRow(rowIndex: number): boolean;
65
+ isColumnFollowingGraphColumn(graphZoneType: GraphZoneType): boolean;
64
66
  isHighlighted(rowIndex: number): boolean;
65
67
  isHovering(rowIndex: number): boolean;
66
68
  isLastColumn(graphZoneType: GraphZoneType): boolean;