@gitkraken/gitkraken-components 10.2.7 → 10.2.8
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.
|
@@ -150,7 +150,6 @@ type ComponentState = {
|
|
|
150
150
|
highlightedShas?: HighlightedShas;
|
|
151
151
|
hoveredRefGroup?: GraphRefGroup;
|
|
152
152
|
hoveredRefZoneSha?: Sha;
|
|
153
|
-
isContainerWindowFocused: boolean;
|
|
154
153
|
isLoadingRows: boolean;
|
|
155
154
|
numGraphColumns: number;
|
|
156
155
|
pendingCommitMessageSummary: string;
|
|
@@ -181,6 +180,7 @@ type HasMergeNodeChildBySha = {
|
|
|
181
180
|
declare class GraphContainer extends React.Component<Props, ComponentState> implements IGraphContainer {
|
|
182
181
|
graphContainerRef: any;
|
|
183
182
|
resizeObserver: ResizeObserver;
|
|
183
|
+
isRefContextMenuShown: boolean;
|
|
184
184
|
isMounted: boolean;
|
|
185
185
|
isSelectedBySha: IsSelectedBySha;
|
|
186
186
|
processedGraphRowBySha: ProcessedGraphRowBySha;
|
|
@@ -21,7 +21,6 @@ type RefZoneProps = {
|
|
|
21
21
|
hoveredRefZoneSha?: Sha;
|
|
22
22
|
includeOnlyRefsById: IncludeOnlyRefsById;
|
|
23
23
|
includeOnlyRemotesByName: IncludeOnlyRemotesByName;
|
|
24
|
-
isContainerWindowFocused: boolean;
|
|
25
24
|
isInUnsupportedRebase: boolean;
|
|
26
25
|
isSingleSelected: boolean;
|
|
27
26
|
numGraphColumns: number;
|
|
@@ -58,7 +57,6 @@ type RefZoneProps = {
|
|
|
58
57
|
};
|
|
59
58
|
export default class RefZone extends React.PureComponent<RefZoneProps> {
|
|
60
59
|
refPopoverTarget?: Element;
|
|
61
|
-
isContextMenuShown: boolean;
|
|
62
60
|
static defaultProps: RefZoneDefaultProps;
|
|
63
61
|
componentWillReceiveProps(nextProps: RefZoneProps): void;
|
|
64
62
|
getRefPopoverTarget: RefTargetFunc;
|
|
@@ -68,7 +68,6 @@ export interface GraphRowHelperProps {
|
|
|
68
68
|
highlightedShas?: HighlightedShas;
|
|
69
69
|
hoveredRefGroup?: GraphRefGroup;
|
|
70
70
|
isSelectedBySha: IsSelectedBySha;
|
|
71
|
-
isContainerWindowFocused: boolean;
|
|
72
71
|
processedRows: ProcessedGraphRow[];
|
|
73
72
|
processedGraphRowBySha: ProcessedGraphRowBySha;
|
|
74
73
|
}
|