@gitkraken/gitkraken-components 11.0.3 → 11.0.4

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.4
4
+
5
+ - Fixed commit shortcuts (cmd+enter / cmd+shift+enter) not firing in GKD when the WIP input is focused by allowing modifier-based shortcuts to bubble. ([#377](https://github.com/gitkraken/GitKrakenComponents/pull/377))
6
+
3
7
  ## 11.0.3
4
8
 
5
9
  - Improved external icon handling and added type safety ([#370](https://github.com/gitkraken/GitKrakenComponents/pull/370))
@@ -37,7 +37,7 @@ export default class WorkDirMessageInput extends React.Component<WorkDirMessageI
37
37
  componentDidMount(): void;
38
38
  componentDidUpdate(): void;
39
39
  componentWillUnmount(): void;
40
- onWipKeyDown(event: Event): void;
40
+ onWipKeyDown: (event: React.KeyboardEvent<any>) => void;
41
41
  handleContextMenu: (event: React.MouseEvent<any>) => void;
42
42
  render(): ReactElement<'div'>;
43
43
  }