From d48fef0cde51731560c759235fa0c55375fd6785 Mon Sep 17 00:00:00 2001 From: CJ Cenizal Date: Fri, 9 Mar 2018 12:11:32 -0800 Subject: [PATCH] Update CHANGELOG for 0.0.25. --- CHANGELOG.md | 8 +++++++- src/components/search_bar/search_bar.js | 11 ++++++++++- 2 files changed, 17 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 49986e0f8cd..ca436d8651e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # [`master`](https://github.com/elastic/eui/tree/master) +No public interface changes since `0.0.25`. + +# [`0.0.25`](https://github.com/elastic/eui/tree/v0.0.25) + +- `EuiSearchBar` accepts `toolsLeft` and `toolsRight` props ([#458](https://github.com/elastic/eui/pull/458)) - Added `search.onChange` callback to `EuiInMemoryTable` ([#469](https://github.com/elastic/eui/pull/469)) - Added `initialPageSize` option to `EuiInMemoryTable` ([#477](https://github.com/elastic/eui/pull/477)) - Added design guidelines for button and toast usage ([#371](https://github.com/elastic/eui/pull/371)) @@ -26,6 +31,7 @@ - Added `EuiInMemoryTable`, which encapsulates sorting, searching, selection, and pagination state and logic ([#390](https://github.com/elastic/eui/pull/390)) - Added stack trace information to `EuiErrorBoundary` ([#428](https://github.com/elastic/eui/pull/428)) +- Make full screen code block use the same font-size on the original code block. ([#447](https://github.com/elastic/eui/pull/447)) **Bug fixes** @@ -269,7 +275,7 @@ - Added `scope` prop to `EuiTableHeaderCell` and `EuiTableHeaderCellCheckbox` ([#171](https://github.com/elastic/eui/pull/171)) - Added `disabled` prop to `EuiContextMenuItem` ([#172](https://github.com/elastic/eui/pull/172)) - Added `EuiTablePagination` component and `Pager` service ([#178](https://github.com/elastic/eui/pull/178)) -- Added `EuiTooltip` component ([#174](https://github.com/elastic/eui/pull/174), [#193](https://github.com/elastic/eui/pull/193)) +- **Note: This is broken until 0.0.25.** Added `EuiTooltip` component ([#174](https://github.com/elastic/eui/pull/174), [#193](https://github.com/elastic/eui/pull/193)) - Added a bold weight of 700 and apply it to `` elements by default ([#193](https://github.com/elastic/eui/pull/193)) - Icon size prop now accepts `s`. Adjusted coloring of sidenav arrows ([#178](https://github.com/elastic/eui/pull/197)) - Added `EuiErrorBoundary` ([#198](https://github.com/elastic/eui/pull/198)) diff --git a/src/components/search_bar/search_bar.js b/src/components/search_bar/search_bar.js index 65434caffc6..3225c3a44dc 100644 --- a/src/components/search_bar/search_bar.js +++ b/src/components/search_bar/search_bar.js @@ -16,7 +16,6 @@ import { EuiFlexItem } from '../flex/flex_item'; export const QueryType = PropTypes.oneOfType([ PropTypes.instanceOf(Query), PropTypes.string ]); export const SearchBarPropTypes = { - /** * (query: Query) => void */ @@ -48,6 +47,16 @@ export const SearchBarPropTypes = { An array of search filters. */ filters: SearchFiltersFiltersType, + + /** + * Tools which go to the left of the search bar. + */ + toolsLeft: PropTypes.node, + + /** + * Tools which go to the right of the search bar. + */ + toolsRight: PropTypes.node, }; const resolveQuery = (query) => {