-
Notifications
You must be signed in to change notification settings - Fork 8.2k
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
Upgrade EUI to v23.3.1 #65877
Merged
Merged
Upgrade EUI to v23.3.1 #65877
Changes from 22 commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
dbebb59
eui to 23.2.0
thompsongl 295d3e7
Merge branch 'master' into eui/23.2.0
thompsongl be7bd49
nav drawer ts updates
thompsongl 1bacf3c
eui to 23.3.0
thompsongl 7da3abf
Merge branch 'master' into eui/23.2.0
thompsongl 9e8ff77
src snapshot updates
thompsongl 1b4140d
makeId -> htmlIdGenerator mocks
thompsongl d42c493
EuiCodeBlock testenv element lookup
thompsongl b6a85ed
x-pack snapshot updates
thompsongl 811abad
remove obsolete EuiCode and EuiCodeBlock mocks
thompsongl c5b848e
Merge branch 'master' into eui/23.2.0
thompsongl b83de7c
Merge branch 'master' into eui/23.2.0
thompsongl a073452
eui to 23.3.1
thompsongl 7b9fbb3
patch updates
thompsongl 25bf60c
Merge branch 'master' into eui/23.2.0
thompsongl db237b5
Merge branch 'master' into eui/23.2.0
thompsongl d5e7c5c
searchbar type update
thompsongl 935ebfd
docViewer tabs use valid DOMString id
thompsongl 2f2904a
docViewer snapshot
thompsongl 4cb40dd
Merge branch 'master' into eui/23.2.0
thompsongl 39f194e
header updates
thompsongl 11b2924
Merge branch 'master' into eui/23.2.0
thompsongl 7bd47f4
cert_search field wrapper update
thompsongl e803b97
Merge branch 'master' into eui/23.2.0
thompsongl 7de00c6
Merge branch 'master' into eui/23.2.0
thompsongl 2316573
Merge branch 'master' into eui/23.2.0
thompsongl File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
52 changes: 37 additions & 15 deletions
52
src/core/public/chrome/ui/header/__snapshots__/collapsible_nav.test.tsx.snap
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
.../discover/public/application/components/doc_viewer/__snapshots__/doc_viewer.test.tsx.snap
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 4 additions & 0 deletions
4
...public/application/components/tutorial/__snapshots__/saved_objects_installer.test.js.snap
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why was this change introduced? Generally it's better to not use the array position for these kind of identifiers. They will be reused when the array changes which can cause unexpected behavior. If there are uniqueness-concerns we could use both (
kbn_doc_viewer_tab_${idx}_${title}
)There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
EUI now uses
id
as a DOM selector and these titles are not valid. We could remove spaces or otherwise transform the title string. Would that be preferable?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Makes sense, thanks for the explanation. I checked the code and it's not possible this particular array while change on the fly, so I think it's fine leaving it like this for now - no need to mess around with the title. If it would have been simple it would be preferable to not use the index, but no big deal.