@gitkraken/gitkraken-components 1.0.0-rc.16 → 1.0.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.
@@ -100,12 +100,12 @@ export type GraphColumnSetting = {
100
100
 
101
101
  export type AvatarUrlByEmail = { [email: string]: string };
102
102
 
103
- export const REF_ZONE_TYPE = 'refZone';
104
- export const GRAPH_ZONE_TYPE = 'commitZone';
105
- export const MESSAGE_ZONE_TYPE = 'commitMessageZone';
106
- export const AUTHOR_ZONE_TYPE = 'commitAuthorZone';
107
- export const DATE_TIME_ZONE_TYPE = 'commitDateTimeZone';
108
- export const SHA_ZONE_TYPE = 'commitShaZone';
103
+ export const REF_ZONE_TYPE = 'ref';
104
+ export const GRAPH_ZONE_TYPE = 'graph';
105
+ export const MESSAGE_ZONE_TYPE = 'message';
106
+ export const AUTHOR_ZONE_TYPE = 'author';
107
+ export const DATE_TIME_ZONE_TYPE = 'datetime';
108
+ export const SHA_ZONE_TYPE = 'sha';
109
109
 
110
110
  export type GraphZoneType = typeof REF_ZONE_TYPE
111
111
  | typeof GRAPH_ZONE_TYPE
@@ -155,6 +155,8 @@ export interface GraphContainerProps {
155
155
  platform?: GraphPlatform;
156
156
  cssVariables?: CssVariables;
157
157
  getExternalIcon: GetExternalIcon;
158
+ highlightRowsOnRefHover?: boolean,
159
+ showGhostRefsOnRowHover?: boolean,
158
160
  enableMultiSelection?: boolean,
159
161
  graphRows: GraphRow[];
160
162
  hasMoreCommits?: boolean;