Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
2dddcb8
breadcrumbs a11y polish
Apr 28, 2021
c5f9aac
fixing final issues
Jul 6, 2021
d05885f
adding CL
Jul 6, 2021
6a78eeb
remove seperator from header breadcrumbs
Jul 14, 2021
aae1b10
Merge remote-tracking branch 'upstream/master' into breadcrumbs
Jul 14, 2021
18328ec
Merge remote-tracking branch 'upstream/master' into breadcrumbs
Jul 20, 2021
573daf2
PR feedback
Jul 20, 2021
5a36b7c
more breadcrumbs css polish
Jul 20, 2021
a5e6926
Merge remote-tracking branch 'upstream/master' into breadcrumbs
Jul 20, 2021
e879f76
breadcrumbs collapsedLink polish
Jul 21, 2021
0b17652
test
Jul 22, 2021
538dec8
Revert `test`
Jul 22, 2021
648fd62
Final fixes
Jul 22, 2021
d1dd31e
Merge pull request #5 from cchaos/breadcrumbs_a11y
myasonik Jul 22, 2021
f36b7d5
PR update
Jul 22, 2021
107d716
classname fix
Jul 26, 2021
7d54af4
Merge remote-tracking branch 'upstream/master' into breadcrumbs
Jul 26, 2021
82d43e3
remove empty title attrs
Jul 26, 2021
a38345f
don't set aria-current on popover breadcrumbs
Jul 26, 2021
4c054c9
test changes
Jul 27, 2021
e4df9c7
[EuiSearchBar] Handle 0 count after manual query manipulation (#4977)
thompsongl Jul 26, 2021
7236d58
[EuiHorizontalStep] Added `current` status (#4911)
snide Jul 27, 2021
13a016b
[EuiLink] Amsterdam style boost and docs cleanup (#4979)
cchaos Jul 27, 2021
54d95f0
@cchaos: Executive decision to remove background hover color on all l…
Jul 27, 2021
93432b6
Fix Amsterdam breadcrumb styles with new link styles
Jul 27, 2021
39ba0f7
Fix last breadcrumb text color to match EuiLink
Jul 27, 2021
2398cec
Merge remote-tracking branch '2_upstream/master' into breadcrumbs
Jul 27, 2021
865b57a
Update src/components/breadcrumbs/breadcrumbs.tsx
myasonik Jul 28, 2021
67419a7
CL update
Jul 28, 2021
09cf85c
Merge branch 'master' into breadcrumbs
Jul 28, 2021
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 @@ -8,6 +8,7 @@
- Added `markdownFormatProps` prop to `EuiMarkdownEditor` to extend the props passed to the rendered `EuiMarkdownFormat` ([#4663](https://github.com/elastic/eui/pull/4663))
- Added optional virtualized line rendering to `EuiCodeBlock` ([#4952](https://github.com/elastic/eui/pull/4952))
- Added `current` as a `status` of `EuiHorizontalStep` ([#4911](https://github.com/elastic/eui/pull/4911))
- Improved accessibility of `EuiBreadcrumbs` ([#4763](https://github.com/elastic/eui/pull/4763))
- Exported `onChange` type for `EuiSearchBar` ([#4968](https://github.com/elastic/eui/pull/4968))

**Bug fixes**
Expand Down
4 changes: 4 additions & 0 deletions src-docs/src/views/breadcrumbs/breadcrumbs.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ export default () => {
},
{
text: 'Edit',
href: '#',
onClick: (e) => {
e.preventDefault();
},
},
];

Expand Down
Loading