Skip to content

Commit bf6e4e4

Browse files
authored
upping eui to 0.0.52 and updating snapshots (#19761) (#19766)
* upping eui to 0.0.52 and updating snapshots * fixing yarn.lock
1 parent 5d77e2b commit bf6e4e4

File tree

18 files changed

+57
-18
lines changed

18 files changed

+57
-18
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
"url": "https://github.com/elastic/kibana.git"
7676
},
7777
"dependencies": {
78-
"@elastic/eui": "v0.0.51",
78+
"@elastic/eui": "v0.0.52",
7979
"@elastic/filesaver": "1.1.2",
8080
"@elastic/numeral": "2.3.2",
8181
"@elastic/ui-ace": "0.2.3",

src/core_plugins/kibana/public/dashboard/listing/__snapshots__/dashboard_listing.test.js.snap

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
exports[`after fetch hideWriteControls 1`] = `
44
<EuiPage
55
data-test-subj="dashboardLandingPage"
6+
restrictWidth={false}
67
>
78
<EuiFlexGroup
89
alignItems="flexEnd"
@@ -115,6 +116,7 @@ exports[`after fetch hideWriteControls 1`] = `
115116
exports[`after fetch renders call to action when no dashboards exist 1`] = `
116117
<EuiPage
117118
data-test-subj="dashboardLandingPage"
119+
restrictWidth={false}
118120
>
119121
<EuiFlexGroup
120122
alignItems="flexEnd"
@@ -263,6 +265,7 @@ exports[`after fetch renders call to action when no dashboards exist 1`] = `
263265
exports[`after fetch renders table rows 1`] = `
264266
<EuiPage
265267
data-test-subj="dashboardLandingPage"
268+
restrictWidth={false}
266269
>
267270
<EuiFlexGroup
268271
alignItems="flexEnd"
@@ -399,6 +402,7 @@ exports[`after fetch renders table rows 1`] = `
399402
exports[`after fetch renders warning when listingLimit is exceeded 1`] = `
400403
<EuiPage
401404
data-test-subj="dashboardLandingPage"
405+
restrictWidth={false}
402406
>
403407
<EuiFlexGroup
404408
alignItems="flexEnd"
@@ -566,6 +570,7 @@ exports[`after fetch renders warning when listingLimit is exceeded 1`] = `
566570
exports[`initialFilter 1`] = `
567571
<EuiPage
568572
data-test-subj="dashboardLandingPage"
573+
restrictWidth={false}
569574
>
570575
<EuiFlexGroup
571576
alignItems="flexEnd"
@@ -689,6 +694,7 @@ exports[`initialFilter 1`] = `
689694
exports[`renders table in loading state 1`] = `
690695
<EuiPage
691696
data-test-subj="dashboardLandingPage"
697+
restrictWidth={false}
692698
>
693699
<EuiFlexGroup
694700
alignItems="flexEnd"

src/core_plugins/kibana/public/dashboard/panel/__snapshots__/dashboard_panel.test.js.snap

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ exports[`DashboardPanel matches snapshot 1`] = `
3636
<svg
3737
aria-hidden="true"
3838
class="euiIcon euiIcon--medium euiButtonIcon__icon"
39+
focusable="false"
3940
height="16"
4041
viewBox="0 0 16 16"
4142
width="16"

src/core_plugins/kibana/public/dashboard/top_nav/__snapshots__/save_modal.test.js.snap

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ exports[`renders DashboardSaveModal 1`] = `
5454
data-test-subj="dashboardDescription"
5555
fullWidth={false}
5656
onChange={[Function]}
57+
resize="vertical"
5758
value="dash description"
5859
/>
5960
</EuiFormRow>

src/core_plugins/kibana/public/discover/directives/__snapshots__/no_results.test.js.snap

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ Array [
2121
<svg
2222
aria-hidden="true"
2323
class="euiIcon euiIcon--medium euiCallOutHeader__icon"
24+
focusable="false"
2425
height="16"
2526
viewBox="0 0 16 16"
2627
width="16"
@@ -223,6 +224,7 @@ Array [
223224
<svg
224225
aria-hidden="true"
225226
class="euiIcon euiIcon--medium euiCallOutHeader__icon"
227+
focusable="false"
226228
height="16"
227229
viewBox="0 0 16 16"
228230
width="16"
@@ -341,6 +343,7 @@ Array [
341343
<svg
342344
aria-hidden="true"
343345
class="euiIcon euiIcon--medium euiCallOutHeader__icon"
346+
focusable="false"
344347
height="16"
345348
viewBox="0 0 16 16"
346349
width="16"

src/core_plugins/kibana/public/home/components/__snapshots__/home.test.js.snap

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
exports[`directories should not render directory entry when showOnHomePage is false 1`] = `
44
<EuiPage
55
className="home"
6+
restrictWidth={false}
67
>
78
<AddData
89
apmUiEnabled={true}
@@ -113,6 +114,7 @@ exports[`directories should not render directory entry when showOnHomePage is fa
113114
exports[`directories should render ADMIN directory entry in "Manage" panel 1`] = `
114115
<EuiPage
115116
className="home"
117+
restrictWidth={false}
116118
>
117119
<AddData
118120
apmUiEnabled={true}
@@ -241,6 +243,7 @@ exports[`directories should render ADMIN directory entry in "Manage" panel 1`] =
241243
exports[`directories should render DATA directory entry in "Explore Data" panel 1`] = `
242244
<EuiPage
243245
className="home"
246+
restrictWidth={false}
244247
>
245248
<AddData
246249
apmUiEnabled={true}
@@ -369,6 +372,7 @@ exports[`directories should render DATA directory entry in "Explore Data" panel
369372
exports[`should not contain RecentlyAccessed panel when there is no recentlyAccessed history 1`] = `
370373
<EuiPage
371374
className="home"
375+
restrictWidth={false}
372376
>
373377
<AddData
374378
apmUiEnabled={true}
@@ -479,6 +483,7 @@ exports[`should not contain RecentlyAccessed panel when there is no recentlyAcce
479483
exports[`should render home component 1`] = `
480484
<EuiPage
481485
className="home"
486+
restrictWidth={false}
482487
>
483488
<React.Fragment>
484489
<RecentlyAccessed

src/core_plugins/kibana/public/home/components/tutorial/__snapshots__/tutorial.test.js.snap

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
exports[`isCloudEnabled is false should not render instruction toggle when ON_PREM_ELASTIC_CLOUD instructions are not provided 1`] = `
44
<EuiPage
55
className="home"
6+
restrictWidth={false}
67
>
78
<EuiLink
89
color="primary"
@@ -71,6 +72,7 @@ exports[`isCloudEnabled is false should not render instruction toggle when ON_PR
7172
exports[`isCloudEnabled is false should render ON_PREM instructions with instruction toggle 1`] = `
7273
<EuiPage
7374
className="home"
75+
restrictWidth={false}
7476
>
7577
<EuiLink
7678
color="primary"
@@ -158,6 +160,7 @@ exports[`isCloudEnabled is false should render ON_PREM instructions with instruc
158160
exports[`should render ELASTIC_CLOUD instructions when isCloudEnabled is true 1`] = `
159161
<EuiPage
160162
className="home"
163+
restrictWidth={false}
161164
>
162165
<EuiLink
163166
color="primary"

src/core_plugins/kibana/public/management/sections/indices/edit_index_pattern/indexed_fields_table/components/table/__tests__/__snapshots__/table.test.js.snap

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,7 @@ exports[`Table should render the boolean template (true) 1`] = `
134134
<dot
135135
aria-label="Is searchable"
136136
className="euiIcon euiIcon--medium euiIcon--secondary"
137+
focusable="false"
137138
height="16"
138139
style={null}
139140
viewBox="0 0 16 16"

src/core_plugins/kibana/public/management/sections/objects/components/objects_table/__tests__/__snapshots__/objects_table.test.js.snap

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,9 @@ exports[`ObjectsTable relationships should show the flyout 1`] = `
123123
`;
124124

125125
exports[`ObjectsTable should render normally 1`] = `
126-
<EuiPage>
126+
<EuiPage
127+
restrictWidth={false}
128+
>
127129
<EuiPageContent
128130
horizontalPosition="center"
129131
panelPaddingSize="l"

src/ui/public/vis/editors/components/__snapshots__/editor_options_group.test.js.snap

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ exports[`<EditorOptionsGroup/> renders as expected 1`] = `
2626
>
2727
<svg
2828
class="euiIcon euiIcon--medium"
29+
focusable="false"
2930
height="16"
3031
viewBox="0 0 16 16"
3132
width="16"
@@ -107,6 +108,7 @@ exports[`<EditorOptionsGroup/> renders as expected with actions 1`] = `
107108
>
108109
<svg
109110
class="euiIcon euiIcon--medium"
111+
focusable="false"
110112
height="16"
111113
viewBox="0 0 16 16"
112114
width="16"
@@ -148,6 +150,7 @@ exports[`<EditorOptionsGroup/> renders as expected with actions 1`] = `
148150
<svg
149151
aria-hidden="true"
150152
class="euiIcon euiIcon--medium euiButtonIcon__icon"
153+
focusable="false"
151154
height="16"
152155
viewBox="0 0 16 16"
153156
width="16"
@@ -214,6 +217,7 @@ exports[`<EditorOptionsGroup/> renders as expected with initial collapsed 1`] =
214217
>
215218
<svg
216219
class="euiIcon euiIcon--medium"
220+
focusable="false"
217221
height="16"
218222
viewBox="0 0 16 16"
219223
width="16"

0 commit comments

Comments
 (0)