@gitkraken/gitkraken-components 10.2.9 → 10.2.10

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.
@@ -178,8 +178,9 @@ type HasMergeNodeChildBySha = {
178
178
  [sha: Sha]: boolean;
179
179
  };
180
180
  declare class GraphContainer extends React.Component<Props, ComponentState> implements IGraphContainer {
181
- graphContainerRef: any;
182
- resizeObserver: ResizeObserver;
181
+ private graphComponentRef;
182
+ private graphContainerRef;
183
+ private resizeObserver;
183
184
  isRefContextMenuShown: boolean;
184
185
  isMounted: boolean;
185
186
  isSelectedBySha: IsSelectedBySha;
@@ -228,6 +229,7 @@ declare class GraphContainer extends React.Component<Props, ComponentState> impl
228
229
  componentDidMount(): void;
229
230
  componentWillReceiveProps(nextProps: Props): void;
230
231
  componentWillUnmount(): void;
232
+ focus(): void;
231
233
  getRefIconsPositionOrDefault(refIconsPosition?: RefIconsPosition | null): RefIconsPosition;
232
234
  onGraphVisibleRowsUpdatedThrottled: ThrottledFn;
233
235
  onBlurWipNodeInput: OnWipMessageBlur;