Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typescript syntax error #1012

Merged
merged 4 commits into from
Jul 13, 2018
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 @@ -14,6 +14,7 @@
- `EuiInMemoryTable` no longer resets to the first page on prop update when `items` remains the same ([#1008](https://github.com/elastic/eui/pull/1008))
- Fixed css selector for hiding responsive `EuiBreadcrumb`'s ([#1009](https://github.com/elastic/eui/pull/1009))
- Fixed responsive utility classes for IE ([#1009](https://github.com/elastic/eui/pull/1009))
- Fixed syntax errors in `keyCodes`'s and `EuiContextMenu`'s typescript definition ([#1012](https://github.com/elastic/eui/pull/1012))

## [`2.0.0`](https://github.com/elastic/eui/tree/v2.0.0)

Expand Down
1 change: 0 additions & 1 deletion src/components/context_menu/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ declare module '@elastic/eui' {
disabled?: boolean;
onClick?: () => void;
buttonRef?: RefCallback<HTMLButtonElement>;
hasPanel?: boolean;
toolTipContent?: ReactNode;
toolTipTitle?: ReactNode;
toolTipPosition?: string;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,11 @@ exports[`EuiDatePickerRange is rendered 1`] = `
<div
class="euiText euiText--small euiDatePickerRange__delimeter"
>
<span
<div
class="euiTextColor euiTextColor--subdued"
>
</span>
</div>
</div>
<span>
<span
Expand Down
4 changes: 2 additions & 2 deletions src/services/key_codes.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ declare module '@elastic/eui' {
UP = 38,
LEFT = 37,
RIGHT = 39,
};
}
}
}