-
Notifications
You must be signed in to change notification settings - Fork 8.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into intake-in-memory
- Loading branch information
Showing
129 changed files
with
754 additions
and
628 deletions.
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
2 changes: 1 addition & 1 deletion
2
src/plugins/management/public/components/management_sidebar_nav/_sidebar_nav.scss
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
.mgtSideBarNav { | ||
width: 192px; | ||
width: 210px; | ||
} | ||
|
||
@include euiBreakpoint('xs','s') { | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
/* | ||
* Licensed to Elasticsearch B.V. under one or more contributor | ||
* license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright | ||
* ownership. Elasticsearch B.V. licenses this file to you under | ||
* the Apache License, Version 2.0 (the "License"); you may | ||
* not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
import React from 'react'; | ||
import { EuiFlexGroup, EuiFlexItem, EuiToolTip, EuiIcon } from '@elastic/eui'; | ||
|
||
import { ManagementSectionId } from './types'; | ||
|
||
interface Props { | ||
text: string; | ||
tip: string; | ||
} | ||
|
||
const ManagementSectionTitle = ({ text, tip }: Props) => ( | ||
<EuiToolTip content={tip} position="right"> | ||
<EuiFlexGroup alignItems="center" gutterSize="s" responsive={false}> | ||
<EuiFlexItem grow={false}>{text}</EuiFlexItem> | ||
|
||
<EuiFlexItem grow={false}> | ||
<EuiIcon type="questionInCircle" /> | ||
</EuiFlexItem> | ||
</EuiFlexGroup> | ||
</EuiToolTip> | ||
); | ||
|
||
export const managementSections = [ | ||
{ | ||
id: ManagementSectionId.Ingest, | ||
title: ( | ||
<ManagementSectionTitle | ||
text="Ingest" | ||
tip="Manage how to transform data and load it into the cluster." | ||
/> | ||
), | ||
}, | ||
{ | ||
id: ManagementSectionId.Data, | ||
title: <ManagementSectionTitle text="Data" tip="Manage your cluster data and backups" />, | ||
}, | ||
{ | ||
id: ManagementSectionId.InsightsAndAlerting, | ||
title: ( | ||
<ManagementSectionTitle | ||
text="Alerts and Insights" | ||
tip="Manage how to detect changes in your data" | ||
/> | ||
), | ||
}, | ||
{ | ||
id: ManagementSectionId.Security, | ||
title: <ManagementSectionTitle text="Security" tip="Control access to features and data" />, | ||
}, | ||
{ | ||
id: ManagementSectionId.Kibana, | ||
title: <ManagementSectionTitle text="Kibana" tip="Customize Kibana and manage saved objects" />, | ||
}, | ||
{ | ||
id: ManagementSectionId.Stack, | ||
title: <ManagementSectionTitle text="Stack" tip="Manage your license and upgrade the Stack" />, | ||
}, | ||
]; |
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.