Skip to content

Commit

Permalink
cl
Browse files Browse the repository at this point in the history
  • Loading branch information
andreadelrio committed Aug 31, 2020
1 parent c0dfe44 commit bfcf228
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
- Removed docgenInfo from non-docs production builds ([#3911](https:/elastic/eui/pull/3911))
- Added `regressionJob`, `outlierDetectionJob` and `classificationJob` icons to Machine Learning icon set, updated others. ([#3931](https:/elastic/eui/pull/3931))
- Added `operator` field to `EuiSearchBar`'s `field_value_selection` filter configuration ([#3922](https:/elastic/eui/pull/3922))
- Added `toggle` and `willExpand` props to `EuiResizablePanel` ([#3978](https:/elastic/eui/pull/3978))

**Bug fixes**

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,13 @@ export default () => {
<EuiResizableContainer style={{ minHeight: '320px' }}>
{(EuiResizablePanel, EuiResizableButton) => (
<>
<EuiResizablePanel toggle initialSize={20} minSize="10%">
<EuiResizablePanel initialSize={20} minSize="10%">
<EuiListGroup flush>{itemElements}</EuiListGroup>
</EuiResizablePanel>

<EuiResizableButton />

<EuiResizablePanel willExpand initialSize={80} minSize="50px">
<EuiResizablePanel toggle initialSize={80} minSize="50px">
<EuiPanel paddingSize="l" style={{ minHeight: '280px' }}>
<EuiTitle>
<p>{itemSelected.label}</p>
Expand Down
2 changes: 1 addition & 1 deletion src/components/resizable_container/_resizable_panel.scss
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
display: none;
}

.euiResizablePanel--willExpand {
.euiResizablePanel--collapsible ~ .euiResizablePanel {
flex-grow: 1;
}
}

0 comments on commit bfcf228

Please sign in to comment.