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

Adds side nav toggle #1701

Merged
merged 34 commits into from
Mar 12, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
9e4e27d
adds side nav toggle
ryankeairns Mar 8, 2019
b1c4514
add CHANGELOG entry
ryankeairns Mar 8, 2019
3c7d34b
minimze delays
ryankeairns Mar 8, 2019
09da6a4
close panels on outside click
ryankeairns Mar 8, 2019
63a88e2
Independently scrolling navs
Mar 9, 2019
d74f18f
Revert "Added button to `EuiSuperDatePicker`'s “Now” tab to trigger t…
Mar 9, 2019
31f0961
fix logic for flyoutmenu onclick prop
ryankeairns Mar 10, 2019
d4c6b63
toggle flyout
ryankeairns Mar 11, 2019
ac98d2e
Revert "Revert "Added button to `EuiSuperDatePicker`'s “Now” tab to t…
Mar 11, 2019
b4b6fe1
Revert "toggle flyout"
ryankeairns Mar 11, 2019
0099b87
Merge branch 'rk/side-nav-2' of github.com:ryankeairns/eui into rk/si…
ryankeairns Mar 11, 2019
6fa32f4
move footer styles, remove extraAction, add page styles
ryankeairns Mar 11, 2019
ac5407f
rename footerLink to showExpandButton
ryankeairns Mar 11, 2019
f29d3d0
Fix hover states
Mar 11, 2019
ebdb669
BEM class names, flyout title spacing
ryankeairns Mar 11, 2019
0dc16d2
Merge pull request #3 from cchaos/rk/side-nav-2/hovers
Mar 11, 2019
8a9d393
remove flyoutMenu from listGroupItem props before render
thompsongl Mar 11, 2019
5a215bc
Simplify flyout children logic by adding `EuiNavDrawerGroup`
Mar 11, 2019
2234d30
Merge pull request #4 from cchaos/rk/side-nav-2/hovers
Mar 11, 2019
81e4333
use object destructuring rather than delete
thompsongl Mar 11, 2019
2a5ad7b
update data-test-subj name
ryankeairns Mar 11, 2019
401dfdb
Merge branch 'rk/side-nav-2' of github.com:ryankeairns/eui into rk/si…
ryankeairns Mar 11, 2019
825192c
More cleanup
Mar 12, 2019
2965c2a
typo
Mar 12, 2019
dbc24c6
Merge pull request #5 from cchaos/rk/side-nav-2/hovers
Mar 12, 2019
99d1c1f
docs and CHANGELOG updates
ryankeairns Mar 12, 2019
9159da3
Merge branch 'rk/side-nav-2' of github.com:ryankeairns/eui into rk/si…
ryankeairns Mar 12, 2019
e2f2d00
Revert "Revert "toggle flyout""
ryankeairns Mar 12, 2019
6ffb241
Fix `listItemsExists` check for truthy
Mar 12, 2019
62a1ea0
Add `title` attr to list-group-item
Mar 12, 2019
a95ad06
Merge branch 'master' into rk/side-nav-2
cchaos Mar 12, 2019
c70eb99
Fix for wrapText in IE
Mar 12, 2019
e121f9e
A few more fixes
Mar 12, 2019
d0da709
Merge branch 'rk/side-nav-2' of https://github.com/ryankeairns/eui in…
Mar 12, 2019
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
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## [`master`](https://github.com/elastic/eui/tree/master)

- Added `footerLink` and `showToolTips` to `EuiNavDrawer` and added `EuiNavDrawerGroup` ([#1701](https://github.com/elastic/eui/pull/1701))

**Bug fixes**

- Fixed `EuiSuperDatePicker` time selection jumping on focus ([#1704](https://github.com/elastic/eui/pull/1704))
Expand All @@ -14,7 +16,6 @@

- Adjusted the dark theme palette a bit more and adjusted a few components ([#1700](https://github.com/elastic/eui/pull/1700))


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

- Adjusted the dark theme palette to have a slight blue tint ([#1691](https://github.com/elastic/eui/pull/1691))
Expand Down
2 changes: 1 addition & 1 deletion src-docs/src/views/list_group/list_group.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export default class extends Component {

<EuiSpacer size="l" />

<EuiListGroup flush={flushWidth} bordered={showBorder}>
<EuiListGroup flush={flushWidth} bordered={showBorder} showToolTips>
<EuiListGroupItem
label="First item"
/>
Expand Down
Loading