@gitkraken/gitkraken-components 11.0.6 → 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,9 @@
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
+
3
7
  ## 11.0.6
4
8
 
5
9
  - Added an ID to the graph column settings button to add annotations ([#380](https://github.com/gitkraken/GitKrakenComponents/pull/380))
@@ -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
  }