-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into ml-package-storage
- Loading branch information
Showing
15 changed files
with
341 additions
and
64 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -107,7 +107,7 @@ | |
"@elastic/datemath": "5.0.3", | ||
"@elastic/elasticsearch": "npm:@elastic/[email protected]", | ||
"@elastic/ems-client": "8.3.3", | ||
"@elastic/eui": "72.0.0", | ||
"@elastic/eui": "72.1.0", | ||
"@elastic/filesaver": "1.1.2", | ||
"@elastic/node-crypto": "1.2.1", | ||
"@elastic/numeral": "^2.5.1", | ||
|
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 |
---|---|---|
|
@@ -84,6 +84,6 @@ export const LICENSE_OVERRIDES = { | |
'[email protected]': ['Eclipse Distribution License - v 1.0'], // cf. https://github.com/bjornharrtell/jsts | ||
'@mapbox/[email protected]': ['MIT'], // license in readme https://github.com/tmcw/jsonlint | ||
'@elastic/[email protected]': ['Elastic License 2.0'], | ||
'@elastic/eui@72.0.0': ['SSPL-1.0 OR Elastic License 2.0'], | ||
'@elastic/eui@72.1.0': ['SSPL-1.0 OR Elastic License 2.0'], | ||
'[email protected]': ['CC-BY-4.0'], // retired ODC‑By license https://github.com/mattcg/language-subtag-registry | ||
}; |
16 changes: 0 additions & 16 deletions
16
...plugins/aiops/public/components/explain_log_rate_spikes/explain_log_rate_spikes_page.scss
This file was deleted.
Oops, something went wrong.
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,31 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License | ||
* 2.0; you may not use this file except in compliance with the Elastic License | ||
* 2.0. | ||
*/ | ||
|
||
import { css } from '@emotion/react'; | ||
import { useEuiBreakpoint } from '@elastic/eui'; | ||
import { euiThemeVars } from '@kbn/ui-theme'; | ||
|
||
// Define fully static CSS outside hook. | ||
const dataViewTitleHeader = css({ | ||
minWidth: '300px', | ||
padding: `${euiThemeVars.euiSizeS} 0`, | ||
display: 'flex', | ||
flexDirection: 'row', | ||
alignItems: 'center', | ||
}); | ||
|
||
export const useCss = () => { | ||
// Define CSS referencing inline dependencies within hook. | ||
const aiopsPageHeader = css({ | ||
[useEuiBreakpoint(['xs', 's', 'm', 'l'])]: { | ||
flexDirection: 'column', | ||
alignItems: 'flex-start', | ||
}, | ||
}); | ||
|
||
return { dataViewTitleHeader, aiopsPageHeader }; | ||
}; |
1 change: 0 additions & 1 deletion
1
...a_visualizer/public/application/index_data_visualizer/components/search_panel/_index.scss
This file was deleted.
Oops, something went wrong.
19 changes: 0 additions & 19 deletions
19
...alizer/public/application/index_data_visualizer/components/search_panel/search_panel.scss
This file was deleted.
Oops, something went wrong.
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,20 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License | ||
* 2.0; you may not use this file except in compliance with the Elastic License | ||
* 2.0. | ||
*/ | ||
|
||
export interface EnterpriseSearchEnginesResponse { | ||
meta: { | ||
from: number; | ||
size: number; | ||
total: number; | ||
}; | ||
results: EnterpriseSearchEngine[]; | ||
} | ||
|
||
export interface EnterpriseSearchEngine { | ||
name: string; | ||
indices: string[]; | ||
} |
Oops, something went wrong.