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

Upgrade EUI to 9.0.1 #32291

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
},
"dependencies": {
"@elastic/datemath": "5.0.2",
"@elastic/eui": "7.1.0",
"@elastic/eui": "9.0.1",
"@elastic/filesaver": "1.1.2",
"@elastic/good": "8.1.1-kibana2",
"@elastic/numeral": "2.3.2",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ exports[`renders ControlsTab 1`] = `
fullWidth={false}
hasEmptyLabelSpace={false}
id="selectControlType"
labelType="label"
>
<EuiSelect
aria-label="Select control type"
Expand Down Expand Up @@ -127,6 +128,7 @@ exports[`renders ControlsTab 1`] = `
fullWidth={false}
hasEmptyLabelSpace={false}
id="addControl"
labelType="label"
>
<EuiButton
aria-label="Add control"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ exports[`renders dynamic options should display disabled dynamic options with to
}
id="multiselect-0"
key="multiselect"
labelType="label"
>
<EuiSwitch
checked={true}
Expand Down Expand Up @@ -55,6 +56,7 @@ exports[`renders dynamic options should display disabled dynamic options with to
}
id="dynamicOptions-0"
key="dynamicOptions"
labelType="label"
>
<EuiSwitch
checked={true}
Expand Down Expand Up @@ -90,6 +92,7 @@ exports[`renders dynamic options should display disabled dynamic options with to
values={Object {}}
/>
}
labelType="label"
>
<EuiFieldNumber
compressed={false}
Expand Down Expand Up @@ -132,6 +135,7 @@ exports[`renders dynamic options should display dynamic options for string field
}
id="multiselect-0"
key="multiselect"
labelType="label"
>
<EuiSwitch
checked={true}
Expand Down Expand Up @@ -159,6 +163,7 @@ exports[`renders dynamic options should display dynamic options for string field
}
id="dynamicOptions-0"
key="dynamicOptions"
labelType="label"
>
<EuiSwitch
checked={true}
Expand Down Expand Up @@ -205,6 +210,7 @@ exports[`renders dynamic options should display size field when dynamic options
}
id="multiselect-0"
key="multiselect"
labelType="label"
>
<EuiSwitch
checked={true}
Expand Down Expand Up @@ -232,6 +238,7 @@ exports[`renders dynamic options should display size field when dynamic options
}
id="dynamicOptions-0"
key="dynamicOptions"
labelType="label"
>
<EuiSwitch
checked={false}
Expand Down Expand Up @@ -267,6 +274,7 @@ exports[`renders dynamic options should display size field when dynamic options
values={Object {}}
/>
}
labelType="label"
>
<EuiFieldNumber
compressed={false}
Expand Down Expand Up @@ -316,6 +324,7 @@ exports[`renders should display chaining input when parents are provided 1`] = `
values={Object {}}
/>
}
labelType="label"
>
<EuiSelect
compressed={false}
Expand Down Expand Up @@ -354,6 +363,7 @@ exports[`renders should display chaining input when parents are provided 1`] = `
}
id="multiselect-0"
key="multiselect"
labelType="label"
>
<EuiSwitch
checked={true}
Expand Down Expand Up @@ -381,6 +391,7 @@ exports[`renders should display chaining input when parents are provided 1`] = `
}
id="dynamicOptions-0"
key="dynamicOptions"
labelType="label"
>
<EuiSwitch
checked={false}
Expand Down Expand Up @@ -416,6 +427,7 @@ exports[`renders should display chaining input when parents are provided 1`] = `
values={Object {}}
/>
}
labelType="label"
>
<EuiFieldNumber
compressed={false}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ exports[`renders OptionsTab 1`] = `
fullWidth={false}
hasEmptyLabelSpace={false}
id="updateFiltersOnChange"
labelType="label"
>
<EuiSwitch
checked={false}
Expand All @@ -26,6 +27,7 @@ exports[`renders OptionsTab 1`] = `
fullWidth={false}
hasEmptyLabelSpace={false}
id="useTimeFilter"
labelType="label"
>
<EuiSwitch
checked={false}
Expand All @@ -45,6 +47,7 @@ exports[`renders OptionsTab 1`] = `
fullWidth={false}
hasEmptyLabelSpace={false}
id="pinFilters"
labelType="label"
>
<EuiSwitch
data-test-subj="inputControlEditorPinFiltersCheckbox"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ exports[`renders RangeControlEditor 1`] = `
values={Object {}}
/>
}
labelType="label"
>
<EuiFieldNumber
compressed={false}
Expand All @@ -49,6 +50,7 @@ exports[`renders RangeControlEditor 1`] = `
values={Object {}}
/>
}
labelType="label"
>
<EuiFieldNumber
compressed={false}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ exports[`renders disabled control with tooltip 1`] = `
hasEmptyLabelSpace={false}
id="controlId"
label="test control"
labelType="label"
>
<EuiToolTip
content="I am disabled for testing purposes"
Expand All @@ -30,6 +31,7 @@ exports[`renders enabled control 1`] = `
hasEmptyLabelSpace={false}
id="controlId"
label="test control"
labelType="label"
>
<div>
My Control
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,13 @@ exports[`disabled 1`] = `
fullWidth={false}
levels={Array []}
max={100}
min={1}
min={0}
showInput={false}
showLabels={false}
showRange={false}
showTicks={false}
showValue={false}
step={1}
/>
</FormRow>
`;
Expand All @@ -37,6 +38,7 @@ exports[`renders RangeControl 1`] = `
fullWidth={false}
hasEmptyLabelSpace={false}
isInvalid={false}
labelType="label"
>
<EuiFlexGroup
alignItems="center"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,7 @@ exports[`renders DashboardCloneModal 1`] = `
/>
</p>
</EuiText>
<EuiSpacer
size="l"
/>
<EuiSpacer />
<EuiFieldText
autoFocus={true}
compressed={false}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ exports[`renders DashboardSaveModal 1`] = `
values={Object {}}
/>
}
labelType="label"
>
<EuiTextArea
compressed={true}
Expand Down Expand Up @@ -46,6 +47,7 @@ exports[`renders DashboardSaveModal 1`] = `
values={Object {}}
/>
}
labelType="label"
>
<EuiSwitch
checked={true}
Expand Down
Loading