@gitkraken/gitkraken-components 10.3.2 → 10.4.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.
@@ -73,6 +73,7 @@ export interface StateProps {
73
73
  isLoadingRows?: boolean;
74
74
  pendingCommitMessageSummary?: string;
75
75
  shiftSelectMode?: ShiftSelectMode;
76
+ suppressNonRefRowTooltips?: boolean;
76
77
  refMetadataById?: RefMetadataById | null;
77
78
  refIconsPosition?: RefIconsPosition | null;
78
79
  repoPath?: string;
@@ -17,6 +17,7 @@ type Props = {
17
17
  left: number;
18
18
  message: string;
19
19
  opacity: number;
20
+ suppressNonRefRowTooltips?: boolean;
20
21
  translate: TranslationFn;
21
22
  type: CommitType;
22
23
  useAuthorInitialsForAvatars: boolean;
@@ -42,6 +42,7 @@ type Props = {
42
42
  sha: Sha;
43
43
  shouldShowRefLine: boolean;
44
44
  style: Style;
45
+ suppressNonRefRowTooltips?: boolean;
45
46
  translate: TranslationFn;
46
47
  type: CommitType;
47
48
  useAuthorInitialsForAvatars: boolean;
@@ -15,6 +15,7 @@ interface OwnProps {
15
15
  rightGutterWidth: number;
16
16
  scrollLeft: number;
17
17
  shouldShowRefLine: boolean;
18
+ suppressNonRefRowTooltips?: boolean;
18
19
  }
19
20
  interface Props extends CommonGraphRowProps, CommonGraphRowDispatchProps, OwnProps {
20
21
  }
@@ -94,6 +94,7 @@ export interface CommonGraphRowProps {
94
94
  numGraphColumns: number;
95
95
  processedRows: ProcessedGraphRow[];
96
96
  processedGraphRowBySha: ProcessedGraphRowBySha;
97
+ suppressNonRefRowTooltips?: boolean;
97
98
  translate: TranslationFn;
98
99
  useAuthorInitialsForAvatars: boolean;
99
100
  scrollTop: number;