diff --git a/CHANGELOG.md b/CHANGELOG.md index 318520e4398..59cb1af51ac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # [`master`](https://github.com/elastic/eui/tree/master) -No public interface changes since `0.0.37`. +**Bug fixes** + +- Visual fix for the focus state of disabled `EuiButton` ([603](https://github.com/elastic/eui/pull/603)) +- `EuiSelect` can pass any node as a value rather than just a string ([603](https://github.com/elastic/eui/pull/603)) + # [`0.0.37`](https://github.com/elastic/eui/tree/v0.0.37) diff --git a/src/components/button/_button.scss b/src/components/button/_button.scss index 00bdbcbf4c6..cbd4ca342e2 100644 --- a/src/components/button/_button.scss +++ b/src/components/button/_button.scss @@ -61,7 +61,6 @@ } &:hover, &:focus { - background-color: $euiColorEmptyShade; text-decoration: none; } } diff --git a/src/components/form/select/select.js b/src/components/form/select/select.js index 2db71758fe1..1a2bc1b097d 100644 --- a/src/components/form/select/select.js +++ b/src/components/form/select/select.js @@ -82,7 +82,7 @@ EuiSelect.propTypes = { name: PropTypes.string, id: PropTypes.string, options: PropTypes.arrayOf(PropTypes.shape({ - text: PropTypes.string.isRequired + text: PropTypes.node.isRequired })).isRequired, isInvalid: PropTypes.bool, fullWidth: PropTypes.bool,