@gitkraken/gitkraken-components 11.0.5 → 11.0.7

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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 11.0.7
4
+
5
+ - Prioritize pinned branch when sorting grouped refs in the ref label ([#382](https://github.com/gitkraken/GitKrakenComponents/pull/382))
6
+
7
+ ## 11.0.6
8
+
9
+ - Added an ID to the graph column settings button to add annotations ([#380](https://github.com/gitkraken/GitKrakenComponents/pull/380))
10
+
3
11
  ## 11.0.5
4
12
 
5
13
  - Implemented branch pinning feature ([#378](https://github.com/gitkraken/GitKrakenComponents/pull/378))
@@ -340,6 +340,7 @@ declare class GraphContainer extends React.Component<Props, ComponentState> impl
340
340
  formatRefShorthandCallback: FormatRefShorthand;
341
341
  isRefShorthandValidCallback: IsRefShorthandValid;
342
342
  translateCallback: TranslationFn;
343
+ get pinnedBranchFullName(): string | null | undefined;
343
344
  getIconCallback: GetExternalIcon;
344
345
  onMissingAvatar: GetMissingAvatar;
345
346
  onMissingRefMetadata: GetMissingRefMetadata;
@@ -3,4 +3,5 @@ import type { TranslationFn } from '../../domain/language/LanguageTypes';
3
3
  export interface IGraphContainer {
4
4
  formatCommitMessageCallback: FormatCommitMessage;
5
5
  translateCallback: TranslationFn;
6
+ pinnedBranchFullName?: string | null;
6
7
  }
@@ -37,6 +37,7 @@ export declare const REF_NODE_ICON_SPACING: number;
37
37
  export declare const REF_NODE_OUTER_SPACING = 10;
38
38
  export declare const REF_ZONE_SHOW_ICON_WIDTH = 55;
39
39
  export declare const REF_ZONE_MAX_REFS_TO_RENDER = 100;
40
+ export declare const COLUMN_SETTINGS_ANNOTATION_ID = "gk-graph-column-settings";
40
41
  export declare const CHANGES_ZONE_MIN_WIDTH = 50;
41
42
  export declare const CHANGES_BAR_MIN_WIDTH = 10;
42
43
  export declare const CHANGES_BAR_RIGHT_MARGIN = 25;