@gitkraken/gitkraken-components 5.0.0 → 6.0.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.
@@ -128,13 +128,15 @@ export const MESSAGE_ZONE_TYPE = 'message';
128
128
  export const AUTHOR_ZONE_TYPE = 'author';
129
129
  export const DATE_TIME_ZONE_TYPE = 'datetime';
130
130
  export const SHA_ZONE_TYPE = 'sha';
131
+ export const CHANGES_ZONE_TYPE = 'changes';
131
132
 
132
133
  export type GraphZoneType = typeof REF_ZONE_TYPE
133
134
  | typeof GRAPH_ZONE_TYPE
134
135
  | typeof MESSAGE_ZONE_TYPE
135
136
  | typeof AUTHOR_ZONE_TYPE
136
137
  | typeof DATE_TIME_ZONE_TYPE
137
- | typeof SHA_ZONE_TYPE;
138
+ | typeof SHA_ZONE_TYPE
139
+ | typeof CHANGES_ZONE_TYPE;
138
140
 
139
141
  export type GraphColumnsSettings = { [graphZoneType: string]: GraphColumnSetting };
140
142