mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
## Summary This PR adds the search-notebooks plugin and a python notebook renderer to the persistent console. ### Screenshots Console Closed <img width="1418" alt="image" src="8e2e2934
-a19f-4204-8a31-1e8eab7fd20f"> Notebooks: <img width="1418" alt="image" src="bf9d40ad
-352d-482e-8d84-f426c3026c69"> <img width="1418" alt="image" src="fcf8cac2
-4640-49e8-9bce-94a5a853383f"> Console View <img width="1418" alt="image" src="9230d1c2
-3987-41f8-aa86-77a20509b8c0"> ### Checklist - [x] Any text added follows [EUI's writing guidelines](https://elastic.github.io/eui/#/guidelines/writing), uses sentence case text and includes [i18n support](https://github.com/elastic/kibana/blob/main/packages/kbn-i18n/README.md) - [ ] [Documentation](https://www.elastic.co/guide/en/kibana/master/development-documentation.html) was added for features that require explanation or tutorials - [x] [Unit or functional tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html) were updated or added to match the most common scenarios - [ ] [Flaky Test Runner](https://ci-stats.kibana.dev/trigger_flaky_test_runner/1) was used on any tests changed - [x] Any UI touched in this PR is usable by keyboard only (learn more about [keyboard accessibility](https://webaim.org/techniques/keyboard/)) - [x] Any UI touched in this PR does not create any new axe failures (run axe in browser: [FF](https://addons.mozilla.org/en-US/firefox/addon/axe-devtools/), [Chrome](https://chrome.google.com/webstore/detail/axe-web-accessibility-tes/lhdoppojpmngadmnindnejefpokejbdd?hl=en-US)) - [ ] This was checked for [cross-browser compatibility](https://www.elastic.co/support/matrix#matrix_browsers) --------- Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
19 lines
278 B
JSON
19 lines
278 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"outDir": "target/types",
|
|
"types": [
|
|
"jest",
|
|
"node",
|
|
"react"
|
|
]
|
|
},
|
|
"include": [
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
],
|
|
"exclude": [
|
|
"target/**/*"
|
|
],
|
|
"kbn_references": []
|
|
}
|