Skip to content

Commit

Permalink
Range TS (#2349)
Browse files Browse the repository at this point in the history
* Fix TS

* Update CHANGELOG.md

* Update CHANGELOG.md
  • Loading branch information
maryia-lapata authored and chandlerprall committed Sep 17, 2019
1 parent cd82055 commit 628a888
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ No public interface changes since `14.1.1`.

**Bug fixes**

- Fixed `onChange` TS defs for EuiRange ([#2349](https://github.com/elastic/eui/pull/2349))
- Fixed accidental removal of Elastic Charts from dependencies ([#2348](https://github.com/elastic/eui/pull/2348))


## [`14.1.0`](https://github.com/elastic/eui/tree/v14.1.0)

- Created `EuiSuggest` component ([#2270](https://github.com/elastic/eui/pull/2270))
Expand Down
4 changes: 3 additions & 1 deletion src/components/form/range/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,9 @@ declare module '@elastic/eui' {
}

export const EuiRange: FunctionComponent<
CommonProps & InputHTMLAttributes<HTMLInputElement> & EuiRangeProps
CommonProps &
Omit<InputHTMLAttributes<HTMLInputElement>, 'onChange'> &
EuiRangeProps
>;

/**
Expand Down

0 comments on commit 628a888

Please sign in to comment.