@gitkraken/gitkraken-components 10.1.19 → 10.1.20

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.
@@ -239,6 +239,7 @@ declare class GraphContainer extends React.PureComponent<Props, ComponentState>
239
239
  onRefDragLeave: OnRefDragLeave;
240
240
  onRefDrop: OnRefDrop;
241
241
  onRefEndDrag: OnRefEndDrag;
242
+ onZoneRowClick(event: React.MouseEvent<any>, graphZoneType: GraphZoneType, sha: Sha): void;
242
243
  onClickRef: OnClickRef;
243
244
  onClickCommit: OnClickCommit;
244
245
  onDoubleClickCommit: OnDoubleClickCommit;
@@ -21,6 +21,7 @@ type CreateRefNodeState = {
21
21
  declare class CreateRefNode extends React.PureComponent<CreateRefNodeProps, CreateRefNodeState> {
22
22
  handleClickOutside(): void;
23
23
  constructor(props: CreateRefNodeProps);
24
+ static getDerivedStateFromProps(props: CreateRefNodeProps, state: CreateRefNodeState): CreateRefNodeState | null;
24
25
  onInputChange(shorthand?: RefShorthand): void;
25
26
  render(): ReactElement<'div'>;
26
27
  }