Skip to content
This repository was archived by the owner on Mar 4, 2020. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

### Fixes
- Prevent blind props forwarding if `Input`'s wrapper is defined as React element @kuzhelov ([#453](https://github.com/stardust-ui/react/pull/453))
- Fix invalid whatInput import @miroslavstastny ([#541](https://github.com/stardust-ui/react/pull/541))

### Features
- Add all default size Teams icons processed & ready to be consumed by Stardust as needed @codepretty ([#478](https://github.com/stardust-ui/react/pull/478))
Expand Down
2 changes: 1 addition & 1 deletion src/lib/isFromKeyboard.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import whatInput from 'what-input'
import * as whatInput from 'what-input'
import tsUtils from './typescriptUtils'
export interface State {
isFromKeyboard: boolean
Expand Down
4 changes: 1 addition & 3 deletions test/specs/lib/keyboardFocusMock.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
export function initKeyboardFocusMock() {
jest.mock('what-input', () => {
return {
default: {
ask: jest.fn(),
},
ask: jest.fn(),
}
})
}