This commit is contained in:
dave.snider@gmail.com 2018-07-27 11:10:02 -07:00 committed by GitHub
parent 1eaed69548
commit 787c7a246a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 71 additions and 31 deletions

View file

@ -77,7 +77,7 @@
"url": "https://github.com/elastic/kibana.git"
},
"dependencies": {
"@elastic/eui": "3.0.0",
"@elastic/eui": "3.0.3",
"@elastic/filesaver": "1.1.2",
"@elastic/numeral": "2.3.2",
"@elastic/ui-ace": "0.2.3",

View file

@ -6,7 +6,9 @@ exports[`after fetch hideWriteControls 1`] = `
data-test-subj="dashboardLandingPage"
restrictWidth={false}
>
<EuiPageBody>
<EuiPageBody
restrictWidth={false}
>
<EuiPageContent
className="dashboardLandingPageContent"
horizontalPosition="center"
@ -35,7 +37,9 @@ exports[`after fetch initialFilter 1`] = `
data-test-subj="dashboardLandingPage"
restrictWidth={false}
>
<EuiPageBody>
<EuiPageBody
restrictWidth={false}
>
<EuiPageContent
className="dashboardLandingPageContent"
horizontalPosition="center"
@ -186,7 +190,9 @@ exports[`after fetch renders call to action when no dashboards exist 1`] = `
data-test-subj="dashboardLandingPage"
restrictWidth={false}
>
<EuiPageBody>
<EuiPageBody
restrictWidth={false}
>
<EuiPageContent
className="dashboardLandingPageContent"
horizontalPosition="center"
@ -245,7 +251,9 @@ exports[`after fetch renders table rows 1`] = `
data-test-subj="dashboardLandingPage"
restrictWidth={false}
>
<EuiPageBody>
<EuiPageBody
restrictWidth={false}
>
<EuiPageContent
className="dashboardLandingPageContent"
horizontalPosition="center"
@ -396,7 +404,9 @@ exports[`after fetch renders warning when listingLimit is exceeded 1`] = `
data-test-subj="dashboardLandingPage"
restrictWidth={false}
>
<EuiPageBody>
<EuiPageBody
restrictWidth={false}
>
<EuiPageContent
className="dashboardLandingPageContent"
horizontalPosition="center"
@ -578,6 +588,8 @@ exports[`renders empty page in before initial fetch to avoid flickering 1`] = `
data-test-subj="dashboardLandingPage"
restrictWidth={false}
>
<EuiPageBody />
<EuiPageBody
restrictWidth={false}
/>
</EuiPage>
`;

View file

@ -5,7 +5,9 @@ exports[`directories should not render directory entry when showOnHomePage is fa
className="home"
restrictWidth={false}
>
<EuiPageBody>
<EuiPageBody
restrictWidth={false}
>
<AddData
apmUiEnabled={true}
isNewKibanaInstance={false}
@ -119,7 +121,9 @@ exports[`directories should render ADMIN directory entry in "Manage" panel 1`] =
className="home"
restrictWidth={false}
>
<EuiPageBody>
<EuiPageBody
restrictWidth={false}
>
<AddData
apmUiEnabled={true}
isNewKibanaInstance={false}
@ -252,7 +256,9 @@ exports[`directories should render DATA directory entry in "Explore Data" panel
className="home"
restrictWidth={false}
>
<EuiPageBody>
<EuiPageBody
restrictWidth={false}
>
<AddData
apmUiEnabled={true}
isNewKibanaInstance={false}
@ -385,7 +391,9 @@ exports[`isNewKibanaInstance should safely handle execeptions 1`] = `
className="home"
restrictWidth={false}
>
<EuiPageBody>
<EuiPageBody
restrictWidth={false}
>
<AddData
apmUiEnabled={true}
isNewKibanaInstance={false}
@ -499,7 +507,9 @@ exports[`isNewKibanaInstance should set isNewKibanaInstance to false when there
className="home"
restrictWidth={false}
>
<EuiPageBody>
<EuiPageBody
restrictWidth={false}
>
<AddData
apmUiEnabled={true}
isNewKibanaInstance={false}
@ -613,7 +623,9 @@ exports[`isNewKibanaInstance should set isNewKibanaInstance to true when there a
className="home"
restrictWidth={false}
>
<EuiPageBody>
<EuiPageBody
restrictWidth={false}
>
<AddData
apmUiEnabled={true}
isNewKibanaInstance={true}
@ -727,7 +739,9 @@ exports[`should not contain RecentlyAccessed panel when there is no recentlyAcce
className="home"
restrictWidth={false}
>
<EuiPageBody>
<EuiPageBody
restrictWidth={false}
>
<AddData
apmUiEnabled={true}
isNewKibanaInstance={false}
@ -841,7 +855,9 @@ exports[`should render home component 1`] = `
className="home"
restrictWidth={false}
>
<EuiPageBody>
<EuiPageBody
restrictWidth={false}
>
<React.Fragment>
<RecentlyAccessed
recentlyAccessed={

View file

@ -5,7 +5,9 @@ exports[`isCloudEnabled is false should not render instruction toggle when ON_PR
className="home"
restrictWidth={false}
>
<EuiPageBody>
<EuiPageBody
restrictWidth={false}
>
<div>
<EuiLink
color="primary"
@ -79,7 +81,9 @@ exports[`isCloudEnabled is false should render ON_PREM instructions with instruc
className="home"
restrictWidth={false}
>
<EuiPageBody>
<EuiPageBody
restrictWidth={false}
>
<div>
<EuiLink
color="primary"
@ -172,7 +176,9 @@ exports[`should render ELASTIC_CLOUD instructions when isCloudEnabled is true 1`
className="home"
restrictWidth={false}
>
<EuiPageBody>
<EuiPageBody
restrictWidth={false}
>
<div>
<EuiLink
color="primary"

View file

@ -126,7 +126,9 @@ exports[`ObjectsTable should render normally 1`] = `
<EuiPage
restrictWidth={false}
>
<EuiPageBody>
<EuiPageBody
restrictWidth={false}
>
<EuiPageContent
horizontalPosition="center"
panelPaddingSize="l"

View file

@ -78,7 +78,7 @@
"yargs": "4.7.1"
},
"dependencies": {
"@elastic/eui": "3.0.0",
"@elastic/eui": "3.0.3",
"@elastic/node-crypto": "0.1.2",
"@elastic/node-phantom-simple": "2.2.4",
"@elastic/numeral": "2.3.2",

View file

@ -4,7 +4,9 @@ exports[`PipelineViewer component passes expected props 1`] = `
<EuiPage
restrictWidth={false}
>
<EuiPageBody>
<EuiPageBody
restrictWidth={false}
>
<EuiPageContent
className="pipelineViewer"
horizontalPosition="center"
@ -84,7 +86,9 @@ exports[`PipelineViewer component renders DetailDrawer when selected vertex is n
<EuiPage
restrictWidth={false}
>
<EuiPageBody>
<EuiPageBody
restrictWidth={false}
>
<EuiPageContent
className="pipelineViewer"
horizontalPosition="center"

View file

@ -5,7 +5,7 @@ exports[`NoData should show a default message if reason is unknown 1`] = `
class="euiPage euiPage--widthIsNotRestricted"
>
<div
class="euiPageBody"
class="euiPageBody euiPage--widthIsNotRestricted"
>
<div
class="euiPanel euiPanel--paddingLarge euiPageContent noData__content euiPageContent--verticalCenter euiPageContent--horizontalCenter"
@ -85,7 +85,7 @@ exports[`NoData should show text next to the spinner while checking a setting 1`
class="euiPage euiPage--widthIsNotRestricted"
>
<div
class="euiPageBody"
class="euiPageBody euiPage--widthIsNotRestricted"
>
<div
class="euiPanel euiPanel--paddingLarge euiPageContent noData__content euiPageContent--verticalCenter euiPageContent--horizontalCenter"

View file

@ -5,7 +5,7 @@ exports[`PageLoading should show a simple page loading component 1`] = `
class="euiPage euiPage--widthIsNotRestricted"
>
<div
class="euiPageBody"
class="euiPageBody euiPage--widthIsNotRestricted"
>
<div
class="euiPanel euiPanel--paddingLarge euiPageContent noData__content euiPageContent--verticalCenter euiPageContent--horizontalCenter"

View file

@ -10,9 +10,9 @@
esutils "^2.0.2"
js-tokens "^3.0.0"
"@elastic/eui@3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@elastic/eui/-/eui-3.0.0.tgz#daa51d5ef32e0c00bcf7b53b7acea91df3a3704c"
"@elastic/eui@3.0.3":
version "3.0.3"
resolved "https://registry.yarnpkg.com/@elastic/eui/-/eui-3.0.3.tgz#0e0be362ff9e8a270328ff2737c92e036e3e0e86"
dependencies:
classnames "^2.2.5"
core-js "^2.5.1"

View file

@ -81,9 +81,9 @@
version "0.0.0"
uid ""
"@elastic/eui@3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@elastic/eui/-/eui-3.0.0.tgz#daa51d5ef32e0c00bcf7b53b7acea91df3a3704c"
"@elastic/eui@3.0.3":
version "3.0.3"
resolved "https://registry.yarnpkg.com/@elastic/eui/-/eui-3.0.3.tgz#0e0be362ff9e8a270328ff2737c92e036e3e0e86"
dependencies:
classnames "^2.2.5"
core-js "^2.5.1"