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

Update EUI to 14.0.0 #45475

Merged
merged 33 commits into from Sep 16, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
c0edab3
Update EUI to 14.0.0
Sep 11, 2019
ac0057c
Fixed SearchBar’s pre/appends alignment
Sep 12, 2019
38c6e97
So many snaps
Sep 12, 2019
db954c0
Add button after form row spacing shim
Sep 12, 2019
9ea6a2d
canvas form fixes
snide Sep 12, 2019
f7e6fd3
Fixed compressed and form row spacing in Visualize
Sep 12, 2019
b08c8f1
Fix for spacing in field editor
Sep 12, 2019
58d3405
Fix spacing in Saved Objects
Sep 12, 2019
0db87ff
Fixed spacing and compressed in vis editors
Sep 12, 2019
9ef8675
APM spacing fixed
Sep 12, 2019
6cdeb35
Beats spacing fixed
Sep 12, 2019
4d59a72
Graph & Debugger fixes
Sep 12, 2019
f3f7a57
Infra spacer fixes
Sep 12, 2019
a4d6abb
Logstash spacer fix
Sep 12, 2019
d4839fa
Fix Maps spacing
Sep 12, 2019
2c1bf0f
Rollup space fix
Sep 12, 2019
5c8fbe4
Snapshot restore spaces fix
Sep 12, 2019
e12cf4a
Fix Spaces spacers
Sep 12, 2019
a2995e1
share panel
snide Sep 12, 2019
fb1a59c
Fixed EuiFormLabel instances
Sep 12, 2019
6908d89
more canvas spacing
snide Sep 13, 2019
d6a1804
management spacer fixes
snide Sep 13, 2019
878006c
ml spacing fixes
snide Sep 13, 2019
4d33429
More snaps
Sep 13, 2019
7db65db
Revert "ml spacing fixes"
Sep 13, 2019
c9a187e
ML fixes
Sep 13, 2019
28c4d06
Fix new threshold panel compressed
Sep 13, 2019
5fc16ca
Comment out missin TS type
Sep 13, 2019
84668cd
fixes for ml
snide Sep 13, 2019
7cda4ef
snaps
snide Sep 13, 2019
8459e7b
testing no compressed on SizeParamEditor
Sep 13, 2019
3af0829
Test found a missing spacer… go test!
Sep 13, 2019
9544955
Avoiding test failure by pushing tooltip to the right with display block
Sep 16, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -105,7 +105,7 @@
"@babel/register": "^7.5.5",
"@elastic/charts": "^11.1.1",
"@elastic/datemath": "5.0.2",
"@elastic/eui": "13.8.1",
"@elastic/eui": "14.0.0",
"@elastic/filesaver": "1.1.2",
"@elastic/good": "8.1.1-kibana2",
"@elastic/numeral": "2.3.3",
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Expand Up @@ -65,15 +65,19 @@ export class QueryLanguageSwitcher extends Component<Props, State> {
);

const button = (
<EuiButtonEmpty size="xs" onClick={this.togglePopover}>
<EuiButtonEmpty
size="xs"
onClick={this.togglePopover}
className="euiFormControlLayout__append"
>
{this.props.language === 'lucene' ? luceneLabel : kqlLabel}
</EuiButtonEmpty>
);

return (
<EuiPopover
id="popover"
className="eui-displayBlock"
anchorClassName="euiFormControlLayout__append"
ownFocus
anchorPosition={this.props.anchorPosition || 'downRight'}
button={button}
Expand Down
Expand Up @@ -164,6 +164,7 @@ export const SavedQueryManagementComponent: FunctionComponent<Props> = ({
<Fragment>
<EuiPopover
id="savedQueryPopover"
anchorClassName="euiFormControlLayout__prepend"
button={savedQueryPopoverButton}
isOpen={isOpen}
closePopover={() => {
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.