diff --git a/.ci/Jenkinsfile_coverage b/.ci/Jenkinsfile_coverage
index d9ec1861c9979..01c18b10d0804 100644
--- a/.ci/Jenkinsfile_coverage
+++ b/.ci/Jenkinsfile_coverage
@@ -16,14 +16,14 @@ stage("Kibana Pipeline") { // This stage is just here to help the BlueOcean UI a
withEnv([
'NODE_ENV=test' // Needed for jest tests only
]) {
- kibanaPipeline.legacyJobRunner('kibana-intake')()
+ kibanaPipeline.intakeWorker('kibana-intake', './test/scripts/jenkins_unit.sh')()
}
},
'x-pack-intake-agent': {
withEnv([
'NODE_ENV=test' // Needed for jest tests only
]) {
- kibanaPipeline.legacyJobRunner('x-pack-intake')()
+ kibanaPipeline.intakeWorker('x-pack-intake', './test/scripts/jenkins_xpack.sh')()
}
},
'kibana-oss-agent': kibanaPipeline.withWorkers('kibana-oss-tests', { kibanaPipeline.buildOss() }, [
diff --git a/.ci/es-snapshots/Jenkinsfile_verify_es b/.ci/es-snapshots/Jenkinsfile_verify_es
index 3d5ec75fa0e72..30d52a56547bd 100644
--- a/.ci/es-snapshots/Jenkinsfile_verify_es
+++ b/.ci/es-snapshots/Jenkinsfile_verify_es
@@ -26,8 +26,8 @@ timeout(time: 120, unit: 'MINUTES') {
withEnv(["ES_SNAPSHOT_MANIFEST=${SNAPSHOT_MANIFEST}"]) {
parallel([
// TODO we just need to run integration tests from intake?
- 'kibana-intake-agent': kibanaPipeline.legacyJobRunner('kibana-intake'),
- 'x-pack-intake-agent': kibanaPipeline.legacyJobRunner('x-pack-intake'),
+ 'kibana-intake-agent': kibanaPipeline.intakeWorker('kibana-intake', './test/scripts/jenkins_unit.sh'),
+ 'x-pack-intake-agent': kibanaPipeline.intakeWorker('x-pack-intake', './test/scripts/jenkins_xpack.sh'),
'kibana-oss-agent': kibanaPipeline.withWorkers('kibana-oss-tests', { kibanaPipeline.buildOss() }, [
'oss-ciGroup1': kibanaPipeline.getOssCiGroupWorker(1),
'oss-ciGroup2': kibanaPipeline.getOssCiGroupWorker(2),
diff --git a/.ci/jobs.yml b/.ci/jobs.yml
index a2d8100f78efd..3add92aadd256 100644
--- a/.ci/jobs.yml
+++ b/.ci/jobs.yml
@@ -1,3 +1,5 @@
+# This file is needed by functionalTests:ensureAllTestsInCiGroup for the list of ciGroups. That must be changed before this file can be removed
+
JOB:
- kibana-intake
- x-pack-intake
diff --git a/.ci/run.sh b/.ci/run.sh
deleted file mode 100755
index 9f77438be62d0..0000000000000
--- a/.ci/run.sh
+++ /dev/null
@@ -1,50 +0,0 @@
-#!/usr/bin/env bash
-
-set -e
-
-# move to Kibana root
-cd "$(dirname "$0")/.."
-
-source src/dev/ci_setup/load_env_keys.sh
-source src/dev/ci_setup/extract_bootstrap_cache.sh
-source src/dev/ci_setup/setup.sh
-source src/dev/ci_setup/checkout_sibling_es.sh
-
-case "$JOB" in
-kibana-intake)
- ./test/scripts/jenkins_unit.sh
- ;;
-kibana-ciGroup*)
- export CI_GROUP="${JOB##kibana-ciGroup}"
- ./test/scripts/jenkins_ci_group.sh
- ;;
-kibana-visualRegression*)
- ./test/scripts/jenkins_visual_regression.sh
- ;;
-kibana-accessibility*)
- ./test/scripts/jenkins_accessibility.sh
- ;;
-kibana-firefoxSmoke*)
- ./test/scripts/jenkins_firefox_smoke.sh
- ;;
-x-pack-intake)
- ./test/scripts/jenkins_xpack.sh
- ;;
-x-pack-ciGroup*)
- export CI_GROUP="${JOB##x-pack-ciGroup}"
- ./test/scripts/jenkins_xpack_ci_group.sh
- ;;
-x-pack-visualRegression*)
- ./test/scripts/jenkins_xpack_visual_regression.sh
- ;;
-x-pack-accessibility*)
- ./test/scripts/jenkins_xpack_accessibility.sh
- ;;
-x-pack-firefoxSmoke*)
- ./test/scripts/jenkins_xpack_firefox_smoke.sh
- ;;
-*)
- echo "JOB '$JOB' is not implemented."
- exit 1
- ;;
-esac
diff --git a/.eslintrc.js b/.eslintrc.js
index bbe2047271cad..310949b23fe36 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -244,15 +244,15 @@ module.exports = {
{
target: [
'(src|x-pack)/plugins/**/*',
- '!(src|x-pack)/plugins/*/server/**/*',
+ '!(src|x-pack)/plugins/**/server/**/*',
'src/legacy/core_plugins/**/*',
- '!src/legacy/core_plugins/*/server/**/*',
- '!src/legacy/core_plugins/*/index.{js,ts,tsx}',
+ '!src/legacy/core_plugins/**/server/**/*',
+ '!src/legacy/core_plugins/**/index.{js,ts,tsx}',
'x-pack/legacy/plugins/**/*',
- '!x-pack/legacy/plugins/*/server/**/*',
- '!x-pack/legacy/plugins/*/index.{js,ts,tsx}',
+ '!x-pack/legacy/plugins/**/server/**/*',
+ '!x-pack/legacy/plugins/**/index.{js,ts,tsx}',
'examples/**/*',
'!examples/**/server/**/*',
diff --git a/Jenkinsfile b/Jenkinsfile
index f6844c7f03fe6..4e6f3141a12e7 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -4,16 +4,21 @@ library 'kibana-pipeline-library'
kibanaLibrary.load()
stage("Kibana Pipeline") { // This stage is just here to help the BlueOcean UI a little bit
- timeout(time: 120, unit: 'MINUTES') {
+ timeout(time: 135, unit: 'MINUTES') {
timestamps {
ansiColor('xterm') {
githubPr.withDefaultPrComments {
catchError {
+ retryable.enable()
parallel([
- 'kibana-intake-agent': kibanaPipeline.legacyJobRunner('kibana-intake'),
- 'x-pack-intake-agent': kibanaPipeline.legacyJobRunner('x-pack-intake'),
+ 'kibana-intake-agent': kibanaPipeline.intakeWorker('kibana-intake', './test/scripts/jenkins_unit.sh'),
+ 'x-pack-intake-agent': kibanaPipeline.intakeWorker('x-pack-intake', './test/scripts/jenkins_xpack.sh'),
'kibana-oss-agent': kibanaPipeline.withWorkers('kibana-oss-tests', { kibanaPipeline.buildOss() }, [
- 'oss-firefoxSmoke': kibanaPipeline.getPostBuildWorker('firefoxSmoke', { runbld('./test/scripts/jenkins_firefox_smoke.sh', 'Execute kibana-firefoxSmoke') }),
+ 'oss-firefoxSmoke': kibanaPipeline.getPostBuildWorker('firefoxSmoke', {
+ retryable('kibana-firefoxSmoke') {
+ runbld('./test/scripts/jenkins_firefox_smoke.sh', 'Execute kibana-firefoxSmoke')
+ }
+ }),
'oss-ciGroup1': kibanaPipeline.getOssCiGroupWorker(1),
'oss-ciGroup2': kibanaPipeline.getOssCiGroupWorker(2),
'oss-ciGroup3': kibanaPipeline.getOssCiGroupWorker(3),
@@ -26,11 +31,19 @@ stage("Kibana Pipeline") { // This stage is just here to help the BlueOcean UI a
'oss-ciGroup10': kibanaPipeline.getOssCiGroupWorker(10),
'oss-ciGroup11': kibanaPipeline.getOssCiGroupWorker(11),
'oss-ciGroup12': kibanaPipeline.getOssCiGroupWorker(12),
- 'oss-accessibility': kibanaPipeline.getPostBuildWorker('accessibility', { runbld('./test/scripts/jenkins_accessibility.sh', 'Execute kibana-accessibility') }),
+ 'oss-accessibility': kibanaPipeline.getPostBuildWorker('accessibility', {
+ retryable('kibana-accessibility') {
+ runbld('./test/scripts/jenkins_accessibility.sh', 'Execute kibana-accessibility')
+ }
+ }),
// 'oss-visualRegression': kibanaPipeline.getPostBuildWorker('visualRegression', { runbld('./test/scripts/jenkins_visual_regression.sh', 'Execute kibana-visualRegression') }),
]),
'kibana-xpack-agent': kibanaPipeline.withWorkers('kibana-xpack-tests', { kibanaPipeline.buildXpack() }, [
- 'xpack-firefoxSmoke': kibanaPipeline.getPostBuildWorker('xpack-firefoxSmoke', { runbld('./test/scripts/jenkins_xpack_firefox_smoke.sh', 'Execute xpack-firefoxSmoke') }),
+ 'xpack-firefoxSmoke': kibanaPipeline.getPostBuildWorker('xpack-firefoxSmoke', {
+ retryable('xpack-firefoxSmoke') {
+ runbld('./test/scripts/jenkins_xpack_firefox_smoke.sh', 'Execute xpack-firefoxSmoke')
+ }
+ }),
'xpack-ciGroup1': kibanaPipeline.getXpackCiGroupWorker(1),
'xpack-ciGroup2': kibanaPipeline.getXpackCiGroupWorker(2),
'xpack-ciGroup3': kibanaPipeline.getXpackCiGroupWorker(3),
@@ -41,12 +54,18 @@ stage("Kibana Pipeline") { // This stage is just here to help the BlueOcean UI a
'xpack-ciGroup8': kibanaPipeline.getXpackCiGroupWorker(8),
'xpack-ciGroup9': kibanaPipeline.getXpackCiGroupWorker(9),
'xpack-ciGroup10': kibanaPipeline.getXpackCiGroupWorker(10),
- 'xpack-accessibility': kibanaPipeline.getPostBuildWorker('xpack-accessibility', { runbld('./test/scripts/jenkins_xpack_accessibility.sh', 'Execute xpack-accessibility') }),
+ 'xpack-accessibility': kibanaPipeline.getPostBuildWorker('xpack-accessibility', {
+ retryable('xpack-accessibility') {
+ runbld('./test/scripts/jenkins_xpack_accessibility.sh', 'Execute xpack-accessibility')
+ }
+ }),
// 'xpack-visualRegression': kibanaPipeline.getPostBuildWorker('xpack-visualRegression', { runbld('./test/scripts/jenkins_xpack_visual_regression.sh', 'Execute xpack-visualRegression') }),
]),
])
}
}
+
+ retryable.printFlakyFailures()
kibanaPipeline.sendMail()
}
}
diff --git a/api-documenter.json b/api-documenter.json
new file mode 100644
index 0000000000000..a2303b939c8ec
--- /dev/null
+++ b/api-documenter.json
@@ -0,0 +1,4 @@
+{
+ "newlineKind": "lf",
+ "outputTarget": "markdown"
+}
diff --git a/docs/development/core/public/index.md b/docs/development/core/public/index.md
index 3badb447f0858..be1aaed88696d 100644
--- a/docs/development/core/public/index.md
+++ b/docs/development/core/public/index.md
@@ -1,12 +1,12 @@
-
-
-[Home](./index.md)
-
-## API Reference
-
-## Packages
-
-| Package | Description |
-| --- | --- |
-| [kibana-plugin-public](./kibana-plugin-public.md) | The Kibana Core APIs for client-side plugins.A plugin's public/index
file must contain a named import, plugin
, that implements which returns an object that implements .The plugin integrates with the core system via lifecycle events: setup
, start
, and stop
. In each lifecycle method, the plugin will receive the corresponding core services available (either or ) and any interfaces returned by dependency plugins' lifecycle method. Anything returned by the plugin's lifecycle method will be exposed to downstream dependencies when their corresponding lifecycle methods are invoked. |
-
+
+
+[Home](./index.md)
+
+## API Reference
+
+## Packages
+
+| Package | Description |
+| --- | --- |
+| [kibana-plugin-public](./kibana-plugin-public.md) | The Kibana Core APIs for client-side plugins.A plugin's public/index
file must contain a named import, plugin
, that implements which returns an object that implements .The plugin integrates with the core system via lifecycle events: setup
, start
, and stop
. In each lifecycle method, the plugin will receive the corresponding core services available (either or ) and any interfaces returned by dependency plugins' lifecycle method. Anything returned by the plugin's lifecycle method will be exposed to downstream dependencies when their corresponding lifecycle methods are invoked. |
+
diff --git a/docs/development/core/public/kibana-plugin-public.app.approute.md b/docs/development/core/public/kibana-plugin-public.app.approute.md
index 7f35f4346b6b3..76c5b7952259f 100644
--- a/docs/development/core/public/kibana-plugin-public.app.approute.md
+++ b/docs/development/core/public/kibana-plugin-public.app.approute.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [App](./kibana-plugin-public.app.md) > [appRoute](./kibana-plugin-public.app.approute.md)
-
-## App.appRoute property
-
-Override the application's routing path from `/app/${id}`. Must be unique across registered applications. Should not include the base path from HTTP.
-
-Signature:
-
-```typescript
-appRoute?: string;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [App](./kibana-plugin-public.app.md) > [appRoute](./kibana-plugin-public.app.approute.md)
+
+## App.appRoute property
+
+Override the application's routing path from `/app/${id}`. Must be unique across registered applications. Should not include the base path from HTTP.
+
+Signature:
+
+```typescript
+appRoute?: string;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.app.chromeless.md b/docs/development/core/public/kibana-plugin-public.app.chromeless.md
index dc1e19bab80b2..ce68c68ba8c72 100644
--- a/docs/development/core/public/kibana-plugin-public.app.chromeless.md
+++ b/docs/development/core/public/kibana-plugin-public.app.chromeless.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [App](./kibana-plugin-public.app.md) > [chromeless](./kibana-plugin-public.app.chromeless.md)
-
-## App.chromeless property
-
-Hide the UI chrome when the application is mounted. Defaults to `false`. Takes precedence over chrome service visibility settings.
-
-Signature:
-
-```typescript
-chromeless?: boolean;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [App](./kibana-plugin-public.app.md) > [chromeless](./kibana-plugin-public.app.chromeless.md)
+
+## App.chromeless property
+
+Hide the UI chrome when the application is mounted. Defaults to `false`. Takes precedence over chrome service visibility settings.
+
+Signature:
+
+```typescript
+chromeless?: boolean;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.app.md b/docs/development/core/public/kibana-plugin-public.app.md
index acf07cbf62e91..faea94c467726 100644
--- a/docs/development/core/public/kibana-plugin-public.app.md
+++ b/docs/development/core/public/kibana-plugin-public.app.md
@@ -1,22 +1,22 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [App](./kibana-plugin-public.app.md)
-
-## App interface
-
-Extension of [common app properties](./kibana-plugin-public.appbase.md) with the mount function.
-
-Signature:
-
-```typescript
-export interface App extends AppBase
-```
-
-## Properties
-
-| Property | Type | Description |
-| --- | --- | --- |
-| [appRoute](./kibana-plugin-public.app.approute.md) | string
| Override the application's routing path from /app/${id}
. Must be unique across registered applications. Should not include the base path from HTTP. |
-| [chromeless](./kibana-plugin-public.app.chromeless.md) | boolean
| Hide the UI chrome when the application is mounted. Defaults to false
. Takes precedence over chrome service visibility settings. |
-| [mount](./kibana-plugin-public.app.mount.md) | AppMount | AppMountDeprecated
| A mount function called when the user navigates to this app's route. May have signature of [AppMount](./kibana-plugin-public.appmount.md) or [AppMountDeprecated](./kibana-plugin-public.appmountdeprecated.md). |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [App](./kibana-plugin-public.app.md)
+
+## App interface
+
+Extension of [common app properties](./kibana-plugin-public.appbase.md) with the mount function.
+
+Signature:
+
+```typescript
+export interface App extends AppBase
+```
+
+## Properties
+
+| Property | Type | Description |
+| --- | --- | --- |
+| [appRoute](./kibana-plugin-public.app.approute.md) | string
| Override the application's routing path from /app/${id}
. Must be unique across registered applications. Should not include the base path from HTTP. |
+| [chromeless](./kibana-plugin-public.app.chromeless.md) | boolean
| Hide the UI chrome when the application is mounted. Defaults to false
. Takes precedence over chrome service visibility settings. |
+| [mount](./kibana-plugin-public.app.mount.md) | AppMount | AppMountDeprecated
| A mount function called when the user navigates to this app's route. May have signature of [AppMount](./kibana-plugin-public.appmount.md) or [AppMountDeprecated](./kibana-plugin-public.appmountdeprecated.md). |
+
diff --git a/docs/development/core/public/kibana-plugin-public.app.mount.md b/docs/development/core/public/kibana-plugin-public.app.mount.md
index 151fb7baeb138..2af5f0277759a 100644
--- a/docs/development/core/public/kibana-plugin-public.app.mount.md
+++ b/docs/development/core/public/kibana-plugin-public.app.mount.md
@@ -1,18 +1,18 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [App](./kibana-plugin-public.app.md) > [mount](./kibana-plugin-public.app.mount.md)
-
-## App.mount property
-
-A mount function called when the user navigates to this app's route. May have signature of [AppMount](./kibana-plugin-public.appmount.md) or [AppMountDeprecated](./kibana-plugin-public.appmountdeprecated.md).
-
-Signature:
-
-```typescript
-mount: AppMount | AppMountDeprecated;
-```
-
-## Remarks
-
-When function has two arguments, it will be called with a [context](./kibana-plugin-public.appmountcontext.md) as the first argument. This behavior is \*\*deprecated\*\*, and consumers should instead use [CoreSetup.getStartServices()](./kibana-plugin-public.coresetup.getstartservices.md).
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [App](./kibana-plugin-public.app.md) > [mount](./kibana-plugin-public.app.mount.md)
+
+## App.mount property
+
+A mount function called when the user navigates to this app's route. May have signature of [AppMount](./kibana-plugin-public.appmount.md) or [AppMountDeprecated](./kibana-plugin-public.appmountdeprecated.md).
+
+Signature:
+
+```typescript
+mount: AppMount | AppMountDeprecated;
+```
+
+## Remarks
+
+When function has two arguments, it will be called with a [context](./kibana-plugin-public.appmountcontext.md) as the first argument. This behavior is \*\*deprecated\*\*, and consumers should instead use [CoreSetup.getStartServices()](./kibana-plugin-public.coresetup.getstartservices.md).
+
diff --git a/docs/development/core/public/kibana-plugin-public.appbase.capabilities.md b/docs/development/core/public/kibana-plugin-public.appbase.capabilities.md
index 450972e41bb29..4aaeaaf00f25b 100644
--- a/docs/development/core/public/kibana-plugin-public.appbase.capabilities.md
+++ b/docs/development/core/public/kibana-plugin-public.appbase.capabilities.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppBase](./kibana-plugin-public.appbase.md) > [capabilities](./kibana-plugin-public.appbase.capabilities.md)
-
-## AppBase.capabilities property
-
-Custom capabilities defined by the app.
-
-Signature:
-
-```typescript
-capabilities?: Partial;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppBase](./kibana-plugin-public.appbase.md) > [capabilities](./kibana-plugin-public.appbase.capabilities.md)
+
+## AppBase.capabilities property
+
+Custom capabilities defined by the app.
+
+Signature:
+
+```typescript
+capabilities?: Partial;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.appbase.category.md b/docs/development/core/public/kibana-plugin-public.appbase.category.md
index 215ebbbd0e186..d3c6e0acf5e69 100644
--- a/docs/development/core/public/kibana-plugin-public.appbase.category.md
+++ b/docs/development/core/public/kibana-plugin-public.appbase.category.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppBase](./kibana-plugin-public.appbase.md) > [category](./kibana-plugin-public.appbase.category.md)
-
-## AppBase.category property
-
-The category definition of the product See [AppCategory](./kibana-plugin-public.appcategory.md) See DEFAULT\_APP\_CATEGORIES for more reference
-
-Signature:
-
-```typescript
-category?: AppCategory;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppBase](./kibana-plugin-public.appbase.md) > [category](./kibana-plugin-public.appbase.category.md)
+
+## AppBase.category property
+
+The category definition of the product See [AppCategory](./kibana-plugin-public.appcategory.md) See DEFAULT\_APP\_CATEGORIES for more reference
+
+Signature:
+
+```typescript
+category?: AppCategory;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.appbase.chromeless.md b/docs/development/core/public/kibana-plugin-public.appbase.chromeless.md
index ddbf9aafbd28a..8763a25541199 100644
--- a/docs/development/core/public/kibana-plugin-public.appbase.chromeless.md
+++ b/docs/development/core/public/kibana-plugin-public.appbase.chromeless.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppBase](./kibana-plugin-public.appbase.md) > [chromeless](./kibana-plugin-public.appbase.chromeless.md)
-
-## AppBase.chromeless property
-
-Hide the UI chrome when the application is mounted. Defaults to `false`. Takes precedence over chrome service visibility settings.
-
-Signature:
-
-```typescript
-chromeless?: boolean;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppBase](./kibana-plugin-public.appbase.md) > [chromeless](./kibana-plugin-public.appbase.chromeless.md)
+
+## AppBase.chromeless property
+
+Hide the UI chrome when the application is mounted. Defaults to `false`. Takes precedence over chrome service visibility settings.
+
+Signature:
+
+```typescript
+chromeless?: boolean;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.appbase.euiicontype.md b/docs/development/core/public/kibana-plugin-public.appbase.euiicontype.md
index 99c7e852ff905..18ef718800772 100644
--- a/docs/development/core/public/kibana-plugin-public.appbase.euiicontype.md
+++ b/docs/development/core/public/kibana-plugin-public.appbase.euiicontype.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppBase](./kibana-plugin-public.appbase.md) > [euiIconType](./kibana-plugin-public.appbase.euiicontype.md)
-
-## AppBase.euiIconType property
-
-A EUI iconType that will be used for the app's icon. This icon takes precendence over the `icon` property.
-
-Signature:
-
-```typescript
-euiIconType?: string;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppBase](./kibana-plugin-public.appbase.md) > [euiIconType](./kibana-plugin-public.appbase.euiicontype.md)
+
+## AppBase.euiIconType property
+
+A EUI iconType that will be used for the app's icon. This icon takes precendence over the `icon` property.
+
+Signature:
+
+```typescript
+euiIconType?: string;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.appbase.icon.md b/docs/development/core/public/kibana-plugin-public.appbase.icon.md
index d94d0897bc5b7..0bf6eb22acf9d 100644
--- a/docs/development/core/public/kibana-plugin-public.appbase.icon.md
+++ b/docs/development/core/public/kibana-plugin-public.appbase.icon.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppBase](./kibana-plugin-public.appbase.md) > [icon](./kibana-plugin-public.appbase.icon.md)
-
-## AppBase.icon property
-
-A URL to an image file used as an icon. Used as a fallback if `euiIconType` is not provided.
-
-Signature:
-
-```typescript
-icon?: string;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppBase](./kibana-plugin-public.appbase.md) > [icon](./kibana-plugin-public.appbase.icon.md)
+
+## AppBase.icon property
+
+A URL to an image file used as an icon. Used as a fallback if `euiIconType` is not provided.
+
+Signature:
+
+```typescript
+icon?: string;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.appbase.id.md b/docs/development/core/public/kibana-plugin-public.appbase.id.md
index 89dd32d296104..4c3f471a6155c 100644
--- a/docs/development/core/public/kibana-plugin-public.appbase.id.md
+++ b/docs/development/core/public/kibana-plugin-public.appbase.id.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppBase](./kibana-plugin-public.appbase.md) > [id](./kibana-plugin-public.appbase.id.md)
-
-## AppBase.id property
-
-The unique identifier of the application
-
-Signature:
-
-```typescript
-id: string;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppBase](./kibana-plugin-public.appbase.md) > [id](./kibana-plugin-public.appbase.id.md)
+
+## AppBase.id property
+
+The unique identifier of the application
+
+Signature:
+
+```typescript
+id: string;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.appbase.md b/docs/development/core/public/kibana-plugin-public.appbase.md
index 6f547450b6a12..194ba28e416bf 100644
--- a/docs/development/core/public/kibana-plugin-public.appbase.md
+++ b/docs/development/core/public/kibana-plugin-public.appbase.md
@@ -1,30 +1,30 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppBase](./kibana-plugin-public.appbase.md)
-
-## AppBase interface
-
-
-Signature:
-
-```typescript
-export interface AppBase
-```
-
-## Properties
-
-| Property | Type | Description |
-| --- | --- | --- |
-| [capabilities](./kibana-plugin-public.appbase.capabilities.md) | Partial<Capabilities>
| Custom capabilities defined by the app. |
-| [category](./kibana-plugin-public.appbase.category.md) | AppCategory
| The category definition of the product See [AppCategory](./kibana-plugin-public.appcategory.md) See DEFAULT\_APP\_CATEGORIES for more reference |
-| [chromeless](./kibana-plugin-public.appbase.chromeless.md) | boolean
| Hide the UI chrome when the application is mounted. Defaults to false
. Takes precedence over chrome service visibility settings. |
-| [euiIconType](./kibana-plugin-public.appbase.euiicontype.md) | string
| A EUI iconType that will be used for the app's icon. This icon takes precendence over the icon
property. |
-| [icon](./kibana-plugin-public.appbase.icon.md) | string
| A URL to an image file used as an icon. Used as a fallback if euiIconType
is not provided. |
-| [id](./kibana-plugin-public.appbase.id.md) | string
| The unique identifier of the application |
-| [navLinkStatus](./kibana-plugin-public.appbase.navlinkstatus.md) | AppNavLinkStatus
| The initial status of the application's navLink. Defaulting to visible
if status
is accessible
and hidden
if status is inaccessible
See [AppNavLinkStatus](./kibana-plugin-public.appnavlinkstatus.md) |
-| [order](./kibana-plugin-public.appbase.order.md) | number
| An ordinal used to sort nav links relative to one another for display. |
-| [status](./kibana-plugin-public.appbase.status.md) | AppStatus
| The initial status of the application. Defaulting to accessible
|
-| [title](./kibana-plugin-public.appbase.title.md) | string
| The title of the application. |
-| [tooltip](./kibana-plugin-public.appbase.tooltip.md) | string
| A tooltip shown when hovering over app link. |
-| [updater$](./kibana-plugin-public.appbase.updater_.md) | Observable<AppUpdater>
| An [AppUpdater](./kibana-plugin-public.appupdater.md) observable that can be used to update the application [AppUpdatableFields](./kibana-plugin-public.appupdatablefields.md) at runtime. |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppBase](./kibana-plugin-public.appbase.md)
+
+## AppBase interface
+
+
+Signature:
+
+```typescript
+export interface AppBase
+```
+
+## Properties
+
+| Property | Type | Description |
+| --- | --- | --- |
+| [capabilities](./kibana-plugin-public.appbase.capabilities.md) | Partial<Capabilities>
| Custom capabilities defined by the app. |
+| [category](./kibana-plugin-public.appbase.category.md) | AppCategory
| The category definition of the product See [AppCategory](./kibana-plugin-public.appcategory.md) See DEFAULT\_APP\_CATEGORIES for more reference |
+| [chromeless](./kibana-plugin-public.appbase.chromeless.md) | boolean
| Hide the UI chrome when the application is mounted. Defaults to false
. Takes precedence over chrome service visibility settings. |
+| [euiIconType](./kibana-plugin-public.appbase.euiicontype.md) | string
| A EUI iconType that will be used for the app's icon. This icon takes precendence over the icon
property. |
+| [icon](./kibana-plugin-public.appbase.icon.md) | string
| A URL to an image file used as an icon. Used as a fallback if euiIconType
is not provided. |
+| [id](./kibana-plugin-public.appbase.id.md) | string
| The unique identifier of the application |
+| [navLinkStatus](./kibana-plugin-public.appbase.navlinkstatus.md) | AppNavLinkStatus
| The initial status of the application's navLink. Defaulting to visible
if status
is accessible
and hidden
if status is inaccessible
See [AppNavLinkStatus](./kibana-plugin-public.appnavlinkstatus.md) |
+| [order](./kibana-plugin-public.appbase.order.md) | number
| An ordinal used to sort nav links relative to one another for display. |
+| [status](./kibana-plugin-public.appbase.status.md) | AppStatus
| The initial status of the application. Defaulting to accessible
|
+| [title](./kibana-plugin-public.appbase.title.md) | string
| The title of the application. |
+| [tooltip](./kibana-plugin-public.appbase.tooltip.md) | string
| A tooltip shown when hovering over app link. |
+| [updater$](./kibana-plugin-public.appbase.updater_.md) | Observable<AppUpdater>
| An [AppUpdater](./kibana-plugin-public.appupdater.md) observable that can be used to update the application [AppUpdatableFields](./kibana-plugin-public.appupdatablefields.md) at runtime. |
+
diff --git a/docs/development/core/public/kibana-plugin-public.appbase.navlinkstatus.md b/docs/development/core/public/kibana-plugin-public.appbase.navlinkstatus.md
index d6744c3e75756..90a3e6dd08951 100644
--- a/docs/development/core/public/kibana-plugin-public.appbase.navlinkstatus.md
+++ b/docs/development/core/public/kibana-plugin-public.appbase.navlinkstatus.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppBase](./kibana-plugin-public.appbase.md) > [navLinkStatus](./kibana-plugin-public.appbase.navlinkstatus.md)
-
-## AppBase.navLinkStatus property
-
-The initial status of the application's navLink. Defaulting to `visible` if `status` is `accessible` and `hidden` if status is `inaccessible` See [AppNavLinkStatus](./kibana-plugin-public.appnavlinkstatus.md)
-
-Signature:
-
-```typescript
-navLinkStatus?: AppNavLinkStatus;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppBase](./kibana-plugin-public.appbase.md) > [navLinkStatus](./kibana-plugin-public.appbase.navlinkstatus.md)
+
+## AppBase.navLinkStatus property
+
+The initial status of the application's navLink. Defaulting to `visible` if `status` is `accessible` and `hidden` if status is `inaccessible` See [AppNavLinkStatus](./kibana-plugin-public.appnavlinkstatus.md)
+
+Signature:
+
+```typescript
+navLinkStatus?: AppNavLinkStatus;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.appbase.order.md b/docs/development/core/public/kibana-plugin-public.appbase.order.md
index dc0ea14a7b860..312e327e54f9c 100644
--- a/docs/development/core/public/kibana-plugin-public.appbase.order.md
+++ b/docs/development/core/public/kibana-plugin-public.appbase.order.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppBase](./kibana-plugin-public.appbase.md) > [order](./kibana-plugin-public.appbase.order.md)
-
-## AppBase.order property
-
-An ordinal used to sort nav links relative to one another for display.
-
-Signature:
-
-```typescript
-order?: number;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppBase](./kibana-plugin-public.appbase.md) > [order](./kibana-plugin-public.appbase.order.md)
+
+## AppBase.order property
+
+An ordinal used to sort nav links relative to one another for display.
+
+Signature:
+
+```typescript
+order?: number;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.appbase.status.md b/docs/development/core/public/kibana-plugin-public.appbase.status.md
index a5fbadbeea1ff..eee3f9bdfa78f 100644
--- a/docs/development/core/public/kibana-plugin-public.appbase.status.md
+++ b/docs/development/core/public/kibana-plugin-public.appbase.status.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppBase](./kibana-plugin-public.appbase.md) > [status](./kibana-plugin-public.appbase.status.md)
-
-## AppBase.status property
-
-The initial status of the application. Defaulting to `accessible`
-
-Signature:
-
-```typescript
-status?: AppStatus;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppBase](./kibana-plugin-public.appbase.md) > [status](./kibana-plugin-public.appbase.status.md)
+
+## AppBase.status property
+
+The initial status of the application. Defaulting to `accessible`
+
+Signature:
+
+```typescript
+status?: AppStatus;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.appbase.title.md b/docs/development/core/public/kibana-plugin-public.appbase.title.md
index 4d0fb0c18e814..bb9cbb7b53e84 100644
--- a/docs/development/core/public/kibana-plugin-public.appbase.title.md
+++ b/docs/development/core/public/kibana-plugin-public.appbase.title.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppBase](./kibana-plugin-public.appbase.md) > [title](./kibana-plugin-public.appbase.title.md)
-
-## AppBase.title property
-
-The title of the application.
-
-Signature:
-
-```typescript
-title: string;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppBase](./kibana-plugin-public.appbase.md) > [title](./kibana-plugin-public.appbase.title.md)
+
+## AppBase.title property
+
+The title of the application.
+
+Signature:
+
+```typescript
+title: string;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.appbase.tooltip.md b/docs/development/core/public/kibana-plugin-public.appbase.tooltip.md
index 85921a5a321dd..0d3bb59870c42 100644
--- a/docs/development/core/public/kibana-plugin-public.appbase.tooltip.md
+++ b/docs/development/core/public/kibana-plugin-public.appbase.tooltip.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppBase](./kibana-plugin-public.appbase.md) > [tooltip](./kibana-plugin-public.appbase.tooltip.md)
-
-## AppBase.tooltip property
-
-A tooltip shown when hovering over app link.
-
-Signature:
-
-```typescript
-tooltip?: string;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppBase](./kibana-plugin-public.appbase.md) > [tooltip](./kibana-plugin-public.appbase.tooltip.md)
+
+## AppBase.tooltip property
+
+A tooltip shown when hovering over app link.
+
+Signature:
+
+```typescript
+tooltip?: string;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.appbase.updater_.md b/docs/development/core/public/kibana-plugin-public.appbase.updater_.md
index 3edd357383449..a15a1666a4e00 100644
--- a/docs/development/core/public/kibana-plugin-public.appbase.updater_.md
+++ b/docs/development/core/public/kibana-plugin-public.appbase.updater_.md
@@ -1,44 +1,44 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppBase](./kibana-plugin-public.appbase.md) > [updater$](./kibana-plugin-public.appbase.updater_.md)
-
-## AppBase.updater$ property
-
-An [AppUpdater](./kibana-plugin-public.appupdater.md) observable that can be used to update the application [AppUpdatableFields](./kibana-plugin-public.appupdatablefields.md) at runtime.
-
-Signature:
-
-```typescript
-updater$?: Observable;
-```
-
-## Example
-
-How to update an application navLink at runtime
-
-```ts
-// inside your plugin's setup function
-export class MyPlugin implements Plugin {
- private appUpdater = new BehaviorSubject(() => ({}));
-
- setup({ application }) {
- application.register({
- id: 'my-app',
- title: 'My App',
- updater$: this.appUpdater,
- async mount(params) {
- const { renderApp } = await import('./application');
- return renderApp(params);
- },
- });
- }
-
- start() {
- // later, when the navlink needs to be updated
- appUpdater.next(() => {
- navLinkStatus: AppNavLinkStatus.disabled,
- })
- }
-
-```
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppBase](./kibana-plugin-public.appbase.md) > [updater$](./kibana-plugin-public.appbase.updater_.md)
+
+## AppBase.updater$ property
+
+An [AppUpdater](./kibana-plugin-public.appupdater.md) observable that can be used to update the application [AppUpdatableFields](./kibana-plugin-public.appupdatablefields.md) at runtime.
+
+Signature:
+
+```typescript
+updater$?: Observable;
+```
+
+## Example
+
+How to update an application navLink at runtime
+
+```ts
+// inside your plugin's setup function
+export class MyPlugin implements Plugin {
+ private appUpdater = new BehaviorSubject(() => ({}));
+
+ setup({ application }) {
+ application.register({
+ id: 'my-app',
+ title: 'My App',
+ updater$: this.appUpdater,
+ async mount(params) {
+ const { renderApp } = await import('./application');
+ return renderApp(params);
+ },
+ });
+ }
+
+ start() {
+ // later, when the navlink needs to be updated
+ appUpdater.next(() => {
+ navLinkStatus: AppNavLinkStatus.disabled,
+ })
+ }
+
+```
+
diff --git a/docs/development/core/public/kibana-plugin-public.appcategory.arialabel.md b/docs/development/core/public/kibana-plugin-public.appcategory.arialabel.md
index 0245b548ae74f..813174001bb03 100644
--- a/docs/development/core/public/kibana-plugin-public.appcategory.arialabel.md
+++ b/docs/development/core/public/kibana-plugin-public.appcategory.arialabel.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppCategory](./kibana-plugin-public.appcategory.md) > [ariaLabel](./kibana-plugin-public.appcategory.arialabel.md)
-
-## AppCategory.ariaLabel property
-
-If the visual label isn't appropriate for screen readers, can override it here
-
-Signature:
-
-```typescript
-ariaLabel?: string;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppCategory](./kibana-plugin-public.appcategory.md) > [ariaLabel](./kibana-plugin-public.appcategory.arialabel.md)
+
+## AppCategory.ariaLabel property
+
+If the visual label isn't appropriate for screen readers, can override it here
+
+Signature:
+
+```typescript
+ariaLabel?: string;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.appcategory.euiicontype.md b/docs/development/core/public/kibana-plugin-public.appcategory.euiicontype.md
index 90133735a0082..652bcb9e05edf 100644
--- a/docs/development/core/public/kibana-plugin-public.appcategory.euiicontype.md
+++ b/docs/development/core/public/kibana-plugin-public.appcategory.euiicontype.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppCategory](./kibana-plugin-public.appcategory.md) > [euiIconType](./kibana-plugin-public.appcategory.euiicontype.md)
-
-## AppCategory.euiIconType property
-
-Define an icon to be used for the category If the category is only 1 item, and no icon is defined, will default to the product icon Defaults to initials if no icon is defined
-
-Signature:
-
-```typescript
-euiIconType?: string;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppCategory](./kibana-plugin-public.appcategory.md) > [euiIconType](./kibana-plugin-public.appcategory.euiicontype.md)
+
+## AppCategory.euiIconType property
+
+Define an icon to be used for the category If the category is only 1 item, and no icon is defined, will default to the product icon Defaults to initials if no icon is defined
+
+Signature:
+
+```typescript
+euiIconType?: string;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.appcategory.label.md b/docs/development/core/public/kibana-plugin-public.appcategory.label.md
index 171b1627f9ef8..692c032b01a69 100644
--- a/docs/development/core/public/kibana-plugin-public.appcategory.label.md
+++ b/docs/development/core/public/kibana-plugin-public.appcategory.label.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppCategory](./kibana-plugin-public.appcategory.md) > [label](./kibana-plugin-public.appcategory.label.md)
-
-## AppCategory.label property
-
-Label used for cateogry name. Also used as aria-label if one isn't set.
-
-Signature:
-
-```typescript
-label: string;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppCategory](./kibana-plugin-public.appcategory.md) > [label](./kibana-plugin-public.appcategory.label.md)
+
+## AppCategory.label property
+
+Label used for cateogry name. Also used as aria-label if one isn't set.
+
+Signature:
+
+```typescript
+label: string;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.appcategory.md b/docs/development/core/public/kibana-plugin-public.appcategory.md
index f1085e7325272..8c40113a8c438 100644
--- a/docs/development/core/public/kibana-plugin-public.appcategory.md
+++ b/docs/development/core/public/kibana-plugin-public.appcategory.md
@@ -1,23 +1,23 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppCategory](./kibana-plugin-public.appcategory.md)
-
-## AppCategory interface
-
-A category definition for nav links to know where to sort them in the left hand nav
-
-Signature:
-
-```typescript
-export interface AppCategory
-```
-
-## Properties
-
-| Property | Type | Description |
-| --- | --- | --- |
-| [ariaLabel](./kibana-plugin-public.appcategory.arialabel.md) | string
| If the visual label isn't appropriate for screen readers, can override it here |
-| [euiIconType](./kibana-plugin-public.appcategory.euiicontype.md) | string
| Define an icon to be used for the category If the category is only 1 item, and no icon is defined, will default to the product icon Defaults to initials if no icon is defined |
-| [label](./kibana-plugin-public.appcategory.label.md) | string
| Label used for cateogry name. Also used as aria-label if one isn't set. |
-| [order](./kibana-plugin-public.appcategory.order.md) | number
| The order that categories will be sorted in Prefer large steps between categories to allow for further editing (Default categories are in steps of 1000) |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppCategory](./kibana-plugin-public.appcategory.md)
+
+## AppCategory interface
+
+A category definition for nav links to know where to sort them in the left hand nav
+
+Signature:
+
+```typescript
+export interface AppCategory
+```
+
+## Properties
+
+| Property | Type | Description |
+| --- | --- | --- |
+| [ariaLabel](./kibana-plugin-public.appcategory.arialabel.md) | string
| If the visual label isn't appropriate for screen readers, can override it here |
+| [euiIconType](./kibana-plugin-public.appcategory.euiicontype.md) | string
| Define an icon to be used for the category If the category is only 1 item, and no icon is defined, will default to the product icon Defaults to initials if no icon is defined |
+| [label](./kibana-plugin-public.appcategory.label.md) | string
| Label used for cateogry name. Also used as aria-label if one isn't set. |
+| [order](./kibana-plugin-public.appcategory.order.md) | number
| The order that categories will be sorted in Prefer large steps between categories to allow for further editing (Default categories are in steps of 1000) |
+
diff --git a/docs/development/core/public/kibana-plugin-public.appcategory.order.md b/docs/development/core/public/kibana-plugin-public.appcategory.order.md
index ef17ac04b78d6..170d3d9559e93 100644
--- a/docs/development/core/public/kibana-plugin-public.appcategory.order.md
+++ b/docs/development/core/public/kibana-plugin-public.appcategory.order.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppCategory](./kibana-plugin-public.appcategory.md) > [order](./kibana-plugin-public.appcategory.order.md)
-
-## AppCategory.order property
-
-The order that categories will be sorted in Prefer large steps between categories to allow for further editing (Default categories are in steps of 1000)
-
-Signature:
-
-```typescript
-order?: number;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppCategory](./kibana-plugin-public.appcategory.md) > [order](./kibana-plugin-public.appcategory.order.md)
+
+## AppCategory.order property
+
+The order that categories will be sorted in Prefer large steps between categories to allow for further editing (Default categories are in steps of 1000)
+
+Signature:
+
+```typescript
+order?: number;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.appleaveaction.md b/docs/development/core/public/kibana-plugin-public.appleaveaction.md
index ae56205f5e45c..e81b925feaee8 100644
--- a/docs/development/core/public/kibana-plugin-public.appleaveaction.md
+++ b/docs/development/core/public/kibana-plugin-public.appleaveaction.md
@@ -1,15 +1,15 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppLeaveAction](./kibana-plugin-public.appleaveaction.md)
-
-## AppLeaveAction type
-
-Possible actions to return from a [AppLeaveHandler](./kibana-plugin-public.appleavehandler.md)
-
-See [AppLeaveConfirmAction](./kibana-plugin-public.appleaveconfirmaction.md) and [AppLeaveDefaultAction](./kibana-plugin-public.appleavedefaultaction.md)
-
-Signature:
-
-```typescript
-export declare type AppLeaveAction = AppLeaveDefaultAction | AppLeaveConfirmAction;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppLeaveAction](./kibana-plugin-public.appleaveaction.md)
+
+## AppLeaveAction type
+
+Possible actions to return from a [AppLeaveHandler](./kibana-plugin-public.appleavehandler.md)
+
+See [AppLeaveConfirmAction](./kibana-plugin-public.appleaveconfirmaction.md) and [AppLeaveDefaultAction](./kibana-plugin-public.appleavedefaultaction.md)
+
+Signature:
+
+```typescript
+export declare type AppLeaveAction = AppLeaveDefaultAction | AppLeaveConfirmAction;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.appleaveactiontype.md b/docs/development/core/public/kibana-plugin-public.appleaveactiontype.md
index 482b2e489b33e..3ee49d60eb1c7 100644
--- a/docs/development/core/public/kibana-plugin-public.appleaveactiontype.md
+++ b/docs/development/core/public/kibana-plugin-public.appleaveactiontype.md
@@ -1,21 +1,21 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppLeaveActionType](./kibana-plugin-public.appleaveactiontype.md)
-
-## AppLeaveActionType enum
-
-Possible type of actions on application leave.
-
-Signature:
-
-```typescript
-export declare enum AppLeaveActionType
-```
-
-## Enumeration Members
-
-| Member | Value | Description |
-| --- | --- | --- |
-| confirm | "confirm"
| |
-| default | "default"
| |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppLeaveActionType](./kibana-plugin-public.appleaveactiontype.md)
+
+## AppLeaveActionType enum
+
+Possible type of actions on application leave.
+
+Signature:
+
+```typescript
+export declare enum AppLeaveActionType
+```
+
+## Enumeration Members
+
+| Member | Value | Description |
+| --- | --- | --- |
+| confirm | "confirm"
| |
+| default | "default"
| |
+
diff --git a/docs/development/core/public/kibana-plugin-public.appleaveconfirmaction.md b/docs/development/core/public/kibana-plugin-public.appleaveconfirmaction.md
index 4cd99dd2a3fb3..ea3c0dbba7ec4 100644
--- a/docs/development/core/public/kibana-plugin-public.appleaveconfirmaction.md
+++ b/docs/development/core/public/kibana-plugin-public.appleaveconfirmaction.md
@@ -1,24 +1,24 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppLeaveConfirmAction](./kibana-plugin-public.appleaveconfirmaction.md)
-
-## AppLeaveConfirmAction interface
-
-Action to return from a [AppLeaveHandler](./kibana-plugin-public.appleavehandler.md) to show a confirmation message when trying to leave an application.
-
-See
-
-Signature:
-
-```typescript
-export interface AppLeaveConfirmAction
-```
-
-## Properties
-
-| Property | Type | Description |
-| --- | --- | --- |
-| [text](./kibana-plugin-public.appleaveconfirmaction.text.md) | string
| |
-| [title](./kibana-plugin-public.appleaveconfirmaction.title.md) | string
| |
-| [type](./kibana-plugin-public.appleaveconfirmaction.type.md) | AppLeaveActionType.confirm
| |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppLeaveConfirmAction](./kibana-plugin-public.appleaveconfirmaction.md)
+
+## AppLeaveConfirmAction interface
+
+Action to return from a [AppLeaveHandler](./kibana-plugin-public.appleavehandler.md) to show a confirmation message when trying to leave an application.
+
+See
+
+Signature:
+
+```typescript
+export interface AppLeaveConfirmAction
+```
+
+## Properties
+
+| Property | Type | Description |
+| --- | --- | --- |
+| [text](./kibana-plugin-public.appleaveconfirmaction.text.md) | string
| |
+| [title](./kibana-plugin-public.appleaveconfirmaction.title.md) | string
| |
+| [type](./kibana-plugin-public.appleaveconfirmaction.type.md) | AppLeaveActionType.confirm
| |
+
diff --git a/docs/development/core/public/kibana-plugin-public.appleaveconfirmaction.text.md b/docs/development/core/public/kibana-plugin-public.appleaveconfirmaction.text.md
index dbbd11c6f71f8..6b572b6bd9845 100644
--- a/docs/development/core/public/kibana-plugin-public.appleaveconfirmaction.text.md
+++ b/docs/development/core/public/kibana-plugin-public.appleaveconfirmaction.text.md
@@ -1,11 +1,11 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppLeaveConfirmAction](./kibana-plugin-public.appleaveconfirmaction.md) > [text](./kibana-plugin-public.appleaveconfirmaction.text.md)
-
-## AppLeaveConfirmAction.text property
-
-Signature:
-
-```typescript
-text: string;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppLeaveConfirmAction](./kibana-plugin-public.appleaveconfirmaction.md) > [text](./kibana-plugin-public.appleaveconfirmaction.text.md)
+
+## AppLeaveConfirmAction.text property
+
+Signature:
+
+```typescript
+text: string;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.appleaveconfirmaction.title.md b/docs/development/core/public/kibana-plugin-public.appleaveconfirmaction.title.md
index 684ef384a37c3..47b15dd32efcf 100644
--- a/docs/development/core/public/kibana-plugin-public.appleaveconfirmaction.title.md
+++ b/docs/development/core/public/kibana-plugin-public.appleaveconfirmaction.title.md
@@ -1,11 +1,11 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppLeaveConfirmAction](./kibana-plugin-public.appleaveconfirmaction.md) > [title](./kibana-plugin-public.appleaveconfirmaction.title.md)
-
-## AppLeaveConfirmAction.title property
-
-Signature:
-
-```typescript
-title?: string;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppLeaveConfirmAction](./kibana-plugin-public.appleaveconfirmaction.md) > [title](./kibana-plugin-public.appleaveconfirmaction.title.md)
+
+## AppLeaveConfirmAction.title property
+
+Signature:
+
+```typescript
+title?: string;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.appleaveconfirmaction.type.md b/docs/development/core/public/kibana-plugin-public.appleaveconfirmaction.type.md
index 926cecf893cc8..e8e34c446ff53 100644
--- a/docs/development/core/public/kibana-plugin-public.appleaveconfirmaction.type.md
+++ b/docs/development/core/public/kibana-plugin-public.appleaveconfirmaction.type.md
@@ -1,11 +1,11 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppLeaveConfirmAction](./kibana-plugin-public.appleaveconfirmaction.md) > [type](./kibana-plugin-public.appleaveconfirmaction.type.md)
-
-## AppLeaveConfirmAction.type property
-
-Signature:
-
-```typescript
-type: AppLeaveActionType.confirm;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppLeaveConfirmAction](./kibana-plugin-public.appleaveconfirmaction.md) > [type](./kibana-plugin-public.appleaveconfirmaction.type.md)
+
+## AppLeaveConfirmAction.type property
+
+Signature:
+
+```typescript
+type: AppLeaveActionType.confirm;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.appleavedefaultaction.md b/docs/development/core/public/kibana-plugin-public.appleavedefaultaction.md
index ed2f729a0c648..5682dc88119e2 100644
--- a/docs/development/core/public/kibana-plugin-public.appleavedefaultaction.md
+++ b/docs/development/core/public/kibana-plugin-public.appleavedefaultaction.md
@@ -1,22 +1,22 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppLeaveDefaultAction](./kibana-plugin-public.appleavedefaultaction.md)
-
-## AppLeaveDefaultAction interface
-
-Action to return from a [AppLeaveHandler](./kibana-plugin-public.appleavehandler.md) to execute the default behaviour when leaving the application.
-
-See
-
-Signature:
-
-```typescript
-export interface AppLeaveDefaultAction
-```
-
-## Properties
-
-| Property | Type | Description |
-| --- | --- | --- |
-| [type](./kibana-plugin-public.appleavedefaultaction.type.md) | AppLeaveActionType.default
| |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppLeaveDefaultAction](./kibana-plugin-public.appleavedefaultaction.md)
+
+## AppLeaveDefaultAction interface
+
+Action to return from a [AppLeaveHandler](./kibana-plugin-public.appleavehandler.md) to execute the default behaviour when leaving the application.
+
+See
+
+Signature:
+
+```typescript
+export interface AppLeaveDefaultAction
+```
+
+## Properties
+
+| Property | Type | Description |
+| --- | --- | --- |
+| [type](./kibana-plugin-public.appleavedefaultaction.type.md) | AppLeaveActionType.default
| |
+
diff --git a/docs/development/core/public/kibana-plugin-public.appleavedefaultaction.type.md b/docs/development/core/public/kibana-plugin-public.appleavedefaultaction.type.md
index ee12393121a5a..8db979b1bba5c 100644
--- a/docs/development/core/public/kibana-plugin-public.appleavedefaultaction.type.md
+++ b/docs/development/core/public/kibana-plugin-public.appleavedefaultaction.type.md
@@ -1,11 +1,11 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppLeaveDefaultAction](./kibana-plugin-public.appleavedefaultaction.md) > [type](./kibana-plugin-public.appleavedefaultaction.type.md)
-
-## AppLeaveDefaultAction.type property
-
-Signature:
-
-```typescript
-type: AppLeaveActionType.default;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppLeaveDefaultAction](./kibana-plugin-public.appleavedefaultaction.md) > [type](./kibana-plugin-public.appleavedefaultaction.type.md)
+
+## AppLeaveDefaultAction.type property
+
+Signature:
+
+```typescript
+type: AppLeaveActionType.default;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.appleavehandler.md b/docs/development/core/public/kibana-plugin-public.appleavehandler.md
index e879227961bc6..8f4bad65a6cd6 100644
--- a/docs/development/core/public/kibana-plugin-public.appleavehandler.md
+++ b/docs/development/core/public/kibana-plugin-public.appleavehandler.md
@@ -1,15 +1,15 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppLeaveHandler](./kibana-plugin-public.appleavehandler.md)
-
-## AppLeaveHandler type
-
-A handler that will be executed before leaving the application, either when going to another application or when closing the browser tab or manually changing the url. Should return `confirm` to to prompt a message to the user before leaving the page, or `default` to keep the default behavior (doing nothing).
-
-See [AppMountParameters](./kibana-plugin-public.appmountparameters.md) for detailed usage examples.
-
-Signature:
-
-```typescript
-export declare type AppLeaveHandler = (factory: AppLeaveActionFactory) => AppLeaveAction;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppLeaveHandler](./kibana-plugin-public.appleavehandler.md)
+
+## AppLeaveHandler type
+
+A handler that will be executed before leaving the application, either when going to another application or when closing the browser tab or manually changing the url. Should return `confirm` to to prompt a message to the user before leaving the page, or `default` to keep the default behavior (doing nothing).
+
+See [AppMountParameters](./kibana-plugin-public.appmountparameters.md) for detailed usage examples.
+
+Signature:
+
+```typescript
+export declare type AppLeaveHandler = (factory: AppLeaveActionFactory) => AppLeaveAction;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.applicationsetup.md b/docs/development/core/public/kibana-plugin-public.applicationsetup.md
index cf9bc5189af40..7497752ac386e 100644
--- a/docs/development/core/public/kibana-plugin-public.applicationsetup.md
+++ b/docs/development/core/public/kibana-plugin-public.applicationsetup.md
@@ -1,21 +1,21 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ApplicationSetup](./kibana-plugin-public.applicationsetup.md)
-
-## ApplicationSetup interface
-
-
-Signature:
-
-```typescript
-export interface ApplicationSetup
-```
-
-## Methods
-
-| Method | Description |
-| --- | --- |
-| [register(app)](./kibana-plugin-public.applicationsetup.register.md) | Register an mountable application to the system. |
-| [registerAppUpdater(appUpdater$)](./kibana-plugin-public.applicationsetup.registerappupdater.md) | Register an application updater that can be used to change the [AppUpdatableFields](./kibana-plugin-public.appupdatablefields.md) fields of all applications at runtime.This is meant to be used by plugins that needs to updates the whole list of applications. To only updates a specific application, use the updater$
property of the registered application instead. |
-| [registerMountContext(contextName, provider)](./kibana-plugin-public.applicationsetup.registermountcontext.md) | Register a context provider for application mounting. Will only be available to applications that depend on the plugin that registered this context. Deprecated, use [CoreSetup.getStartServices()](./kibana-plugin-public.coresetup.getstartservices.md). |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ApplicationSetup](./kibana-plugin-public.applicationsetup.md)
+
+## ApplicationSetup interface
+
+
+Signature:
+
+```typescript
+export interface ApplicationSetup
+```
+
+## Methods
+
+| Method | Description |
+| --- | --- |
+| [register(app)](./kibana-plugin-public.applicationsetup.register.md) | Register an mountable application to the system. |
+| [registerAppUpdater(appUpdater$)](./kibana-plugin-public.applicationsetup.registerappupdater.md) | Register an application updater that can be used to change the [AppUpdatableFields](./kibana-plugin-public.appupdatablefields.md) fields of all applications at runtime.This is meant to be used by plugins that needs to updates the whole list of applications. To only updates a specific application, use the updater$
property of the registered application instead. |
+| [registerMountContext(contextName, provider)](./kibana-plugin-public.applicationsetup.registermountcontext.md) | Register a context provider for application mounting. Will only be available to applications that depend on the plugin that registered this context. Deprecated, use [CoreSetup.getStartServices()](./kibana-plugin-public.coresetup.getstartservices.md). |
+
diff --git a/docs/development/core/public/kibana-plugin-public.applicationsetup.register.md b/docs/development/core/public/kibana-plugin-public.applicationsetup.register.md
index b4ccb6a01c600..5c6c7cd252b0a 100644
--- a/docs/development/core/public/kibana-plugin-public.applicationsetup.register.md
+++ b/docs/development/core/public/kibana-plugin-public.applicationsetup.register.md
@@ -1,24 +1,24 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ApplicationSetup](./kibana-plugin-public.applicationsetup.md) > [register](./kibana-plugin-public.applicationsetup.register.md)
-
-## ApplicationSetup.register() method
-
-Register an mountable application to the system.
-
-Signature:
-
-```typescript
-register(app: App): void;
-```
-
-## Parameters
-
-| Parameter | Type | Description |
-| --- | --- | --- |
-| app | App
| an [App](./kibana-plugin-public.app.md) |
-
-Returns:
-
-`void`
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ApplicationSetup](./kibana-plugin-public.applicationsetup.md) > [register](./kibana-plugin-public.applicationsetup.register.md)
+
+## ApplicationSetup.register() method
+
+Register an mountable application to the system.
+
+Signature:
+
+```typescript
+register(app: App): void;
+```
+
+## Parameters
+
+| Parameter | Type | Description |
+| --- | --- | --- |
+| app | App
| an [App](./kibana-plugin-public.app.md) |
+
+Returns:
+
+`void`
+
diff --git a/docs/development/core/public/kibana-plugin-public.applicationsetup.registerappupdater.md b/docs/development/core/public/kibana-plugin-public.applicationsetup.registerappupdater.md
index 39b4f878a3f79..b3a2dcb2b7de1 100644
--- a/docs/development/core/public/kibana-plugin-public.applicationsetup.registerappupdater.md
+++ b/docs/development/core/public/kibana-plugin-public.applicationsetup.registerappupdater.md
@@ -1,47 +1,47 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ApplicationSetup](./kibana-plugin-public.applicationsetup.md) > [registerAppUpdater](./kibana-plugin-public.applicationsetup.registerappupdater.md)
-
-## ApplicationSetup.registerAppUpdater() method
-
-Register an application updater that can be used to change the [AppUpdatableFields](./kibana-plugin-public.appupdatablefields.md) fields of all applications at runtime.
-
-This is meant to be used by plugins that needs to updates the whole list of applications. To only updates a specific application, use the `updater$` property of the registered application instead.
-
-Signature:
-
-```typescript
-registerAppUpdater(appUpdater$: Observable): void;
-```
-
-## Parameters
-
-| Parameter | Type | Description |
-| --- | --- | --- |
-| appUpdater$ | Observable<AppUpdater>
| |
-
-Returns:
-
-`void`
-
-## Example
-
-How to register an application updater that disables some applications:
-
-```ts
-// inside your plugin's setup function
-export class MyPlugin implements Plugin {
- setup({ application }) {
- application.registerAppUpdater(
- new BehaviorSubject(app => {
- if (myPluginApi.shouldDisable(app))
- return {
- status: AppStatus.inaccessible,
- };
- })
- );
- }
-}
-
-```
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ApplicationSetup](./kibana-plugin-public.applicationsetup.md) > [registerAppUpdater](./kibana-plugin-public.applicationsetup.registerappupdater.md)
+
+## ApplicationSetup.registerAppUpdater() method
+
+Register an application updater that can be used to change the [AppUpdatableFields](./kibana-plugin-public.appupdatablefields.md) fields of all applications at runtime.
+
+This is meant to be used by plugins that needs to updates the whole list of applications. To only updates a specific application, use the `updater$` property of the registered application instead.
+
+Signature:
+
+```typescript
+registerAppUpdater(appUpdater$: Observable): void;
+```
+
+## Parameters
+
+| Parameter | Type | Description |
+| --- | --- | --- |
+| appUpdater$ | Observable<AppUpdater>
| |
+
+Returns:
+
+`void`
+
+## Example
+
+How to register an application updater that disables some applications:
+
+```ts
+// inside your plugin's setup function
+export class MyPlugin implements Plugin {
+ setup({ application }) {
+ application.registerAppUpdater(
+ new BehaviorSubject(app => {
+ if (myPluginApi.shouldDisable(app))
+ return {
+ status: AppStatus.inaccessible,
+ };
+ })
+ );
+ }
+}
+
+```
+
diff --git a/docs/development/core/public/kibana-plugin-public.applicationsetup.registermountcontext.md b/docs/development/core/public/kibana-plugin-public.applicationsetup.registermountcontext.md
index 275ba431bc7e7..e1d28bbdb7030 100644
--- a/docs/development/core/public/kibana-plugin-public.applicationsetup.registermountcontext.md
+++ b/docs/development/core/public/kibana-plugin-public.applicationsetup.registermountcontext.md
@@ -1,29 +1,29 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ApplicationSetup](./kibana-plugin-public.applicationsetup.md) > [registerMountContext](./kibana-plugin-public.applicationsetup.registermountcontext.md)
-
-## ApplicationSetup.registerMountContext() method
-
-> Warning: This API is now obsolete.
->
->
-
-Register a context provider for application mounting. Will only be available to applications that depend on the plugin that registered this context. Deprecated, use [CoreSetup.getStartServices()](./kibana-plugin-public.coresetup.getstartservices.md).
-
-Signature:
-
-```typescript
-registerMountContext(contextName: T, provider: IContextProvider): void;
-```
-
-## Parameters
-
-| Parameter | Type | Description |
-| --- | --- | --- |
-| contextName | T
| The key of [AppMountContext](./kibana-plugin-public.appmountcontext.md) this provider's return value should be attached to. |
-| provider | IContextProvider<AppMountDeprecated, T>
| A [IContextProvider](./kibana-plugin-public.icontextprovider.md) function |
-
-Returns:
-
-`void`
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ApplicationSetup](./kibana-plugin-public.applicationsetup.md) > [registerMountContext](./kibana-plugin-public.applicationsetup.registermountcontext.md)
+
+## ApplicationSetup.registerMountContext() method
+
+> Warning: This API is now obsolete.
+>
+>
+
+Register a context provider for application mounting. Will only be available to applications that depend on the plugin that registered this context. Deprecated, use [CoreSetup.getStartServices()](./kibana-plugin-public.coresetup.getstartservices.md).
+
+Signature:
+
+```typescript
+registerMountContext(contextName: T, provider: IContextProvider): void;
+```
+
+## Parameters
+
+| Parameter | Type | Description |
+| --- | --- | --- |
+| contextName | T
| The key of [AppMountContext](./kibana-plugin-public.appmountcontext.md) this provider's return value should be attached to. |
+| provider | IContextProvider<AppMountDeprecated, T>
| A [IContextProvider](./kibana-plugin-public.icontextprovider.md) function |
+
+Returns:
+
+`void`
+
diff --git a/docs/development/core/public/kibana-plugin-public.applicationstart.capabilities.md b/docs/development/core/public/kibana-plugin-public.applicationstart.capabilities.md
index 14326197ea549..ef61b32d9b7f2 100644
--- a/docs/development/core/public/kibana-plugin-public.applicationstart.capabilities.md
+++ b/docs/development/core/public/kibana-plugin-public.applicationstart.capabilities.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ApplicationStart](./kibana-plugin-public.applicationstart.md) > [capabilities](./kibana-plugin-public.applicationstart.capabilities.md)
-
-## ApplicationStart.capabilities property
-
-Gets the read-only capabilities.
-
-Signature:
-
-```typescript
-capabilities: RecursiveReadonly;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ApplicationStart](./kibana-plugin-public.applicationstart.md) > [capabilities](./kibana-plugin-public.applicationstart.capabilities.md)
+
+## ApplicationStart.capabilities property
+
+Gets the read-only capabilities.
+
+Signature:
+
+```typescript
+capabilities: RecursiveReadonly;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.applicationstart.geturlforapp.md b/docs/development/core/public/kibana-plugin-public.applicationstart.geturlforapp.md
index 422fbdf7418c2..7eadd4d4e9d44 100644
--- a/docs/development/core/public/kibana-plugin-public.applicationstart.geturlforapp.md
+++ b/docs/development/core/public/kibana-plugin-public.applicationstart.geturlforapp.md
@@ -1,27 +1,27 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ApplicationStart](./kibana-plugin-public.applicationstart.md) > [getUrlForApp](./kibana-plugin-public.applicationstart.geturlforapp.md)
-
-## ApplicationStart.getUrlForApp() method
-
-Returns a relative URL to a given app, including the global base path.
-
-Signature:
-
-```typescript
-getUrlForApp(appId: string, options?: {
- path?: string;
- }): string;
-```
-
-## Parameters
-
-| Parameter | Type | Description |
-| --- | --- | --- |
-| appId | string
| |
-| options | {
path?: string;
}
| |
-
-Returns:
-
-`string`
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ApplicationStart](./kibana-plugin-public.applicationstart.md) > [getUrlForApp](./kibana-plugin-public.applicationstart.geturlforapp.md)
+
+## ApplicationStart.getUrlForApp() method
+
+Returns a relative URL to a given app, including the global base path.
+
+Signature:
+
+```typescript
+getUrlForApp(appId: string, options?: {
+ path?: string;
+ }): string;
+```
+
+## Parameters
+
+| Parameter | Type | Description |
+| --- | --- | --- |
+| appId | string
| |
+| options | {
path?: string;
}
| |
+
+Returns:
+
+`string`
+
diff --git a/docs/development/core/public/kibana-plugin-public.applicationstart.md b/docs/development/core/public/kibana-plugin-public.applicationstart.md
index e36ef3f14f87e..3ad7e3b1656d8 100644
--- a/docs/development/core/public/kibana-plugin-public.applicationstart.md
+++ b/docs/development/core/public/kibana-plugin-public.applicationstart.md
@@ -1,27 +1,27 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ApplicationStart](./kibana-plugin-public.applicationstart.md)
-
-## ApplicationStart interface
-
-
-Signature:
-
-```typescript
-export interface ApplicationStart
-```
-
-## Properties
-
-| Property | Type | Description |
-| --- | --- | --- |
-| [capabilities](./kibana-plugin-public.applicationstart.capabilities.md) | RecursiveReadonly<Capabilities>
| Gets the read-only capabilities. |
-
-## Methods
-
-| Method | Description |
-| --- | --- |
-| [getUrlForApp(appId, options)](./kibana-plugin-public.applicationstart.geturlforapp.md) | Returns a relative URL to a given app, including the global base path. |
-| [navigateToApp(appId, options)](./kibana-plugin-public.applicationstart.navigatetoapp.md) | Navigate to a given app |
-| [registerMountContext(contextName, provider)](./kibana-plugin-public.applicationstart.registermountcontext.md) | Register a context provider for application mounting. Will only be available to applications that depend on the plugin that registered this context. Deprecated, use [CoreSetup.getStartServices()](./kibana-plugin-public.coresetup.getstartservices.md). |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ApplicationStart](./kibana-plugin-public.applicationstart.md)
+
+## ApplicationStart interface
+
+
+Signature:
+
+```typescript
+export interface ApplicationStart
+```
+
+## Properties
+
+| Property | Type | Description |
+| --- | --- | --- |
+| [capabilities](./kibana-plugin-public.applicationstart.capabilities.md) | RecursiveReadonly<Capabilities>
| Gets the read-only capabilities. |
+
+## Methods
+
+| Method | Description |
+| --- | --- |
+| [getUrlForApp(appId, options)](./kibana-plugin-public.applicationstart.geturlforapp.md) | Returns a relative URL to a given app, including the global base path. |
+| [navigateToApp(appId, options)](./kibana-plugin-public.applicationstart.navigatetoapp.md) | Navigate to a given app |
+| [registerMountContext(contextName, provider)](./kibana-plugin-public.applicationstart.registermountcontext.md) | Register a context provider for application mounting. Will only be available to applications that depend on the plugin that registered this context. Deprecated, use [CoreSetup.getStartServices()](./kibana-plugin-public.coresetup.getstartservices.md). |
+
diff --git a/docs/development/core/public/kibana-plugin-public.applicationstart.navigatetoapp.md b/docs/development/core/public/kibana-plugin-public.applicationstart.navigatetoapp.md
index 3e29d09ea4cd5..9a1f1da689584 100644
--- a/docs/development/core/public/kibana-plugin-public.applicationstart.navigatetoapp.md
+++ b/docs/development/core/public/kibana-plugin-public.applicationstart.navigatetoapp.md
@@ -1,28 +1,28 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ApplicationStart](./kibana-plugin-public.applicationstart.md) > [navigateToApp](./kibana-plugin-public.applicationstart.navigatetoapp.md)
-
-## ApplicationStart.navigateToApp() method
-
-Navigate to a given app
-
-Signature:
-
-```typescript
-navigateToApp(appId: string, options?: {
- path?: string;
- state?: any;
- }): Promise;
-```
-
-## Parameters
-
-| Parameter | Type | Description |
-| --- | --- | --- |
-| appId | string
| |
-| options | {
path?: string;
state?: any;
}
| |
-
-Returns:
-
-`Promise`
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ApplicationStart](./kibana-plugin-public.applicationstart.md) > [navigateToApp](./kibana-plugin-public.applicationstart.navigatetoapp.md)
+
+## ApplicationStart.navigateToApp() method
+
+Navigate to a given app
+
+Signature:
+
+```typescript
+navigateToApp(appId: string, options?: {
+ path?: string;
+ state?: any;
+ }): Promise;
+```
+
+## Parameters
+
+| Parameter | Type | Description |
+| --- | --- | --- |
+| appId | string
| |
+| options | {
path?: string;
state?: any;
}
| |
+
+Returns:
+
+`Promise`
+
diff --git a/docs/development/core/public/kibana-plugin-public.applicationstart.registermountcontext.md b/docs/development/core/public/kibana-plugin-public.applicationstart.registermountcontext.md
index c15a23fe82b21..0eb1cb60ec5fd 100644
--- a/docs/development/core/public/kibana-plugin-public.applicationstart.registermountcontext.md
+++ b/docs/development/core/public/kibana-plugin-public.applicationstart.registermountcontext.md
@@ -1,29 +1,29 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ApplicationStart](./kibana-plugin-public.applicationstart.md) > [registerMountContext](./kibana-plugin-public.applicationstart.registermountcontext.md)
-
-## ApplicationStart.registerMountContext() method
-
-> Warning: This API is now obsolete.
->
->
-
-Register a context provider for application mounting. Will only be available to applications that depend on the plugin that registered this context. Deprecated, use [CoreSetup.getStartServices()](./kibana-plugin-public.coresetup.getstartservices.md).
-
-Signature:
-
-```typescript
-registerMountContext(contextName: T, provider: IContextProvider): void;
-```
-
-## Parameters
-
-| Parameter | Type | Description |
-| --- | --- | --- |
-| contextName | T
| The key of [AppMountContext](./kibana-plugin-public.appmountcontext.md) this provider's return value should be attached to. |
-| provider | IContextProvider<AppMountDeprecated, T>
| A [IContextProvider](./kibana-plugin-public.icontextprovider.md) function |
-
-Returns:
-
-`void`
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ApplicationStart](./kibana-plugin-public.applicationstart.md) > [registerMountContext](./kibana-plugin-public.applicationstart.registermountcontext.md)
+
+## ApplicationStart.registerMountContext() method
+
+> Warning: This API is now obsolete.
+>
+>
+
+Register a context provider for application mounting. Will only be available to applications that depend on the plugin that registered this context. Deprecated, use [CoreSetup.getStartServices()](./kibana-plugin-public.coresetup.getstartservices.md).
+
+Signature:
+
+```typescript
+registerMountContext(contextName: T, provider: IContextProvider): void;
+```
+
+## Parameters
+
+| Parameter | Type | Description |
+| --- | --- | --- |
+| contextName | T
| The key of [AppMountContext](./kibana-plugin-public.appmountcontext.md) this provider's return value should be attached to. |
+| provider | IContextProvider<AppMountDeprecated, T>
| A [IContextProvider](./kibana-plugin-public.icontextprovider.md) function |
+
+Returns:
+
+`void`
+
diff --git a/docs/development/core/public/kibana-plugin-public.appmount.md b/docs/development/core/public/kibana-plugin-public.appmount.md
index 25faa7be30b68..84a52b09a119c 100644
--- a/docs/development/core/public/kibana-plugin-public.appmount.md
+++ b/docs/development/core/public/kibana-plugin-public.appmount.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppMount](./kibana-plugin-public.appmount.md)
-
-## AppMount type
-
-A mount function called when the user navigates to this app's route.
-
-Signature:
-
-```typescript
-export declare type AppMount = (params: AppMountParameters) => AppUnmount | Promise;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppMount](./kibana-plugin-public.appmount.md)
+
+## AppMount type
+
+A mount function called when the user navigates to this app's route.
+
+Signature:
+
+```typescript
+export declare type AppMount = (params: AppMountParameters) => AppUnmount | Promise;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.appmountcontext.core.md b/docs/development/core/public/kibana-plugin-public.appmountcontext.core.md
index e01a5e9da50d5..6ec2d18f33d80 100644
--- a/docs/development/core/public/kibana-plugin-public.appmountcontext.core.md
+++ b/docs/development/core/public/kibana-plugin-public.appmountcontext.core.md
@@ -1,26 +1,26 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppMountContext](./kibana-plugin-public.appmountcontext.md) > [core](./kibana-plugin-public.appmountcontext.core.md)
-
-## AppMountContext.core property
-
-Core service APIs available to mounted applications.
-
-Signature:
-
-```typescript
-core: {
- application: Pick;
- chrome: ChromeStart;
- docLinks: DocLinksStart;
- http: HttpStart;
- i18n: I18nStart;
- notifications: NotificationsStart;
- overlays: OverlayStart;
- savedObjects: SavedObjectsStart;
- uiSettings: IUiSettingsClient;
- injectedMetadata: {
- getInjectedVar: (name: string, defaultValue?: any) => unknown;
- };
- };
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppMountContext](./kibana-plugin-public.appmountcontext.md) > [core](./kibana-plugin-public.appmountcontext.core.md)
+
+## AppMountContext.core property
+
+Core service APIs available to mounted applications.
+
+Signature:
+
+```typescript
+core: {
+ application: Pick;
+ chrome: ChromeStart;
+ docLinks: DocLinksStart;
+ http: HttpStart;
+ i18n: I18nStart;
+ notifications: NotificationsStart;
+ overlays: OverlayStart;
+ savedObjects: SavedObjectsStart;
+ uiSettings: IUiSettingsClient;
+ injectedMetadata: {
+ getInjectedVar: (name: string, defaultValue?: any) => unknown;
+ };
+ };
+```
diff --git a/docs/development/core/public/kibana-plugin-public.appmountcontext.md b/docs/development/core/public/kibana-plugin-public.appmountcontext.md
index 2f8c0553d0b38..6c0860ad9f6b7 100644
--- a/docs/development/core/public/kibana-plugin-public.appmountcontext.md
+++ b/docs/development/core/public/kibana-plugin-public.appmountcontext.md
@@ -1,24 +1,24 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppMountContext](./kibana-plugin-public.appmountcontext.md)
-
-## AppMountContext interface
-
-> Warning: This API is now obsolete.
->
->
-
-The context object received when applications are mounted to the DOM. Deprecated, use [CoreSetup.getStartServices()](./kibana-plugin-public.coresetup.getstartservices.md).
-
-Signature:
-
-```typescript
-export interface AppMountContext
-```
-
-## Properties
-
-| Property | Type | Description |
-| --- | --- | --- |
-| [core](./kibana-plugin-public.appmountcontext.core.md) | {
application: Pick<ApplicationStart, 'capabilities' | 'navigateToApp'>;
chrome: ChromeStart;
docLinks: DocLinksStart;
http: HttpStart;
i18n: I18nStart;
notifications: NotificationsStart;
overlays: OverlayStart;
savedObjects: SavedObjectsStart;
uiSettings: IUiSettingsClient;
injectedMetadata: {
getInjectedVar: (name: string, defaultValue?: any) => unknown;
};
}
| Core service APIs available to mounted applications. |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppMountContext](./kibana-plugin-public.appmountcontext.md)
+
+## AppMountContext interface
+
+> Warning: This API is now obsolete.
+>
+>
+
+The context object received when applications are mounted to the DOM. Deprecated, use [CoreSetup.getStartServices()](./kibana-plugin-public.coresetup.getstartservices.md).
+
+Signature:
+
+```typescript
+export interface AppMountContext
+```
+
+## Properties
+
+| Property | Type | Description |
+| --- | --- | --- |
+| [core](./kibana-plugin-public.appmountcontext.core.md) | {
application: Pick<ApplicationStart, 'capabilities' | 'navigateToApp'>;
chrome: ChromeStart;
docLinks: DocLinksStart;
http: HttpStart;
i18n: I18nStart;
notifications: NotificationsStart;
overlays: OverlayStart;
savedObjects: SavedObjectsStart;
uiSettings: IUiSettingsClient;
injectedMetadata: {
getInjectedVar: (name: string, defaultValue?: any) => unknown;
};
}
| Core service APIs available to mounted applications. |
+
diff --git a/docs/development/core/public/kibana-plugin-public.appmountdeprecated.md b/docs/development/core/public/kibana-plugin-public.appmountdeprecated.md
index 936642abcc97a..8c8114182b60f 100644
--- a/docs/development/core/public/kibana-plugin-public.appmountdeprecated.md
+++ b/docs/development/core/public/kibana-plugin-public.appmountdeprecated.md
@@ -1,22 +1,22 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppMountDeprecated](./kibana-plugin-public.appmountdeprecated.md)
-
-## AppMountDeprecated type
-
-> Warning: This API is now obsolete.
->
->
-
-A mount function called when the user navigates to this app's route.
-
-Signature:
-
-```typescript
-export declare type AppMountDeprecated = (context: AppMountContext, params: AppMountParameters) => AppUnmount | Promise;
-```
-
-## Remarks
-
-When function has two arguments, it will be called with a [context](./kibana-plugin-public.appmountcontext.md) as the first argument. This behavior is \*\*deprecated\*\*, and consumers should instead use [CoreSetup.getStartServices()](./kibana-plugin-public.coresetup.getstartservices.md).
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppMountDeprecated](./kibana-plugin-public.appmountdeprecated.md)
+
+## AppMountDeprecated type
+
+> Warning: This API is now obsolete.
+>
+>
+
+A mount function called when the user navigates to this app's route.
+
+Signature:
+
+```typescript
+export declare type AppMountDeprecated = (context: AppMountContext, params: AppMountParameters) => AppUnmount | Promise;
+```
+
+## Remarks
+
+When function has two arguments, it will be called with a [context](./kibana-plugin-public.appmountcontext.md) as the first argument. This behavior is \*\*deprecated\*\*, and consumers should instead use [CoreSetup.getStartServices()](./kibana-plugin-public.coresetup.getstartservices.md).
+
diff --git a/docs/development/core/public/kibana-plugin-public.appmountparameters.appbasepath.md b/docs/development/core/public/kibana-plugin-public.appmountparameters.appbasepath.md
index 7cd709d615729..041d976aa42a2 100644
--- a/docs/development/core/public/kibana-plugin-public.appmountparameters.appbasepath.md
+++ b/docs/development/core/public/kibana-plugin-public.appmountparameters.appbasepath.md
@@ -1,58 +1,58 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppMountParameters](./kibana-plugin-public.appmountparameters.md) > [appBasePath](./kibana-plugin-public.appmountparameters.appbasepath.md)
-
-## AppMountParameters.appBasePath property
-
-The route path for configuring navigation to the application. This string should not include the base path from HTTP.
-
-Signature:
-
-```typescript
-appBasePath: string;
-```
-
-## Example
-
-How to configure react-router with a base path:
-
-```ts
-// inside your plugin's setup function
-export class MyPlugin implements Plugin {
- setup({ application }) {
- application.register({
- id: 'my-app',
- appRoute: '/my-app',
- async mount(params) {
- const { renderApp } = await import('./application');
- return renderApp(params);
- },
- });
- }
-}
-
-```
-
-```ts
-// application.tsx
-import React from 'react';
-import ReactDOM from 'react-dom';
-import { BrowserRouter, Route } from 'react-router-dom';
-
-import { CoreStart, AppMountParams } from 'src/core/public';
-import { MyPluginDepsStart } from './plugin';
-
-export renderApp = ({ appBasePath, element }: AppMountParams) => {
- ReactDOM.render(
- // pass `appBasePath` to `basename`
-
-
- ,
- element
- );
-
- return () => ReactDOM.unmountComponentAtNode(element);
-}
-
-```
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppMountParameters](./kibana-plugin-public.appmountparameters.md) > [appBasePath](./kibana-plugin-public.appmountparameters.appbasepath.md)
+
+## AppMountParameters.appBasePath property
+
+The route path for configuring navigation to the application. This string should not include the base path from HTTP.
+
+Signature:
+
+```typescript
+appBasePath: string;
+```
+
+## Example
+
+How to configure react-router with a base path:
+
+```ts
+// inside your plugin's setup function
+export class MyPlugin implements Plugin {
+ setup({ application }) {
+ application.register({
+ id: 'my-app',
+ appRoute: '/my-app',
+ async mount(params) {
+ const { renderApp } = await import('./application');
+ return renderApp(params);
+ },
+ });
+ }
+}
+
+```
+
+```ts
+// application.tsx
+import React from 'react';
+import ReactDOM from 'react-dom';
+import { BrowserRouter, Route } from 'react-router-dom';
+
+import { CoreStart, AppMountParams } from 'src/core/public';
+import { MyPluginDepsStart } from './plugin';
+
+export renderApp = ({ appBasePath, element }: AppMountParams) => {
+ ReactDOM.render(
+ // pass `appBasePath` to `basename`
+
+
+ ,
+ element
+ );
+
+ return () => ReactDOM.unmountComponentAtNode(element);
+}
+
+```
+
diff --git a/docs/development/core/public/kibana-plugin-public.appmountparameters.element.md b/docs/development/core/public/kibana-plugin-public.appmountparameters.element.md
index dbe496c01c215..0c6759df8197c 100644
--- a/docs/development/core/public/kibana-plugin-public.appmountparameters.element.md
+++ b/docs/development/core/public/kibana-plugin-public.appmountparameters.element.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppMountParameters](./kibana-plugin-public.appmountparameters.md) > [element](./kibana-plugin-public.appmountparameters.element.md)
-
-## AppMountParameters.element property
-
-The container element to render the application into.
-
-Signature:
-
-```typescript
-element: HTMLElement;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppMountParameters](./kibana-plugin-public.appmountparameters.md) > [element](./kibana-plugin-public.appmountparameters.element.md)
+
+## AppMountParameters.element property
+
+The container element to render the application into.
+
+Signature:
+
+```typescript
+element: HTMLElement;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.appmountparameters.md b/docs/development/core/public/kibana-plugin-public.appmountparameters.md
index 9586eba96a697..c21889c28bda4 100644
--- a/docs/development/core/public/kibana-plugin-public.appmountparameters.md
+++ b/docs/development/core/public/kibana-plugin-public.appmountparameters.md
@@ -1,21 +1,21 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppMountParameters](./kibana-plugin-public.appmountparameters.md)
-
-## AppMountParameters interface
-
-
-Signature:
-
-```typescript
-export interface AppMountParameters
-```
-
-## Properties
-
-| Property | Type | Description |
-| --- | --- | --- |
-| [appBasePath](./kibana-plugin-public.appmountparameters.appbasepath.md) | string
| The route path for configuring navigation to the application. This string should not include the base path from HTTP. |
-| [element](./kibana-plugin-public.appmountparameters.element.md) | HTMLElement
| The container element to render the application into. |
-| [onAppLeave](./kibana-plugin-public.appmountparameters.onappleave.md) | (handler: AppLeaveHandler) => void
| A function that can be used to register a handler that will be called when the user is leaving the current application, allowing to prompt a confirmation message before actually changing the page.This will be called either when the user goes to another application, or when trying to close the tab or manually changing the url. |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppMountParameters](./kibana-plugin-public.appmountparameters.md)
+
+## AppMountParameters interface
+
+
+Signature:
+
+```typescript
+export interface AppMountParameters
+```
+
+## Properties
+
+| Property | Type | Description |
+| --- | --- | --- |
+| [appBasePath](./kibana-plugin-public.appmountparameters.appbasepath.md) | string
| The route path for configuring navigation to the application. This string should not include the base path from HTTP. |
+| [element](./kibana-plugin-public.appmountparameters.element.md) | HTMLElement
| The container element to render the application into. |
+| [onAppLeave](./kibana-plugin-public.appmountparameters.onappleave.md) | (handler: AppLeaveHandler) => void
| A function that can be used to register a handler that will be called when the user is leaving the current application, allowing to prompt a confirmation message before actually changing the page.This will be called either when the user goes to another application, or when trying to close the tab or manually changing the url. |
+
diff --git a/docs/development/core/public/kibana-plugin-public.appmountparameters.onappleave.md b/docs/development/core/public/kibana-plugin-public.appmountparameters.onappleave.md
index 55eb840ce1cf6..283ae34f14c54 100644
--- a/docs/development/core/public/kibana-plugin-public.appmountparameters.onappleave.md
+++ b/docs/development/core/public/kibana-plugin-public.appmountparameters.onappleave.md
@@ -1,41 +1,41 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppMountParameters](./kibana-plugin-public.appmountparameters.md) > [onAppLeave](./kibana-plugin-public.appmountparameters.onappleave.md)
-
-## AppMountParameters.onAppLeave property
-
-A function that can be used to register a handler that will be called when the user is leaving the current application, allowing to prompt a confirmation message before actually changing the page.
-
-This will be called either when the user goes to another application, or when trying to close the tab or manually changing the url.
-
-Signature:
-
-```typescript
-onAppLeave: (handler: AppLeaveHandler) => void;
-```
-
-## Example
-
-
-```ts
-// application.tsx
-import React from 'react';
-import ReactDOM from 'react-dom';
-import { BrowserRouter, Route } from 'react-router-dom';
-
-import { CoreStart, AppMountParams } from 'src/core/public';
-import { MyPluginDepsStart } from './plugin';
-
-export renderApp = ({ appBasePath, element, onAppLeave }: AppMountParams) => {
- const { renderApp, hasUnsavedChanges } = await import('./application');
- onAppLeave(actions => {
- if(hasUnsavedChanges()) {
- return actions.confirm('Some changes were not saved. Are you sure you want to leave?');
- }
- return actions.default();
- });
- return renderApp(params);
-}
-
-```
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppMountParameters](./kibana-plugin-public.appmountparameters.md) > [onAppLeave](./kibana-plugin-public.appmountparameters.onappleave.md)
+
+## AppMountParameters.onAppLeave property
+
+A function that can be used to register a handler that will be called when the user is leaving the current application, allowing to prompt a confirmation message before actually changing the page.
+
+This will be called either when the user goes to another application, or when trying to close the tab or manually changing the url.
+
+Signature:
+
+```typescript
+onAppLeave: (handler: AppLeaveHandler) => void;
+```
+
+## Example
+
+
+```ts
+// application.tsx
+import React from 'react';
+import ReactDOM from 'react-dom';
+import { BrowserRouter, Route } from 'react-router-dom';
+
+import { CoreStart, AppMountParams } from 'src/core/public';
+import { MyPluginDepsStart } from './plugin';
+
+export renderApp = ({ appBasePath, element, onAppLeave }: AppMountParams) => {
+ const { renderApp, hasUnsavedChanges } = await import('./application');
+ onAppLeave(actions => {
+ if(hasUnsavedChanges()) {
+ return actions.confirm('Some changes were not saved. Are you sure you want to leave?');
+ }
+ return actions.default();
+ });
+ return renderApp(params);
+}
+
+```
+
diff --git a/docs/development/core/public/kibana-plugin-public.appnavlinkstatus.md b/docs/development/core/public/kibana-plugin-public.appnavlinkstatus.md
index d6b22ac2b9217..be6953c6f3667 100644
--- a/docs/development/core/public/kibana-plugin-public.appnavlinkstatus.md
+++ b/docs/development/core/public/kibana-plugin-public.appnavlinkstatus.md
@@ -1,23 +1,23 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppNavLinkStatus](./kibana-plugin-public.appnavlinkstatus.md)
-
-## AppNavLinkStatus enum
-
-Status of the application's navLink.
-
-Signature:
-
-```typescript
-export declare enum AppNavLinkStatus
-```
-
-## Enumeration Members
-
-| Member | Value | Description |
-| --- | --- | --- |
-| default | 0
| The application navLink will be visible
if the application's [AppStatus](./kibana-plugin-public.appstatus.md) is set to accessible
and hidden
if the application status is set to inaccessible
. |
-| disabled | 2
| The application navLink is visible but inactive and not clickable in the navigation bar. |
-| hidden | 3
| The application navLink does not appear in the navigation bar. |
-| visible | 1
| The application navLink is visible and clickable in the navigation bar. |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppNavLinkStatus](./kibana-plugin-public.appnavlinkstatus.md)
+
+## AppNavLinkStatus enum
+
+Status of the application's navLink.
+
+Signature:
+
+```typescript
+export declare enum AppNavLinkStatus
+```
+
+## Enumeration Members
+
+| Member | Value | Description |
+| --- | --- | --- |
+| default | 0
| The application navLink will be visible
if the application's [AppStatus](./kibana-plugin-public.appstatus.md) is set to accessible
and hidden
if the application status is set to inaccessible
. |
+| disabled | 2
| The application navLink is visible but inactive and not clickable in the navigation bar. |
+| hidden | 3
| The application navLink does not appear in the navigation bar. |
+| visible | 1
| The application navLink is visible and clickable in the navigation bar. |
+
diff --git a/docs/development/core/public/kibana-plugin-public.appstatus.md b/docs/development/core/public/kibana-plugin-public.appstatus.md
index 23fb7186569da..35b7b4cb224d9 100644
--- a/docs/development/core/public/kibana-plugin-public.appstatus.md
+++ b/docs/development/core/public/kibana-plugin-public.appstatus.md
@@ -1,21 +1,21 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppStatus](./kibana-plugin-public.appstatus.md)
-
-## AppStatus enum
-
-Accessibility status of an application.
-
-Signature:
-
-```typescript
-export declare enum AppStatus
-```
-
-## Enumeration Members
-
-| Member | Value | Description |
-| --- | --- | --- |
-| accessible | 0
| Application is accessible. |
-| inaccessible | 1
| Application is not accessible. |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppStatus](./kibana-plugin-public.appstatus.md)
+
+## AppStatus enum
+
+Accessibility status of an application.
+
+Signature:
+
+```typescript
+export declare enum AppStatus
+```
+
+## Enumeration Members
+
+| Member | Value | Description |
+| --- | --- | --- |
+| accessible | 0
| Application is accessible. |
+| inaccessible | 1
| Application is not accessible. |
+
diff --git a/docs/development/core/public/kibana-plugin-public.appunmount.md b/docs/development/core/public/kibana-plugin-public.appunmount.md
index 61782d19ca8c5..041a9ab3dbc0b 100644
--- a/docs/development/core/public/kibana-plugin-public.appunmount.md
+++ b/docs/development/core/public/kibana-plugin-public.appunmount.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppUnmount](./kibana-plugin-public.appunmount.md)
-
-## AppUnmount type
-
-A function called when an application should be unmounted from the page. This function should be synchronous.
-
-Signature:
-
-```typescript
-export declare type AppUnmount = () => void;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppUnmount](./kibana-plugin-public.appunmount.md)
+
+## AppUnmount type
+
+A function called when an application should be unmounted from the page. This function should be synchronous.
+
+Signature:
+
+```typescript
+export declare type AppUnmount = () => void;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.appupdatablefields.md b/docs/development/core/public/kibana-plugin-public.appupdatablefields.md
index b9260c79cd972..f588773976143 100644
--- a/docs/development/core/public/kibana-plugin-public.appupdatablefields.md
+++ b/docs/development/core/public/kibana-plugin-public.appupdatablefields.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppUpdatableFields](./kibana-plugin-public.appupdatablefields.md)
-
-## AppUpdatableFields type
-
-Defines the list of fields that can be updated via an [AppUpdater](./kibana-plugin-public.appupdater.md).
-
-Signature:
-
-```typescript
-export declare type AppUpdatableFields = Pick;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppUpdatableFields](./kibana-plugin-public.appupdatablefields.md)
+
+## AppUpdatableFields type
+
+Defines the list of fields that can be updated via an [AppUpdater](./kibana-plugin-public.appupdater.md).
+
+Signature:
+
+```typescript
+export declare type AppUpdatableFields = Pick;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.appupdater.md b/docs/development/core/public/kibana-plugin-public.appupdater.md
index f1b965cc2fc22..75f489e6346f3 100644
--- a/docs/development/core/public/kibana-plugin-public.appupdater.md
+++ b/docs/development/core/public/kibana-plugin-public.appupdater.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppUpdater](./kibana-plugin-public.appupdater.md)
-
-## AppUpdater type
-
-Updater for applications. see [ApplicationSetup](./kibana-plugin-public.applicationsetup.md)
-
-Signature:
-
-```typescript
-export declare type AppUpdater = (app: AppBase) => Partial | undefined;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [AppUpdater](./kibana-plugin-public.appupdater.md)
+
+## AppUpdater type
+
+Updater for applications. see [ApplicationSetup](./kibana-plugin-public.applicationsetup.md)
+
+Signature:
+
+```typescript
+export declare type AppUpdater = (app: AppBase) => Partial | undefined;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.capabilities.catalogue.md b/docs/development/core/public/kibana-plugin-public.capabilities.catalogue.md
index ea3380d70053b..8f46a42dc3b78 100644
--- a/docs/development/core/public/kibana-plugin-public.capabilities.catalogue.md
+++ b/docs/development/core/public/kibana-plugin-public.capabilities.catalogue.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [Capabilities](./kibana-plugin-public.capabilities.md) > [catalogue](./kibana-plugin-public.capabilities.catalogue.md)
-
-## Capabilities.catalogue property
-
-Catalogue capabilities. Catalogue entries drive the visibility of the Kibana homepage options.
-
-Signature:
-
-```typescript
-catalogue: Record;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [Capabilities](./kibana-plugin-public.capabilities.md) > [catalogue](./kibana-plugin-public.capabilities.catalogue.md)
+
+## Capabilities.catalogue property
+
+Catalogue capabilities. Catalogue entries drive the visibility of the Kibana homepage options.
+
+Signature:
+
+```typescript
+catalogue: Record;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.capabilities.management.md b/docs/development/core/public/kibana-plugin-public.capabilities.management.md
index 5f4c159aef974..59037240382b4 100644
--- a/docs/development/core/public/kibana-plugin-public.capabilities.management.md
+++ b/docs/development/core/public/kibana-plugin-public.capabilities.management.md
@@ -1,15 +1,15 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [Capabilities](./kibana-plugin-public.capabilities.md) > [management](./kibana-plugin-public.capabilities.management.md)
-
-## Capabilities.management property
-
-Management section capabilities.
-
-Signature:
-
-```typescript
-management: {
- [sectionId: string]: Record;
- };
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [Capabilities](./kibana-plugin-public.capabilities.md) > [management](./kibana-plugin-public.capabilities.management.md)
+
+## Capabilities.management property
+
+Management section capabilities.
+
+Signature:
+
+```typescript
+management: {
+ [sectionId: string]: Record;
+ };
+```
diff --git a/docs/development/core/public/kibana-plugin-public.capabilities.md b/docs/development/core/public/kibana-plugin-public.capabilities.md
index e7dc542e6ed5e..5a6d611f8afb7 100644
--- a/docs/development/core/public/kibana-plugin-public.capabilities.md
+++ b/docs/development/core/public/kibana-plugin-public.capabilities.md
@@ -1,22 +1,22 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [Capabilities](./kibana-plugin-public.capabilities.md)
-
-## Capabilities interface
-
-The read-only set of capabilities available for the current UI session. Capabilities are simple key-value pairs of (string, boolean), where the string denotes the capability ID, and the boolean is a flag indicating if the capability is enabled or disabled.
-
-Signature:
-
-```typescript
-export interface Capabilities
-```
-
-## Properties
-
-| Property | Type | Description |
-| --- | --- | --- |
-| [catalogue](./kibana-plugin-public.capabilities.catalogue.md) | Record<string, boolean>
| Catalogue capabilities. Catalogue entries drive the visibility of the Kibana homepage options. |
-| [management](./kibana-plugin-public.capabilities.management.md) | {
[sectionId: string]: Record<string, boolean>;
}
| Management section capabilities. |
-| [navLinks](./kibana-plugin-public.capabilities.navlinks.md) | Record<string, boolean>
| Navigation link capabilities. |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [Capabilities](./kibana-plugin-public.capabilities.md)
+
+## Capabilities interface
+
+The read-only set of capabilities available for the current UI session. Capabilities are simple key-value pairs of (string, boolean), where the string denotes the capability ID, and the boolean is a flag indicating if the capability is enabled or disabled.
+
+Signature:
+
+```typescript
+export interface Capabilities
+```
+
+## Properties
+
+| Property | Type | Description |
+| --- | --- | --- |
+| [catalogue](./kibana-plugin-public.capabilities.catalogue.md) | Record<string, boolean>
| Catalogue capabilities. Catalogue entries drive the visibility of the Kibana homepage options. |
+| [management](./kibana-plugin-public.capabilities.management.md) | {
[sectionId: string]: Record<string, boolean>;
}
| Management section capabilities. |
+| [navLinks](./kibana-plugin-public.capabilities.navlinks.md) | Record<string, boolean>
| Navigation link capabilities. |
+
diff --git a/docs/development/core/public/kibana-plugin-public.capabilities.navlinks.md b/docs/development/core/public/kibana-plugin-public.capabilities.navlinks.md
index a6c337ef70277..804ff1fef534a 100644
--- a/docs/development/core/public/kibana-plugin-public.capabilities.navlinks.md
+++ b/docs/development/core/public/kibana-plugin-public.capabilities.navlinks.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [Capabilities](./kibana-plugin-public.capabilities.md) > [navLinks](./kibana-plugin-public.capabilities.navlinks.md)
-
-## Capabilities.navLinks property
-
-Navigation link capabilities.
-
-Signature:
-
-```typescript
-navLinks: Record;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [Capabilities](./kibana-plugin-public.capabilities.md) > [navLinks](./kibana-plugin-public.capabilities.navlinks.md)
+
+## Capabilities.navLinks property
+
+Navigation link capabilities.
+
+Signature:
+
+```typescript
+navLinks: Record;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.chromebadge.icontype.md b/docs/development/core/public/kibana-plugin-public.chromebadge.icontype.md
index 535b0cb627e7e..cfb129b3f4796 100644
--- a/docs/development/core/public/kibana-plugin-public.chromebadge.icontype.md
+++ b/docs/development/core/public/kibana-plugin-public.chromebadge.icontype.md
@@ -1,11 +1,11 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeBadge](./kibana-plugin-public.chromebadge.md) > [iconType](./kibana-plugin-public.chromebadge.icontype.md)
-
-## ChromeBadge.iconType property
-
-Signature:
-
-```typescript
-iconType?: IconType;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeBadge](./kibana-plugin-public.chromebadge.md) > [iconType](./kibana-plugin-public.chromebadge.icontype.md)
+
+## ChromeBadge.iconType property
+
+Signature:
+
+```typescript
+iconType?: IconType;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.chromebadge.md b/docs/development/core/public/kibana-plugin-public.chromebadge.md
index 5323193dcdd0e..b2286986926ed 100644
--- a/docs/development/core/public/kibana-plugin-public.chromebadge.md
+++ b/docs/development/core/public/kibana-plugin-public.chromebadge.md
@@ -1,21 +1,21 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeBadge](./kibana-plugin-public.chromebadge.md)
-
-## ChromeBadge interface
-
-
-Signature:
-
-```typescript
-export interface ChromeBadge
-```
-
-## Properties
-
-| Property | Type | Description |
-| --- | --- | --- |
-| [iconType](./kibana-plugin-public.chromebadge.icontype.md) | IconType
| |
-| [text](./kibana-plugin-public.chromebadge.text.md) | string
| |
-| [tooltip](./kibana-plugin-public.chromebadge.tooltip.md) | string
| |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeBadge](./kibana-plugin-public.chromebadge.md)
+
+## ChromeBadge interface
+
+
+Signature:
+
+```typescript
+export interface ChromeBadge
+```
+
+## Properties
+
+| Property | Type | Description |
+| --- | --- | --- |
+| [iconType](./kibana-plugin-public.chromebadge.icontype.md) | IconType
| |
+| [text](./kibana-plugin-public.chromebadge.text.md) | string
| |
+| [tooltip](./kibana-plugin-public.chromebadge.tooltip.md) | string
| |
+
diff --git a/docs/development/core/public/kibana-plugin-public.chromebadge.text.md b/docs/development/core/public/kibana-plugin-public.chromebadge.text.md
index 5b334a8440ee2..59c5aedeaa44e 100644
--- a/docs/development/core/public/kibana-plugin-public.chromebadge.text.md
+++ b/docs/development/core/public/kibana-plugin-public.chromebadge.text.md
@@ -1,11 +1,11 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeBadge](./kibana-plugin-public.chromebadge.md) > [text](./kibana-plugin-public.chromebadge.text.md)
-
-## ChromeBadge.text property
-
-Signature:
-
-```typescript
-text: string;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeBadge](./kibana-plugin-public.chromebadge.md) > [text](./kibana-plugin-public.chromebadge.text.md)
+
+## ChromeBadge.text property
+
+Signature:
+
+```typescript
+text: string;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.chromebadge.tooltip.md b/docs/development/core/public/kibana-plugin-public.chromebadge.tooltip.md
index a1a0590cf093d..d37fdb5bdaf30 100644
--- a/docs/development/core/public/kibana-plugin-public.chromebadge.tooltip.md
+++ b/docs/development/core/public/kibana-plugin-public.chromebadge.tooltip.md
@@ -1,11 +1,11 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeBadge](./kibana-plugin-public.chromebadge.md) > [tooltip](./kibana-plugin-public.chromebadge.tooltip.md)
-
-## ChromeBadge.tooltip property
-
-Signature:
-
-```typescript
-tooltip: string;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeBadge](./kibana-plugin-public.chromebadge.md) > [tooltip](./kibana-plugin-public.chromebadge.tooltip.md)
+
+## ChromeBadge.tooltip property
+
+Signature:
+
+```typescript
+tooltip: string;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.chromebrand.logo.md b/docs/development/core/public/kibana-plugin-public.chromebrand.logo.md
index 7edbfb97fba95..99eaf8e222855 100644
--- a/docs/development/core/public/kibana-plugin-public.chromebrand.logo.md
+++ b/docs/development/core/public/kibana-plugin-public.chromebrand.logo.md
@@ -1,11 +1,11 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeBrand](./kibana-plugin-public.chromebrand.md) > [logo](./kibana-plugin-public.chromebrand.logo.md)
-
-## ChromeBrand.logo property
-
-Signature:
-
-```typescript
-logo?: string;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeBrand](./kibana-plugin-public.chromebrand.md) > [logo](./kibana-plugin-public.chromebrand.logo.md)
+
+## ChromeBrand.logo property
+
+Signature:
+
+```typescript
+logo?: string;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.chromebrand.md b/docs/development/core/public/kibana-plugin-public.chromebrand.md
index 42af5255c0042..87c146b2b4c28 100644
--- a/docs/development/core/public/kibana-plugin-public.chromebrand.md
+++ b/docs/development/core/public/kibana-plugin-public.chromebrand.md
@@ -1,20 +1,20 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeBrand](./kibana-plugin-public.chromebrand.md)
-
-## ChromeBrand interface
-
-
-Signature:
-
-```typescript
-export interface ChromeBrand
-```
-
-## Properties
-
-| Property | Type | Description |
-| --- | --- | --- |
-| [logo](./kibana-plugin-public.chromebrand.logo.md) | string
| |
-| [smallLogo](./kibana-plugin-public.chromebrand.smalllogo.md) | string
| |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeBrand](./kibana-plugin-public.chromebrand.md)
+
+## ChromeBrand interface
+
+
+Signature:
+
+```typescript
+export interface ChromeBrand
+```
+
+## Properties
+
+| Property | Type | Description |
+| --- | --- | --- |
+| [logo](./kibana-plugin-public.chromebrand.logo.md) | string
| |
+| [smallLogo](./kibana-plugin-public.chromebrand.smalllogo.md) | string
| |
+
diff --git a/docs/development/core/public/kibana-plugin-public.chromebrand.smalllogo.md b/docs/development/core/public/kibana-plugin-public.chromebrand.smalllogo.md
index 53d05ed89144a..85c933ac5814e 100644
--- a/docs/development/core/public/kibana-plugin-public.chromebrand.smalllogo.md
+++ b/docs/development/core/public/kibana-plugin-public.chromebrand.smalllogo.md
@@ -1,11 +1,11 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeBrand](./kibana-plugin-public.chromebrand.md) > [smallLogo](./kibana-plugin-public.chromebrand.smalllogo.md)
-
-## ChromeBrand.smallLogo property
-
-Signature:
-
-```typescript
-smallLogo?: string;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeBrand](./kibana-plugin-public.chromebrand.md) > [smallLogo](./kibana-plugin-public.chromebrand.smalllogo.md)
+
+## ChromeBrand.smallLogo property
+
+Signature:
+
+```typescript
+smallLogo?: string;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.chromebreadcrumb.md b/docs/development/core/public/kibana-plugin-public.chromebreadcrumb.md
index 9350b56ce5f60..4738487d6674a 100644
--- a/docs/development/core/public/kibana-plugin-public.chromebreadcrumb.md
+++ b/docs/development/core/public/kibana-plugin-public.chromebreadcrumb.md
@@ -1,12 +1,12 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeBreadcrumb](./kibana-plugin-public.chromebreadcrumb.md)
-
-## ChromeBreadcrumb type
-
-
-Signature:
-
-```typescript
-export declare type ChromeBreadcrumb = EuiBreadcrumb;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeBreadcrumb](./kibana-plugin-public.chromebreadcrumb.md)
+
+## ChromeBreadcrumb type
+
+
+Signature:
+
+```typescript
+export declare type ChromeBreadcrumb = EuiBreadcrumb;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.chromedoctitle.change.md b/docs/development/core/public/kibana-plugin-public.chromedoctitle.change.md
index eba149bf93a4c..c132b4b54337e 100644
--- a/docs/development/core/public/kibana-plugin-public.chromedoctitle.change.md
+++ b/docs/development/core/public/kibana-plugin-public.chromedoctitle.change.md
@@ -1,34 +1,34 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeDocTitle](./kibana-plugin-public.chromedoctitle.md) > [change](./kibana-plugin-public.chromedoctitle.change.md)
-
-## ChromeDocTitle.change() method
-
-Changes the current document title.
-
-Signature:
-
-```typescript
-change(newTitle: string | string[]): void;
-```
-
-## Parameters
-
-| Parameter | Type | Description |
-| --- | --- | --- |
-| newTitle | string | string[]
| |
-
-Returns:
-
-`void`
-
-## Example
-
-How to change the title of the document
-
-```ts
-chrome.docTitle.change('My application title')
-chrome.docTitle.change(['My application', 'My section'])
-
-```
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeDocTitle](./kibana-plugin-public.chromedoctitle.md) > [change](./kibana-plugin-public.chromedoctitle.change.md)
+
+## ChromeDocTitle.change() method
+
+Changes the current document title.
+
+Signature:
+
+```typescript
+change(newTitle: string | string[]): void;
+```
+
+## Parameters
+
+| Parameter | Type | Description |
+| --- | --- | --- |
+| newTitle | string | string[]
| |
+
+Returns:
+
+`void`
+
+## Example
+
+How to change the title of the document
+
+```ts
+chrome.docTitle.change('My application title')
+chrome.docTitle.change(['My application', 'My section'])
+
+```
+
diff --git a/docs/development/core/public/kibana-plugin-public.chromedoctitle.md b/docs/development/core/public/kibana-plugin-public.chromedoctitle.md
index feb3b3ab966ef..624940b612ddb 100644
--- a/docs/development/core/public/kibana-plugin-public.chromedoctitle.md
+++ b/docs/development/core/public/kibana-plugin-public.chromedoctitle.md
@@ -1,39 +1,39 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeDocTitle](./kibana-plugin-public.chromedoctitle.md)
-
-## ChromeDocTitle interface
-
-APIs for accessing and updating the document title.
-
-Signature:
-
-```typescript
-export interface ChromeDocTitle
-```
-
-## Example 1
-
-How to change the title of the document
-
-```ts
-chrome.docTitle.change('My application')
-
-```
-
-## Example 2
-
-How to reset the title of the document to it's initial value
-
-```ts
-chrome.docTitle.reset()
-
-```
-
-## Methods
-
-| Method | Description |
-| --- | --- |
-| [change(newTitle)](./kibana-plugin-public.chromedoctitle.change.md) | Changes the current document title. |
-| [reset()](./kibana-plugin-public.chromedoctitle.reset.md) | Resets the document title to it's initial value. (meaning the one present in the title meta at application load.) |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeDocTitle](./kibana-plugin-public.chromedoctitle.md)
+
+## ChromeDocTitle interface
+
+APIs for accessing and updating the document title.
+
+Signature:
+
+```typescript
+export interface ChromeDocTitle
+```
+
+## Example 1
+
+How to change the title of the document
+
+```ts
+chrome.docTitle.change('My application')
+
+```
+
+## Example 2
+
+How to reset the title of the document to it's initial value
+
+```ts
+chrome.docTitle.reset()
+
+```
+
+## Methods
+
+| Method | Description |
+| --- | --- |
+| [change(newTitle)](./kibana-plugin-public.chromedoctitle.change.md) | Changes the current document title. |
+| [reset()](./kibana-plugin-public.chromedoctitle.reset.md) | Resets the document title to it's initial value. (meaning the one present in the title meta at application load.) |
+
diff --git a/docs/development/core/public/kibana-plugin-public.chromedoctitle.reset.md b/docs/development/core/public/kibana-plugin-public.chromedoctitle.reset.md
index 4b4c6f573e006..97933c443125a 100644
--- a/docs/development/core/public/kibana-plugin-public.chromedoctitle.reset.md
+++ b/docs/development/core/public/kibana-plugin-public.chromedoctitle.reset.md
@@ -1,17 +1,17 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeDocTitle](./kibana-plugin-public.chromedoctitle.md) > [reset](./kibana-plugin-public.chromedoctitle.reset.md)
-
-## ChromeDocTitle.reset() method
-
-Resets the document title to it's initial value. (meaning the one present in the title meta at application load.)
-
-Signature:
-
-```typescript
-reset(): void;
-```
-Returns:
-
-`void`
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeDocTitle](./kibana-plugin-public.chromedoctitle.md) > [reset](./kibana-plugin-public.chromedoctitle.reset.md)
+
+## ChromeDocTitle.reset() method
+
+Resets the document title to it's initial value. (meaning the one present in the title meta at application load.)
+
+Signature:
+
+```typescript
+reset(): void;
+```
+Returns:
+
+`void`
+
diff --git a/docs/development/core/public/kibana-plugin-public.chromehelpextension.appname.md b/docs/development/core/public/kibana-plugin-public.chromehelpextension.appname.md
index d817238c9287d..e5bb6c19a807b 100644
--- a/docs/development/core/public/kibana-plugin-public.chromehelpextension.appname.md
+++ b/docs/development/core/public/kibana-plugin-public.chromehelpextension.appname.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeHelpExtension](./kibana-plugin-public.chromehelpextension.md) > [appName](./kibana-plugin-public.chromehelpextension.appname.md)
-
-## ChromeHelpExtension.appName property
-
-Provide your plugin's name to create a header for separation
-
-Signature:
-
-```typescript
-appName: string;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeHelpExtension](./kibana-plugin-public.chromehelpextension.md) > [appName](./kibana-plugin-public.chromehelpextension.appname.md)
+
+## ChromeHelpExtension.appName property
+
+Provide your plugin's name to create a header for separation
+
+Signature:
+
+```typescript
+appName: string;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.chromehelpextension.content.md b/docs/development/core/public/kibana-plugin-public.chromehelpextension.content.md
index b51d4928e991d..b9b38dc20774f 100644
--- a/docs/development/core/public/kibana-plugin-public.chromehelpextension.content.md
+++ b/docs/development/core/public/kibana-plugin-public.chromehelpextension.content.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeHelpExtension](./kibana-plugin-public.chromehelpextension.md) > [content](./kibana-plugin-public.chromehelpextension.content.md)
-
-## ChromeHelpExtension.content property
-
-Custom content to occur below the list of links
-
-Signature:
-
-```typescript
-content?: (element: HTMLDivElement) => () => void;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeHelpExtension](./kibana-plugin-public.chromehelpextension.md) > [content](./kibana-plugin-public.chromehelpextension.content.md)
+
+## ChromeHelpExtension.content property
+
+Custom content to occur below the list of links
+
+Signature:
+
+```typescript
+content?: (element: HTMLDivElement) => () => void;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.chromehelpextension.links.md b/docs/development/core/public/kibana-plugin-public.chromehelpextension.links.md
index de17ca8d86e37..76e805eb993ad 100644
--- a/docs/development/core/public/kibana-plugin-public.chromehelpextension.links.md
+++ b/docs/development/core/public/kibana-plugin-public.chromehelpextension.links.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeHelpExtension](./kibana-plugin-public.chromehelpextension.md) > [links](./kibana-plugin-public.chromehelpextension.links.md)
-
-## ChromeHelpExtension.links property
-
-Creates unified links for sending users to documentation, GitHub, Discuss, or a custom link/button
-
-Signature:
-
-```typescript
-links?: ChromeHelpExtensionMenuLink[];
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeHelpExtension](./kibana-plugin-public.chromehelpextension.md) > [links](./kibana-plugin-public.chromehelpextension.links.md)
+
+## ChromeHelpExtension.links property
+
+Creates unified links for sending users to documentation, GitHub, Discuss, or a custom link/button
+
+Signature:
+
+```typescript
+links?: ChromeHelpExtensionMenuLink[];
+```
diff --git a/docs/development/core/public/kibana-plugin-public.chromehelpextension.md b/docs/development/core/public/kibana-plugin-public.chromehelpextension.md
index 6f0007335c555..4c870ef9afba0 100644
--- a/docs/development/core/public/kibana-plugin-public.chromehelpextension.md
+++ b/docs/development/core/public/kibana-plugin-public.chromehelpextension.md
@@ -1,21 +1,21 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeHelpExtension](./kibana-plugin-public.chromehelpextension.md)
-
-## ChromeHelpExtension interface
-
-
-Signature:
-
-```typescript
-export interface ChromeHelpExtension
-```
-
-## Properties
-
-| Property | Type | Description |
-| --- | --- | --- |
-| [appName](./kibana-plugin-public.chromehelpextension.appname.md) | string
| Provide your plugin's name to create a header for separation |
-| [content](./kibana-plugin-public.chromehelpextension.content.md) | (element: HTMLDivElement) => () => void
| Custom content to occur below the list of links |
-| [links](./kibana-plugin-public.chromehelpextension.links.md) | ChromeHelpExtensionMenuLink[]
| Creates unified links for sending users to documentation, GitHub, Discuss, or a custom link/button |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeHelpExtension](./kibana-plugin-public.chromehelpextension.md)
+
+## ChromeHelpExtension interface
+
+
+Signature:
+
+```typescript
+export interface ChromeHelpExtension
+```
+
+## Properties
+
+| Property | Type | Description |
+| --- | --- | --- |
+| [appName](./kibana-plugin-public.chromehelpextension.appname.md) | string
| Provide your plugin's name to create a header for separation |
+| [content](./kibana-plugin-public.chromehelpextension.content.md) | (element: HTMLDivElement) => () => void
| Custom content to occur below the list of links |
+| [links](./kibana-plugin-public.chromehelpextension.links.md) | ChromeHelpExtensionMenuLink[]
| Creates unified links for sending users to documentation, GitHub, Discuss, or a custom link/button |
+
diff --git a/docs/development/core/public/kibana-plugin-public.chromehelpextensionmenucustomlink.md b/docs/development/core/public/kibana-plugin-public.chromehelpextensionmenucustomlink.md
index daca70f3b79c1..3eed2ad36dc03 100644
--- a/docs/development/core/public/kibana-plugin-public.chromehelpextensionmenucustomlink.md
+++ b/docs/development/core/public/kibana-plugin-public.chromehelpextensionmenucustomlink.md
@@ -1,15 +1,15 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeHelpExtensionMenuCustomLink](./kibana-plugin-public.chromehelpextensionmenucustomlink.md)
-
-## ChromeHelpExtensionMenuCustomLink type
-
-
-Signature:
-
-```typescript
-export declare type ChromeHelpExtensionMenuCustomLink = EuiButtonEmptyProps & {
- linkType: 'custom';
- content: React.ReactNode;
-};
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeHelpExtensionMenuCustomLink](./kibana-plugin-public.chromehelpextensionmenucustomlink.md)
+
+## ChromeHelpExtensionMenuCustomLink type
+
+
+Signature:
+
+```typescript
+export declare type ChromeHelpExtensionMenuCustomLink = EuiButtonEmptyProps & {
+ linkType: 'custom';
+ content: React.ReactNode;
+};
+```
diff --git a/docs/development/core/public/kibana-plugin-public.chromehelpextensionmenudiscusslink.md b/docs/development/core/public/kibana-plugin-public.chromehelpextensionmenudiscusslink.md
index 8dd1c796bebf1..3885712ce9420 100644
--- a/docs/development/core/public/kibana-plugin-public.chromehelpextensionmenudiscusslink.md
+++ b/docs/development/core/public/kibana-plugin-public.chromehelpextensionmenudiscusslink.md
@@ -1,15 +1,15 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeHelpExtensionMenuDiscussLink](./kibana-plugin-public.chromehelpextensionmenudiscusslink.md)
-
-## ChromeHelpExtensionMenuDiscussLink type
-
-
-Signature:
-
-```typescript
-export declare type ChromeHelpExtensionMenuDiscussLink = EuiButtonEmptyProps & {
- linkType: 'discuss';
- href: string;
-};
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeHelpExtensionMenuDiscussLink](./kibana-plugin-public.chromehelpextensionmenudiscusslink.md)
+
+## ChromeHelpExtensionMenuDiscussLink type
+
+
+Signature:
+
+```typescript
+export declare type ChromeHelpExtensionMenuDiscussLink = EuiButtonEmptyProps & {
+ linkType: 'discuss';
+ href: string;
+};
+```
diff --git a/docs/development/core/public/kibana-plugin-public.chromehelpextensionmenudocumentationlink.md b/docs/development/core/public/kibana-plugin-public.chromehelpextensionmenudocumentationlink.md
index 0114cc245a874..25ea1690154c2 100644
--- a/docs/development/core/public/kibana-plugin-public.chromehelpextensionmenudocumentationlink.md
+++ b/docs/development/core/public/kibana-plugin-public.chromehelpextensionmenudocumentationlink.md
@@ -1,15 +1,15 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeHelpExtensionMenuDocumentationLink](./kibana-plugin-public.chromehelpextensionmenudocumentationlink.md)
-
-## ChromeHelpExtensionMenuDocumentationLink type
-
-
-Signature:
-
-```typescript
-export declare type ChromeHelpExtensionMenuDocumentationLink = EuiButtonEmptyProps & {
- linkType: 'documentation';
- href: string;
-};
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeHelpExtensionMenuDocumentationLink](./kibana-plugin-public.chromehelpextensionmenudocumentationlink.md)
+
+## ChromeHelpExtensionMenuDocumentationLink type
+
+
+Signature:
+
+```typescript
+export declare type ChromeHelpExtensionMenuDocumentationLink = EuiButtonEmptyProps & {
+ linkType: 'documentation';
+ href: string;
+};
+```
diff --git a/docs/development/core/public/kibana-plugin-public.chromehelpextensionmenugithublink.md b/docs/development/core/public/kibana-plugin-public.chromehelpextensionmenugithublink.md
index 5dd33f1a05a7f..2dc1b5b4cee5b 100644
--- a/docs/development/core/public/kibana-plugin-public.chromehelpextensionmenugithublink.md
+++ b/docs/development/core/public/kibana-plugin-public.chromehelpextensionmenugithublink.md
@@ -1,16 +1,16 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeHelpExtensionMenuGitHubLink](./kibana-plugin-public.chromehelpextensionmenugithublink.md)
-
-## ChromeHelpExtensionMenuGitHubLink type
-
-
-Signature:
-
-```typescript
-export declare type ChromeHelpExtensionMenuGitHubLink = EuiButtonEmptyProps & {
- linkType: 'github';
- labels: string[];
- title?: string;
-};
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeHelpExtensionMenuGitHubLink](./kibana-plugin-public.chromehelpextensionmenugithublink.md)
+
+## ChromeHelpExtensionMenuGitHubLink type
+
+
+Signature:
+
+```typescript
+export declare type ChromeHelpExtensionMenuGitHubLink = EuiButtonEmptyProps & {
+ linkType: 'github';
+ labels: string[];
+ title?: string;
+};
+```
diff --git a/docs/development/core/public/kibana-plugin-public.chromehelpextensionmenulink.md b/docs/development/core/public/kibana-plugin-public.chromehelpextensionmenulink.md
index 072ce165e23c5..ce55fdedab155 100644
--- a/docs/development/core/public/kibana-plugin-public.chromehelpextensionmenulink.md
+++ b/docs/development/core/public/kibana-plugin-public.chromehelpextensionmenulink.md
@@ -1,12 +1,12 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeHelpExtensionMenuLink](./kibana-plugin-public.chromehelpextensionmenulink.md)
-
-## ChromeHelpExtensionMenuLink type
-
-
-Signature:
-
-```typescript
-export declare type ChromeHelpExtensionMenuLink = ExclusiveUnion>>;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeHelpExtensionMenuLink](./kibana-plugin-public.chromehelpextensionmenulink.md)
+
+## ChromeHelpExtensionMenuLink type
+
+
+Signature:
+
+```typescript
+export declare type ChromeHelpExtensionMenuLink = ExclusiveUnion>>;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.chromenavcontrol.md b/docs/development/core/public/kibana-plugin-public.chromenavcontrol.md
index fdf56012e4729..afaef97411774 100644
--- a/docs/development/core/public/kibana-plugin-public.chromenavcontrol.md
+++ b/docs/development/core/public/kibana-plugin-public.chromenavcontrol.md
@@ -1,20 +1,20 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeNavControl](./kibana-plugin-public.chromenavcontrol.md)
-
-## ChromeNavControl interface
-
-
-Signature:
-
-```typescript
-export interface ChromeNavControl
-```
-
-## Properties
-
-| Property | Type | Description |
-| --- | --- | --- |
-| [mount](./kibana-plugin-public.chromenavcontrol.mount.md) | MountPoint
| |
-| [order](./kibana-plugin-public.chromenavcontrol.order.md) | number
| |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeNavControl](./kibana-plugin-public.chromenavcontrol.md)
+
+## ChromeNavControl interface
+
+
+Signature:
+
+```typescript
+export interface ChromeNavControl
+```
+
+## Properties
+
+| Property | Type | Description |
+| --- | --- | --- |
+| [mount](./kibana-plugin-public.chromenavcontrol.mount.md) | MountPoint
| |
+| [order](./kibana-plugin-public.chromenavcontrol.order.md) | number
| |
+
diff --git a/docs/development/core/public/kibana-plugin-public.chromenavcontrol.mount.md b/docs/development/core/public/kibana-plugin-public.chromenavcontrol.mount.md
index 3e1f5a1f78f89..6d574900fd16a 100644
--- a/docs/development/core/public/kibana-plugin-public.chromenavcontrol.mount.md
+++ b/docs/development/core/public/kibana-plugin-public.chromenavcontrol.mount.md
@@ -1,11 +1,11 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeNavControl](./kibana-plugin-public.chromenavcontrol.md) > [mount](./kibana-plugin-public.chromenavcontrol.mount.md)
-
-## ChromeNavControl.mount property
-
-Signature:
-
-```typescript
-mount: MountPoint;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeNavControl](./kibana-plugin-public.chromenavcontrol.md) > [mount](./kibana-plugin-public.chromenavcontrol.mount.md)
+
+## ChromeNavControl.mount property
+
+Signature:
+
+```typescript
+mount: MountPoint;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.chromenavcontrol.order.md b/docs/development/core/public/kibana-plugin-public.chromenavcontrol.order.md
index 22e84cebab63a..10ad35c602d21 100644
--- a/docs/development/core/public/kibana-plugin-public.chromenavcontrol.order.md
+++ b/docs/development/core/public/kibana-plugin-public.chromenavcontrol.order.md
@@ -1,11 +1,11 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeNavControl](./kibana-plugin-public.chromenavcontrol.md) > [order](./kibana-plugin-public.chromenavcontrol.order.md)
-
-## ChromeNavControl.order property
-
-Signature:
-
-```typescript
-order?: number;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeNavControl](./kibana-plugin-public.chromenavcontrol.md) > [order](./kibana-plugin-public.chromenavcontrol.order.md)
+
+## ChromeNavControl.order property
+
+Signature:
+
+```typescript
+order?: number;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.chromenavcontrols.md b/docs/development/core/public/kibana-plugin-public.chromenavcontrols.md
index 30b9a6869d1ff..f70e63ff0f2c2 100644
--- a/docs/development/core/public/kibana-plugin-public.chromenavcontrols.md
+++ b/docs/development/core/public/kibana-plugin-public.chromenavcontrols.md
@@ -1,35 +1,35 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeNavControls](./kibana-plugin-public.chromenavcontrols.md)
-
-## ChromeNavControls interface
-
-[APIs](./kibana-plugin-public.chromenavcontrols.md) for registering new controls to be displayed in the navigation bar.
-
-Signature:
-
-```typescript
-export interface ChromeNavControls
-```
-
-## Example
-
-Register a left-side nav control rendered with React.
-
-```jsx
-chrome.navControls.registerLeft({
- mount(targetDomElement) {
- ReactDOM.mount(, targetDomElement);
- return () => ReactDOM.unmountComponentAtNode(targetDomElement);
- }
-})
-
-```
-
-## Methods
-
-| Method | Description |
-| --- | --- |
-| [registerLeft(navControl)](./kibana-plugin-public.chromenavcontrols.registerleft.md) | Register a nav control to be presented on the left side of the chrome header. |
-| [registerRight(navControl)](./kibana-plugin-public.chromenavcontrols.registerright.md) | Register a nav control to be presented on the right side of the chrome header. |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeNavControls](./kibana-plugin-public.chromenavcontrols.md)
+
+## ChromeNavControls interface
+
+[APIs](./kibana-plugin-public.chromenavcontrols.md) for registering new controls to be displayed in the navigation bar.
+
+Signature:
+
+```typescript
+export interface ChromeNavControls
+```
+
+## Example
+
+Register a left-side nav control rendered with React.
+
+```jsx
+chrome.navControls.registerLeft({
+ mount(targetDomElement) {
+ ReactDOM.mount(, targetDomElement);
+ return () => ReactDOM.unmountComponentAtNode(targetDomElement);
+ }
+})
+
+```
+
+## Methods
+
+| Method | Description |
+| --- | --- |
+| [registerLeft(navControl)](./kibana-plugin-public.chromenavcontrols.registerleft.md) | Register a nav control to be presented on the left side of the chrome header. |
+| [registerRight(navControl)](./kibana-plugin-public.chromenavcontrols.registerright.md) | Register a nav control to be presented on the right side of the chrome header. |
+
diff --git a/docs/development/core/public/kibana-plugin-public.chromenavcontrols.registerleft.md b/docs/development/core/public/kibana-plugin-public.chromenavcontrols.registerleft.md
index 31867991fc041..72cf45deaa52f 100644
--- a/docs/development/core/public/kibana-plugin-public.chromenavcontrols.registerleft.md
+++ b/docs/development/core/public/kibana-plugin-public.chromenavcontrols.registerleft.md
@@ -1,24 +1,24 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeNavControls](./kibana-plugin-public.chromenavcontrols.md) > [registerLeft](./kibana-plugin-public.chromenavcontrols.registerleft.md)
-
-## ChromeNavControls.registerLeft() method
-
-Register a nav control to be presented on the left side of the chrome header.
-
-Signature:
-
-```typescript
-registerLeft(navControl: ChromeNavControl): void;
-```
-
-## Parameters
-
-| Parameter | Type | Description |
-| --- | --- | --- |
-| navControl | ChromeNavControl
| |
-
-Returns:
-
-`void`
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeNavControls](./kibana-plugin-public.chromenavcontrols.md) > [registerLeft](./kibana-plugin-public.chromenavcontrols.registerleft.md)
+
+## ChromeNavControls.registerLeft() method
+
+Register a nav control to be presented on the left side of the chrome header.
+
+Signature:
+
+```typescript
+registerLeft(navControl: ChromeNavControl): void;
+```
+
+## Parameters
+
+| Parameter | Type | Description |
+| --- | --- | --- |
+| navControl | ChromeNavControl
| |
+
+Returns:
+
+`void`
+
diff --git a/docs/development/core/public/kibana-plugin-public.chromenavcontrols.registerright.md b/docs/development/core/public/kibana-plugin-public.chromenavcontrols.registerright.md
index a6c17803561b2..6e5dab83e6b53 100644
--- a/docs/development/core/public/kibana-plugin-public.chromenavcontrols.registerright.md
+++ b/docs/development/core/public/kibana-plugin-public.chromenavcontrols.registerright.md
@@ -1,24 +1,24 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeNavControls](./kibana-plugin-public.chromenavcontrols.md) > [registerRight](./kibana-plugin-public.chromenavcontrols.registerright.md)
-
-## ChromeNavControls.registerRight() method
-
-Register a nav control to be presented on the right side of the chrome header.
-
-Signature:
-
-```typescript
-registerRight(navControl: ChromeNavControl): void;
-```
-
-## Parameters
-
-| Parameter | Type | Description |
-| --- | --- | --- |
-| navControl | ChromeNavControl
| |
-
-Returns:
-
-`void`
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeNavControls](./kibana-plugin-public.chromenavcontrols.md) > [registerRight](./kibana-plugin-public.chromenavcontrols.registerright.md)
+
+## ChromeNavControls.registerRight() method
+
+Register a nav control to be presented on the right side of the chrome header.
+
+Signature:
+
+```typescript
+registerRight(navControl: ChromeNavControl): void;
+```
+
+## Parameters
+
+| Parameter | Type | Description |
+| --- | --- | --- |
+| navControl | ChromeNavControl
| |
+
+Returns:
+
+`void`
+
diff --git a/docs/development/core/public/kibana-plugin-public.chromenavlink.active.md b/docs/development/core/public/kibana-plugin-public.chromenavlink.active.md
index 9cb278916dc4a..115dadaaeb31a 100644
--- a/docs/development/core/public/kibana-plugin-public.chromenavlink.active.md
+++ b/docs/development/core/public/kibana-plugin-public.chromenavlink.active.md
@@ -1,17 +1,17 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeNavLink](./kibana-plugin-public.chromenavlink.md) > [active](./kibana-plugin-public.chromenavlink.active.md)
-
-## ChromeNavLink.active property
-
-> Warning: This API is now obsolete.
->
->
-
-Indicates whether or not this app is currently on the screen.
-
-Signature:
-
-```typescript
-readonly active?: boolean;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeNavLink](./kibana-plugin-public.chromenavlink.md) > [active](./kibana-plugin-public.chromenavlink.active.md)
+
+## ChromeNavLink.active property
+
+> Warning: This API is now obsolete.
+>
+>
+
+Indicates whether or not this app is currently on the screen.
+
+Signature:
+
+```typescript
+readonly active?: boolean;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.chromenavlink.baseurl.md b/docs/development/core/public/kibana-plugin-public.chromenavlink.baseurl.md
index 780a17617be04..995cf040d9b80 100644
--- a/docs/development/core/public/kibana-plugin-public.chromenavlink.baseurl.md
+++ b/docs/development/core/public/kibana-plugin-public.chromenavlink.baseurl.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeNavLink](./kibana-plugin-public.chromenavlink.md) > [baseUrl](./kibana-plugin-public.chromenavlink.baseurl.md)
-
-## ChromeNavLink.baseUrl property
-
-The base route used to open the root of an application.
-
-Signature:
-
-```typescript
-readonly baseUrl: string;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeNavLink](./kibana-plugin-public.chromenavlink.md) > [baseUrl](./kibana-plugin-public.chromenavlink.baseurl.md)
+
+## ChromeNavLink.baseUrl property
+
+The base route used to open the root of an application.
+
+Signature:
+
+```typescript
+readonly baseUrl: string;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.chromenavlink.category.md b/docs/development/core/public/kibana-plugin-public.chromenavlink.category.md
index 19d5a43a29307..231bbcddc16c4 100644
--- a/docs/development/core/public/kibana-plugin-public.chromenavlink.category.md
+++ b/docs/development/core/public/kibana-plugin-public.chromenavlink.category.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeNavLink](./kibana-plugin-public.chromenavlink.md) > [category](./kibana-plugin-public.chromenavlink.category.md)
-
-## ChromeNavLink.category property
-
-The category the app lives in
-
-Signature:
-
-```typescript
-readonly category?: AppCategory;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeNavLink](./kibana-plugin-public.chromenavlink.md) > [category](./kibana-plugin-public.chromenavlink.category.md)
+
+## ChromeNavLink.category property
+
+The category the app lives in
+
+Signature:
+
+```typescript
+readonly category?: AppCategory;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.chromenavlink.disabled.md b/docs/development/core/public/kibana-plugin-public.chromenavlink.disabled.md
index d2b30530dd551..c232b095d4047 100644
--- a/docs/development/core/public/kibana-plugin-public.chromenavlink.disabled.md
+++ b/docs/development/core/public/kibana-plugin-public.chromenavlink.disabled.md
@@ -1,17 +1,17 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeNavLink](./kibana-plugin-public.chromenavlink.md) > [disabled](./kibana-plugin-public.chromenavlink.disabled.md)
-
-## ChromeNavLink.disabled property
-
-> Warning: This API is now obsolete.
->
->
-
-Disables a link from being clickable.
-
-Signature:
-
-```typescript
-readonly disabled?: boolean;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeNavLink](./kibana-plugin-public.chromenavlink.md) > [disabled](./kibana-plugin-public.chromenavlink.disabled.md)
+
+## ChromeNavLink.disabled property
+
+> Warning: This API is now obsolete.
+>
+>
+
+Disables a link from being clickable.
+
+Signature:
+
+```typescript
+readonly disabled?: boolean;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.chromenavlink.euiicontype.md b/docs/development/core/public/kibana-plugin-public.chromenavlink.euiicontype.md
index 5373e4705d1b3..2c9f872a97ff2 100644
--- a/docs/development/core/public/kibana-plugin-public.chromenavlink.euiicontype.md
+++ b/docs/development/core/public/kibana-plugin-public.chromenavlink.euiicontype.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeNavLink](./kibana-plugin-public.chromenavlink.md) > [euiIconType](./kibana-plugin-public.chromenavlink.euiicontype.md)
-
-## ChromeNavLink.euiIconType property
-
-A EUI iconType that will be used for the app's icon. This icon takes precendence over the `icon` property.
-
-Signature:
-
-```typescript
-readonly euiIconType?: string;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeNavLink](./kibana-plugin-public.chromenavlink.md) > [euiIconType](./kibana-plugin-public.chromenavlink.euiicontype.md)
+
+## ChromeNavLink.euiIconType property
+
+A EUI iconType that will be used for the app's icon. This icon takes precendence over the `icon` property.
+
+Signature:
+
+```typescript
+readonly euiIconType?: string;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.chromenavlink.hidden.md b/docs/development/core/public/kibana-plugin-public.chromenavlink.hidden.md
index 6d04ab6d78851..e3071ce3f161e 100644
--- a/docs/development/core/public/kibana-plugin-public.chromenavlink.hidden.md
+++ b/docs/development/core/public/kibana-plugin-public.chromenavlink.hidden.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeNavLink](./kibana-plugin-public.chromenavlink.md) > [hidden](./kibana-plugin-public.chromenavlink.hidden.md)
-
-## ChromeNavLink.hidden property
-
-Hides a link from the navigation.
-
-Signature:
-
-```typescript
-readonly hidden?: boolean;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeNavLink](./kibana-plugin-public.chromenavlink.md) > [hidden](./kibana-plugin-public.chromenavlink.hidden.md)
+
+## ChromeNavLink.hidden property
+
+Hides a link from the navigation.
+
+Signature:
+
+```typescript
+readonly hidden?: boolean;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.chromenavlink.icon.md b/docs/development/core/public/kibana-plugin-public.chromenavlink.icon.md
index dadb2ab044640..0bad3ba8e192d 100644
--- a/docs/development/core/public/kibana-plugin-public.chromenavlink.icon.md
+++ b/docs/development/core/public/kibana-plugin-public.chromenavlink.icon.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeNavLink](./kibana-plugin-public.chromenavlink.md) > [icon](./kibana-plugin-public.chromenavlink.icon.md)
-
-## ChromeNavLink.icon property
-
-A URL to an image file used as an icon. Used as a fallback if `euiIconType` is not provided.
-
-Signature:
-
-```typescript
-readonly icon?: string;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeNavLink](./kibana-plugin-public.chromenavlink.md) > [icon](./kibana-plugin-public.chromenavlink.icon.md)
+
+## ChromeNavLink.icon property
+
+A URL to an image file used as an icon. Used as a fallback if `euiIconType` is not provided.
+
+Signature:
+
+```typescript
+readonly icon?: string;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.chromenavlink.id.md b/docs/development/core/public/kibana-plugin-public.chromenavlink.id.md
index 7fbabc4a42032..a06a9465d19d1 100644
--- a/docs/development/core/public/kibana-plugin-public.chromenavlink.id.md
+++ b/docs/development/core/public/kibana-plugin-public.chromenavlink.id.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeNavLink](./kibana-plugin-public.chromenavlink.md) > [id](./kibana-plugin-public.chromenavlink.id.md)
-
-## ChromeNavLink.id property
-
-A unique identifier for looking up links.
-
-Signature:
-
-```typescript
-readonly id: string;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeNavLink](./kibana-plugin-public.chromenavlink.md) > [id](./kibana-plugin-public.chromenavlink.id.md)
+
+## ChromeNavLink.id property
+
+A unique identifier for looking up links.
+
+Signature:
+
+```typescript
+readonly id: string;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.chromenavlink.linktolastsuburl.md b/docs/development/core/public/kibana-plugin-public.chromenavlink.linktolastsuburl.md
index 7d76f4dc62be4..826762a29c30f 100644
--- a/docs/development/core/public/kibana-plugin-public.chromenavlink.linktolastsuburl.md
+++ b/docs/development/core/public/kibana-plugin-public.chromenavlink.linktolastsuburl.md
@@ -1,17 +1,17 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeNavLink](./kibana-plugin-public.chromenavlink.md) > [linkToLastSubUrl](./kibana-plugin-public.chromenavlink.linktolastsuburl.md)
-
-## ChromeNavLink.linkToLastSubUrl property
-
-> Warning: This API is now obsolete.
->
->
-
-Whether or not the subUrl feature should be enabled.
-
-Signature:
-
-```typescript
-readonly linkToLastSubUrl?: boolean;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeNavLink](./kibana-plugin-public.chromenavlink.md) > [linkToLastSubUrl](./kibana-plugin-public.chromenavlink.linktolastsuburl.md)
+
+## ChromeNavLink.linkToLastSubUrl property
+
+> Warning: This API is now obsolete.
+>
+>
+
+Whether or not the subUrl feature should be enabled.
+
+Signature:
+
+```typescript
+readonly linkToLastSubUrl?: boolean;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.chromenavlink.md b/docs/development/core/public/kibana-plugin-public.chromenavlink.md
index 2afd6ce2d58c4..7e7849b1a1358 100644
--- a/docs/development/core/public/kibana-plugin-public.chromenavlink.md
+++ b/docs/development/core/public/kibana-plugin-public.chromenavlink.md
@@ -1,32 +1,32 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeNavLink](./kibana-plugin-public.chromenavlink.md)
-
-## ChromeNavLink interface
-
-
-Signature:
-
-```typescript
-export interface ChromeNavLink
-```
-
-## Properties
-
-| Property | Type | Description |
-| --- | --- | --- |
-| [active](./kibana-plugin-public.chromenavlink.active.md) | boolean
| Indicates whether or not this app is currently on the screen. |
-| [baseUrl](./kibana-plugin-public.chromenavlink.baseurl.md) | string
| The base route used to open the root of an application. |
-| [category](./kibana-plugin-public.chromenavlink.category.md) | AppCategory
| The category the app lives in |
-| [disabled](./kibana-plugin-public.chromenavlink.disabled.md) | boolean
| Disables a link from being clickable. |
-| [euiIconType](./kibana-plugin-public.chromenavlink.euiicontype.md) | string
| A EUI iconType that will be used for the app's icon. This icon takes precendence over the icon
property. |
-| [hidden](./kibana-plugin-public.chromenavlink.hidden.md) | boolean
| Hides a link from the navigation. |
-| [icon](./kibana-plugin-public.chromenavlink.icon.md) | string
| A URL to an image file used as an icon. Used as a fallback if euiIconType
is not provided. |
-| [id](./kibana-plugin-public.chromenavlink.id.md) | string
| A unique identifier for looking up links. |
-| [linkToLastSubUrl](./kibana-plugin-public.chromenavlink.linktolastsuburl.md) | boolean
| Whether or not the subUrl feature should be enabled. |
-| [order](./kibana-plugin-public.chromenavlink.order.md) | number
| An ordinal used to sort nav links relative to one another for display. |
-| [subUrlBase](./kibana-plugin-public.chromenavlink.suburlbase.md) | string
| A url base that legacy apps can set to match deep URLs to an application. |
-| [title](./kibana-plugin-public.chromenavlink.title.md) | string
| The title of the application. |
-| [tooltip](./kibana-plugin-public.chromenavlink.tooltip.md) | string
| A tooltip shown when hovering over an app link. |
-| [url](./kibana-plugin-public.chromenavlink.url.md) | string
| A url that legacy apps can set to deep link into their applications. |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeNavLink](./kibana-plugin-public.chromenavlink.md)
+
+## ChromeNavLink interface
+
+
+Signature:
+
+```typescript
+export interface ChromeNavLink
+```
+
+## Properties
+
+| Property | Type | Description |
+| --- | --- | --- |
+| [active](./kibana-plugin-public.chromenavlink.active.md) | boolean
| Indicates whether or not this app is currently on the screen. |
+| [baseUrl](./kibana-plugin-public.chromenavlink.baseurl.md) | string
| The base route used to open the root of an application. |
+| [category](./kibana-plugin-public.chromenavlink.category.md) | AppCategory
| The category the app lives in |
+| [disabled](./kibana-plugin-public.chromenavlink.disabled.md) | boolean
| Disables a link from being clickable. |
+| [euiIconType](./kibana-plugin-public.chromenavlink.euiicontype.md) | string
| A EUI iconType that will be used for the app's icon. This icon takes precendence over the icon
property. |
+| [hidden](./kibana-plugin-public.chromenavlink.hidden.md) | boolean
| Hides a link from the navigation. |
+| [icon](./kibana-plugin-public.chromenavlink.icon.md) | string
| A URL to an image file used as an icon. Used as a fallback if euiIconType
is not provided. |
+| [id](./kibana-plugin-public.chromenavlink.id.md) | string
| A unique identifier for looking up links. |
+| [linkToLastSubUrl](./kibana-plugin-public.chromenavlink.linktolastsuburl.md) | boolean
| Whether or not the subUrl feature should be enabled. |
+| [order](./kibana-plugin-public.chromenavlink.order.md) | number
| An ordinal used to sort nav links relative to one another for display. |
+| [subUrlBase](./kibana-plugin-public.chromenavlink.suburlbase.md) | string
| A url base that legacy apps can set to match deep URLs to an application. |
+| [title](./kibana-plugin-public.chromenavlink.title.md) | string
| The title of the application. |
+| [tooltip](./kibana-plugin-public.chromenavlink.tooltip.md) | string
| A tooltip shown when hovering over an app link. |
+| [url](./kibana-plugin-public.chromenavlink.url.md) | string
| A url that legacy apps can set to deep link into their applications. |
+
diff --git a/docs/development/core/public/kibana-plugin-public.chromenavlink.order.md b/docs/development/core/public/kibana-plugin-public.chromenavlink.order.md
index 1fef9fc1dc359..6716d4ce8668d 100644
--- a/docs/development/core/public/kibana-plugin-public.chromenavlink.order.md
+++ b/docs/development/core/public/kibana-plugin-public.chromenavlink.order.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeNavLink](./kibana-plugin-public.chromenavlink.md) > [order](./kibana-plugin-public.chromenavlink.order.md)
-
-## ChromeNavLink.order property
-
-An ordinal used to sort nav links relative to one another for display.
-
-Signature:
-
-```typescript
-readonly order?: number;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeNavLink](./kibana-plugin-public.chromenavlink.md) > [order](./kibana-plugin-public.chromenavlink.order.md)
+
+## ChromeNavLink.order property
+
+An ordinal used to sort nav links relative to one another for display.
+
+Signature:
+
+```typescript
+readonly order?: number;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.chromenavlink.suburlbase.md b/docs/development/core/public/kibana-plugin-public.chromenavlink.suburlbase.md
index 1b8fb0574cf8b..055b39e996880 100644
--- a/docs/development/core/public/kibana-plugin-public.chromenavlink.suburlbase.md
+++ b/docs/development/core/public/kibana-plugin-public.chromenavlink.suburlbase.md
@@ -1,17 +1,17 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeNavLink](./kibana-plugin-public.chromenavlink.md) > [subUrlBase](./kibana-plugin-public.chromenavlink.suburlbase.md)
-
-## ChromeNavLink.subUrlBase property
-
-> Warning: This API is now obsolete.
->
->
-
-A url base that legacy apps can set to match deep URLs to an application.
-
-Signature:
-
-```typescript
-readonly subUrlBase?: string;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeNavLink](./kibana-plugin-public.chromenavlink.md) > [subUrlBase](./kibana-plugin-public.chromenavlink.suburlbase.md)
+
+## ChromeNavLink.subUrlBase property
+
+> Warning: This API is now obsolete.
+>
+>
+
+A url base that legacy apps can set to match deep URLs to an application.
+
+Signature:
+
+```typescript
+readonly subUrlBase?: string;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.chromenavlink.title.md b/docs/development/core/public/kibana-plugin-public.chromenavlink.title.md
index a693b971d5178..6129165a0bce1 100644
--- a/docs/development/core/public/kibana-plugin-public.chromenavlink.title.md
+++ b/docs/development/core/public/kibana-plugin-public.chromenavlink.title.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeNavLink](./kibana-plugin-public.chromenavlink.md) > [title](./kibana-plugin-public.chromenavlink.title.md)
-
-## ChromeNavLink.title property
-
-The title of the application.
-
-Signature:
-
-```typescript
-readonly title: string;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeNavLink](./kibana-plugin-public.chromenavlink.md) > [title](./kibana-plugin-public.chromenavlink.title.md)
+
+## ChromeNavLink.title property
+
+The title of the application.
+
+Signature:
+
+```typescript
+readonly title: string;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.chromenavlink.tooltip.md b/docs/development/core/public/kibana-plugin-public.chromenavlink.tooltip.md
index e1ff92d8d7442..4df513f986680 100644
--- a/docs/development/core/public/kibana-plugin-public.chromenavlink.tooltip.md
+++ b/docs/development/core/public/kibana-plugin-public.chromenavlink.tooltip.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeNavLink](./kibana-plugin-public.chromenavlink.md) > [tooltip](./kibana-plugin-public.chromenavlink.tooltip.md)
-
-## ChromeNavLink.tooltip property
-
-A tooltip shown when hovering over an app link.
-
-Signature:
-
-```typescript
-readonly tooltip?: string;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeNavLink](./kibana-plugin-public.chromenavlink.md) > [tooltip](./kibana-plugin-public.chromenavlink.tooltip.md)
+
+## ChromeNavLink.tooltip property
+
+A tooltip shown when hovering over an app link.
+
+Signature:
+
+```typescript
+readonly tooltip?: string;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.chromenavlink.url.md b/docs/development/core/public/kibana-plugin-public.chromenavlink.url.md
index 33bd8fa3411d4..d8589cf3e5223 100644
--- a/docs/development/core/public/kibana-plugin-public.chromenavlink.url.md
+++ b/docs/development/core/public/kibana-plugin-public.chromenavlink.url.md
@@ -1,17 +1,17 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeNavLink](./kibana-plugin-public.chromenavlink.md) > [url](./kibana-plugin-public.chromenavlink.url.md)
-
-## ChromeNavLink.url property
-
-> Warning: This API is now obsolete.
->
->
-
-A url that legacy apps can set to deep link into their applications.
-
-Signature:
-
-```typescript
-readonly url?: string;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeNavLink](./kibana-plugin-public.chromenavlink.md) > [url](./kibana-plugin-public.chromenavlink.url.md)
+
+## ChromeNavLink.url property
+
+> Warning: This API is now obsolete.
+>
+>
+
+A url that legacy apps can set to deep link into their applications.
+
+Signature:
+
+```typescript
+readonly url?: string;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.chromenavlinks.enableforcedappswitchernavigation.md b/docs/development/core/public/kibana-plugin-public.chromenavlinks.enableforcedappswitchernavigation.md
index 3a057f096959a..768b3a977928a 100644
--- a/docs/development/core/public/kibana-plugin-public.chromenavlinks.enableforcedappswitchernavigation.md
+++ b/docs/development/core/public/kibana-plugin-public.chromenavlinks.enableforcedappswitchernavigation.md
@@ -1,23 +1,23 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeNavLinks](./kibana-plugin-public.chromenavlinks.md) > [enableForcedAppSwitcherNavigation](./kibana-plugin-public.chromenavlinks.enableforcedappswitchernavigation.md)
-
-## ChromeNavLinks.enableForcedAppSwitcherNavigation() method
-
-Enable forced navigation mode, which will trigger a page refresh when a nav link is clicked and only the hash is updated.
-
-Signature:
-
-```typescript
-enableForcedAppSwitcherNavigation(): void;
-```
-Returns:
-
-`void`
-
-## Remarks
-
-This is only necessary when rendering the status page in place of another app, as links to that app will set the current URL and change the hash, but the routes for the correct are not loaded so nothing will happen. https://github.com/elastic/kibana/pull/29770
-
-Used only by status\_page plugin
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeNavLinks](./kibana-plugin-public.chromenavlinks.md) > [enableForcedAppSwitcherNavigation](./kibana-plugin-public.chromenavlinks.enableforcedappswitchernavigation.md)
+
+## ChromeNavLinks.enableForcedAppSwitcherNavigation() method
+
+Enable forced navigation mode, which will trigger a page refresh when a nav link is clicked and only the hash is updated.
+
+Signature:
+
+```typescript
+enableForcedAppSwitcherNavigation(): void;
+```
+Returns:
+
+`void`
+
+## Remarks
+
+This is only necessary when rendering the status page in place of another app, as links to that app will set the current URL and change the hash, but the routes for the correct are not loaded so nothing will happen. https://github.com/elastic/kibana/pull/29770
+
+Used only by status\_page plugin
+
diff --git a/docs/development/core/public/kibana-plugin-public.chromenavlinks.get.md b/docs/development/core/public/kibana-plugin-public.chromenavlinks.get.md
index fb20c3eaeb43a..3018a31ea43fa 100644
--- a/docs/development/core/public/kibana-plugin-public.chromenavlinks.get.md
+++ b/docs/development/core/public/kibana-plugin-public.chromenavlinks.get.md
@@ -1,24 +1,24 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeNavLinks](./kibana-plugin-public.chromenavlinks.md) > [get](./kibana-plugin-public.chromenavlinks.get.md)
-
-## ChromeNavLinks.get() method
-
-Get the state of a navlink at this point in time.
-
-Signature:
-
-```typescript
-get(id: string): ChromeNavLink | undefined;
-```
-
-## Parameters
-
-| Parameter | Type | Description |
-| --- | --- | --- |
-| id | string
| |
-
-Returns:
-
-`ChromeNavLink | undefined`
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeNavLinks](./kibana-plugin-public.chromenavlinks.md) > [get](./kibana-plugin-public.chromenavlinks.get.md)
+
+## ChromeNavLinks.get() method
+
+Get the state of a navlink at this point in time.
+
+Signature:
+
+```typescript
+get(id: string): ChromeNavLink | undefined;
+```
+
+## Parameters
+
+| Parameter | Type | Description |
+| --- | --- | --- |
+| id | string
| |
+
+Returns:
+
+`ChromeNavLink | undefined`
+
diff --git a/docs/development/core/public/kibana-plugin-public.chromenavlinks.getall.md b/docs/development/core/public/kibana-plugin-public.chromenavlinks.getall.md
index b483ba485139e..c80cf764927f5 100644
--- a/docs/development/core/public/kibana-plugin-public.chromenavlinks.getall.md
+++ b/docs/development/core/public/kibana-plugin-public.chromenavlinks.getall.md
@@ -1,17 +1,17 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeNavLinks](./kibana-plugin-public.chromenavlinks.md) > [getAll](./kibana-plugin-public.chromenavlinks.getall.md)
-
-## ChromeNavLinks.getAll() method
-
-Get the current state of all navlinks.
-
-Signature:
-
-```typescript
-getAll(): Array>;
-```
-Returns:
-
-`Array>`
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeNavLinks](./kibana-plugin-public.chromenavlinks.md) > [getAll](./kibana-plugin-public.chromenavlinks.getall.md)
+
+## ChromeNavLinks.getAll() method
+
+Get the current state of all navlinks.
+
+Signature:
+
+```typescript
+getAll(): Array>;
+```
+Returns:
+
+`Array>`
+
diff --git a/docs/development/core/public/kibana-plugin-public.chromenavlinks.getforceappswitchernavigation_.md b/docs/development/core/public/kibana-plugin-public.chromenavlinks.getforceappswitchernavigation_.md
index f31e30fbda3fa..3f8cf7118172e 100644
--- a/docs/development/core/public/kibana-plugin-public.chromenavlinks.getforceappswitchernavigation_.md
+++ b/docs/development/core/public/kibana-plugin-public.chromenavlinks.getforceappswitchernavigation_.md
@@ -1,17 +1,17 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeNavLinks](./kibana-plugin-public.chromenavlinks.md) > [getForceAppSwitcherNavigation$](./kibana-plugin-public.chromenavlinks.getforceappswitchernavigation_.md)
-
-## ChromeNavLinks.getForceAppSwitcherNavigation$() method
-
-An observable of the forced app switcher state.
-
-Signature:
-
-```typescript
-getForceAppSwitcherNavigation$(): Observable;
-```
-Returns:
-
-`Observable`
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeNavLinks](./kibana-plugin-public.chromenavlinks.md) > [getForceAppSwitcherNavigation$](./kibana-plugin-public.chromenavlinks.getforceappswitchernavigation_.md)
+
+## ChromeNavLinks.getForceAppSwitcherNavigation$() method
+
+An observable of the forced app switcher state.
+
+Signature:
+
+```typescript
+getForceAppSwitcherNavigation$(): Observable;
+```
+Returns:
+
+`Observable`
+
diff --git a/docs/development/core/public/kibana-plugin-public.chromenavlinks.getnavlinks_.md b/docs/development/core/public/kibana-plugin-public.chromenavlinks.getnavlinks_.md
index c455b1c6c1446..628544c2b0081 100644
--- a/docs/development/core/public/kibana-plugin-public.chromenavlinks.getnavlinks_.md
+++ b/docs/development/core/public/kibana-plugin-public.chromenavlinks.getnavlinks_.md
@@ -1,17 +1,17 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeNavLinks](./kibana-plugin-public.chromenavlinks.md) > [getNavLinks$](./kibana-plugin-public.chromenavlinks.getnavlinks_.md)
-
-## ChromeNavLinks.getNavLinks$() method
-
-Get an observable for a sorted list of navlinks.
-
-Signature:
-
-```typescript
-getNavLinks$(): Observable>>;
-```
-Returns:
-
-`Observable>>`
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeNavLinks](./kibana-plugin-public.chromenavlinks.md) > [getNavLinks$](./kibana-plugin-public.chromenavlinks.getnavlinks_.md)
+
+## ChromeNavLinks.getNavLinks$() method
+
+Get an observable for a sorted list of navlinks.
+
+Signature:
+
+```typescript
+getNavLinks$(): Observable>>;
+```
+Returns:
+
+`Observable>>`
+
diff --git a/docs/development/core/public/kibana-plugin-public.chromenavlinks.has.md b/docs/development/core/public/kibana-plugin-public.chromenavlinks.has.md
index 6deb57d9548c6..9f0267a3d09d4 100644
--- a/docs/development/core/public/kibana-plugin-public.chromenavlinks.has.md
+++ b/docs/development/core/public/kibana-plugin-public.chromenavlinks.has.md
@@ -1,24 +1,24 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeNavLinks](./kibana-plugin-public.chromenavlinks.md) > [has](./kibana-plugin-public.chromenavlinks.has.md)
-
-## ChromeNavLinks.has() method
-
-Check whether or not a navlink exists.
-
-Signature:
-
-```typescript
-has(id: string): boolean;
-```
-
-## Parameters
-
-| Parameter | Type | Description |
-| --- | --- | --- |
-| id | string
| |
-
-Returns:
-
-`boolean`
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeNavLinks](./kibana-plugin-public.chromenavlinks.md) > [has](./kibana-plugin-public.chromenavlinks.has.md)
+
+## ChromeNavLinks.has() method
+
+Check whether or not a navlink exists.
+
+Signature:
+
+```typescript
+has(id: string): boolean;
+```
+
+## Parameters
+
+| Parameter | Type | Description |
+| --- | --- | --- |
+| id | string
| |
+
+Returns:
+
+`boolean`
+
diff --git a/docs/development/core/public/kibana-plugin-public.chromenavlinks.md b/docs/development/core/public/kibana-plugin-public.chromenavlinks.md
index 280277911c695..3a8222c97cd97 100644
--- a/docs/development/core/public/kibana-plugin-public.chromenavlinks.md
+++ b/docs/development/core/public/kibana-plugin-public.chromenavlinks.md
@@ -1,27 +1,27 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeNavLinks](./kibana-plugin-public.chromenavlinks.md)
-
-## ChromeNavLinks interface
-
-[APIs](./kibana-plugin-public.chromenavlinks.md) for manipulating nav links.
-
-Signature:
-
-```typescript
-export interface ChromeNavLinks
-```
-
-## Methods
-
-| Method | Description |
-| --- | --- |
-| [enableForcedAppSwitcherNavigation()](./kibana-plugin-public.chromenavlinks.enableforcedappswitchernavigation.md) | Enable forced navigation mode, which will trigger a page refresh when a nav link is clicked and only the hash is updated. |
-| [get(id)](./kibana-plugin-public.chromenavlinks.get.md) | Get the state of a navlink at this point in time. |
-| [getAll()](./kibana-plugin-public.chromenavlinks.getall.md) | Get the current state of all navlinks. |
-| [getForceAppSwitcherNavigation$()](./kibana-plugin-public.chromenavlinks.getforceappswitchernavigation_.md) | An observable of the forced app switcher state. |
-| [getNavLinks$()](./kibana-plugin-public.chromenavlinks.getnavlinks_.md) | Get an observable for a sorted list of navlinks. |
-| [has(id)](./kibana-plugin-public.chromenavlinks.has.md) | Check whether or not a navlink exists. |
-| [showOnly(id)](./kibana-plugin-public.chromenavlinks.showonly.md) | Remove all navlinks except the one matching the given id. |
-| [update(id, values)](./kibana-plugin-public.chromenavlinks.update.md) | Update the navlink for the given id with the updated attributes. Returns the updated navlink or undefined
if it does not exist. |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeNavLinks](./kibana-plugin-public.chromenavlinks.md)
+
+## ChromeNavLinks interface
+
+[APIs](./kibana-plugin-public.chromenavlinks.md) for manipulating nav links.
+
+Signature:
+
+```typescript
+export interface ChromeNavLinks
+```
+
+## Methods
+
+| Method | Description |
+| --- | --- |
+| [enableForcedAppSwitcherNavigation()](./kibana-plugin-public.chromenavlinks.enableforcedappswitchernavigation.md) | Enable forced navigation mode, which will trigger a page refresh when a nav link is clicked and only the hash is updated. |
+| [get(id)](./kibana-plugin-public.chromenavlinks.get.md) | Get the state of a navlink at this point in time. |
+| [getAll()](./kibana-plugin-public.chromenavlinks.getall.md) | Get the current state of all navlinks. |
+| [getForceAppSwitcherNavigation$()](./kibana-plugin-public.chromenavlinks.getforceappswitchernavigation_.md) | An observable of the forced app switcher state. |
+| [getNavLinks$()](./kibana-plugin-public.chromenavlinks.getnavlinks_.md) | Get an observable for a sorted list of navlinks. |
+| [has(id)](./kibana-plugin-public.chromenavlinks.has.md) | Check whether or not a navlink exists. |
+| [showOnly(id)](./kibana-plugin-public.chromenavlinks.showonly.md) | Remove all navlinks except the one matching the given id. |
+| [update(id, values)](./kibana-plugin-public.chromenavlinks.update.md) | Update the navlink for the given id with the updated attributes. Returns the updated navlink or undefined
if it does not exist. |
+
diff --git a/docs/development/core/public/kibana-plugin-public.chromenavlinks.showonly.md b/docs/development/core/public/kibana-plugin-public.chromenavlinks.showonly.md
index 0fdb0bba0faa8..3746f3491844b 100644
--- a/docs/development/core/public/kibana-plugin-public.chromenavlinks.showonly.md
+++ b/docs/development/core/public/kibana-plugin-public.chromenavlinks.showonly.md
@@ -1,28 +1,28 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeNavLinks](./kibana-plugin-public.chromenavlinks.md) > [showOnly](./kibana-plugin-public.chromenavlinks.showonly.md)
-
-## ChromeNavLinks.showOnly() method
-
-Remove all navlinks except the one matching the given id.
-
-Signature:
-
-```typescript
-showOnly(id: string): void;
-```
-
-## Parameters
-
-| Parameter | Type | Description |
-| --- | --- | --- |
-| id | string
| |
-
-Returns:
-
-`void`
-
-## Remarks
-
-NOTE: this is not reversible.
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeNavLinks](./kibana-plugin-public.chromenavlinks.md) > [showOnly](./kibana-plugin-public.chromenavlinks.showonly.md)
+
+## ChromeNavLinks.showOnly() method
+
+Remove all navlinks except the one matching the given id.
+
+Signature:
+
+```typescript
+showOnly(id: string): void;
+```
+
+## Parameters
+
+| Parameter | Type | Description |
+| --- | --- | --- |
+| id | string
| |
+
+Returns:
+
+`void`
+
+## Remarks
+
+NOTE: this is not reversible.
+
diff --git a/docs/development/core/public/kibana-plugin-public.chromenavlinks.update.md b/docs/development/core/public/kibana-plugin-public.chromenavlinks.update.md
index 155d149f334a1..d1cd2d3b04950 100644
--- a/docs/development/core/public/kibana-plugin-public.chromenavlinks.update.md
+++ b/docs/development/core/public/kibana-plugin-public.chromenavlinks.update.md
@@ -1,30 +1,30 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeNavLinks](./kibana-plugin-public.chromenavlinks.md) > [update](./kibana-plugin-public.chromenavlinks.update.md)
-
-## ChromeNavLinks.update() method
-
-> Warning: This API is now obsolete.
->
-> Uses the [AppBase.updater$](./kibana-plugin-public.appbase.updater_.md) property when registering your application with [ApplicationSetup.register()](./kibana-plugin-public.applicationsetup.register.md) instead.
->
-
-Update the navlink for the given id with the updated attributes. Returns the updated navlink or `undefined` if it does not exist.
-
-Signature:
-
-```typescript
-update(id: string, values: ChromeNavLinkUpdateableFields): ChromeNavLink | undefined;
-```
-
-## Parameters
-
-| Parameter | Type | Description |
-| --- | --- | --- |
-| id | string
| |
-| values | ChromeNavLinkUpdateableFields
| |
-
-Returns:
-
-`ChromeNavLink | undefined`
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeNavLinks](./kibana-plugin-public.chromenavlinks.md) > [update](./kibana-plugin-public.chromenavlinks.update.md)
+
+## ChromeNavLinks.update() method
+
+> Warning: This API is now obsolete.
+>
+> Uses the [AppBase.updater$](./kibana-plugin-public.appbase.updater_.md) property when registering your application with [ApplicationSetup.register()](./kibana-plugin-public.applicationsetup.register.md) instead.
+>
+
+Update the navlink for the given id with the updated attributes. Returns the updated navlink or `undefined` if it does not exist.
+
+Signature:
+
+```typescript
+update(id: string, values: ChromeNavLinkUpdateableFields): ChromeNavLink | undefined;
+```
+
+## Parameters
+
+| Parameter | Type | Description |
+| --- | --- | --- |
+| id | string
| |
+| values | ChromeNavLinkUpdateableFields
| |
+
+Returns:
+
+`ChromeNavLink | undefined`
+
diff --git a/docs/development/core/public/kibana-plugin-public.chromenavlinkupdateablefields.md b/docs/development/core/public/kibana-plugin-public.chromenavlinkupdateablefields.md
index f8be488c170a2..6b17174975db9 100644
--- a/docs/development/core/public/kibana-plugin-public.chromenavlinkupdateablefields.md
+++ b/docs/development/core/public/kibana-plugin-public.chromenavlinkupdateablefields.md
@@ -1,12 +1,12 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeNavLinkUpdateableFields](./kibana-plugin-public.chromenavlinkupdateablefields.md)
-
-## ChromeNavLinkUpdateableFields type
-
-
-Signature:
-
-```typescript
-export declare type ChromeNavLinkUpdateableFields = Partial>;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeNavLinkUpdateableFields](./kibana-plugin-public.chromenavlinkupdateablefields.md)
+
+## ChromeNavLinkUpdateableFields type
+
+
+Signature:
+
+```typescript
+export declare type ChromeNavLinkUpdateableFields = Partial>;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.chromerecentlyaccessed.add.md b/docs/development/core/public/kibana-plugin-public.chromerecentlyaccessed.add.md
index 428f9a0d990bc..8d780f3c5d537 100644
--- a/docs/development/core/public/kibana-plugin-public.chromerecentlyaccessed.add.md
+++ b/docs/development/core/public/kibana-plugin-public.chromerecentlyaccessed.add.md
@@ -1,34 +1,34 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeRecentlyAccessed](./kibana-plugin-public.chromerecentlyaccessed.md) > [add](./kibana-plugin-public.chromerecentlyaccessed.add.md)
-
-## ChromeRecentlyAccessed.add() method
-
-Adds a new item to the recently accessed history.
-
-Signature:
-
-```typescript
-add(link: string, label: string, id: string): void;
-```
-
-## Parameters
-
-| Parameter | Type | Description |
-| --- | --- | --- |
-| link | string
| |
-| label | string
| |
-| id | string
| |
-
-Returns:
-
-`void`
-
-## Example
-
-
-```js
-chrome.recentlyAccessed.add('/app/map/1234', 'Map 1234', '1234');
-
-```
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeRecentlyAccessed](./kibana-plugin-public.chromerecentlyaccessed.md) > [add](./kibana-plugin-public.chromerecentlyaccessed.add.md)
+
+## ChromeRecentlyAccessed.add() method
+
+Adds a new item to the recently accessed history.
+
+Signature:
+
+```typescript
+add(link: string, label: string, id: string): void;
+```
+
+## Parameters
+
+| Parameter | Type | Description |
+| --- | --- | --- |
+| link | string
| |
+| label | string
| |
+| id | string
| |
+
+Returns:
+
+`void`
+
+## Example
+
+
+```js
+chrome.recentlyAccessed.add('/app/map/1234', 'Map 1234', '1234');
+
+```
+
diff --git a/docs/development/core/public/kibana-plugin-public.chromerecentlyaccessed.get.md b/docs/development/core/public/kibana-plugin-public.chromerecentlyaccessed.get.md
index 39f2ac6003a57..b176abb44a002 100644
--- a/docs/development/core/public/kibana-plugin-public.chromerecentlyaccessed.get.md
+++ b/docs/development/core/public/kibana-plugin-public.chromerecentlyaccessed.get.md
@@ -1,25 +1,25 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeRecentlyAccessed](./kibana-plugin-public.chromerecentlyaccessed.md) > [get](./kibana-plugin-public.chromerecentlyaccessed.get.md)
-
-## ChromeRecentlyAccessed.get() method
-
-Gets an Array of the current recently accessed history.
-
-Signature:
-
-```typescript
-get(): ChromeRecentlyAccessedHistoryItem[];
-```
-Returns:
-
-`ChromeRecentlyAccessedHistoryItem[]`
-
-## Example
-
-
-```js
-chrome.recentlyAccessed.get().forEach(console.log);
-
-```
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeRecentlyAccessed](./kibana-plugin-public.chromerecentlyaccessed.md) > [get](./kibana-plugin-public.chromerecentlyaccessed.get.md)
+
+## ChromeRecentlyAccessed.get() method
+
+Gets an Array of the current recently accessed history.
+
+Signature:
+
+```typescript
+get(): ChromeRecentlyAccessedHistoryItem[];
+```
+Returns:
+
+`ChromeRecentlyAccessedHistoryItem[]`
+
+## Example
+
+
+```js
+chrome.recentlyAccessed.get().forEach(console.log);
+
+```
+
diff --git a/docs/development/core/public/kibana-plugin-public.chromerecentlyaccessed.get_.md b/docs/development/core/public/kibana-plugin-public.chromerecentlyaccessed.get_.md
index 92452b185d673..d6b4e9f6b4f91 100644
--- a/docs/development/core/public/kibana-plugin-public.chromerecentlyaccessed.get_.md
+++ b/docs/development/core/public/kibana-plugin-public.chromerecentlyaccessed.get_.md
@@ -1,25 +1,25 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeRecentlyAccessed](./kibana-plugin-public.chromerecentlyaccessed.md) > [get$](./kibana-plugin-public.chromerecentlyaccessed.get_.md)
-
-## ChromeRecentlyAccessed.get$() method
-
-Gets an Observable of the array of recently accessed history.
-
-Signature:
-
-```typescript
-get$(): Observable;
-```
-Returns:
-
-`Observable`
-
-## Example
-
-
-```js
-chrome.recentlyAccessed.get$().subscribe(console.log);
-
-```
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeRecentlyAccessed](./kibana-plugin-public.chromerecentlyaccessed.md) > [get$](./kibana-plugin-public.chromerecentlyaccessed.get_.md)
+
+## ChromeRecentlyAccessed.get$() method
+
+Gets an Observable of the array of recently accessed history.
+
+Signature:
+
+```typescript
+get$(): Observable;
+```
+Returns:
+
+`Observable`
+
+## Example
+
+
+```js
+chrome.recentlyAccessed.get$().subscribe(console.log);
+
+```
+
diff --git a/docs/development/core/public/kibana-plugin-public.chromerecentlyaccessed.md b/docs/development/core/public/kibana-plugin-public.chromerecentlyaccessed.md
index 014435b6bc6ef..ed395ae3e7a0e 100644
--- a/docs/development/core/public/kibana-plugin-public.chromerecentlyaccessed.md
+++ b/docs/development/core/public/kibana-plugin-public.chromerecentlyaccessed.md
@@ -1,22 +1,22 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeRecentlyAccessed](./kibana-plugin-public.chromerecentlyaccessed.md)
-
-## ChromeRecentlyAccessed interface
-
-[APIs](./kibana-plugin-public.chromerecentlyaccessed.md) for recently accessed history.
-
-Signature:
-
-```typescript
-export interface ChromeRecentlyAccessed
-```
-
-## Methods
-
-| Method | Description |
-| --- | --- |
-| [add(link, label, id)](./kibana-plugin-public.chromerecentlyaccessed.add.md) | Adds a new item to the recently accessed history. |
-| [get()](./kibana-plugin-public.chromerecentlyaccessed.get.md) | Gets an Array of the current recently accessed history. |
-| [get$()](./kibana-plugin-public.chromerecentlyaccessed.get_.md) | Gets an Observable of the array of recently accessed history. |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeRecentlyAccessed](./kibana-plugin-public.chromerecentlyaccessed.md)
+
+## ChromeRecentlyAccessed interface
+
+[APIs](./kibana-plugin-public.chromerecentlyaccessed.md) for recently accessed history.
+
+Signature:
+
+```typescript
+export interface ChromeRecentlyAccessed
+```
+
+## Methods
+
+| Method | Description |
+| --- | --- |
+| [add(link, label, id)](./kibana-plugin-public.chromerecentlyaccessed.add.md) | Adds a new item to the recently accessed history. |
+| [get()](./kibana-plugin-public.chromerecentlyaccessed.get.md) | Gets an Array of the current recently accessed history. |
+| [get$()](./kibana-plugin-public.chromerecentlyaccessed.get_.md) | Gets an Observable of the array of recently accessed history. |
+
diff --git a/docs/development/core/public/kibana-plugin-public.chromerecentlyaccessedhistoryitem.id.md b/docs/development/core/public/kibana-plugin-public.chromerecentlyaccessedhistoryitem.id.md
index b95ac60ce91df..ea35caaae183b 100644
--- a/docs/development/core/public/kibana-plugin-public.chromerecentlyaccessedhistoryitem.id.md
+++ b/docs/development/core/public/kibana-plugin-public.chromerecentlyaccessedhistoryitem.id.md
@@ -1,11 +1,11 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeRecentlyAccessedHistoryItem](./kibana-plugin-public.chromerecentlyaccessedhistoryitem.md) > [id](./kibana-plugin-public.chromerecentlyaccessedhistoryitem.id.md)
-
-## ChromeRecentlyAccessedHistoryItem.id property
-
-Signature:
-
-```typescript
-id: string;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeRecentlyAccessedHistoryItem](./kibana-plugin-public.chromerecentlyaccessedhistoryitem.md) > [id](./kibana-plugin-public.chromerecentlyaccessedhistoryitem.id.md)
+
+## ChromeRecentlyAccessedHistoryItem.id property
+
+Signature:
+
+```typescript
+id: string;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.chromerecentlyaccessedhistoryitem.label.md b/docs/development/core/public/kibana-plugin-public.chromerecentlyaccessedhistoryitem.label.md
index 2d289ad168721..6649890acfd0d 100644
--- a/docs/development/core/public/kibana-plugin-public.chromerecentlyaccessedhistoryitem.label.md
+++ b/docs/development/core/public/kibana-plugin-public.chromerecentlyaccessedhistoryitem.label.md
@@ -1,11 +1,11 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeRecentlyAccessedHistoryItem](./kibana-plugin-public.chromerecentlyaccessedhistoryitem.md) > [label](./kibana-plugin-public.chromerecentlyaccessedhistoryitem.label.md)
-
-## ChromeRecentlyAccessedHistoryItem.label property
-
-Signature:
-
-```typescript
-label: string;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeRecentlyAccessedHistoryItem](./kibana-plugin-public.chromerecentlyaccessedhistoryitem.md) > [label](./kibana-plugin-public.chromerecentlyaccessedhistoryitem.label.md)
+
+## ChromeRecentlyAccessedHistoryItem.label property
+
+Signature:
+
+```typescript
+label: string;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.chromerecentlyaccessedhistoryitem.link.md b/docs/development/core/public/kibana-plugin-public.chromerecentlyaccessedhistoryitem.link.md
index 3123d6a5e0d79..ef4c494474c88 100644
--- a/docs/development/core/public/kibana-plugin-public.chromerecentlyaccessedhistoryitem.link.md
+++ b/docs/development/core/public/kibana-plugin-public.chromerecentlyaccessedhistoryitem.link.md
@@ -1,11 +1,11 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeRecentlyAccessedHistoryItem](./kibana-plugin-public.chromerecentlyaccessedhistoryitem.md) > [link](./kibana-plugin-public.chromerecentlyaccessedhistoryitem.link.md)
-
-## ChromeRecentlyAccessedHistoryItem.link property
-
-Signature:
-
-```typescript
-link: string;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeRecentlyAccessedHistoryItem](./kibana-plugin-public.chromerecentlyaccessedhistoryitem.md) > [link](./kibana-plugin-public.chromerecentlyaccessedhistoryitem.link.md)
+
+## ChromeRecentlyAccessedHistoryItem.link property
+
+Signature:
+
+```typescript
+link: string;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.chromerecentlyaccessedhistoryitem.md b/docs/development/core/public/kibana-plugin-public.chromerecentlyaccessedhistoryitem.md
index 1f74608e4e0f5..6c526296f1278 100644
--- a/docs/development/core/public/kibana-plugin-public.chromerecentlyaccessedhistoryitem.md
+++ b/docs/development/core/public/kibana-plugin-public.chromerecentlyaccessedhistoryitem.md
@@ -1,21 +1,21 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeRecentlyAccessedHistoryItem](./kibana-plugin-public.chromerecentlyaccessedhistoryitem.md)
-
-## ChromeRecentlyAccessedHistoryItem interface
-
-
-Signature:
-
-```typescript
-export interface ChromeRecentlyAccessedHistoryItem
-```
-
-## Properties
-
-| Property | Type | Description |
-| --- | --- | --- |
-| [id](./kibana-plugin-public.chromerecentlyaccessedhistoryitem.id.md) | string
| |
-| [label](./kibana-plugin-public.chromerecentlyaccessedhistoryitem.label.md) | string
| |
-| [link](./kibana-plugin-public.chromerecentlyaccessedhistoryitem.link.md) | string
| |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeRecentlyAccessedHistoryItem](./kibana-plugin-public.chromerecentlyaccessedhistoryitem.md)
+
+## ChromeRecentlyAccessedHistoryItem interface
+
+
+Signature:
+
+```typescript
+export interface ChromeRecentlyAccessedHistoryItem
+```
+
+## Properties
+
+| Property | Type | Description |
+| --- | --- | --- |
+| [id](./kibana-plugin-public.chromerecentlyaccessedhistoryitem.id.md) | string
| |
+| [label](./kibana-plugin-public.chromerecentlyaccessedhistoryitem.label.md) | string
| |
+| [link](./kibana-plugin-public.chromerecentlyaccessedhistoryitem.link.md) | string
| |
+
diff --git a/docs/development/core/public/kibana-plugin-public.chromestart.addapplicationclass.md b/docs/development/core/public/kibana-plugin-public.chromestart.addapplicationclass.md
index b74542014b89c..31729f6320d13 100644
--- a/docs/development/core/public/kibana-plugin-public.chromestart.addapplicationclass.md
+++ b/docs/development/core/public/kibana-plugin-public.chromestart.addapplicationclass.md
@@ -1,24 +1,24 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeStart](./kibana-plugin-public.chromestart.md) > [addApplicationClass](./kibana-plugin-public.chromestart.addapplicationclass.md)
-
-## ChromeStart.addApplicationClass() method
-
-Add a className that should be set on the application container.
-
-Signature:
-
-```typescript
-addApplicationClass(className: string): void;
-```
-
-## Parameters
-
-| Parameter | Type | Description |
-| --- | --- | --- |
-| className | string
| |
-
-Returns:
-
-`void`
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeStart](./kibana-plugin-public.chromestart.md) > [addApplicationClass](./kibana-plugin-public.chromestart.addapplicationclass.md)
+
+## ChromeStart.addApplicationClass() method
+
+Add a className that should be set on the application container.
+
+Signature:
+
+```typescript
+addApplicationClass(className: string): void;
+```
+
+## Parameters
+
+| Parameter | Type | Description |
+| --- | --- | --- |
+| className | string
| |
+
+Returns:
+
+`void`
+
diff --git a/docs/development/core/public/kibana-plugin-public.chromestart.doctitle.md b/docs/development/core/public/kibana-plugin-public.chromestart.doctitle.md
index 71eda64c24646..100afe2ae0c6e 100644
--- a/docs/development/core/public/kibana-plugin-public.chromestart.doctitle.md
+++ b/docs/development/core/public/kibana-plugin-public.chromestart.doctitle.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeStart](./kibana-plugin-public.chromestart.md) > [docTitle](./kibana-plugin-public.chromestart.doctitle.md)
-
-## ChromeStart.docTitle property
-
-APIs for accessing and updating the document title.
-
-Signature:
-
-```typescript
-docTitle: ChromeDocTitle;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeStart](./kibana-plugin-public.chromestart.md) > [docTitle](./kibana-plugin-public.chromestart.doctitle.md)
+
+## ChromeStart.docTitle property
+
+APIs for accessing and updating the document title.
+
+Signature:
+
+```typescript
+docTitle: ChromeDocTitle;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.chromestart.getapplicationclasses_.md b/docs/development/core/public/kibana-plugin-public.chromestart.getapplicationclasses_.md
index f01710478c635..51f5253ede161 100644
--- a/docs/development/core/public/kibana-plugin-public.chromestart.getapplicationclasses_.md
+++ b/docs/development/core/public/kibana-plugin-public.chromestart.getapplicationclasses_.md
@@ -1,17 +1,17 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeStart](./kibana-plugin-public.chromestart.md) > [getApplicationClasses$](./kibana-plugin-public.chromestart.getapplicationclasses_.md)
-
-## ChromeStart.getApplicationClasses$() method
-
-Get the current set of classNames that will be set on the application container.
-
-Signature:
-
-```typescript
-getApplicationClasses$(): Observable;
-```
-Returns:
-
-`Observable`
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeStart](./kibana-plugin-public.chromestart.md) > [getApplicationClasses$](./kibana-plugin-public.chromestart.getapplicationclasses_.md)
+
+## ChromeStart.getApplicationClasses$() method
+
+Get the current set of classNames that will be set on the application container.
+
+Signature:
+
+```typescript
+getApplicationClasses$(): Observable;
+```
+Returns:
+
+`Observable`
+
diff --git a/docs/development/core/public/kibana-plugin-public.chromestart.getbadge_.md b/docs/development/core/public/kibana-plugin-public.chromestart.getbadge_.md
index 36f98defeb51e..36b5c942e8dc2 100644
--- a/docs/development/core/public/kibana-plugin-public.chromestart.getbadge_.md
+++ b/docs/development/core/public/kibana-plugin-public.chromestart.getbadge_.md
@@ -1,17 +1,17 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeStart](./kibana-plugin-public.chromestart.md) > [getBadge$](./kibana-plugin-public.chromestart.getbadge_.md)
-
-## ChromeStart.getBadge$() method
-
-Get an observable of the current badge
-
-Signature:
-
-```typescript
-getBadge$(): Observable;
-```
-Returns:
-
-`Observable`
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeStart](./kibana-plugin-public.chromestart.md) > [getBadge$](./kibana-plugin-public.chromestart.getbadge_.md)
+
+## ChromeStart.getBadge$() method
+
+Get an observable of the current badge
+
+Signature:
+
+```typescript
+getBadge$(): Observable;
+```
+Returns:
+
+`Observable`
+
diff --git a/docs/development/core/public/kibana-plugin-public.chromestart.getbrand_.md b/docs/development/core/public/kibana-plugin-public.chromestart.getbrand_.md
index aab0f13070fbc..7010ccd632f4a 100644
--- a/docs/development/core/public/kibana-plugin-public.chromestart.getbrand_.md
+++ b/docs/development/core/public/kibana-plugin-public.chromestart.getbrand_.md
@@ -1,17 +1,17 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeStart](./kibana-plugin-public.chromestart.md) > [getBrand$](./kibana-plugin-public.chromestart.getbrand_.md)
-
-## ChromeStart.getBrand$() method
-
-Get an observable of the current brand information.
-
-Signature:
-
-```typescript
-getBrand$(): Observable;
-```
-Returns:
-
-`Observable`
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeStart](./kibana-plugin-public.chromestart.md) > [getBrand$](./kibana-plugin-public.chromestart.getbrand_.md)
+
+## ChromeStart.getBrand$() method
+
+Get an observable of the current brand information.
+
+Signature:
+
+```typescript
+getBrand$(): Observable;
+```
+Returns:
+
+`Observable`
+
diff --git a/docs/development/core/public/kibana-plugin-public.chromestart.getbreadcrumbs_.md b/docs/development/core/public/kibana-plugin-public.chromestart.getbreadcrumbs_.md
index 38fc384d6a704..ac97863f16ad0 100644
--- a/docs/development/core/public/kibana-plugin-public.chromestart.getbreadcrumbs_.md
+++ b/docs/development/core/public/kibana-plugin-public.chromestart.getbreadcrumbs_.md
@@ -1,17 +1,17 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeStart](./kibana-plugin-public.chromestart.md) > [getBreadcrumbs$](./kibana-plugin-public.chromestart.getbreadcrumbs_.md)
-
-## ChromeStart.getBreadcrumbs$() method
-
-Get an observable of the current list of breadcrumbs
-
-Signature:
-
-```typescript
-getBreadcrumbs$(): Observable;
-```
-Returns:
-
-`Observable`
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeStart](./kibana-plugin-public.chromestart.md) > [getBreadcrumbs$](./kibana-plugin-public.chromestart.getbreadcrumbs_.md)
+
+## ChromeStart.getBreadcrumbs$() method
+
+Get an observable of the current list of breadcrumbs
+
+Signature:
+
+```typescript
+getBreadcrumbs$(): Observable;
+```
+Returns:
+
+`Observable`
+
diff --git a/docs/development/core/public/kibana-plugin-public.chromestart.gethelpextension_.md b/docs/development/core/public/kibana-plugin-public.chromestart.gethelpextension_.md
index 6008a4f29506d..ff642651cedef 100644
--- a/docs/development/core/public/kibana-plugin-public.chromestart.gethelpextension_.md
+++ b/docs/development/core/public/kibana-plugin-public.chromestart.gethelpextension_.md
@@ -1,17 +1,17 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeStart](./kibana-plugin-public.chromestart.md) > [getHelpExtension$](./kibana-plugin-public.chromestart.gethelpextension_.md)
-
-## ChromeStart.getHelpExtension$() method
-
-Get an observable of the current custom help conttent
-
-Signature:
-
-```typescript
-getHelpExtension$(): Observable;
-```
-Returns:
-
-`Observable`
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeStart](./kibana-plugin-public.chromestart.md) > [getHelpExtension$](./kibana-plugin-public.chromestart.gethelpextension_.md)
+
+## ChromeStart.getHelpExtension$() method
+
+Get an observable of the current custom help conttent
+
+Signature:
+
+```typescript
+getHelpExtension$(): Observable;
+```
+Returns:
+
+`Observable`
+
diff --git a/docs/development/core/public/kibana-plugin-public.chromestart.getiscollapsed_.md b/docs/development/core/public/kibana-plugin-public.chromestart.getiscollapsed_.md
index 59871a78c4100..98a1d3bfdd42e 100644
--- a/docs/development/core/public/kibana-plugin-public.chromestart.getiscollapsed_.md
+++ b/docs/development/core/public/kibana-plugin-public.chromestart.getiscollapsed_.md
@@ -1,17 +1,17 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeStart](./kibana-plugin-public.chromestart.md) > [getIsCollapsed$](./kibana-plugin-public.chromestart.getiscollapsed_.md)
-
-## ChromeStart.getIsCollapsed$() method
-
-Get an observable of the current collapsed state of the chrome.
-
-Signature:
-
-```typescript
-getIsCollapsed$(): Observable;
-```
-Returns:
-
-`Observable`
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeStart](./kibana-plugin-public.chromestart.md) > [getIsCollapsed$](./kibana-plugin-public.chromestart.getiscollapsed_.md)
+
+## ChromeStart.getIsCollapsed$() method
+
+Get an observable of the current collapsed state of the chrome.
+
+Signature:
+
+```typescript
+getIsCollapsed$(): Observable;
+```
+Returns:
+
+`Observable`
+
diff --git a/docs/development/core/public/kibana-plugin-public.chromestart.getisvisible_.md b/docs/development/core/public/kibana-plugin-public.chromestart.getisvisible_.md
index f597dbd194109..8772b30cf8c8e 100644
--- a/docs/development/core/public/kibana-plugin-public.chromestart.getisvisible_.md
+++ b/docs/development/core/public/kibana-plugin-public.chromestart.getisvisible_.md
@@ -1,17 +1,17 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeStart](./kibana-plugin-public.chromestart.md) > [getIsVisible$](./kibana-plugin-public.chromestart.getisvisible_.md)
-
-## ChromeStart.getIsVisible$() method
-
-Get an observable of the current visibility state of the chrome.
-
-Signature:
-
-```typescript
-getIsVisible$(): Observable;
-```
-Returns:
-
-`Observable`
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeStart](./kibana-plugin-public.chromestart.md) > [getIsVisible$](./kibana-plugin-public.chromestart.getisvisible_.md)
+
+## ChromeStart.getIsVisible$() method
+
+Get an observable of the current visibility state of the chrome.
+
+Signature:
+
+```typescript
+getIsVisible$(): Observable;
+```
+Returns:
+
+`Observable`
+
diff --git a/docs/development/core/public/kibana-plugin-public.chromestart.md b/docs/development/core/public/kibana-plugin-public.chromestart.md
index 4e44e5bf05074..4b79f682d4e40 100644
--- a/docs/development/core/public/kibana-plugin-public.chromestart.md
+++ b/docs/development/core/public/kibana-plugin-public.chromestart.md
@@ -1,70 +1,70 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeStart](./kibana-plugin-public.chromestart.md)
-
-## ChromeStart interface
-
-ChromeStart allows plugins to customize the global chrome header UI and enrich the UX with additional information about the current location of the browser.
-
-Signature:
-
-```typescript
-export interface ChromeStart
-```
-
-## Remarks
-
-While ChromeStart exposes many APIs, they should be used sparingly and the developer should understand how they affect other plugins and applications.
-
-## Example 1
-
-How to add a recently accessed item to the sidebar:
-
-```ts
-core.chrome.recentlyAccessed.add('/app/map/1234', 'Map 1234', '1234');
-
-```
-
-## Example 2
-
-How to set the help dropdown extension:
-
-```tsx
-core.chrome.setHelpExtension(elem => {
- ReactDOM.render(, elem);
- return () => ReactDOM.unmountComponentAtNode(elem);
-});
-
-```
-
-## Properties
-
-| Property | Type | Description |
-| --- | --- | --- |
-| [docTitle](./kibana-plugin-public.chromestart.doctitle.md) | ChromeDocTitle
| APIs for accessing and updating the document title. |
-| [navControls](./kibana-plugin-public.chromestart.navcontrols.md) | ChromeNavControls
| [APIs](./kibana-plugin-public.chromenavcontrols.md) for registering new controls to be displayed in the navigation bar. |
-| [navLinks](./kibana-plugin-public.chromestart.navlinks.md) | ChromeNavLinks
| [APIs](./kibana-plugin-public.chromenavlinks.md) for manipulating nav links. |
-| [recentlyAccessed](./kibana-plugin-public.chromestart.recentlyaccessed.md) | ChromeRecentlyAccessed
| [APIs](./kibana-plugin-public.chromerecentlyaccessed.md) for recently accessed history. |
-
-## Methods
-
-| Method | Description |
-| --- | --- |
-| [addApplicationClass(className)](./kibana-plugin-public.chromestart.addapplicationclass.md) | Add a className that should be set on the application container. |
-| [getApplicationClasses$()](./kibana-plugin-public.chromestart.getapplicationclasses_.md) | Get the current set of classNames that will be set on the application container. |
-| [getBadge$()](./kibana-plugin-public.chromestart.getbadge_.md) | Get an observable of the current badge |
-| [getBrand$()](./kibana-plugin-public.chromestart.getbrand_.md) | Get an observable of the current brand information. |
-| [getBreadcrumbs$()](./kibana-plugin-public.chromestart.getbreadcrumbs_.md) | Get an observable of the current list of breadcrumbs |
-| [getHelpExtension$()](./kibana-plugin-public.chromestart.gethelpextension_.md) | Get an observable of the current custom help conttent |
-| [getIsCollapsed$()](./kibana-plugin-public.chromestart.getiscollapsed_.md) | Get an observable of the current collapsed state of the chrome. |
-| [getIsVisible$()](./kibana-plugin-public.chromestart.getisvisible_.md) | Get an observable of the current visibility state of the chrome. |
-| [removeApplicationClass(className)](./kibana-plugin-public.chromestart.removeapplicationclass.md) | Remove a className added with addApplicationClass()
. If className is unknown it is ignored. |
-| [setAppTitle(appTitle)](./kibana-plugin-public.chromestart.setapptitle.md) | Sets the current app's title |
-| [setBadge(badge)](./kibana-plugin-public.chromestart.setbadge.md) | Override the current badge |
-| [setBrand(brand)](./kibana-plugin-public.chromestart.setbrand.md) | Set the brand configuration. |
-| [setBreadcrumbs(newBreadcrumbs)](./kibana-plugin-public.chromestart.setbreadcrumbs.md) | Override the current set of breadcrumbs |
-| [setHelpExtension(helpExtension)](./kibana-plugin-public.chromestart.sethelpextension.md) | Override the current set of custom help content |
-| [setHelpSupportUrl(url)](./kibana-plugin-public.chromestart.sethelpsupporturl.md) | Override the default support URL shown in the help menu |
-| [setIsCollapsed(isCollapsed)](./kibana-plugin-public.chromestart.setiscollapsed.md) | Set the collapsed state of the chrome navigation. |
-| [setIsVisible(isVisible)](./kibana-plugin-public.chromestart.setisvisible.md) | Set the temporary visibility for the chrome. This does nothing if the chrome is hidden by default and should be used to hide the chrome for things like full-screen modes with an exit button. |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeStart](./kibana-plugin-public.chromestart.md)
+
+## ChromeStart interface
+
+ChromeStart allows plugins to customize the global chrome header UI and enrich the UX with additional information about the current location of the browser.
+
+Signature:
+
+```typescript
+export interface ChromeStart
+```
+
+## Remarks
+
+While ChromeStart exposes many APIs, they should be used sparingly and the developer should understand how they affect other plugins and applications.
+
+## Example 1
+
+How to add a recently accessed item to the sidebar:
+
+```ts
+core.chrome.recentlyAccessed.add('/app/map/1234', 'Map 1234', '1234');
+
+```
+
+## Example 2
+
+How to set the help dropdown extension:
+
+```tsx
+core.chrome.setHelpExtension(elem => {
+ ReactDOM.render(, elem);
+ return () => ReactDOM.unmountComponentAtNode(elem);
+});
+
+```
+
+## Properties
+
+| Property | Type | Description |
+| --- | --- | --- |
+| [docTitle](./kibana-plugin-public.chromestart.doctitle.md) | ChromeDocTitle
| APIs for accessing and updating the document title. |
+| [navControls](./kibana-plugin-public.chromestart.navcontrols.md) | ChromeNavControls
| [APIs](./kibana-plugin-public.chromenavcontrols.md) for registering new controls to be displayed in the navigation bar. |
+| [navLinks](./kibana-plugin-public.chromestart.navlinks.md) | ChromeNavLinks
| [APIs](./kibana-plugin-public.chromenavlinks.md) for manipulating nav links. |
+| [recentlyAccessed](./kibana-plugin-public.chromestart.recentlyaccessed.md) | ChromeRecentlyAccessed
| [APIs](./kibana-plugin-public.chromerecentlyaccessed.md) for recently accessed history. |
+
+## Methods
+
+| Method | Description |
+| --- | --- |
+| [addApplicationClass(className)](./kibana-plugin-public.chromestart.addapplicationclass.md) | Add a className that should be set on the application container. |
+| [getApplicationClasses$()](./kibana-plugin-public.chromestart.getapplicationclasses_.md) | Get the current set of classNames that will be set on the application container. |
+| [getBadge$()](./kibana-plugin-public.chromestart.getbadge_.md) | Get an observable of the current badge |
+| [getBrand$()](./kibana-plugin-public.chromestart.getbrand_.md) | Get an observable of the current brand information. |
+| [getBreadcrumbs$()](./kibana-plugin-public.chromestart.getbreadcrumbs_.md) | Get an observable of the current list of breadcrumbs |
+| [getHelpExtension$()](./kibana-plugin-public.chromestart.gethelpextension_.md) | Get an observable of the current custom help conttent |
+| [getIsCollapsed$()](./kibana-plugin-public.chromestart.getiscollapsed_.md) | Get an observable of the current collapsed state of the chrome. |
+| [getIsVisible$()](./kibana-plugin-public.chromestart.getisvisible_.md) | Get an observable of the current visibility state of the chrome. |
+| [removeApplicationClass(className)](./kibana-plugin-public.chromestart.removeapplicationclass.md) | Remove a className added with addApplicationClass()
. If className is unknown it is ignored. |
+| [setAppTitle(appTitle)](./kibana-plugin-public.chromestart.setapptitle.md) | Sets the current app's title |
+| [setBadge(badge)](./kibana-plugin-public.chromestart.setbadge.md) | Override the current badge |
+| [setBrand(brand)](./kibana-plugin-public.chromestart.setbrand.md) | Set the brand configuration. |
+| [setBreadcrumbs(newBreadcrumbs)](./kibana-plugin-public.chromestart.setbreadcrumbs.md) | Override the current set of breadcrumbs |
+| [setHelpExtension(helpExtension)](./kibana-plugin-public.chromestart.sethelpextension.md) | Override the current set of custom help content |
+| [setHelpSupportUrl(url)](./kibana-plugin-public.chromestart.sethelpsupporturl.md) | Override the default support URL shown in the help menu |
+| [setIsCollapsed(isCollapsed)](./kibana-plugin-public.chromestart.setiscollapsed.md) | Set the collapsed state of the chrome navigation. |
+| [setIsVisible(isVisible)](./kibana-plugin-public.chromestart.setisvisible.md) | Set the temporary visibility for the chrome. This does nothing if the chrome is hidden by default and should be used to hide the chrome for things like full-screen modes with an exit button. |
+
diff --git a/docs/development/core/public/kibana-plugin-public.chromestart.navcontrols.md b/docs/development/core/public/kibana-plugin-public.chromestart.navcontrols.md
index 0a8e0e5c6da2b..0ba72348499d2 100644
--- a/docs/development/core/public/kibana-plugin-public.chromestart.navcontrols.md
+++ b/docs/development/core/public/kibana-plugin-public.chromestart.navcontrols.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeStart](./kibana-plugin-public.chromestart.md) > [navControls](./kibana-plugin-public.chromestart.navcontrols.md)
-
-## ChromeStart.navControls property
-
-[APIs](./kibana-plugin-public.chromenavcontrols.md) for registering new controls to be displayed in the navigation bar.
-
-Signature:
-
-```typescript
-navControls: ChromeNavControls;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeStart](./kibana-plugin-public.chromestart.md) > [navControls](./kibana-plugin-public.chromestart.navcontrols.md)
+
+## ChromeStart.navControls property
+
+[APIs](./kibana-plugin-public.chromenavcontrols.md) for registering new controls to be displayed in the navigation bar.
+
+Signature:
+
+```typescript
+navControls: ChromeNavControls;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.chromestart.navlinks.md b/docs/development/core/public/kibana-plugin-public.chromestart.navlinks.md
index 047e72d9ce819..db512ed83942d 100644
--- a/docs/development/core/public/kibana-plugin-public.chromestart.navlinks.md
+++ b/docs/development/core/public/kibana-plugin-public.chromestart.navlinks.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeStart](./kibana-plugin-public.chromestart.md) > [navLinks](./kibana-plugin-public.chromestart.navlinks.md)
-
-## ChromeStart.navLinks property
-
-[APIs](./kibana-plugin-public.chromenavlinks.md) for manipulating nav links.
-
-Signature:
-
-```typescript
-navLinks: ChromeNavLinks;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeStart](./kibana-plugin-public.chromestart.md) > [navLinks](./kibana-plugin-public.chromestart.navlinks.md)
+
+## ChromeStart.navLinks property
+
+[APIs](./kibana-plugin-public.chromenavlinks.md) for manipulating nav links.
+
+Signature:
+
+```typescript
+navLinks: ChromeNavLinks;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.chromestart.recentlyaccessed.md b/docs/development/core/public/kibana-plugin-public.chromestart.recentlyaccessed.md
index d2e54ca956cae..14b85cea366ec 100644
--- a/docs/development/core/public/kibana-plugin-public.chromestart.recentlyaccessed.md
+++ b/docs/development/core/public/kibana-plugin-public.chromestart.recentlyaccessed.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeStart](./kibana-plugin-public.chromestart.md) > [recentlyAccessed](./kibana-plugin-public.chromestart.recentlyaccessed.md)
-
-## ChromeStart.recentlyAccessed property
-
-[APIs](./kibana-plugin-public.chromerecentlyaccessed.md) for recently accessed history.
-
-Signature:
-
-```typescript
-recentlyAccessed: ChromeRecentlyAccessed;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeStart](./kibana-plugin-public.chromestart.md) > [recentlyAccessed](./kibana-plugin-public.chromestart.recentlyaccessed.md)
+
+## ChromeStart.recentlyAccessed property
+
+[APIs](./kibana-plugin-public.chromerecentlyaccessed.md) for recently accessed history.
+
+Signature:
+
+```typescript
+recentlyAccessed: ChromeRecentlyAccessed;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.chromestart.removeapplicationclass.md b/docs/development/core/public/kibana-plugin-public.chromestart.removeapplicationclass.md
index 73a0f65449a20..3b5ca813218dc 100644
--- a/docs/development/core/public/kibana-plugin-public.chromestart.removeapplicationclass.md
+++ b/docs/development/core/public/kibana-plugin-public.chromestart.removeapplicationclass.md
@@ -1,24 +1,24 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeStart](./kibana-plugin-public.chromestart.md) > [removeApplicationClass](./kibana-plugin-public.chromestart.removeapplicationclass.md)
-
-## ChromeStart.removeApplicationClass() method
-
-Remove a className added with `addApplicationClass()`. If className is unknown it is ignored.
-
-Signature:
-
-```typescript
-removeApplicationClass(className: string): void;
-```
-
-## Parameters
-
-| Parameter | Type | Description |
-| --- | --- | --- |
-| className | string
| |
-
-Returns:
-
-`void`
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeStart](./kibana-plugin-public.chromestart.md) > [removeApplicationClass](./kibana-plugin-public.chromestart.removeapplicationclass.md)
+
+## ChromeStart.removeApplicationClass() method
+
+Remove a className added with `addApplicationClass()`. If className is unknown it is ignored.
+
+Signature:
+
+```typescript
+removeApplicationClass(className: string): void;
+```
+
+## Parameters
+
+| Parameter | Type | Description |
+| --- | --- | --- |
+| className | string
| |
+
+Returns:
+
+`void`
+
diff --git a/docs/development/core/public/kibana-plugin-public.chromestart.setapptitle.md b/docs/development/core/public/kibana-plugin-public.chromestart.setapptitle.md
index ec24b77f127fe..4927bd58b19af 100644
--- a/docs/development/core/public/kibana-plugin-public.chromestart.setapptitle.md
+++ b/docs/development/core/public/kibana-plugin-public.chromestart.setapptitle.md
@@ -1,24 +1,24 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeStart](./kibana-plugin-public.chromestart.md) > [setAppTitle](./kibana-plugin-public.chromestart.setapptitle.md)
-
-## ChromeStart.setAppTitle() method
-
-Sets the current app's title
-
-Signature:
-
-```typescript
-setAppTitle(appTitle: string): void;
-```
-
-## Parameters
-
-| Parameter | Type | Description |
-| --- | --- | --- |
-| appTitle | string
| |
-
-Returns:
-
-`void`
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeStart](./kibana-plugin-public.chromestart.md) > [setAppTitle](./kibana-plugin-public.chromestart.setapptitle.md)
+
+## ChromeStart.setAppTitle() method
+
+Sets the current app's title
+
+Signature:
+
+```typescript
+setAppTitle(appTitle: string): void;
+```
+
+## Parameters
+
+| Parameter | Type | Description |
+| --- | --- | --- |
+| appTitle | string
| |
+
+Returns:
+
+`void`
+
diff --git a/docs/development/core/public/kibana-plugin-public.chromestart.setbadge.md b/docs/development/core/public/kibana-plugin-public.chromestart.setbadge.md
index a9da8e2fec641..cbbe408c1a791 100644
--- a/docs/development/core/public/kibana-plugin-public.chromestart.setbadge.md
+++ b/docs/development/core/public/kibana-plugin-public.chromestart.setbadge.md
@@ -1,24 +1,24 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeStart](./kibana-plugin-public.chromestart.md) > [setBadge](./kibana-plugin-public.chromestart.setbadge.md)
-
-## ChromeStart.setBadge() method
-
-Override the current badge
-
-Signature:
-
-```typescript
-setBadge(badge?: ChromeBadge): void;
-```
-
-## Parameters
-
-| Parameter | Type | Description |
-| --- | --- | --- |
-| badge | ChromeBadge
| |
-
-Returns:
-
-`void`
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeStart](./kibana-plugin-public.chromestart.md) > [setBadge](./kibana-plugin-public.chromestart.setbadge.md)
+
+## ChromeStart.setBadge() method
+
+Override the current badge
+
+Signature:
+
+```typescript
+setBadge(badge?: ChromeBadge): void;
+```
+
+## Parameters
+
+| Parameter | Type | Description |
+| --- | --- | --- |
+| badge | ChromeBadge
| |
+
+Returns:
+
+`void`
+
diff --git a/docs/development/core/public/kibana-plugin-public.chromestart.setbrand.md b/docs/development/core/public/kibana-plugin-public.chromestart.setbrand.md
index 3fcf9df612594..487dcb227ba23 100644
--- a/docs/development/core/public/kibana-plugin-public.chromestart.setbrand.md
+++ b/docs/development/core/public/kibana-plugin-public.chromestart.setbrand.md
@@ -1,39 +1,39 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeStart](./kibana-plugin-public.chromestart.md) > [setBrand](./kibana-plugin-public.chromestart.setbrand.md)
-
-## ChromeStart.setBrand() method
-
-Set the brand configuration.
-
-Signature:
-
-```typescript
-setBrand(brand: ChromeBrand): void;
-```
-
-## Parameters
-
-| Parameter | Type | Description |
-| --- | --- | --- |
-| brand | ChromeBrand
| |
-
-Returns:
-
-`void`
-
-## Remarks
-
-Normally the `logo` property will be rendered as the CSS background for the home link in the chrome navigation, but when the page is rendered in a small window the `smallLogo` will be used and rendered at about 45px wide.
-
-## Example
-
-
-```js
-chrome.setBrand({
- logo: 'url(/plugins/app/logo.png) center no-repeat'
- smallLogo: 'url(/plugins/app/logo-small.png) center no-repeat'
-})
-
-```
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeStart](./kibana-plugin-public.chromestart.md) > [setBrand](./kibana-plugin-public.chromestart.setbrand.md)
+
+## ChromeStart.setBrand() method
+
+Set the brand configuration.
+
+Signature:
+
+```typescript
+setBrand(brand: ChromeBrand): void;
+```
+
+## Parameters
+
+| Parameter | Type | Description |
+| --- | --- | --- |
+| brand | ChromeBrand
| |
+
+Returns:
+
+`void`
+
+## Remarks
+
+Normally the `logo` property will be rendered as the CSS background for the home link in the chrome navigation, but when the page is rendered in a small window the `smallLogo` will be used and rendered at about 45px wide.
+
+## Example
+
+
+```js
+chrome.setBrand({
+ logo: 'url(/plugins/app/logo.png) center no-repeat'
+ smallLogo: 'url(/plugins/app/logo-small.png) center no-repeat'
+})
+
+```
+
diff --git a/docs/development/core/public/kibana-plugin-public.chromestart.setbreadcrumbs.md b/docs/development/core/public/kibana-plugin-public.chromestart.setbreadcrumbs.md
index a533ea34a9106..0c54d123454e0 100644
--- a/docs/development/core/public/kibana-plugin-public.chromestart.setbreadcrumbs.md
+++ b/docs/development/core/public/kibana-plugin-public.chromestart.setbreadcrumbs.md
@@ -1,24 +1,24 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeStart](./kibana-plugin-public.chromestart.md) > [setBreadcrumbs](./kibana-plugin-public.chromestart.setbreadcrumbs.md)
-
-## ChromeStart.setBreadcrumbs() method
-
-Override the current set of breadcrumbs
-
-Signature:
-
-```typescript
-setBreadcrumbs(newBreadcrumbs: ChromeBreadcrumb[]): void;
-```
-
-## Parameters
-
-| Parameter | Type | Description |
-| --- | --- | --- |
-| newBreadcrumbs | ChromeBreadcrumb[]
| |
-
-Returns:
-
-`void`
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeStart](./kibana-plugin-public.chromestart.md) > [setBreadcrumbs](./kibana-plugin-public.chromestart.setbreadcrumbs.md)
+
+## ChromeStart.setBreadcrumbs() method
+
+Override the current set of breadcrumbs
+
+Signature:
+
+```typescript
+setBreadcrumbs(newBreadcrumbs: ChromeBreadcrumb[]): void;
+```
+
+## Parameters
+
+| Parameter | Type | Description |
+| --- | --- | --- |
+| newBreadcrumbs | ChromeBreadcrumb[]
| |
+
+Returns:
+
+`void`
+
diff --git a/docs/development/core/public/kibana-plugin-public.chromestart.sethelpextension.md b/docs/development/core/public/kibana-plugin-public.chromestart.sethelpextension.md
index 900848e7756e2..1cfa1b19cb0fe 100644
--- a/docs/development/core/public/kibana-plugin-public.chromestart.sethelpextension.md
+++ b/docs/development/core/public/kibana-plugin-public.chromestart.sethelpextension.md
@@ -1,24 +1,24 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeStart](./kibana-plugin-public.chromestart.md) > [setHelpExtension](./kibana-plugin-public.chromestart.sethelpextension.md)
-
-## ChromeStart.setHelpExtension() method
-
-Override the current set of custom help content
-
-Signature:
-
-```typescript
-setHelpExtension(helpExtension?: ChromeHelpExtension): void;
-```
-
-## Parameters
-
-| Parameter | Type | Description |
-| --- | --- | --- |
-| helpExtension | ChromeHelpExtension
| |
-
-Returns:
-
-`void`
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeStart](./kibana-plugin-public.chromestart.md) > [setHelpExtension](./kibana-plugin-public.chromestart.sethelpextension.md)
+
+## ChromeStart.setHelpExtension() method
+
+Override the current set of custom help content
+
+Signature:
+
+```typescript
+setHelpExtension(helpExtension?: ChromeHelpExtension): void;
+```
+
+## Parameters
+
+| Parameter | Type | Description |
+| --- | --- | --- |
+| helpExtension | ChromeHelpExtension
| |
+
+Returns:
+
+`void`
+
diff --git a/docs/development/core/public/kibana-plugin-public.chromestart.sethelpsupporturl.md b/docs/development/core/public/kibana-plugin-public.chromestart.sethelpsupporturl.md
index 975283ce59cb7..9f1869bf3f950 100644
--- a/docs/development/core/public/kibana-plugin-public.chromestart.sethelpsupporturl.md
+++ b/docs/development/core/public/kibana-plugin-public.chromestart.sethelpsupporturl.md
@@ -1,24 +1,24 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeStart](./kibana-plugin-public.chromestart.md) > [setHelpSupportUrl](./kibana-plugin-public.chromestart.sethelpsupporturl.md)
-
-## ChromeStart.setHelpSupportUrl() method
-
-Override the default support URL shown in the help menu
-
-Signature:
-
-```typescript
-setHelpSupportUrl(url: string): void;
-```
-
-## Parameters
-
-| Parameter | Type | Description |
-| --- | --- | --- |
-| url | string
| |
-
-Returns:
-
-`void`
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeStart](./kibana-plugin-public.chromestart.md) > [setHelpSupportUrl](./kibana-plugin-public.chromestart.sethelpsupporturl.md)
+
+## ChromeStart.setHelpSupportUrl() method
+
+Override the default support URL shown in the help menu
+
+Signature:
+
+```typescript
+setHelpSupportUrl(url: string): void;
+```
+
+## Parameters
+
+| Parameter | Type | Description |
+| --- | --- | --- |
+| url | string
| |
+
+Returns:
+
+`void`
+
diff --git a/docs/development/core/public/kibana-plugin-public.chromestart.setiscollapsed.md b/docs/development/core/public/kibana-plugin-public.chromestart.setiscollapsed.md
index 59732bf103acc..8cfa2bd9ba6d9 100644
--- a/docs/development/core/public/kibana-plugin-public.chromestart.setiscollapsed.md
+++ b/docs/development/core/public/kibana-plugin-public.chromestart.setiscollapsed.md
@@ -1,24 +1,24 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeStart](./kibana-plugin-public.chromestart.md) > [setIsCollapsed](./kibana-plugin-public.chromestart.setiscollapsed.md)
-
-## ChromeStart.setIsCollapsed() method
-
-Set the collapsed state of the chrome navigation.
-
-Signature:
-
-```typescript
-setIsCollapsed(isCollapsed: boolean): void;
-```
-
-## Parameters
-
-| Parameter | Type | Description |
-| --- | --- | --- |
-| isCollapsed | boolean
| |
-
-Returns:
-
-`void`
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeStart](./kibana-plugin-public.chromestart.md) > [setIsCollapsed](./kibana-plugin-public.chromestart.setiscollapsed.md)
+
+## ChromeStart.setIsCollapsed() method
+
+Set the collapsed state of the chrome navigation.
+
+Signature:
+
+```typescript
+setIsCollapsed(isCollapsed: boolean): void;
+```
+
+## Parameters
+
+| Parameter | Type | Description |
+| --- | --- | --- |
+| isCollapsed | boolean
| |
+
+Returns:
+
+`void`
+
diff --git a/docs/development/core/public/kibana-plugin-public.chromestart.setisvisible.md b/docs/development/core/public/kibana-plugin-public.chromestart.setisvisible.md
index 1536c82f00086..471efb270416a 100644
--- a/docs/development/core/public/kibana-plugin-public.chromestart.setisvisible.md
+++ b/docs/development/core/public/kibana-plugin-public.chromestart.setisvisible.md
@@ -1,24 +1,24 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeStart](./kibana-plugin-public.chromestart.md) > [setIsVisible](./kibana-plugin-public.chromestart.setisvisible.md)
-
-## ChromeStart.setIsVisible() method
-
-Set the temporary visibility for the chrome. This does nothing if the chrome is hidden by default and should be used to hide the chrome for things like full-screen modes with an exit button.
-
-Signature:
-
-```typescript
-setIsVisible(isVisible: boolean): void;
-```
-
-## Parameters
-
-| Parameter | Type | Description |
-| --- | --- | --- |
-| isVisible | boolean
| |
-
-Returns:
-
-`void`
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ChromeStart](./kibana-plugin-public.chromestart.md) > [setIsVisible](./kibana-plugin-public.chromestart.setisvisible.md)
+
+## ChromeStart.setIsVisible() method
+
+Set the temporary visibility for the chrome. This does nothing if the chrome is hidden by default and should be used to hide the chrome for things like full-screen modes with an exit button.
+
+Signature:
+
+```typescript
+setIsVisible(isVisible: boolean): void;
+```
+
+## Parameters
+
+| Parameter | Type | Description |
+| --- | --- | --- |
+| isVisible | boolean
| |
+
+Returns:
+
+`void`
+
diff --git a/docs/development/core/public/kibana-plugin-public.contextsetup.createcontextcontainer.md b/docs/development/core/public/kibana-plugin-public.contextsetup.createcontextcontainer.md
index 5334eee842577..e1bb5bedd5a7e 100644
--- a/docs/development/core/public/kibana-plugin-public.contextsetup.createcontextcontainer.md
+++ b/docs/development/core/public/kibana-plugin-public.contextsetup.createcontextcontainer.md
@@ -1,17 +1,17 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ContextSetup](./kibana-plugin-public.contextsetup.md) > [createContextContainer](./kibana-plugin-public.contextsetup.createcontextcontainer.md)
-
-## ContextSetup.createContextContainer() method
-
-Creates a new [IContextContainer](./kibana-plugin-public.icontextcontainer.md) for a service owner.
-
-Signature:
-
-```typescript
-createContextContainer>(): IContextContainer;
-```
-Returns:
-
-`IContextContainer`
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ContextSetup](./kibana-plugin-public.contextsetup.md) > [createContextContainer](./kibana-plugin-public.contextsetup.createcontextcontainer.md)
+
+## ContextSetup.createContextContainer() method
+
+Creates a new [IContextContainer](./kibana-plugin-public.icontextcontainer.md) for a service owner.
+
+Signature:
+
+```typescript
+createContextContainer>(): IContextContainer;
+```
+Returns:
+
+`IContextContainer`
+
diff --git a/docs/development/core/public/kibana-plugin-public.contextsetup.md b/docs/development/core/public/kibana-plugin-public.contextsetup.md
index d4399b6ba70c4..fe9a2e3004708 100644
--- a/docs/development/core/public/kibana-plugin-public.contextsetup.md
+++ b/docs/development/core/public/kibana-plugin-public.contextsetup.md
@@ -1,138 +1,138 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ContextSetup](./kibana-plugin-public.contextsetup.md)
-
-## ContextSetup interface
-
-An object that handles registration of context providers and configuring handlers with context.
-
-Signature:
-
-```typescript
-export interface ContextSetup
-```
-
-## Remarks
-
-A [IContextContainer](./kibana-plugin-public.icontextcontainer.md) can be used by any Core service or plugin (known as the "service owner") which wishes to expose APIs in a handler function. The container object will manage registering context providers and configuring a handler with all of the contexts that should be exposed to the handler's plugin. This is dependent on the dependencies that the handler's plugin declares.
-
-Contexts providers are executed in the order they were registered. Each provider gets access to context values provided by any plugins that it depends on.
-
-In order to configure a handler with context, you must call the [IContextContainer.createHandler()](./kibana-plugin-public.icontextcontainer.createhandler.md) function and use the returned handler which will automatically build a context object when called.
-
-When registering context or creating handlers, the \_calling plugin's opaque id\_ must be provided. This id is passed in via the plugin's initializer and can be accessed from the [PluginInitializerContext.opaqueId](./kibana-plugin-public.plugininitializercontext.opaqueid.md) Note this should NOT be the context service owner's id, but the plugin that is actually registering the context or handler.
-
-```ts
-// Correct
-class MyPlugin {
- private readonly handlers = new Map();
-
- setup(core) {
- this.contextContainer = core.context.createContextContainer();
- return {
- registerContext(pluginOpaqueId, contextName, provider) {
- this.contextContainer.registerContext(pluginOpaqueId, contextName, provider);
- },
- registerRoute(pluginOpaqueId, path, handler) {
- this.handlers.set(
- path,
- this.contextContainer.createHandler(pluginOpaqueId, handler)
- );
- }
- }
- }
-}
-
-// Incorrect
-class MyPlugin {
- private readonly handlers = new Map();
-
- constructor(private readonly initContext: PluginInitializerContext) {}
-
- setup(core) {
- this.contextContainer = core.context.createContextContainer();
- return {
- registerContext(contextName, provider) {
- // BUG!
- // This would leak this context to all handlers rather that only plugins that depend on the calling plugin.
- this.contextContainer.registerContext(this.initContext.opaqueId, contextName, provider);
- },
- registerRoute(path, handler) {
- this.handlers.set(
- path,
- // BUG!
- // This handler will not receive any contexts provided by other dependencies of the calling plugin.
- this.contextContainer.createHandler(this.initContext.opaqueId, handler)
- );
- }
- }
- }
-}
-
-```
-
-## Example
-
-Say we're creating a plugin for rendering visualizations that allows new rendering methods to be registered. If we want to offer context to these rendering methods, we can leverage the ContextService to manage these contexts.
-
-```ts
-export interface VizRenderContext {
- core: {
- i18n: I18nStart;
- uiSettings: IUiSettingsClient;
- }
- [contextName: string]: unknown;
-}
-
-export type VizRenderer = (context: VizRenderContext, domElement: HTMLElement) => () => void;
-// When a renderer is bound via `contextContainer.createHandler` this is the type that will be returned.
-type BoundVizRenderer = (domElement: HTMLElement) => () => void;
-
-class VizRenderingPlugin {
- private readonly contextContainer?: IContextContainer;
- private readonly vizRenderers = new Map();
-
- constructor(private readonly initContext: PluginInitializerContext) {}
-
- setup(core) {
- this.contextContainer = core.context.createContextContainer();
-
- return {
- registerContext: this.contextContainer.registerContext,
- registerVizRenderer: (plugin: PluginOpaqueId, renderMethod: string, renderer: VizTypeRenderer) =>
- this.vizRenderers.set(renderMethod, this.contextContainer.createHandler(plugin, renderer)),
- };
- }
-
- start(core) {
- // Register the core context available to all renderers. Use the VizRendererContext's opaqueId as the first arg.
- this.contextContainer.registerContext(this.initContext.opaqueId, 'core', () => ({
- i18n: core.i18n,
- uiSettings: core.uiSettings
- }));
-
- return {
- registerContext: this.contextContainer.registerContext,
-
- renderVizualization: (renderMethod: string, domElement: HTMLElement) => {
- if (!this.vizRenderer.has(renderMethod)) {
- throw new Error(`Render method '${renderMethod}' has not been registered`);
- }
-
- // The handler can now be called directly with only an `HTMLElement` and will automatically
- // have a new `context` object created and populated by the context container.
- const handler = this.vizRenderers.get(renderMethod)
- return handler(domElement);
- }
- };
- }
-}
-
-```
-
-## Methods
-
-| Method | Description |
-| --- | --- |
-| [createContextContainer()](./kibana-plugin-public.contextsetup.createcontextcontainer.md) | Creates a new [IContextContainer](./kibana-plugin-public.icontextcontainer.md) for a service owner. |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ContextSetup](./kibana-plugin-public.contextsetup.md)
+
+## ContextSetup interface
+
+An object that handles registration of context providers and configuring handlers with context.
+
+Signature:
+
+```typescript
+export interface ContextSetup
+```
+
+## Remarks
+
+A [IContextContainer](./kibana-plugin-public.icontextcontainer.md) can be used by any Core service or plugin (known as the "service owner") which wishes to expose APIs in a handler function. The container object will manage registering context providers and configuring a handler with all of the contexts that should be exposed to the handler's plugin. This is dependent on the dependencies that the handler's plugin declares.
+
+Contexts providers are executed in the order they were registered. Each provider gets access to context values provided by any plugins that it depends on.
+
+In order to configure a handler with context, you must call the [IContextContainer.createHandler()](./kibana-plugin-public.icontextcontainer.createhandler.md) function and use the returned handler which will automatically build a context object when called.
+
+When registering context or creating handlers, the \_calling plugin's opaque id\_ must be provided. This id is passed in via the plugin's initializer and can be accessed from the [PluginInitializerContext.opaqueId](./kibana-plugin-public.plugininitializercontext.opaqueid.md) Note this should NOT be the context service owner's id, but the plugin that is actually registering the context or handler.
+
+```ts
+// Correct
+class MyPlugin {
+ private readonly handlers = new Map();
+
+ setup(core) {
+ this.contextContainer = core.context.createContextContainer();
+ return {
+ registerContext(pluginOpaqueId, contextName, provider) {
+ this.contextContainer.registerContext(pluginOpaqueId, contextName, provider);
+ },
+ registerRoute(pluginOpaqueId, path, handler) {
+ this.handlers.set(
+ path,
+ this.contextContainer.createHandler(pluginOpaqueId, handler)
+ );
+ }
+ }
+ }
+}
+
+// Incorrect
+class MyPlugin {
+ private readonly handlers = new Map();
+
+ constructor(private readonly initContext: PluginInitializerContext) {}
+
+ setup(core) {
+ this.contextContainer = core.context.createContextContainer();
+ return {
+ registerContext(contextName, provider) {
+ // BUG!
+ // This would leak this context to all handlers rather that only plugins that depend on the calling plugin.
+ this.contextContainer.registerContext(this.initContext.opaqueId, contextName, provider);
+ },
+ registerRoute(path, handler) {
+ this.handlers.set(
+ path,
+ // BUG!
+ // This handler will not receive any contexts provided by other dependencies of the calling plugin.
+ this.contextContainer.createHandler(this.initContext.opaqueId, handler)
+ );
+ }
+ }
+ }
+}
+
+```
+
+## Example
+
+Say we're creating a plugin for rendering visualizations that allows new rendering methods to be registered. If we want to offer context to these rendering methods, we can leverage the ContextService to manage these contexts.
+
+```ts
+export interface VizRenderContext {
+ core: {
+ i18n: I18nStart;
+ uiSettings: IUiSettingsClient;
+ }
+ [contextName: string]: unknown;
+}
+
+export type VizRenderer = (context: VizRenderContext, domElement: HTMLElement) => () => void;
+// When a renderer is bound via `contextContainer.createHandler` this is the type that will be returned.
+type BoundVizRenderer = (domElement: HTMLElement) => () => void;
+
+class VizRenderingPlugin {
+ private readonly contextContainer?: IContextContainer;
+ private readonly vizRenderers = new Map();
+
+ constructor(private readonly initContext: PluginInitializerContext) {}
+
+ setup(core) {
+ this.contextContainer = core.context.createContextContainer();
+
+ return {
+ registerContext: this.contextContainer.registerContext,
+ registerVizRenderer: (plugin: PluginOpaqueId, renderMethod: string, renderer: VizTypeRenderer) =>
+ this.vizRenderers.set(renderMethod, this.contextContainer.createHandler(plugin, renderer)),
+ };
+ }
+
+ start(core) {
+ // Register the core context available to all renderers. Use the VizRendererContext's opaqueId as the first arg.
+ this.contextContainer.registerContext(this.initContext.opaqueId, 'core', () => ({
+ i18n: core.i18n,
+ uiSettings: core.uiSettings
+ }));
+
+ return {
+ registerContext: this.contextContainer.registerContext,
+
+ renderVizualization: (renderMethod: string, domElement: HTMLElement) => {
+ if (!this.vizRenderer.has(renderMethod)) {
+ throw new Error(`Render method '${renderMethod}' has not been registered`);
+ }
+
+ // The handler can now be called directly with only an `HTMLElement` and will automatically
+ // have a new `context` object created and populated by the context container.
+ const handler = this.vizRenderers.get(renderMethod)
+ return handler(domElement);
+ }
+ };
+ }
+}
+
+```
+
+## Methods
+
+| Method | Description |
+| --- | --- |
+| [createContextContainer()](./kibana-plugin-public.contextsetup.createcontextcontainer.md) | Creates a new [IContextContainer](./kibana-plugin-public.icontextcontainer.md) for a service owner. |
+
diff --git a/docs/development/core/public/kibana-plugin-public.coresetup.application.md b/docs/development/core/public/kibana-plugin-public.coresetup.application.md
index 4b39b2c76802b..2b4b54b0023ee 100644
--- a/docs/development/core/public/kibana-plugin-public.coresetup.application.md
+++ b/docs/development/core/public/kibana-plugin-public.coresetup.application.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [CoreSetup](./kibana-plugin-public.coresetup.md) > [application](./kibana-plugin-public.coresetup.application.md)
-
-## CoreSetup.application property
-
-[ApplicationSetup](./kibana-plugin-public.applicationsetup.md)
-
-Signature:
-
-```typescript
-application: ApplicationSetup;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [CoreSetup](./kibana-plugin-public.coresetup.md) > [application](./kibana-plugin-public.coresetup.application.md)
+
+## CoreSetup.application property
+
+[ApplicationSetup](./kibana-plugin-public.applicationsetup.md)
+
+Signature:
+
+```typescript
+application: ApplicationSetup;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.coresetup.context.md b/docs/development/core/public/kibana-plugin-public.coresetup.context.md
index f2a891c6c674e..12f8255482385 100644
--- a/docs/development/core/public/kibana-plugin-public.coresetup.context.md
+++ b/docs/development/core/public/kibana-plugin-public.coresetup.context.md
@@ -1,17 +1,17 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [CoreSetup](./kibana-plugin-public.coresetup.md) > [context](./kibana-plugin-public.coresetup.context.md)
-
-## CoreSetup.context property
-
-> Warning: This API is now obsolete.
->
->
-
-[ContextSetup](./kibana-plugin-public.contextsetup.md)
-
-Signature:
-
-```typescript
-context: ContextSetup;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [CoreSetup](./kibana-plugin-public.coresetup.md) > [context](./kibana-plugin-public.coresetup.context.md)
+
+## CoreSetup.context property
+
+> Warning: This API is now obsolete.
+>
+>
+
+[ContextSetup](./kibana-plugin-public.contextsetup.md)
+
+Signature:
+
+```typescript
+context: ContextSetup;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.coresetup.fatalerrors.md b/docs/development/core/public/kibana-plugin-public.coresetup.fatalerrors.md
index 5d51af0898e4f..8f96ffd2c15e8 100644
--- a/docs/development/core/public/kibana-plugin-public.coresetup.fatalerrors.md
+++ b/docs/development/core/public/kibana-plugin-public.coresetup.fatalerrors.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [CoreSetup](./kibana-plugin-public.coresetup.md) > [fatalErrors](./kibana-plugin-public.coresetup.fatalerrors.md)
-
-## CoreSetup.fatalErrors property
-
-[FatalErrorsSetup](./kibana-plugin-public.fatalerrorssetup.md)
-
-Signature:
-
-```typescript
-fatalErrors: FatalErrorsSetup;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [CoreSetup](./kibana-plugin-public.coresetup.md) > [fatalErrors](./kibana-plugin-public.coresetup.fatalerrors.md)
+
+## CoreSetup.fatalErrors property
+
+[FatalErrorsSetup](./kibana-plugin-public.fatalerrorssetup.md)
+
+Signature:
+
+```typescript
+fatalErrors: FatalErrorsSetup;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.coresetup.getstartservices.md b/docs/development/core/public/kibana-plugin-public.coresetup.getstartservices.md
index b89d98b0a9ed5..188e4664934ff 100644
--- a/docs/development/core/public/kibana-plugin-public.coresetup.getstartservices.md
+++ b/docs/development/core/public/kibana-plugin-public.coresetup.getstartservices.md
@@ -1,17 +1,17 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [CoreSetup](./kibana-plugin-public.coresetup.md) > [getStartServices](./kibana-plugin-public.coresetup.getstartservices.md)
-
-## CoreSetup.getStartServices() method
-
-Allows plugins to get access to APIs available in start inside async handlers, such as [App.mount](./kibana-plugin-public.app.mount.md). Promise will not resolve until Core and plugin dependencies have completed `start`.
-
-Signature:
-
-```typescript
-getStartServices(): Promise<[CoreStart, TPluginsStart]>;
-```
-Returns:
-
-`Promise<[CoreStart, TPluginsStart]>`
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [CoreSetup](./kibana-plugin-public.coresetup.md) > [getStartServices](./kibana-plugin-public.coresetup.getstartservices.md)
+
+## CoreSetup.getStartServices() method
+
+Allows plugins to get access to APIs available in start inside async handlers, such as [App.mount](./kibana-plugin-public.app.mount.md). Promise will not resolve until Core and plugin dependencies have completed `start`.
+
+Signature:
+
+```typescript
+getStartServices(): Promise<[CoreStart, TPluginsStart]>;
+```
+Returns:
+
+`Promise<[CoreStart, TPluginsStart]>`
+
diff --git a/docs/development/core/public/kibana-plugin-public.coresetup.http.md b/docs/development/core/public/kibana-plugin-public.coresetup.http.md
index 7471f7daa668d..112f80093361c 100644
--- a/docs/development/core/public/kibana-plugin-public.coresetup.http.md
+++ b/docs/development/core/public/kibana-plugin-public.coresetup.http.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [CoreSetup](./kibana-plugin-public.coresetup.md) > [http](./kibana-plugin-public.coresetup.http.md)
-
-## CoreSetup.http property
-
-[HttpSetup](./kibana-plugin-public.httpsetup.md)
-
-Signature:
-
-```typescript
-http: HttpSetup;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [CoreSetup](./kibana-plugin-public.coresetup.md) > [http](./kibana-plugin-public.coresetup.http.md)
+
+## CoreSetup.http property
+
+[HttpSetup](./kibana-plugin-public.httpsetup.md)
+
+Signature:
+
+```typescript
+http: HttpSetup;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.coresetup.injectedmetadata.md b/docs/development/core/public/kibana-plugin-public.coresetup.injectedmetadata.md
index f9c1a283e3808..a62b8b99ee131 100644
--- a/docs/development/core/public/kibana-plugin-public.coresetup.injectedmetadata.md
+++ b/docs/development/core/public/kibana-plugin-public.coresetup.injectedmetadata.md
@@ -1,19 +1,19 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [CoreSetup](./kibana-plugin-public.coresetup.md) > [injectedMetadata](./kibana-plugin-public.coresetup.injectedmetadata.md)
-
-## CoreSetup.injectedMetadata property
-
-> Warning: This API is now obsolete.
->
->
-
-exposed temporarily until https://github.com/elastic/kibana/issues/41990 done use \*only\* to retrieve config values. There is no way to set injected values in the new platform. Use the legacy platform API instead.
-
-Signature:
-
-```typescript
-injectedMetadata: {
- getInjectedVar: (name: string, defaultValue?: any) => unknown;
- };
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [CoreSetup](./kibana-plugin-public.coresetup.md) > [injectedMetadata](./kibana-plugin-public.coresetup.injectedmetadata.md)
+
+## CoreSetup.injectedMetadata property
+
+> Warning: This API is now obsolete.
+>
+>
+
+exposed temporarily until https://github.com/elastic/kibana/issues/41990 done use \*only\* to retrieve config values. There is no way to set injected values in the new platform. Use the legacy platform API instead.
+
+Signature:
+
+```typescript
+injectedMetadata: {
+ getInjectedVar: (name: string, defaultValue?: any) => unknown;
+ };
+```
diff --git a/docs/development/core/public/kibana-plugin-public.coresetup.md b/docs/development/core/public/kibana-plugin-public.coresetup.md
index 7d75782df2e32..ae423c6e8d79c 100644
--- a/docs/development/core/public/kibana-plugin-public.coresetup.md
+++ b/docs/development/core/public/kibana-plugin-public.coresetup.md
@@ -1,32 +1,32 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [CoreSetup](./kibana-plugin-public.coresetup.md)
-
-## CoreSetup interface
-
-Core services exposed to the `Plugin` setup lifecycle
-
-Signature:
-
-```typescript
-export interface CoreSetup
-```
-
-## Properties
-
-| Property | Type | Description |
-| --- | --- | --- |
-| [application](./kibana-plugin-public.coresetup.application.md) | ApplicationSetup
| [ApplicationSetup](./kibana-plugin-public.applicationsetup.md) |
-| [context](./kibana-plugin-public.coresetup.context.md) | ContextSetup
| [ContextSetup](./kibana-plugin-public.contextsetup.md) |
-| [fatalErrors](./kibana-plugin-public.coresetup.fatalerrors.md) | FatalErrorsSetup
| [FatalErrorsSetup](./kibana-plugin-public.fatalerrorssetup.md) |
-| [http](./kibana-plugin-public.coresetup.http.md) | HttpSetup
| [HttpSetup](./kibana-plugin-public.httpsetup.md) |
-| [injectedMetadata](./kibana-plugin-public.coresetup.injectedmetadata.md) | {
getInjectedVar: (name: string, defaultValue?: any) => unknown;
}
| exposed temporarily until https://github.com/elastic/kibana/issues/41990 done use \*only\* to retrieve config values. There is no way to set injected values in the new platform. Use the legacy platform API instead. |
-| [notifications](./kibana-plugin-public.coresetup.notifications.md) | NotificationsSetup
| [NotificationsSetup](./kibana-plugin-public.notificationssetup.md) |
-| [uiSettings](./kibana-plugin-public.coresetup.uisettings.md) | IUiSettingsClient
| [IUiSettingsClient](./kibana-plugin-public.iuisettingsclient.md) |
-
-## Methods
-
-| Method | Description |
-| --- | --- |
-| [getStartServices()](./kibana-plugin-public.coresetup.getstartservices.md) | Allows plugins to get access to APIs available in start inside async handlers, such as [App.mount](./kibana-plugin-public.app.mount.md). Promise will not resolve until Core and plugin dependencies have completed start
. |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [CoreSetup](./kibana-plugin-public.coresetup.md)
+
+## CoreSetup interface
+
+Core services exposed to the `Plugin` setup lifecycle
+
+Signature:
+
+```typescript
+export interface CoreSetup
+```
+
+## Properties
+
+| Property | Type | Description |
+| --- | --- | --- |
+| [application](./kibana-plugin-public.coresetup.application.md) | ApplicationSetup
| [ApplicationSetup](./kibana-plugin-public.applicationsetup.md) |
+| [context](./kibana-plugin-public.coresetup.context.md) | ContextSetup
| [ContextSetup](./kibana-plugin-public.contextsetup.md) |
+| [fatalErrors](./kibana-plugin-public.coresetup.fatalerrors.md) | FatalErrorsSetup
| [FatalErrorsSetup](./kibana-plugin-public.fatalerrorssetup.md) |
+| [http](./kibana-plugin-public.coresetup.http.md) | HttpSetup
| [HttpSetup](./kibana-plugin-public.httpsetup.md) |
+| [injectedMetadata](./kibana-plugin-public.coresetup.injectedmetadata.md) | {
getInjectedVar: (name: string, defaultValue?: any) => unknown;
}
| exposed temporarily until https://github.com/elastic/kibana/issues/41990 done use \*only\* to retrieve config values. There is no way to set injected values in the new platform. Use the legacy platform API instead. |
+| [notifications](./kibana-plugin-public.coresetup.notifications.md) | NotificationsSetup
| [NotificationsSetup](./kibana-plugin-public.notificationssetup.md) |
+| [uiSettings](./kibana-plugin-public.coresetup.uisettings.md) | IUiSettingsClient
| [IUiSettingsClient](./kibana-plugin-public.iuisettingsclient.md) |
+
+## Methods
+
+| Method | Description |
+| --- | --- |
+| [getStartServices()](./kibana-plugin-public.coresetup.getstartservices.md) | Allows plugins to get access to APIs available in start inside async handlers, such as [App.mount](./kibana-plugin-public.app.mount.md). Promise will not resolve until Core and plugin dependencies have completed start
. |
+
diff --git a/docs/development/core/public/kibana-plugin-public.coresetup.notifications.md b/docs/development/core/public/kibana-plugin-public.coresetup.notifications.md
index ea050925bbafc..52808b860a9e6 100644
--- a/docs/development/core/public/kibana-plugin-public.coresetup.notifications.md
+++ b/docs/development/core/public/kibana-plugin-public.coresetup.notifications.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [CoreSetup](./kibana-plugin-public.coresetup.md) > [notifications](./kibana-plugin-public.coresetup.notifications.md)
-
-## CoreSetup.notifications property
-
-[NotificationsSetup](./kibana-plugin-public.notificationssetup.md)
-
-Signature:
-
-```typescript
-notifications: NotificationsSetup;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [CoreSetup](./kibana-plugin-public.coresetup.md) > [notifications](./kibana-plugin-public.coresetup.notifications.md)
+
+## CoreSetup.notifications property
+
+[NotificationsSetup](./kibana-plugin-public.notificationssetup.md)
+
+Signature:
+
+```typescript
+notifications: NotificationsSetup;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.coresetup.uisettings.md b/docs/development/core/public/kibana-plugin-public.coresetup.uisettings.md
index bf9ec12e3eea2..51aa9916f7f07 100644
--- a/docs/development/core/public/kibana-plugin-public.coresetup.uisettings.md
+++ b/docs/development/core/public/kibana-plugin-public.coresetup.uisettings.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [CoreSetup](./kibana-plugin-public.coresetup.md) > [uiSettings](./kibana-plugin-public.coresetup.uisettings.md)
-
-## CoreSetup.uiSettings property
-
-[IUiSettingsClient](./kibana-plugin-public.iuisettingsclient.md)
-
-Signature:
-
-```typescript
-uiSettings: IUiSettingsClient;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [CoreSetup](./kibana-plugin-public.coresetup.md) > [uiSettings](./kibana-plugin-public.coresetup.uisettings.md)
+
+## CoreSetup.uiSettings property
+
+[IUiSettingsClient](./kibana-plugin-public.iuisettingsclient.md)
+
+Signature:
+
+```typescript
+uiSettings: IUiSettingsClient;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.corestart.application.md b/docs/development/core/public/kibana-plugin-public.corestart.application.md
index c26701ca80529..b8565c5812aaf 100644
--- a/docs/development/core/public/kibana-plugin-public.corestart.application.md
+++ b/docs/development/core/public/kibana-plugin-public.corestart.application.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [CoreStart](./kibana-plugin-public.corestart.md) > [application](./kibana-plugin-public.corestart.application.md)
-
-## CoreStart.application property
-
-[ApplicationStart](./kibana-plugin-public.applicationstart.md)
-
-Signature:
-
-```typescript
-application: ApplicationStart;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [CoreStart](./kibana-plugin-public.corestart.md) > [application](./kibana-plugin-public.corestart.application.md)
+
+## CoreStart.application property
+
+[ApplicationStart](./kibana-plugin-public.applicationstart.md)
+
+Signature:
+
+```typescript
+application: ApplicationStart;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.corestart.chrome.md b/docs/development/core/public/kibana-plugin-public.corestart.chrome.md
index 390bde25bae93..02f410b08b024 100644
--- a/docs/development/core/public/kibana-plugin-public.corestart.chrome.md
+++ b/docs/development/core/public/kibana-plugin-public.corestart.chrome.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [CoreStart](./kibana-plugin-public.corestart.md) > [chrome](./kibana-plugin-public.corestart.chrome.md)
-
-## CoreStart.chrome property
-
-[ChromeStart](./kibana-plugin-public.chromestart.md)
-
-Signature:
-
-```typescript
-chrome: ChromeStart;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [CoreStart](./kibana-plugin-public.corestart.md) > [chrome](./kibana-plugin-public.corestart.chrome.md)
+
+## CoreStart.chrome property
+
+[ChromeStart](./kibana-plugin-public.chromestart.md)
+
+Signature:
+
+```typescript
+chrome: ChromeStart;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.corestart.doclinks.md b/docs/development/core/public/kibana-plugin-public.corestart.doclinks.md
index 7f9e4ea10baac..641b9520be1a4 100644
--- a/docs/development/core/public/kibana-plugin-public.corestart.doclinks.md
+++ b/docs/development/core/public/kibana-plugin-public.corestart.doclinks.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [CoreStart](./kibana-plugin-public.corestart.md) > [docLinks](./kibana-plugin-public.corestart.doclinks.md)
-
-## CoreStart.docLinks property
-
-[DocLinksStart](./kibana-plugin-public.doclinksstart.md)
-
-Signature:
-
-```typescript
-docLinks: DocLinksStart;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [CoreStart](./kibana-plugin-public.corestart.md) > [docLinks](./kibana-plugin-public.corestart.doclinks.md)
+
+## CoreStart.docLinks property
+
+[DocLinksStart](./kibana-plugin-public.doclinksstart.md)
+
+Signature:
+
+```typescript
+docLinks: DocLinksStart;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.corestart.fatalerrors.md b/docs/development/core/public/kibana-plugin-public.corestart.fatalerrors.md
index 540b17b5a6f0b..890fcac5a768b 100644
--- a/docs/development/core/public/kibana-plugin-public.corestart.fatalerrors.md
+++ b/docs/development/core/public/kibana-plugin-public.corestart.fatalerrors.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [CoreStart](./kibana-plugin-public.corestart.md) > [fatalErrors](./kibana-plugin-public.corestart.fatalerrors.md)
-
-## CoreStart.fatalErrors property
-
-[FatalErrorsStart](./kibana-plugin-public.fatalerrorsstart.md)
-
-Signature:
-
-```typescript
-fatalErrors: FatalErrorsStart;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [CoreStart](./kibana-plugin-public.corestart.md) > [fatalErrors](./kibana-plugin-public.corestart.fatalerrors.md)
+
+## CoreStart.fatalErrors property
+
+[FatalErrorsStart](./kibana-plugin-public.fatalerrorsstart.md)
+
+Signature:
+
+```typescript
+fatalErrors: FatalErrorsStart;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.corestart.http.md b/docs/development/core/public/kibana-plugin-public.corestart.http.md
index 6af183480c663..12fca53774532 100644
--- a/docs/development/core/public/kibana-plugin-public.corestart.http.md
+++ b/docs/development/core/public/kibana-plugin-public.corestart.http.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [CoreStart](./kibana-plugin-public.corestart.md) > [http](./kibana-plugin-public.corestart.http.md)
-
-## CoreStart.http property
-
-[HttpStart](./kibana-plugin-public.httpstart.md)
-
-Signature:
-
-```typescript
-http: HttpStart;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [CoreStart](./kibana-plugin-public.corestart.md) > [http](./kibana-plugin-public.corestart.http.md)
+
+## CoreStart.http property
+
+[HttpStart](./kibana-plugin-public.httpstart.md)
+
+Signature:
+
+```typescript
+http: HttpStart;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.corestart.i18n.md b/docs/development/core/public/kibana-plugin-public.corestart.i18n.md
index 6a62025874aa9..75baf18a482e1 100644
--- a/docs/development/core/public/kibana-plugin-public.corestart.i18n.md
+++ b/docs/development/core/public/kibana-plugin-public.corestart.i18n.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [CoreStart](./kibana-plugin-public.corestart.md) > [i18n](./kibana-plugin-public.corestart.i18n.md)
-
-## CoreStart.i18n property
-
-[I18nStart](./kibana-plugin-public.i18nstart.md)
-
-Signature:
-
-```typescript
-i18n: I18nStart;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [CoreStart](./kibana-plugin-public.corestart.md) > [i18n](./kibana-plugin-public.corestart.i18n.md)
+
+## CoreStart.i18n property
+
+[I18nStart](./kibana-plugin-public.i18nstart.md)
+
+Signature:
+
+```typescript
+i18n: I18nStart;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.corestart.injectedmetadata.md b/docs/development/core/public/kibana-plugin-public.corestart.injectedmetadata.md
index 9224b97bc4300..b3f6361d3a8c3 100644
--- a/docs/development/core/public/kibana-plugin-public.corestart.injectedmetadata.md
+++ b/docs/development/core/public/kibana-plugin-public.corestart.injectedmetadata.md
@@ -1,19 +1,19 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [CoreStart](./kibana-plugin-public.corestart.md) > [injectedMetadata](./kibana-plugin-public.corestart.injectedmetadata.md)
-
-## CoreStart.injectedMetadata property
-
-> Warning: This API is now obsolete.
->
->
-
-exposed temporarily until https://github.com/elastic/kibana/issues/41990 done use \*only\* to retrieve config values. There is no way to set injected values in the new platform. Use the legacy platform API instead.
-
-Signature:
-
-```typescript
-injectedMetadata: {
- getInjectedVar: (name: string, defaultValue?: any) => unknown;
- };
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [CoreStart](./kibana-plugin-public.corestart.md) > [injectedMetadata](./kibana-plugin-public.corestart.injectedmetadata.md)
+
+## CoreStart.injectedMetadata property
+
+> Warning: This API is now obsolete.
+>
+>
+
+exposed temporarily until https://github.com/elastic/kibana/issues/41990 done use \*only\* to retrieve config values. There is no way to set injected values in the new platform. Use the legacy platform API instead.
+
+Signature:
+
+```typescript
+injectedMetadata: {
+ getInjectedVar: (name: string, defaultValue?: any) => unknown;
+ };
+```
diff --git a/docs/development/core/public/kibana-plugin-public.corestart.md b/docs/development/core/public/kibana-plugin-public.corestart.md
index 83af82d590c36..c0a326b3b01cb 100644
--- a/docs/development/core/public/kibana-plugin-public.corestart.md
+++ b/docs/development/core/public/kibana-plugin-public.corestart.md
@@ -1,30 +1,30 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [CoreStart](./kibana-plugin-public.corestart.md)
-
-## CoreStart interface
-
-Core services exposed to the `Plugin` start lifecycle
-
-Signature:
-
-```typescript
-export interface CoreStart
-```
-
-## Properties
-
-| Property | Type | Description |
-| --- | --- | --- |
-| [application](./kibana-plugin-public.corestart.application.md) | ApplicationStart
| [ApplicationStart](./kibana-plugin-public.applicationstart.md) |
-| [chrome](./kibana-plugin-public.corestart.chrome.md) | ChromeStart
| [ChromeStart](./kibana-plugin-public.chromestart.md) |
-| [docLinks](./kibana-plugin-public.corestart.doclinks.md) | DocLinksStart
| [DocLinksStart](./kibana-plugin-public.doclinksstart.md) |
-| [fatalErrors](./kibana-plugin-public.corestart.fatalerrors.md) | FatalErrorsStart
| [FatalErrorsStart](./kibana-plugin-public.fatalerrorsstart.md) |
-| [http](./kibana-plugin-public.corestart.http.md) | HttpStart
| [HttpStart](./kibana-plugin-public.httpstart.md) |
-| [i18n](./kibana-plugin-public.corestart.i18n.md) | I18nStart
| [I18nStart](./kibana-plugin-public.i18nstart.md) |
-| [injectedMetadata](./kibana-plugin-public.corestart.injectedmetadata.md) | {
getInjectedVar: (name: string, defaultValue?: any) => unknown;
}
| exposed temporarily until https://github.com/elastic/kibana/issues/41990 done use \*only\* to retrieve config values. There is no way to set injected values in the new platform. Use the legacy platform API instead. |
-| [notifications](./kibana-plugin-public.corestart.notifications.md) | NotificationsStart
| [NotificationsStart](./kibana-plugin-public.notificationsstart.md) |
-| [overlays](./kibana-plugin-public.corestart.overlays.md) | OverlayStart
| [OverlayStart](./kibana-plugin-public.overlaystart.md) |
-| [savedObjects](./kibana-plugin-public.corestart.savedobjects.md) | SavedObjectsStart
| [SavedObjectsStart](./kibana-plugin-public.savedobjectsstart.md) |
-| [uiSettings](./kibana-plugin-public.corestart.uisettings.md) | IUiSettingsClient
| [IUiSettingsClient](./kibana-plugin-public.iuisettingsclient.md) |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [CoreStart](./kibana-plugin-public.corestart.md)
+
+## CoreStart interface
+
+Core services exposed to the `Plugin` start lifecycle
+
+Signature:
+
+```typescript
+export interface CoreStart
+```
+
+## Properties
+
+| Property | Type | Description |
+| --- | --- | --- |
+| [application](./kibana-plugin-public.corestart.application.md) | ApplicationStart
| [ApplicationStart](./kibana-plugin-public.applicationstart.md) |
+| [chrome](./kibana-plugin-public.corestart.chrome.md) | ChromeStart
| [ChromeStart](./kibana-plugin-public.chromestart.md) |
+| [docLinks](./kibana-plugin-public.corestart.doclinks.md) | DocLinksStart
| [DocLinksStart](./kibana-plugin-public.doclinksstart.md) |
+| [fatalErrors](./kibana-plugin-public.corestart.fatalerrors.md) | FatalErrorsStart
| [FatalErrorsStart](./kibana-plugin-public.fatalerrorsstart.md) |
+| [http](./kibana-plugin-public.corestart.http.md) | HttpStart
| [HttpStart](./kibana-plugin-public.httpstart.md) |
+| [i18n](./kibana-plugin-public.corestart.i18n.md) | I18nStart
| [I18nStart](./kibana-plugin-public.i18nstart.md) |
+| [injectedMetadata](./kibana-plugin-public.corestart.injectedmetadata.md) | {
getInjectedVar: (name: string, defaultValue?: any) => unknown;
}
| exposed temporarily until https://github.com/elastic/kibana/issues/41990 done use \*only\* to retrieve config values. There is no way to set injected values in the new platform. Use the legacy platform API instead. |
+| [notifications](./kibana-plugin-public.corestart.notifications.md) | NotificationsStart
| [NotificationsStart](./kibana-plugin-public.notificationsstart.md) |
+| [overlays](./kibana-plugin-public.corestart.overlays.md) | OverlayStart
| [OverlayStart](./kibana-plugin-public.overlaystart.md) |
+| [savedObjects](./kibana-plugin-public.corestart.savedobjects.md) | SavedObjectsStart
| [SavedObjectsStart](./kibana-plugin-public.savedobjectsstart.md) |
+| [uiSettings](./kibana-plugin-public.corestart.uisettings.md) | IUiSettingsClient
| [IUiSettingsClient](./kibana-plugin-public.iuisettingsclient.md) |
+
diff --git a/docs/development/core/public/kibana-plugin-public.corestart.notifications.md b/docs/development/core/public/kibana-plugin-public.corestart.notifications.md
index c9533a1ec2f10..b9c75a1989096 100644
--- a/docs/development/core/public/kibana-plugin-public.corestart.notifications.md
+++ b/docs/development/core/public/kibana-plugin-public.corestart.notifications.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [CoreStart](./kibana-plugin-public.corestart.md) > [notifications](./kibana-plugin-public.corestart.notifications.md)
-
-## CoreStart.notifications property
-
-[NotificationsStart](./kibana-plugin-public.notificationsstart.md)
-
-Signature:
-
-```typescript
-notifications: NotificationsStart;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [CoreStart](./kibana-plugin-public.corestart.md) > [notifications](./kibana-plugin-public.corestart.notifications.md)
+
+## CoreStart.notifications property
+
+[NotificationsStart](./kibana-plugin-public.notificationsstart.md)
+
+Signature:
+
+```typescript
+notifications: NotificationsStart;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.corestart.overlays.md b/docs/development/core/public/kibana-plugin-public.corestart.overlays.md
index 53d20b994f43d..9f2bf269884a1 100644
--- a/docs/development/core/public/kibana-plugin-public.corestart.overlays.md
+++ b/docs/development/core/public/kibana-plugin-public.corestart.overlays.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [CoreStart](./kibana-plugin-public.corestart.md) > [overlays](./kibana-plugin-public.corestart.overlays.md)
-
-## CoreStart.overlays property
-
-[OverlayStart](./kibana-plugin-public.overlaystart.md)
-
-Signature:
-
-```typescript
-overlays: OverlayStart;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [CoreStart](./kibana-plugin-public.corestart.md) > [overlays](./kibana-plugin-public.corestart.overlays.md)
+
+## CoreStart.overlays property
+
+[OverlayStart](./kibana-plugin-public.overlaystart.md)
+
+Signature:
+
+```typescript
+overlays: OverlayStart;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.corestart.savedobjects.md b/docs/development/core/public/kibana-plugin-public.corestart.savedobjects.md
index 5e6e0e33c7f80..80ba416ec5e0c 100644
--- a/docs/development/core/public/kibana-plugin-public.corestart.savedobjects.md
+++ b/docs/development/core/public/kibana-plugin-public.corestart.savedobjects.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [CoreStart](./kibana-plugin-public.corestart.md) > [savedObjects](./kibana-plugin-public.corestart.savedobjects.md)
-
-## CoreStart.savedObjects property
-
-[SavedObjectsStart](./kibana-plugin-public.savedobjectsstart.md)
-
-Signature:
-
-```typescript
-savedObjects: SavedObjectsStart;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [CoreStart](./kibana-plugin-public.corestart.md) > [savedObjects](./kibana-plugin-public.corestart.savedobjects.md)
+
+## CoreStart.savedObjects property
+
+[SavedObjectsStart](./kibana-plugin-public.savedobjectsstart.md)
+
+Signature:
+
+```typescript
+savedObjects: SavedObjectsStart;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.corestart.uisettings.md b/docs/development/core/public/kibana-plugin-public.corestart.uisettings.md
index 2ee405591dc08..2831e4da13578 100644
--- a/docs/development/core/public/kibana-plugin-public.corestart.uisettings.md
+++ b/docs/development/core/public/kibana-plugin-public.corestart.uisettings.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [CoreStart](./kibana-plugin-public.corestart.md) > [uiSettings](./kibana-plugin-public.corestart.uisettings.md)
-
-## CoreStart.uiSettings property
-
-[IUiSettingsClient](./kibana-plugin-public.iuisettingsclient.md)
-
-Signature:
-
-```typescript
-uiSettings: IUiSettingsClient;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [CoreStart](./kibana-plugin-public.corestart.md) > [uiSettings](./kibana-plugin-public.corestart.uisettings.md)
+
+## CoreStart.uiSettings property
+
+[IUiSettingsClient](./kibana-plugin-public.iuisettingsclient.md)
+
+Signature:
+
+```typescript
+uiSettings: IUiSettingsClient;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.doclinksstart.doc_link_version.md b/docs/development/core/public/kibana-plugin-public.doclinksstart.doc_link_version.md
index 5e7f9f9e48687..453d358710f2d 100644
--- a/docs/development/core/public/kibana-plugin-public.doclinksstart.doc_link_version.md
+++ b/docs/development/core/public/kibana-plugin-public.doclinksstart.doc_link_version.md
@@ -1,11 +1,11 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [DocLinksStart](./kibana-plugin-public.doclinksstart.md) > [DOC\_LINK\_VERSION](./kibana-plugin-public.doclinksstart.doc_link_version.md)
-
-## DocLinksStart.DOC\_LINK\_VERSION property
-
-Signature:
-
-```typescript
-readonly DOC_LINK_VERSION: string;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [DocLinksStart](./kibana-plugin-public.doclinksstart.md) > [DOC\_LINK\_VERSION](./kibana-plugin-public.doclinksstart.doc_link_version.md)
+
+## DocLinksStart.DOC\_LINK\_VERSION property
+
+Signature:
+
+```typescript
+readonly DOC_LINK_VERSION: string;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.doclinksstart.elastic_website_url.md b/docs/development/core/public/kibana-plugin-public.doclinksstart.elastic_website_url.md
index b4967038b35d7..9ef871e776996 100644
--- a/docs/development/core/public/kibana-plugin-public.doclinksstart.elastic_website_url.md
+++ b/docs/development/core/public/kibana-plugin-public.doclinksstart.elastic_website_url.md
@@ -1,11 +1,11 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [DocLinksStart](./kibana-plugin-public.doclinksstart.md) > [ELASTIC\_WEBSITE\_URL](./kibana-plugin-public.doclinksstart.elastic_website_url.md)
-
-## DocLinksStart.ELASTIC\_WEBSITE\_URL property
-
-Signature:
-
-```typescript
-readonly ELASTIC_WEBSITE_URL: string;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [DocLinksStart](./kibana-plugin-public.doclinksstart.md) > [ELASTIC\_WEBSITE\_URL](./kibana-plugin-public.doclinksstart.elastic_website_url.md)
+
+## DocLinksStart.ELASTIC\_WEBSITE\_URL property
+
+Signature:
+
+```typescript
+readonly ELASTIC_WEBSITE_URL: string;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.doclinksstart.links.md b/docs/development/core/public/kibana-plugin-public.doclinksstart.links.md
index 2a21f00c57461..bb59d2eabefa2 100644
--- a/docs/development/core/public/kibana-plugin-public.doclinksstart.links.md
+++ b/docs/development/core/public/kibana-plugin-public.doclinksstart.links.md
@@ -1,96 +1,96 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [DocLinksStart](./kibana-plugin-public.doclinksstart.md) > [links](./kibana-plugin-public.doclinksstart.links.md)
-
-## DocLinksStart.links property
-
-Signature:
-
-```typescript
-readonly links: {
- readonly filebeat: {
- readonly base: string;
- readonly installation: string;
- readonly configuration: string;
- readonly elasticsearchOutput: string;
- readonly startup: string;
- readonly exportedFields: string;
- };
- readonly auditbeat: {
- readonly base: string;
- };
- readonly metricbeat: {
- readonly base: string;
- };
- readonly heartbeat: {
- readonly base: string;
- };
- readonly logstash: {
- readonly base: string;
- };
- readonly functionbeat: {
- readonly base: string;
- };
- readonly winlogbeat: {
- readonly base: string;
- };
- readonly aggs: {
- readonly date_histogram: string;
- readonly date_range: string;
- readonly filter: string;
- readonly filters: string;
- readonly geohash_grid: string;
- readonly histogram: string;
- readonly ip_range: string;
- readonly range: string;
- readonly significant_terms: string;
- readonly terms: string;
- readonly avg: string;
- readonly avg_bucket: string;
- readonly max_bucket: string;
- readonly min_bucket: string;
- readonly sum_bucket: string;
- readonly cardinality: string;
- readonly count: string;
- readonly cumulative_sum: string;
- readonly derivative: string;
- readonly geo_bounds: string;
- readonly geo_centroid: string;
- readonly max: string;
- readonly median: string;
- readonly min: string;
- readonly moving_avg: string;
- readonly percentile_ranks: string;
- readonly serial_diff: string;
- readonly std_dev: string;
- readonly sum: string;
- readonly top_hits: string;
- };
- readonly scriptedFields: {
- readonly scriptFields: string;
- readonly scriptAggs: string;
- readonly painless: string;
- readonly painlessApi: string;
- readonly painlessSyntax: string;
- readonly luceneExpressions: string;
- };
- readonly indexPatterns: {
- readonly loadingData: string;
- readonly introduction: string;
- };
- readonly kibana: string;
- readonly siem: {
- readonly guide: string;
- readonly gettingStarted: string;
- };
- readonly query: {
- readonly luceneQuerySyntax: string;
- readonly queryDsl: string;
- readonly kueryQuerySyntax: string;
- };
- readonly date: {
- readonly dateMath: string;
- };
- readonly management: Record;
- };
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [DocLinksStart](./kibana-plugin-public.doclinksstart.md) > [links](./kibana-plugin-public.doclinksstart.links.md)
+
+## DocLinksStart.links property
+
+Signature:
+
+```typescript
+readonly links: {
+ readonly filebeat: {
+ readonly base: string;
+ readonly installation: string;
+ readonly configuration: string;
+ readonly elasticsearchOutput: string;
+ readonly startup: string;
+ readonly exportedFields: string;
+ };
+ readonly auditbeat: {
+ readonly base: string;
+ };
+ readonly metricbeat: {
+ readonly base: string;
+ };
+ readonly heartbeat: {
+ readonly base: string;
+ };
+ readonly logstash: {
+ readonly base: string;
+ };
+ readonly functionbeat: {
+ readonly base: string;
+ };
+ readonly winlogbeat: {
+ readonly base: string;
+ };
+ readonly aggs: {
+ readonly date_histogram: string;
+ readonly date_range: string;
+ readonly filter: string;
+ readonly filters: string;
+ readonly geohash_grid: string;
+ readonly histogram: string;
+ readonly ip_range: string;
+ readonly range: string;
+ readonly significant_terms: string;
+ readonly terms: string;
+ readonly avg: string;
+ readonly avg_bucket: string;
+ readonly max_bucket: string;
+ readonly min_bucket: string;
+ readonly sum_bucket: string;
+ readonly cardinality: string;
+ readonly count: string;
+ readonly cumulative_sum: string;
+ readonly derivative: string;
+ readonly geo_bounds: string;
+ readonly geo_centroid: string;
+ readonly max: string;
+ readonly median: string;
+ readonly min: string;
+ readonly moving_avg: string;
+ readonly percentile_ranks: string;
+ readonly serial_diff: string;
+ readonly std_dev: string;
+ readonly sum: string;
+ readonly top_hits: string;
+ };
+ readonly scriptedFields: {
+ readonly scriptFields: string;
+ readonly scriptAggs: string;
+ readonly painless: string;
+ readonly painlessApi: string;
+ readonly painlessSyntax: string;
+ readonly luceneExpressions: string;
+ };
+ readonly indexPatterns: {
+ readonly loadingData: string;
+ readonly introduction: string;
+ };
+ readonly kibana: string;
+ readonly siem: {
+ readonly guide: string;
+ readonly gettingStarted: string;
+ };
+ readonly query: {
+ readonly luceneQuerySyntax: string;
+ readonly queryDsl: string;
+ readonly kueryQuerySyntax: string;
+ };
+ readonly date: {
+ readonly dateMath: string;
+ };
+ readonly management: Record;
+ };
+```
diff --git a/docs/development/core/public/kibana-plugin-public.doclinksstart.md b/docs/development/core/public/kibana-plugin-public.doclinksstart.md
index 13c701a8b47db..c9d9c0f06ecb3 100644
--- a/docs/development/core/public/kibana-plugin-public.doclinksstart.md
+++ b/docs/development/core/public/kibana-plugin-public.doclinksstart.md
@@ -1,21 +1,21 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [DocLinksStart](./kibana-plugin-public.doclinksstart.md)
-
-## DocLinksStart interface
-
-
-Signature:
-
-```typescript
-export interface DocLinksStart
-```
-
-## Properties
-
-| Property | Type | Description |
-| --- | --- | --- |
-| [DOC\_LINK\_VERSION](./kibana-plugin-public.doclinksstart.doc_link_version.md) | string
| |
-| [ELASTIC\_WEBSITE\_URL](./kibana-plugin-public.doclinksstart.elastic_website_url.md) | string
| |
-| [links](./kibana-plugin-public.doclinksstart.links.md) | {
readonly filebeat: {
readonly base: string;
readonly installation: string;
readonly configuration: string;
readonly elasticsearchOutput: string;
readonly startup: string;
readonly exportedFields: string;
};
readonly auditbeat: {
readonly base: string;
};
readonly metricbeat: {
readonly base: string;
};
readonly heartbeat: {
readonly base: string;
};
readonly logstash: {
readonly base: string;
};
readonly functionbeat: {
readonly base: string;
};
readonly winlogbeat: {
readonly base: string;
};
readonly aggs: {
readonly date_histogram: string;
readonly date_range: string;
readonly filter: string;
readonly filters: string;
readonly geohash_grid: string;
readonly histogram: string;
readonly ip_range: string;
readonly range: string;
readonly significant_terms: string;
readonly terms: string;
readonly avg: string;
readonly avg_bucket: string;
readonly max_bucket: string;
readonly min_bucket: string;
readonly sum_bucket: string;
readonly cardinality: string;
readonly count: string;
readonly cumulative_sum: string;
readonly derivative: string;
readonly geo_bounds: string;
readonly geo_centroid: string;
readonly max: string;
readonly median: string;
readonly min: string;
readonly moving_avg: string;
readonly percentile_ranks: string;
readonly serial_diff: string;
readonly std_dev: string;
readonly sum: string;
readonly top_hits: string;
};
readonly scriptedFields: {
readonly scriptFields: string;
readonly scriptAggs: string;
readonly painless: string;
readonly painlessApi: string;
readonly painlessSyntax: string;
readonly luceneExpressions: string;
};
readonly indexPatterns: {
readonly loadingData: string;
readonly introduction: string;
};
readonly kibana: string;
readonly siem: {
readonly guide: string;
readonly gettingStarted: string;
};
readonly query: {
readonly luceneQuerySyntax: string;
readonly queryDsl: string;
readonly kueryQuerySyntax: string;
};
readonly date: {
readonly dateMath: string;
};
readonly management: Record<string, string>;
}
| |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [DocLinksStart](./kibana-plugin-public.doclinksstart.md)
+
+## DocLinksStart interface
+
+
+Signature:
+
+```typescript
+export interface DocLinksStart
+```
+
+## Properties
+
+| Property | Type | Description |
+| --- | --- | --- |
+| [DOC\_LINK\_VERSION](./kibana-plugin-public.doclinksstart.doc_link_version.md) | string
| |
+| [ELASTIC\_WEBSITE\_URL](./kibana-plugin-public.doclinksstart.elastic_website_url.md) | string
| |
+| [links](./kibana-plugin-public.doclinksstart.links.md) | {
readonly filebeat: {
readonly base: string;
readonly installation: string;
readonly configuration: string;
readonly elasticsearchOutput: string;
readonly startup: string;
readonly exportedFields: string;
};
readonly auditbeat: {
readonly base: string;
};
readonly metricbeat: {
readonly base: string;
};
readonly heartbeat: {
readonly base: string;
};
readonly logstash: {
readonly base: string;
};
readonly functionbeat: {
readonly base: string;
};
readonly winlogbeat: {
readonly base: string;
};
readonly aggs: {
readonly date_histogram: string;
readonly date_range: string;
readonly filter: string;
readonly filters: string;
readonly geohash_grid: string;
readonly histogram: string;
readonly ip_range: string;
readonly range: string;
readonly significant_terms: string;
readonly terms: string;
readonly avg: string;
readonly avg_bucket: string;
readonly max_bucket: string;
readonly min_bucket: string;
readonly sum_bucket: string;
readonly cardinality: string;
readonly count: string;
readonly cumulative_sum: string;
readonly derivative: string;
readonly geo_bounds: string;
readonly geo_centroid: string;
readonly max: string;
readonly median: string;
readonly min: string;
readonly moving_avg: string;
readonly percentile_ranks: string;
readonly serial_diff: string;
readonly std_dev: string;
readonly sum: string;
readonly top_hits: string;
};
readonly scriptedFields: {
readonly scriptFields: string;
readonly scriptAggs: string;
readonly painless: string;
readonly painlessApi: string;
readonly painlessSyntax: string;
readonly luceneExpressions: string;
};
readonly indexPatterns: {
readonly loadingData: string;
readonly introduction: string;
};
readonly kibana: string;
readonly siem: {
readonly guide: string;
readonly gettingStarted: string;
};
readonly query: {
readonly luceneQuerySyntax: string;
readonly queryDsl: string;
readonly kueryQuerySyntax: string;
};
readonly date: {
readonly dateMath: string;
};
readonly management: Record<string, string>;
}
| |
+
diff --git a/docs/development/core/public/kibana-plugin-public.environmentmode.dev.md b/docs/development/core/public/kibana-plugin-public.environmentmode.dev.md
index b82e851da2b66..1e070ba8d9884 100644
--- a/docs/development/core/public/kibana-plugin-public.environmentmode.dev.md
+++ b/docs/development/core/public/kibana-plugin-public.environmentmode.dev.md
@@ -1,11 +1,11 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [EnvironmentMode](./kibana-plugin-public.environmentmode.md) > [dev](./kibana-plugin-public.environmentmode.dev.md)
-
-## EnvironmentMode.dev property
-
-Signature:
-
-```typescript
-dev: boolean;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [EnvironmentMode](./kibana-plugin-public.environmentmode.md) > [dev](./kibana-plugin-public.environmentmode.dev.md)
+
+## EnvironmentMode.dev property
+
+Signature:
+
+```typescript
+dev: boolean;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.environmentmode.md b/docs/development/core/public/kibana-plugin-public.environmentmode.md
index 14ab1316f5269..e869729319b0c 100644
--- a/docs/development/core/public/kibana-plugin-public.environmentmode.md
+++ b/docs/development/core/public/kibana-plugin-public.environmentmode.md
@@ -1,21 +1,21 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [EnvironmentMode](./kibana-plugin-public.environmentmode.md)
-
-## EnvironmentMode interface
-
-
-Signature:
-
-```typescript
-export interface EnvironmentMode
-```
-
-## Properties
-
-| Property | Type | Description |
-| --- | --- | --- |
-| [dev](./kibana-plugin-public.environmentmode.dev.md) | boolean
| |
-| [name](./kibana-plugin-public.environmentmode.name.md) | 'development' | 'production'
| |
-| [prod](./kibana-plugin-public.environmentmode.prod.md) | boolean
| |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [EnvironmentMode](./kibana-plugin-public.environmentmode.md)
+
+## EnvironmentMode interface
+
+
+Signature:
+
+```typescript
+export interface EnvironmentMode
+```
+
+## Properties
+
+| Property | Type | Description |
+| --- | --- | --- |
+| [dev](./kibana-plugin-public.environmentmode.dev.md) | boolean
| |
+| [name](./kibana-plugin-public.environmentmode.name.md) | 'development' | 'production'
| |
+| [prod](./kibana-plugin-public.environmentmode.prod.md) | boolean
| |
+
diff --git a/docs/development/core/public/kibana-plugin-public.environmentmode.name.md b/docs/development/core/public/kibana-plugin-public.environmentmode.name.md
index 5983fea856750..105853c35d0dd 100644
--- a/docs/development/core/public/kibana-plugin-public.environmentmode.name.md
+++ b/docs/development/core/public/kibana-plugin-public.environmentmode.name.md
@@ -1,11 +1,11 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [EnvironmentMode](./kibana-plugin-public.environmentmode.md) > [name](./kibana-plugin-public.environmentmode.name.md)
-
-## EnvironmentMode.name property
-
-Signature:
-
-```typescript
-name: 'development' | 'production';
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [EnvironmentMode](./kibana-plugin-public.environmentmode.md) > [name](./kibana-plugin-public.environmentmode.name.md)
+
+## EnvironmentMode.name property
+
+Signature:
+
+```typescript
+name: 'development' | 'production';
+```
diff --git a/docs/development/core/public/kibana-plugin-public.environmentmode.prod.md b/docs/development/core/public/kibana-plugin-public.environmentmode.prod.md
index 4b46e8b9cc9f9..ebbbf7f0c2531 100644
--- a/docs/development/core/public/kibana-plugin-public.environmentmode.prod.md
+++ b/docs/development/core/public/kibana-plugin-public.environmentmode.prod.md
@@ -1,11 +1,11 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [EnvironmentMode](./kibana-plugin-public.environmentmode.md) > [prod](./kibana-plugin-public.environmentmode.prod.md)
-
-## EnvironmentMode.prod property
-
-Signature:
-
-```typescript
-prod: boolean;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [EnvironmentMode](./kibana-plugin-public.environmentmode.md) > [prod](./kibana-plugin-public.environmentmode.prod.md)
+
+## EnvironmentMode.prod property
+
+Signature:
+
+```typescript
+prod: boolean;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.errortoastoptions.md b/docs/development/core/public/kibana-plugin-public.errortoastoptions.md
index 1755e6cbde919..2018bcb643906 100644
--- a/docs/development/core/public/kibana-plugin-public.errortoastoptions.md
+++ b/docs/development/core/public/kibana-plugin-public.errortoastoptions.md
@@ -1,21 +1,21 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ErrorToastOptions](./kibana-plugin-public.errortoastoptions.md)
-
-## ErrorToastOptions interface
-
-Options available for [IToasts](./kibana-plugin-public.itoasts.md) APIs.
-
-Signature:
-
-```typescript
-export interface ErrorToastOptions
-```
-
-## Properties
-
-| Property | Type | Description |
-| --- | --- | --- |
-| [title](./kibana-plugin-public.errortoastoptions.title.md) | string
| The title of the toast and the dialog when expanding the message. |
-| [toastMessage](./kibana-plugin-public.errortoastoptions.toastmessage.md) | string
| The message to be shown in the toast. If this is not specified the error's message will be shown in the toast instead. Overwriting that message can be used to provide more user-friendly toasts. If you specify this, the error message will still be shown in the detailed error modal. |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ErrorToastOptions](./kibana-plugin-public.errortoastoptions.md)
+
+## ErrorToastOptions interface
+
+Options available for [IToasts](./kibana-plugin-public.itoasts.md) APIs.
+
+Signature:
+
+```typescript
+export interface ErrorToastOptions
+```
+
+## Properties
+
+| Property | Type | Description |
+| --- | --- | --- |
+| [title](./kibana-plugin-public.errortoastoptions.title.md) | string
| The title of the toast and the dialog when expanding the message. |
+| [toastMessage](./kibana-plugin-public.errortoastoptions.toastmessage.md) | string
| The message to be shown in the toast. If this is not specified the error's message will be shown in the toast instead. Overwriting that message can be used to provide more user-friendly toasts. If you specify this, the error message will still be shown in the detailed error modal. |
+
diff --git a/docs/development/core/public/kibana-plugin-public.errortoastoptions.title.md b/docs/development/core/public/kibana-plugin-public.errortoastoptions.title.md
index 8c636998bcbd7..3e21fc1e7f599 100644
--- a/docs/development/core/public/kibana-plugin-public.errortoastoptions.title.md
+++ b/docs/development/core/public/kibana-plugin-public.errortoastoptions.title.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ErrorToastOptions](./kibana-plugin-public.errortoastoptions.md) > [title](./kibana-plugin-public.errortoastoptions.title.md)
-
-## ErrorToastOptions.title property
-
-The title of the toast and the dialog when expanding the message.
-
-Signature:
-
-```typescript
-title: string;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ErrorToastOptions](./kibana-plugin-public.errortoastoptions.md) > [title](./kibana-plugin-public.errortoastoptions.title.md)
+
+## ErrorToastOptions.title property
+
+The title of the toast and the dialog when expanding the message.
+
+Signature:
+
+```typescript
+title: string;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.errortoastoptions.toastmessage.md b/docs/development/core/public/kibana-plugin-public.errortoastoptions.toastmessage.md
index 8094ed3a5bdc7..633bff7dae7f9 100644
--- a/docs/development/core/public/kibana-plugin-public.errortoastoptions.toastmessage.md
+++ b/docs/development/core/public/kibana-plugin-public.errortoastoptions.toastmessage.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ErrorToastOptions](./kibana-plugin-public.errortoastoptions.md) > [toastMessage](./kibana-plugin-public.errortoastoptions.toastmessage.md)
-
-## ErrorToastOptions.toastMessage property
-
-The message to be shown in the toast. If this is not specified the error's message will be shown in the toast instead. Overwriting that message can be used to provide more user-friendly toasts. If you specify this, the error message will still be shown in the detailed error modal.
-
-Signature:
-
-```typescript
-toastMessage?: string;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ErrorToastOptions](./kibana-plugin-public.errortoastoptions.md) > [toastMessage](./kibana-plugin-public.errortoastoptions.toastmessage.md)
+
+## ErrorToastOptions.toastMessage property
+
+The message to be shown in the toast. If this is not specified the error's message will be shown in the toast instead. Overwriting that message can be used to provide more user-friendly toasts. If you specify this, the error message will still be shown in the detailed error modal.
+
+Signature:
+
+```typescript
+toastMessage?: string;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.fatalerrorinfo.md b/docs/development/core/public/kibana-plugin-public.fatalerrorinfo.md
index a1e2a95ec9bb1..9ee6ed00d897e 100644
--- a/docs/development/core/public/kibana-plugin-public.fatalerrorinfo.md
+++ b/docs/development/core/public/kibana-plugin-public.fatalerrorinfo.md
@@ -1,21 +1,21 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [FatalErrorInfo](./kibana-plugin-public.fatalerrorinfo.md)
-
-## FatalErrorInfo interface
-
-Represents the `message` and `stack` of a fatal Error
-
-Signature:
-
-```typescript
-export interface FatalErrorInfo
-```
-
-## Properties
-
-| Property | Type | Description |
-| --- | --- | --- |
-| [message](./kibana-plugin-public.fatalerrorinfo.message.md) | string
| |
-| [stack](./kibana-plugin-public.fatalerrorinfo.stack.md) | string | undefined
| |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [FatalErrorInfo](./kibana-plugin-public.fatalerrorinfo.md)
+
+## FatalErrorInfo interface
+
+Represents the `message` and `stack` of a fatal Error
+
+Signature:
+
+```typescript
+export interface FatalErrorInfo
+```
+
+## Properties
+
+| Property | Type | Description |
+| --- | --- | --- |
+| [message](./kibana-plugin-public.fatalerrorinfo.message.md) | string
| |
+| [stack](./kibana-plugin-public.fatalerrorinfo.stack.md) | string | undefined
| |
+
diff --git a/docs/development/core/public/kibana-plugin-public.fatalerrorinfo.message.md b/docs/development/core/public/kibana-plugin-public.fatalerrorinfo.message.md
index 8eebba48f0777..29c338580ceb4 100644
--- a/docs/development/core/public/kibana-plugin-public.fatalerrorinfo.message.md
+++ b/docs/development/core/public/kibana-plugin-public.fatalerrorinfo.message.md
@@ -1,11 +1,11 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [FatalErrorInfo](./kibana-plugin-public.fatalerrorinfo.md) > [message](./kibana-plugin-public.fatalerrorinfo.message.md)
-
-## FatalErrorInfo.message property
-
-Signature:
-
-```typescript
-message: string;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [FatalErrorInfo](./kibana-plugin-public.fatalerrorinfo.md) > [message](./kibana-plugin-public.fatalerrorinfo.message.md)
+
+## FatalErrorInfo.message property
+
+Signature:
+
+```typescript
+message: string;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.fatalerrorinfo.stack.md b/docs/development/core/public/kibana-plugin-public.fatalerrorinfo.stack.md
index 5578e4f8c8acd..5d24ec6d82c59 100644
--- a/docs/development/core/public/kibana-plugin-public.fatalerrorinfo.stack.md
+++ b/docs/development/core/public/kibana-plugin-public.fatalerrorinfo.stack.md
@@ -1,11 +1,11 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [FatalErrorInfo](./kibana-plugin-public.fatalerrorinfo.md) > [stack](./kibana-plugin-public.fatalerrorinfo.stack.md)
-
-## FatalErrorInfo.stack property
-
-Signature:
-
-```typescript
-stack: string | undefined;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [FatalErrorInfo](./kibana-plugin-public.fatalerrorinfo.md) > [stack](./kibana-plugin-public.fatalerrorinfo.stack.md)
+
+## FatalErrorInfo.stack property
+
+Signature:
+
+```typescript
+stack: string | undefined;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.fatalerrorssetup.add.md b/docs/development/core/public/kibana-plugin-public.fatalerrorssetup.add.md
index 31a1c239388ee..778b945de848a 100644
--- a/docs/development/core/public/kibana-plugin-public.fatalerrorssetup.add.md
+++ b/docs/development/core/public/kibana-plugin-public.fatalerrorssetup.add.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [FatalErrorsSetup](./kibana-plugin-public.fatalerrorssetup.md) > [add](./kibana-plugin-public.fatalerrorssetup.add.md)
-
-## FatalErrorsSetup.add property
-
-Add a new fatal error. This will stop the Kibana Public Core and display a fatal error screen with details about the Kibana build and the error.
-
-Signature:
-
-```typescript
-add: (error: string | Error, source?: string) => never;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [FatalErrorsSetup](./kibana-plugin-public.fatalerrorssetup.md) > [add](./kibana-plugin-public.fatalerrorssetup.add.md)
+
+## FatalErrorsSetup.add property
+
+Add a new fatal error. This will stop the Kibana Public Core and display a fatal error screen with details about the Kibana build and the error.
+
+Signature:
+
+```typescript
+add: (error: string | Error, source?: string) => never;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.fatalerrorssetup.get_.md b/docs/development/core/public/kibana-plugin-public.fatalerrorssetup.get_.md
index a3498e58c33b6..c99c78ef948df 100644
--- a/docs/development/core/public/kibana-plugin-public.fatalerrorssetup.get_.md
+++ b/docs/development/core/public/kibana-plugin-public.fatalerrorssetup.get_.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [FatalErrorsSetup](./kibana-plugin-public.fatalerrorssetup.md) > [get$](./kibana-plugin-public.fatalerrorssetup.get_.md)
-
-## FatalErrorsSetup.get$ property
-
-An Observable that will emit whenever a fatal error is added with `add()`
-
-Signature:
-
-```typescript
-get$: () => Rx.Observable;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [FatalErrorsSetup](./kibana-plugin-public.fatalerrorssetup.md) > [get$](./kibana-plugin-public.fatalerrorssetup.get_.md)
+
+## FatalErrorsSetup.get$ property
+
+An Observable that will emit whenever a fatal error is added with `add()`
+
+Signature:
+
+```typescript
+get$: () => Rx.Observable;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.fatalerrorssetup.md b/docs/development/core/public/kibana-plugin-public.fatalerrorssetup.md
index 87d637bb52183..728723c3f9764 100644
--- a/docs/development/core/public/kibana-plugin-public.fatalerrorssetup.md
+++ b/docs/development/core/public/kibana-plugin-public.fatalerrorssetup.md
@@ -1,21 +1,21 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [FatalErrorsSetup](./kibana-plugin-public.fatalerrorssetup.md)
-
-## FatalErrorsSetup interface
-
-FatalErrors stop the Kibana Public Core and displays a fatal error screen with details about the Kibana build and the error.
-
-Signature:
-
-```typescript
-export interface FatalErrorsSetup
-```
-
-## Properties
-
-| Property | Type | Description |
-| --- | --- | --- |
-| [add](./kibana-plugin-public.fatalerrorssetup.add.md) | (error: string | Error, source?: string) => never
| Add a new fatal error. This will stop the Kibana Public Core and display a fatal error screen with details about the Kibana build and the error. |
-| [get$](./kibana-plugin-public.fatalerrorssetup.get_.md) | () => Rx.Observable<FatalErrorInfo>
| An Observable that will emit whenever a fatal error is added with add()
|
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [FatalErrorsSetup](./kibana-plugin-public.fatalerrorssetup.md)
+
+## FatalErrorsSetup interface
+
+FatalErrors stop the Kibana Public Core and displays a fatal error screen with details about the Kibana build and the error.
+
+Signature:
+
+```typescript
+export interface FatalErrorsSetup
+```
+
+## Properties
+
+| Property | Type | Description |
+| --- | --- | --- |
+| [add](./kibana-plugin-public.fatalerrorssetup.add.md) | (error: string | Error, source?: string) => never
| Add a new fatal error. This will stop the Kibana Public Core and display a fatal error screen with details about the Kibana build and the error. |
+| [get$](./kibana-plugin-public.fatalerrorssetup.get_.md) | () => Rx.Observable<FatalErrorInfo>
| An Observable that will emit whenever a fatal error is added with add()
|
+
diff --git a/docs/development/core/public/kibana-plugin-public.fatalerrorsstart.md b/docs/development/core/public/kibana-plugin-public.fatalerrorsstart.md
index a8ece7dcb7e02..93579079fe9b2 100644
--- a/docs/development/core/public/kibana-plugin-public.fatalerrorsstart.md
+++ b/docs/development/core/public/kibana-plugin-public.fatalerrorsstart.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [FatalErrorsStart](./kibana-plugin-public.fatalerrorsstart.md)
-
-## FatalErrorsStart type
-
-FatalErrors stop the Kibana Public Core and displays a fatal error screen with details about the Kibana build and the error.
-
-Signature:
-
-```typescript
-export declare type FatalErrorsStart = FatalErrorsSetup;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [FatalErrorsStart](./kibana-plugin-public.fatalerrorsstart.md)
+
+## FatalErrorsStart type
+
+FatalErrors stop the Kibana Public Core and displays a fatal error screen with details about the Kibana build and the error.
+
+Signature:
+
+```typescript
+export declare type FatalErrorsStart = FatalErrorsSetup;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.handlercontexttype.md b/docs/development/core/public/kibana-plugin-public.handlercontexttype.md
index b083449d2b703..561b5fb483ff0 100644
--- a/docs/development/core/public/kibana-plugin-public.handlercontexttype.md
+++ b/docs/development/core/public/kibana-plugin-public.handlercontexttype.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HandlerContextType](./kibana-plugin-public.handlercontexttype.md)
-
-## HandlerContextType type
-
-Extracts the type of the first argument of a [HandlerFunction](./kibana-plugin-public.handlerfunction.md) to represent the type of the context.
-
-Signature:
-
-```typescript
-export declare type HandlerContextType> = T extends HandlerFunction ? U : never;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HandlerContextType](./kibana-plugin-public.handlercontexttype.md)
+
+## HandlerContextType type
+
+Extracts the type of the first argument of a [HandlerFunction](./kibana-plugin-public.handlerfunction.md) to represent the type of the context.
+
+Signature:
+
+```typescript
+export declare type HandlerContextType> = T extends HandlerFunction ? U : never;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.handlerfunction.md b/docs/development/core/public/kibana-plugin-public.handlerfunction.md
index 98c342c17691d..973dbc6837325 100644
--- a/docs/development/core/public/kibana-plugin-public.handlerfunction.md
+++ b/docs/development/core/public/kibana-plugin-public.handlerfunction.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HandlerFunction](./kibana-plugin-public.handlerfunction.md)
-
-## HandlerFunction type
-
-A function that accepts a context object and an optional number of additional arguments. Used for the generic types in [IContextContainer](./kibana-plugin-public.icontextcontainer.md)
-
-Signature:
-
-```typescript
-export declare type HandlerFunction = (context: T, ...args: any[]) => any;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HandlerFunction](./kibana-plugin-public.handlerfunction.md)
+
+## HandlerFunction type
+
+A function that accepts a context object and an optional number of additional arguments. Used for the generic types in [IContextContainer](./kibana-plugin-public.icontextcontainer.md)
+
+Signature:
+
+```typescript
+export declare type HandlerFunction = (context: T, ...args: any[]) => any;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.handlerparameters.md b/docs/development/core/public/kibana-plugin-public.handlerparameters.md
index f46c4b649e943..8a9e51b66e71e 100644
--- a/docs/development/core/public/kibana-plugin-public.handlerparameters.md
+++ b/docs/development/core/public/kibana-plugin-public.handlerparameters.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HandlerParameters](./kibana-plugin-public.handlerparameters.md)
-
-## HandlerParameters type
-
-Extracts the types of the additional arguments of a [HandlerFunction](./kibana-plugin-public.handlerfunction.md), excluding the [HandlerContextType](./kibana-plugin-public.handlercontexttype.md).
-
-Signature:
-
-```typescript
-export declare type HandlerParameters> = T extends (context: any, ...args: infer U) => any ? U : never;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HandlerParameters](./kibana-plugin-public.handlerparameters.md)
+
+## HandlerParameters type
+
+Extracts the types of the additional arguments of a [HandlerFunction](./kibana-plugin-public.handlerfunction.md), excluding the [HandlerContextType](./kibana-plugin-public.handlercontexttype.md).
+
+Signature:
+
+```typescript
+export declare type HandlerParameters> = T extends (context: any, ...args: infer U) => any ? U : never;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.httpfetchoptions.asresponse.md b/docs/development/core/public/kibana-plugin-public.httpfetchoptions.asresponse.md
index 207ddf205c88a..f1661cdb64b4a 100644
--- a/docs/development/core/public/kibana-plugin-public.httpfetchoptions.asresponse.md
+++ b/docs/development/core/public/kibana-plugin-public.httpfetchoptions.asresponse.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpFetchOptions](./kibana-plugin-public.httpfetchoptions.md) > [asResponse](./kibana-plugin-public.httpfetchoptions.asresponse.md)
-
-## HttpFetchOptions.asResponse property
-
-When `true` the return type of [HttpHandler](./kibana-plugin-public.httphandler.md) will be an [HttpResponse](./kibana-plugin-public.httpresponse.md) with detailed request and response information. When `false`, the return type will just be the parsed response body. Defaults to `false`.
-
-Signature:
-
-```typescript
-asResponse?: boolean;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpFetchOptions](./kibana-plugin-public.httpfetchoptions.md) > [asResponse](./kibana-plugin-public.httpfetchoptions.asresponse.md)
+
+## HttpFetchOptions.asResponse property
+
+When `true` the return type of [HttpHandler](./kibana-plugin-public.httphandler.md) will be an [HttpResponse](./kibana-plugin-public.httpresponse.md) with detailed request and response information. When `false`, the return type will just be the parsed response body. Defaults to `false`.
+
+Signature:
+
+```typescript
+asResponse?: boolean;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.httpfetchoptions.assystemrequest.md b/docs/development/core/public/kibana-plugin-public.httpfetchoptions.assystemrequest.md
index 7243d318df6fc..609e4dd410601 100644
--- a/docs/development/core/public/kibana-plugin-public.httpfetchoptions.assystemrequest.md
+++ b/docs/development/core/public/kibana-plugin-public.httpfetchoptions.assystemrequest.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpFetchOptions](./kibana-plugin-public.httpfetchoptions.md) > [asSystemRequest](./kibana-plugin-public.httpfetchoptions.assystemrequest.md)
-
-## HttpFetchOptions.asSystemRequest property
-
-Whether or not the request should include the "system request" header to differentiate an end user request from Kibana internal request. Can be read on the server-side using KibanaRequest\#isSystemRequest. Defaults to `false`.
-
-Signature:
-
-```typescript
-asSystemRequest?: boolean;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpFetchOptions](./kibana-plugin-public.httpfetchoptions.md) > [asSystemRequest](./kibana-plugin-public.httpfetchoptions.assystemrequest.md)
+
+## HttpFetchOptions.asSystemRequest property
+
+Whether or not the request should include the "system request" header to differentiate an end user request from Kibana internal request. Can be read on the server-side using KibanaRequest\#isSystemRequest. Defaults to `false`.
+
+Signature:
+
+```typescript
+asSystemRequest?: boolean;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.httpfetchoptions.headers.md b/docs/development/core/public/kibana-plugin-public.httpfetchoptions.headers.md
index 232b7d3da3af4..4943f594e14cc 100644
--- a/docs/development/core/public/kibana-plugin-public.httpfetchoptions.headers.md
+++ b/docs/development/core/public/kibana-plugin-public.httpfetchoptions.headers.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpFetchOptions](./kibana-plugin-public.httpfetchoptions.md) > [headers](./kibana-plugin-public.httpfetchoptions.headers.md)
-
-## HttpFetchOptions.headers property
-
-Headers to send with the request. See [HttpHeadersInit](./kibana-plugin-public.httpheadersinit.md).
-
-Signature:
-
-```typescript
-headers?: HttpHeadersInit;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpFetchOptions](./kibana-plugin-public.httpfetchoptions.md) > [headers](./kibana-plugin-public.httpfetchoptions.headers.md)
+
+## HttpFetchOptions.headers property
+
+Headers to send with the request. See [HttpHeadersInit](./kibana-plugin-public.httpheadersinit.md).
+
+Signature:
+
+```typescript
+headers?: HttpHeadersInit;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.httpfetchoptions.md b/docs/development/core/public/kibana-plugin-public.httpfetchoptions.md
index 403a1ea7ee4e8..b7620f9e042db 100644
--- a/docs/development/core/public/kibana-plugin-public.httpfetchoptions.md
+++ b/docs/development/core/public/kibana-plugin-public.httpfetchoptions.md
@@ -1,24 +1,24 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpFetchOptions](./kibana-plugin-public.httpfetchoptions.md)
-
-## HttpFetchOptions interface
-
-All options that may be used with a [HttpHandler](./kibana-plugin-public.httphandler.md).
-
-Signature:
-
-```typescript
-export interface HttpFetchOptions extends HttpRequestInit
-```
-
-## Properties
-
-| Property | Type | Description |
-| --- | --- | --- |
-| [asResponse](./kibana-plugin-public.httpfetchoptions.asresponse.md) | boolean
| When true
the return type of [HttpHandler](./kibana-plugin-public.httphandler.md) will be an [HttpResponse](./kibana-plugin-public.httpresponse.md) with detailed request and response information. When false
, the return type will just be the parsed response body. Defaults to false
. |
-| [asSystemRequest](./kibana-plugin-public.httpfetchoptions.assystemrequest.md) | boolean
| Whether or not the request should include the "system request" header to differentiate an end user request from Kibana internal request. Can be read on the server-side using KibanaRequest\#isSystemRequest. Defaults to false
. |
-| [headers](./kibana-plugin-public.httpfetchoptions.headers.md) | HttpHeadersInit
| Headers to send with the request. See [HttpHeadersInit](./kibana-plugin-public.httpheadersinit.md). |
-| [prependBasePath](./kibana-plugin-public.httpfetchoptions.prependbasepath.md) | boolean
| Whether or not the request should automatically prepend the basePath. Defaults to true
. |
-| [query](./kibana-plugin-public.httpfetchoptions.query.md) | HttpFetchQuery
| The query string for an HTTP request. See [HttpFetchQuery](./kibana-plugin-public.httpfetchquery.md). |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpFetchOptions](./kibana-plugin-public.httpfetchoptions.md)
+
+## HttpFetchOptions interface
+
+All options that may be used with a [HttpHandler](./kibana-plugin-public.httphandler.md).
+
+Signature:
+
+```typescript
+export interface HttpFetchOptions extends HttpRequestInit
+```
+
+## Properties
+
+| Property | Type | Description |
+| --- | --- | --- |
+| [asResponse](./kibana-plugin-public.httpfetchoptions.asresponse.md) | boolean
| When true
the return type of [HttpHandler](./kibana-plugin-public.httphandler.md) will be an [HttpResponse](./kibana-plugin-public.httpresponse.md) with detailed request and response information. When false
, the return type will just be the parsed response body. Defaults to false
. |
+| [asSystemRequest](./kibana-plugin-public.httpfetchoptions.assystemrequest.md) | boolean
| Whether or not the request should include the "system request" header to differentiate an end user request from Kibana internal request. Can be read on the server-side using KibanaRequest\#isSystemRequest. Defaults to false
. |
+| [headers](./kibana-plugin-public.httpfetchoptions.headers.md) | HttpHeadersInit
| Headers to send with the request. See [HttpHeadersInit](./kibana-plugin-public.httpheadersinit.md). |
+| [prependBasePath](./kibana-plugin-public.httpfetchoptions.prependbasepath.md) | boolean
| Whether or not the request should automatically prepend the basePath. Defaults to true
. |
+| [query](./kibana-plugin-public.httpfetchoptions.query.md) | HttpFetchQuery
| The query string for an HTTP request. See [HttpFetchQuery](./kibana-plugin-public.httpfetchquery.md). |
+
diff --git a/docs/development/core/public/kibana-plugin-public.httpfetchoptions.prependbasepath.md b/docs/development/core/public/kibana-plugin-public.httpfetchoptions.prependbasepath.md
index 0a6a8e195e565..bebf99e25bbfc 100644
--- a/docs/development/core/public/kibana-plugin-public.httpfetchoptions.prependbasepath.md
+++ b/docs/development/core/public/kibana-plugin-public.httpfetchoptions.prependbasepath.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpFetchOptions](./kibana-plugin-public.httpfetchoptions.md) > [prependBasePath](./kibana-plugin-public.httpfetchoptions.prependbasepath.md)
-
-## HttpFetchOptions.prependBasePath property
-
-Whether or not the request should automatically prepend the basePath. Defaults to `true`.
-
-Signature:
-
-```typescript
-prependBasePath?: boolean;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpFetchOptions](./kibana-plugin-public.httpfetchoptions.md) > [prependBasePath](./kibana-plugin-public.httpfetchoptions.prependbasepath.md)
+
+## HttpFetchOptions.prependBasePath property
+
+Whether or not the request should automatically prepend the basePath. Defaults to `true`.
+
+Signature:
+
+```typescript
+prependBasePath?: boolean;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.httpfetchoptions.query.md b/docs/development/core/public/kibana-plugin-public.httpfetchoptions.query.md
index 0f8d6ba83e772..bae4edd22dd46 100644
--- a/docs/development/core/public/kibana-plugin-public.httpfetchoptions.query.md
+++ b/docs/development/core/public/kibana-plugin-public.httpfetchoptions.query.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpFetchOptions](./kibana-plugin-public.httpfetchoptions.md) > [query](./kibana-plugin-public.httpfetchoptions.query.md)
-
-## HttpFetchOptions.query property
-
-The query string for an HTTP request. See [HttpFetchQuery](./kibana-plugin-public.httpfetchquery.md).
-
-Signature:
-
-```typescript
-query?: HttpFetchQuery;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpFetchOptions](./kibana-plugin-public.httpfetchoptions.md) > [query](./kibana-plugin-public.httpfetchoptions.query.md)
+
+## HttpFetchOptions.query property
+
+The query string for an HTTP request. See [HttpFetchQuery](./kibana-plugin-public.httpfetchquery.md).
+
+Signature:
+
+```typescript
+query?: HttpFetchQuery;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.httpfetchoptionswithpath.md b/docs/development/core/public/kibana-plugin-public.httpfetchoptionswithpath.md
index adccca83f5bb4..5c27122e07ba7 100644
--- a/docs/development/core/public/kibana-plugin-public.httpfetchoptionswithpath.md
+++ b/docs/development/core/public/kibana-plugin-public.httpfetchoptionswithpath.md
@@ -1,20 +1,20 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpFetchOptionsWithPath](./kibana-plugin-public.httpfetchoptionswithpath.md)
-
-## HttpFetchOptionsWithPath interface
-
-Similar to [HttpFetchOptions](./kibana-plugin-public.httpfetchoptions.md) but with the URL path included.
-
-Signature:
-
-```typescript
-export interface HttpFetchOptionsWithPath extends HttpFetchOptions
-```
-
-## Properties
-
-| Property | Type | Description |
-| --- | --- | --- |
-| [path](./kibana-plugin-public.httpfetchoptionswithpath.path.md) | string
| |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpFetchOptionsWithPath](./kibana-plugin-public.httpfetchoptionswithpath.md)
+
+## HttpFetchOptionsWithPath interface
+
+Similar to [HttpFetchOptions](./kibana-plugin-public.httpfetchoptions.md) but with the URL path included.
+
+Signature:
+
+```typescript
+export interface HttpFetchOptionsWithPath extends HttpFetchOptions
+```
+
+## Properties
+
+| Property | Type | Description |
+| --- | --- | --- |
+| [path](./kibana-plugin-public.httpfetchoptionswithpath.path.md) | string
| |
+
diff --git a/docs/development/core/public/kibana-plugin-public.httpfetchoptionswithpath.path.md b/docs/development/core/public/kibana-plugin-public.httpfetchoptionswithpath.path.md
index 9341fd2f7693a..be84a6315564e 100644
--- a/docs/development/core/public/kibana-plugin-public.httpfetchoptionswithpath.path.md
+++ b/docs/development/core/public/kibana-plugin-public.httpfetchoptionswithpath.path.md
@@ -1,11 +1,11 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpFetchOptionsWithPath](./kibana-plugin-public.httpfetchoptionswithpath.md) > [path](./kibana-plugin-public.httpfetchoptionswithpath.path.md)
-
-## HttpFetchOptionsWithPath.path property
-
-Signature:
-
-```typescript
-path: string;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpFetchOptionsWithPath](./kibana-plugin-public.httpfetchoptionswithpath.md) > [path](./kibana-plugin-public.httpfetchoptionswithpath.path.md)
+
+## HttpFetchOptionsWithPath.path property
+
+Signature:
+
+```typescript
+path: string;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.httpfetchquery.md b/docs/development/core/public/kibana-plugin-public.httpfetchquery.md
index e09b22b074453..d270ceab91532 100644
--- a/docs/development/core/public/kibana-plugin-public.httpfetchquery.md
+++ b/docs/development/core/public/kibana-plugin-public.httpfetchquery.md
@@ -1,12 +1,12 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpFetchQuery](./kibana-plugin-public.httpfetchquery.md)
-
-## HttpFetchQuery interface
-
-
-Signature:
-
-```typescript
-export interface HttpFetchQuery
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpFetchQuery](./kibana-plugin-public.httpfetchquery.md)
+
+## HttpFetchQuery interface
+
+
+Signature:
+
+```typescript
+export interface HttpFetchQuery
+```
diff --git a/docs/development/core/public/kibana-plugin-public.httphandler.md b/docs/development/core/public/kibana-plugin-public.httphandler.md
index 42a6942eedef0..09d98fe97557f 100644
--- a/docs/development/core/public/kibana-plugin-public.httphandler.md
+++ b/docs/development/core/public/kibana-plugin-public.httphandler.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpHandler](./kibana-plugin-public.httphandler.md)
-
-## HttpHandler interface
-
-A function for making an HTTP requests to Kibana's backend. See [HttpFetchOptions](./kibana-plugin-public.httpfetchoptions.md) for options and [HttpResponse](./kibana-plugin-public.httpresponse.md) for the response.
-
-Signature:
-
-```typescript
-export interface HttpHandler
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpHandler](./kibana-plugin-public.httphandler.md)
+
+## HttpHandler interface
+
+A function for making an HTTP requests to Kibana's backend. See [HttpFetchOptions](./kibana-plugin-public.httpfetchoptions.md) for options and [HttpResponse](./kibana-plugin-public.httpresponse.md) for the response.
+
+Signature:
+
+```typescript
+export interface HttpHandler
+```
diff --git a/docs/development/core/public/kibana-plugin-public.httpheadersinit.md b/docs/development/core/public/kibana-plugin-public.httpheadersinit.md
index 28177909972db..a0d5fec388f87 100644
--- a/docs/development/core/public/kibana-plugin-public.httpheadersinit.md
+++ b/docs/development/core/public/kibana-plugin-public.httpheadersinit.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpHeadersInit](./kibana-plugin-public.httpheadersinit.md)
-
-## HttpHeadersInit interface
-
-Headers to append to the request. Any headers that begin with `kbn-` are considered private to Core and will cause [HttpHandler](./kibana-plugin-public.httphandler.md) to throw an error.
-
-Signature:
-
-```typescript
-export interface HttpHeadersInit
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpHeadersInit](./kibana-plugin-public.httpheadersinit.md)
+
+## HttpHeadersInit interface
+
+Headers to append to the request. Any headers that begin with `kbn-` are considered private to Core and will cause [HttpHandler](./kibana-plugin-public.httphandler.md) to throw an error.
+
+Signature:
+
+```typescript
+export interface HttpHeadersInit
+```
diff --git a/docs/development/core/public/kibana-plugin-public.httpinterceptor.md b/docs/development/core/public/kibana-plugin-public.httpinterceptor.md
index a00a7ab0854fb..1cf782b1ba749 100644
--- a/docs/development/core/public/kibana-plugin-public.httpinterceptor.md
+++ b/docs/development/core/public/kibana-plugin-public.httpinterceptor.md
@@ -1,23 +1,23 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpInterceptor](./kibana-plugin-public.httpinterceptor.md)
-
-## HttpInterceptor interface
-
-An object that may define global interceptor functions for different parts of the request and response lifecycle. See [IHttpInterceptController](./kibana-plugin-public.ihttpinterceptcontroller.md).
-
-Signature:
-
-```typescript
-export interface HttpInterceptor
-```
-
-## Methods
-
-| Method | Description |
-| --- | --- |
-| [request(fetchOptions, controller)](./kibana-plugin-public.httpinterceptor.request.md) | Define an interceptor to be executed before a request is sent. |
-| [requestError(httpErrorRequest, controller)](./kibana-plugin-public.httpinterceptor.requesterror.md) | Define an interceptor to be executed if a request interceptor throws an error or returns a rejected Promise. |
-| [response(httpResponse, controller)](./kibana-plugin-public.httpinterceptor.response.md) | Define an interceptor to be executed after a response is received. |
-| [responseError(httpErrorResponse, controller)](./kibana-plugin-public.httpinterceptor.responseerror.md) | Define an interceptor to be executed if a response interceptor throws an error or returns a rejected Promise. |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpInterceptor](./kibana-plugin-public.httpinterceptor.md)
+
+## HttpInterceptor interface
+
+An object that may define global interceptor functions for different parts of the request and response lifecycle. See [IHttpInterceptController](./kibana-plugin-public.ihttpinterceptcontroller.md).
+
+Signature:
+
+```typescript
+export interface HttpInterceptor
+```
+
+## Methods
+
+| Method | Description |
+| --- | --- |
+| [request(fetchOptions, controller)](./kibana-plugin-public.httpinterceptor.request.md) | Define an interceptor to be executed before a request is sent. |
+| [requestError(httpErrorRequest, controller)](./kibana-plugin-public.httpinterceptor.requesterror.md) | Define an interceptor to be executed if a request interceptor throws an error or returns a rejected Promise. |
+| [response(httpResponse, controller)](./kibana-plugin-public.httpinterceptor.response.md) | Define an interceptor to be executed after a response is received. |
+| [responseError(httpErrorResponse, controller)](./kibana-plugin-public.httpinterceptor.responseerror.md) | Define an interceptor to be executed if a response interceptor throws an error or returns a rejected Promise. |
+
diff --git a/docs/development/core/public/kibana-plugin-public.httpinterceptor.request.md b/docs/development/core/public/kibana-plugin-public.httpinterceptor.request.md
index d1d559916b36d..8a6812f40e4cd 100644
--- a/docs/development/core/public/kibana-plugin-public.httpinterceptor.request.md
+++ b/docs/development/core/public/kibana-plugin-public.httpinterceptor.request.md
@@ -1,25 +1,25 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpInterceptor](./kibana-plugin-public.httpinterceptor.md) > [request](./kibana-plugin-public.httpinterceptor.request.md)
-
-## HttpInterceptor.request() method
-
-Define an interceptor to be executed before a request is sent.
-
-Signature:
-
-```typescript
-request?(fetchOptions: Readonly, controller: IHttpInterceptController): MaybePromise> | void;
-```
-
-## Parameters
-
-| Parameter | Type | Description |
-| --- | --- | --- |
-| fetchOptions | Readonly<HttpFetchOptionsWithPath>
| |
-| controller | IHttpInterceptController
| |
-
-Returns:
-
-`MaybePromise> | void`
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpInterceptor](./kibana-plugin-public.httpinterceptor.md) > [request](./kibana-plugin-public.httpinterceptor.request.md)
+
+## HttpInterceptor.request() method
+
+Define an interceptor to be executed before a request is sent.
+
+Signature:
+
+```typescript
+request?(fetchOptions: Readonly, controller: IHttpInterceptController): MaybePromise> | void;
+```
+
+## Parameters
+
+| Parameter | Type | Description |
+| --- | --- | --- |
+| fetchOptions | Readonly<HttpFetchOptionsWithPath>
| |
+| controller | IHttpInterceptController
| |
+
+Returns:
+
+`MaybePromise> | void`
+
diff --git a/docs/development/core/public/kibana-plugin-public.httpinterceptor.requesterror.md b/docs/development/core/public/kibana-plugin-public.httpinterceptor.requesterror.md
index fc661d88bf1af..7bb9202aa905e 100644
--- a/docs/development/core/public/kibana-plugin-public.httpinterceptor.requesterror.md
+++ b/docs/development/core/public/kibana-plugin-public.httpinterceptor.requesterror.md
@@ -1,25 +1,25 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpInterceptor](./kibana-plugin-public.httpinterceptor.md) > [requestError](./kibana-plugin-public.httpinterceptor.requesterror.md)
-
-## HttpInterceptor.requestError() method
-
-Define an interceptor to be executed if a request interceptor throws an error or returns a rejected Promise.
-
-Signature:
-
-```typescript
-requestError?(httpErrorRequest: HttpInterceptorRequestError, controller: IHttpInterceptController): MaybePromise> | void;
-```
-
-## Parameters
-
-| Parameter | Type | Description |
-| --- | --- | --- |
-| httpErrorRequest | HttpInterceptorRequestError
| |
-| controller | IHttpInterceptController
| |
-
-Returns:
-
-`MaybePromise> | void`
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpInterceptor](./kibana-plugin-public.httpinterceptor.md) > [requestError](./kibana-plugin-public.httpinterceptor.requesterror.md)
+
+## HttpInterceptor.requestError() method
+
+Define an interceptor to be executed if a request interceptor throws an error or returns a rejected Promise.
+
+Signature:
+
+```typescript
+requestError?(httpErrorRequest: HttpInterceptorRequestError, controller: IHttpInterceptController): MaybePromise> | void;
+```
+
+## Parameters
+
+| Parameter | Type | Description |
+| --- | --- | --- |
+| httpErrorRequest | HttpInterceptorRequestError
| |
+| controller | IHttpInterceptController
| |
+
+Returns:
+
+`MaybePromise> | void`
+
diff --git a/docs/development/core/public/kibana-plugin-public.httpinterceptor.response.md b/docs/development/core/public/kibana-plugin-public.httpinterceptor.response.md
index 95cf78dd6f8d1..12a5b36090abc 100644
--- a/docs/development/core/public/kibana-plugin-public.httpinterceptor.response.md
+++ b/docs/development/core/public/kibana-plugin-public.httpinterceptor.response.md
@@ -1,25 +1,25 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpInterceptor](./kibana-plugin-public.httpinterceptor.md) > [response](./kibana-plugin-public.httpinterceptor.response.md)
-
-## HttpInterceptor.response() method
-
-Define an interceptor to be executed after a response is received.
-
-Signature:
-
-```typescript
-response?(httpResponse: HttpResponse, controller: IHttpInterceptController): MaybePromise | void;
-```
-
-## Parameters
-
-| Parameter | Type | Description |
-| --- | --- | --- |
-| httpResponse | HttpResponse
| |
-| controller | IHttpInterceptController
| |
-
-Returns:
-
-`MaybePromise | void`
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpInterceptor](./kibana-plugin-public.httpinterceptor.md) > [response](./kibana-plugin-public.httpinterceptor.response.md)
+
+## HttpInterceptor.response() method
+
+Define an interceptor to be executed after a response is received.
+
+Signature:
+
+```typescript
+response?(httpResponse: HttpResponse, controller: IHttpInterceptController): MaybePromise | void;
+```
+
+## Parameters
+
+| Parameter | Type | Description |
+| --- | --- | --- |
+| httpResponse | HttpResponse
| |
+| controller | IHttpInterceptController
| |
+
+Returns:
+
+`MaybePromise | void`
+
diff --git a/docs/development/core/public/kibana-plugin-public.httpinterceptor.responseerror.md b/docs/development/core/public/kibana-plugin-public.httpinterceptor.responseerror.md
index 50e943bc93b07..d3c2b6db128c1 100644
--- a/docs/development/core/public/kibana-plugin-public.httpinterceptor.responseerror.md
+++ b/docs/development/core/public/kibana-plugin-public.httpinterceptor.responseerror.md
@@ -1,25 +1,25 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpInterceptor](./kibana-plugin-public.httpinterceptor.md) > [responseError](./kibana-plugin-public.httpinterceptor.responseerror.md)
-
-## HttpInterceptor.responseError() method
-
-Define an interceptor to be executed if a response interceptor throws an error or returns a rejected Promise.
-
-Signature:
-
-```typescript
-responseError?(httpErrorResponse: HttpInterceptorResponseError, controller: IHttpInterceptController): MaybePromise | void;
-```
-
-## Parameters
-
-| Parameter | Type | Description |
-| --- | --- | --- |
-| httpErrorResponse | HttpInterceptorResponseError
| |
-| controller | IHttpInterceptController
| |
-
-Returns:
-
-`MaybePromise | void`
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpInterceptor](./kibana-plugin-public.httpinterceptor.md) > [responseError](./kibana-plugin-public.httpinterceptor.responseerror.md)
+
+## HttpInterceptor.responseError() method
+
+Define an interceptor to be executed if a response interceptor throws an error or returns a rejected Promise.
+
+Signature:
+
+```typescript
+responseError?(httpErrorResponse: HttpInterceptorResponseError, controller: IHttpInterceptController): MaybePromise | void;
+```
+
+## Parameters
+
+| Parameter | Type | Description |
+| --- | --- | --- |
+| httpErrorResponse | HttpInterceptorResponseError
| |
+| controller | IHttpInterceptController
| |
+
+Returns:
+
+`MaybePromise | void`
+
diff --git a/docs/development/core/public/kibana-plugin-public.httpinterceptorrequesterror.error.md b/docs/development/core/public/kibana-plugin-public.httpinterceptorrequesterror.error.md
index 28fde834d9721..2eeafffb8d556 100644
--- a/docs/development/core/public/kibana-plugin-public.httpinterceptorrequesterror.error.md
+++ b/docs/development/core/public/kibana-plugin-public.httpinterceptorrequesterror.error.md
@@ -1,11 +1,11 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpInterceptorRequestError](./kibana-plugin-public.httpinterceptorrequesterror.md) > [error](./kibana-plugin-public.httpinterceptorrequesterror.error.md)
-
-## HttpInterceptorRequestError.error property
-
-Signature:
-
-```typescript
-error: Error;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpInterceptorRequestError](./kibana-plugin-public.httpinterceptorrequesterror.md) > [error](./kibana-plugin-public.httpinterceptorrequesterror.error.md)
+
+## HttpInterceptorRequestError.error property
+
+Signature:
+
+```typescript
+error: Error;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.httpinterceptorrequesterror.fetchoptions.md b/docs/development/core/public/kibana-plugin-public.httpinterceptorrequesterror.fetchoptions.md
index 79c086224ff10..31a7f8ef44d9f 100644
--- a/docs/development/core/public/kibana-plugin-public.httpinterceptorrequesterror.fetchoptions.md
+++ b/docs/development/core/public/kibana-plugin-public.httpinterceptorrequesterror.fetchoptions.md
@@ -1,11 +1,11 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpInterceptorRequestError](./kibana-plugin-public.httpinterceptorrequesterror.md) > [fetchOptions](./kibana-plugin-public.httpinterceptorrequesterror.fetchoptions.md)
-
-## HttpInterceptorRequestError.fetchOptions property
-
-Signature:
-
-```typescript
-fetchOptions: Readonly;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpInterceptorRequestError](./kibana-plugin-public.httpinterceptorrequesterror.md) > [fetchOptions](./kibana-plugin-public.httpinterceptorrequesterror.fetchoptions.md)
+
+## HttpInterceptorRequestError.fetchOptions property
+
+Signature:
+
+```typescript
+fetchOptions: Readonly;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.httpinterceptorrequesterror.md b/docs/development/core/public/kibana-plugin-public.httpinterceptorrequesterror.md
index 4375719e0802b..4174523ed5fa6 100644
--- a/docs/development/core/public/kibana-plugin-public.httpinterceptorrequesterror.md
+++ b/docs/development/core/public/kibana-plugin-public.httpinterceptorrequesterror.md
@@ -1,20 +1,20 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpInterceptorRequestError](./kibana-plugin-public.httpinterceptorrequesterror.md)
-
-## HttpInterceptorRequestError interface
-
-
-Signature:
-
-```typescript
-export interface HttpInterceptorRequestError
-```
-
-## Properties
-
-| Property | Type | Description |
-| --- | --- | --- |
-| [error](./kibana-plugin-public.httpinterceptorrequesterror.error.md) | Error
| |
-| [fetchOptions](./kibana-plugin-public.httpinterceptorrequesterror.fetchoptions.md) | Readonly<HttpFetchOptionsWithPath>
| |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpInterceptorRequestError](./kibana-plugin-public.httpinterceptorrequesterror.md)
+
+## HttpInterceptorRequestError interface
+
+
+Signature:
+
+```typescript
+export interface HttpInterceptorRequestError
+```
+
+## Properties
+
+| Property | Type | Description |
+| --- | --- | --- |
+| [error](./kibana-plugin-public.httpinterceptorrequesterror.error.md) | Error
| |
+| [fetchOptions](./kibana-plugin-public.httpinterceptorrequesterror.fetchoptions.md) | Readonly<HttpFetchOptionsWithPath>
| |
+
diff --git a/docs/development/core/public/kibana-plugin-public.httpinterceptorresponseerror.error.md b/docs/development/core/public/kibana-plugin-public.httpinterceptorresponseerror.error.md
index a9bdf41b36868..c1367ccdd580e 100644
--- a/docs/development/core/public/kibana-plugin-public.httpinterceptorresponseerror.error.md
+++ b/docs/development/core/public/kibana-plugin-public.httpinterceptorresponseerror.error.md
@@ -1,11 +1,11 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpInterceptorResponseError](./kibana-plugin-public.httpinterceptorresponseerror.md) > [error](./kibana-plugin-public.httpinterceptorresponseerror.error.md)
-
-## HttpInterceptorResponseError.error property
-
-Signature:
-
-```typescript
-error: Error | IHttpFetchError;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpInterceptorResponseError](./kibana-plugin-public.httpinterceptorresponseerror.md) > [error](./kibana-plugin-public.httpinterceptorresponseerror.error.md)
+
+## HttpInterceptorResponseError.error property
+
+Signature:
+
+```typescript
+error: Error | IHttpFetchError;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.httpinterceptorresponseerror.md b/docs/development/core/public/kibana-plugin-public.httpinterceptorresponseerror.md
index 49b4b2545a5f3..d306f9c6096bd 100644
--- a/docs/development/core/public/kibana-plugin-public.httpinterceptorresponseerror.md
+++ b/docs/development/core/public/kibana-plugin-public.httpinterceptorresponseerror.md
@@ -1,20 +1,20 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpInterceptorResponseError](./kibana-plugin-public.httpinterceptorresponseerror.md)
-
-## HttpInterceptorResponseError interface
-
-
-Signature:
-
-```typescript
-export interface HttpInterceptorResponseError extends HttpResponse
-```
-
-## Properties
-
-| Property | Type | Description |
-| --- | --- | --- |
-| [error](./kibana-plugin-public.httpinterceptorresponseerror.error.md) | Error | IHttpFetchError
| |
-| [request](./kibana-plugin-public.httpinterceptorresponseerror.request.md) | Readonly<Request>
| |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpInterceptorResponseError](./kibana-plugin-public.httpinterceptorresponseerror.md)
+
+## HttpInterceptorResponseError interface
+
+
+Signature:
+
+```typescript
+export interface HttpInterceptorResponseError extends HttpResponse
+```
+
+## Properties
+
+| Property | Type | Description |
+| --- | --- | --- |
+| [error](./kibana-plugin-public.httpinterceptorresponseerror.error.md) | Error | IHttpFetchError
| |
+| [request](./kibana-plugin-public.httpinterceptorresponseerror.request.md) | Readonly<Request>
| |
+
diff --git a/docs/development/core/public/kibana-plugin-public.httpinterceptorresponseerror.request.md b/docs/development/core/public/kibana-plugin-public.httpinterceptorresponseerror.request.md
index cb6252ceb8e41..d2f2826c04283 100644
--- a/docs/development/core/public/kibana-plugin-public.httpinterceptorresponseerror.request.md
+++ b/docs/development/core/public/kibana-plugin-public.httpinterceptorresponseerror.request.md
@@ -1,11 +1,11 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpInterceptorResponseError](./kibana-plugin-public.httpinterceptorresponseerror.md) > [request](./kibana-plugin-public.httpinterceptorresponseerror.request.md)
-
-## HttpInterceptorResponseError.request property
-
-Signature:
-
-```typescript
-request: Readonly;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpInterceptorResponseError](./kibana-plugin-public.httpinterceptorresponseerror.md) > [request](./kibana-plugin-public.httpinterceptorresponseerror.request.md)
+
+## HttpInterceptorResponseError.request property
+
+Signature:
+
+```typescript
+request: Readonly;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.httprequestinit.body.md b/docs/development/core/public/kibana-plugin-public.httprequestinit.body.md
index 44b33c9917543..ba0075787e5d1 100644
--- a/docs/development/core/public/kibana-plugin-public.httprequestinit.body.md
+++ b/docs/development/core/public/kibana-plugin-public.httprequestinit.body.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpRequestInit](./kibana-plugin-public.httprequestinit.md) > [body](./kibana-plugin-public.httprequestinit.body.md)
-
-## HttpRequestInit.body property
-
-A BodyInit object or null to set request's body.
-
-Signature:
-
-```typescript
-body?: BodyInit | null;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpRequestInit](./kibana-plugin-public.httprequestinit.md) > [body](./kibana-plugin-public.httprequestinit.body.md)
+
+## HttpRequestInit.body property
+
+A BodyInit object or null to set request's body.
+
+Signature:
+
+```typescript
+body?: BodyInit | null;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.httprequestinit.cache.md b/docs/development/core/public/kibana-plugin-public.httprequestinit.cache.md
index 0f9dff3887ccf..bb9071aa45aec 100644
--- a/docs/development/core/public/kibana-plugin-public.httprequestinit.cache.md
+++ b/docs/development/core/public/kibana-plugin-public.httprequestinit.cache.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpRequestInit](./kibana-plugin-public.httprequestinit.md) > [cache](./kibana-plugin-public.httprequestinit.cache.md)
-
-## HttpRequestInit.cache property
-
-The cache mode associated with request, which is a string indicating how the request will interact with the browser's cache when fetching.
-
-Signature:
-
-```typescript
-cache?: RequestCache;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpRequestInit](./kibana-plugin-public.httprequestinit.md) > [cache](./kibana-plugin-public.httprequestinit.cache.md)
+
+## HttpRequestInit.cache property
+
+The cache mode associated with request, which is a string indicating how the request will interact with the browser's cache when fetching.
+
+Signature:
+
+```typescript
+cache?: RequestCache;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.httprequestinit.credentials.md b/docs/development/core/public/kibana-plugin-public.httprequestinit.credentials.md
index 93c624cd1980c..55355488df792 100644
--- a/docs/development/core/public/kibana-plugin-public.httprequestinit.credentials.md
+++ b/docs/development/core/public/kibana-plugin-public.httprequestinit.credentials.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpRequestInit](./kibana-plugin-public.httprequestinit.md) > [credentials](./kibana-plugin-public.httprequestinit.credentials.md)
-
-## HttpRequestInit.credentials property
-
-The credentials mode associated with request, which is a string indicating whether credentials will be sent with the request always, never, or only when sent to a same-origin URL.
-
-Signature:
-
-```typescript
-credentials?: RequestCredentials;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpRequestInit](./kibana-plugin-public.httprequestinit.md) > [credentials](./kibana-plugin-public.httprequestinit.credentials.md)
+
+## HttpRequestInit.credentials property
+
+The credentials mode associated with request, which is a string indicating whether credentials will be sent with the request always, never, or only when sent to a same-origin URL.
+
+Signature:
+
+```typescript
+credentials?: RequestCredentials;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.httprequestinit.headers.md b/docs/development/core/public/kibana-plugin-public.httprequestinit.headers.md
index 0f885ed0df1a3..f2f98eaa4451e 100644
--- a/docs/development/core/public/kibana-plugin-public.httprequestinit.headers.md
+++ b/docs/development/core/public/kibana-plugin-public.httprequestinit.headers.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpRequestInit](./kibana-plugin-public.httprequestinit.md) > [headers](./kibana-plugin-public.httprequestinit.headers.md)
-
-## HttpRequestInit.headers property
-
-[HttpHeadersInit](./kibana-plugin-public.httpheadersinit.md)
-
-Signature:
-
-```typescript
-headers?: HttpHeadersInit;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpRequestInit](./kibana-plugin-public.httprequestinit.md) > [headers](./kibana-plugin-public.httprequestinit.headers.md)
+
+## HttpRequestInit.headers property
+
+[HttpHeadersInit](./kibana-plugin-public.httpheadersinit.md)
+
+Signature:
+
+```typescript
+headers?: HttpHeadersInit;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.httprequestinit.integrity.md b/docs/development/core/public/kibana-plugin-public.httprequestinit.integrity.md
index 7bb1665fdfcbe..2da1f5827a680 100644
--- a/docs/development/core/public/kibana-plugin-public.httprequestinit.integrity.md
+++ b/docs/development/core/public/kibana-plugin-public.httprequestinit.integrity.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpRequestInit](./kibana-plugin-public.httprequestinit.md) > [integrity](./kibana-plugin-public.httprequestinit.integrity.md)
-
-## HttpRequestInit.integrity property
-
-Subresource integrity metadata, which is a cryptographic hash of the resource being fetched. Its value consists of multiple hashes separated by whitespace.
-
-Signature:
-
-```typescript
-integrity?: string;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpRequestInit](./kibana-plugin-public.httprequestinit.md) > [integrity](./kibana-plugin-public.httprequestinit.integrity.md)
+
+## HttpRequestInit.integrity property
+
+Subresource integrity metadata, which is a cryptographic hash of the resource being fetched. Its value consists of multiple hashes separated by whitespace.
+
+Signature:
+
+```typescript
+integrity?: string;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.httprequestinit.keepalive.md b/docs/development/core/public/kibana-plugin-public.httprequestinit.keepalive.md
index ba256188ce338..35a4020485bca 100644
--- a/docs/development/core/public/kibana-plugin-public.httprequestinit.keepalive.md
+++ b/docs/development/core/public/kibana-plugin-public.httprequestinit.keepalive.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpRequestInit](./kibana-plugin-public.httprequestinit.md) > [keepalive](./kibana-plugin-public.httprequestinit.keepalive.md)
-
-## HttpRequestInit.keepalive property
-
-Whether or not request can outlive the global in which it was created.
-
-Signature:
-
-```typescript
-keepalive?: boolean;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpRequestInit](./kibana-plugin-public.httprequestinit.md) > [keepalive](./kibana-plugin-public.httprequestinit.keepalive.md)
+
+## HttpRequestInit.keepalive property
+
+Whether or not request can outlive the global in which it was created.
+
+Signature:
+
+```typescript
+keepalive?: boolean;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.httprequestinit.md b/docs/development/core/public/kibana-plugin-public.httprequestinit.md
index 1271e039b0713..04b57e48109f6 100644
--- a/docs/development/core/public/kibana-plugin-public.httprequestinit.md
+++ b/docs/development/core/public/kibana-plugin-public.httprequestinit.md
@@ -1,32 +1,32 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpRequestInit](./kibana-plugin-public.httprequestinit.md)
-
-## HttpRequestInit interface
-
-Fetch API options available to [HttpHandler](./kibana-plugin-public.httphandler.md)s.
-
-Signature:
-
-```typescript
-export interface HttpRequestInit
-```
-
-## Properties
-
-| Property | Type | Description |
-| --- | --- | --- |
-| [body](./kibana-plugin-public.httprequestinit.body.md) | BodyInit | null
| A BodyInit object or null to set request's body. |
-| [cache](./kibana-plugin-public.httprequestinit.cache.md) | RequestCache
| The cache mode associated with request, which is a string indicating how the request will interact with the browser's cache when fetching. |
-| [credentials](./kibana-plugin-public.httprequestinit.credentials.md) | RequestCredentials
| The credentials mode associated with request, which is a string indicating whether credentials will be sent with the request always, never, or only when sent to a same-origin URL. |
-| [headers](./kibana-plugin-public.httprequestinit.headers.md) | HttpHeadersInit
| [HttpHeadersInit](./kibana-plugin-public.httpheadersinit.md) |
-| [integrity](./kibana-plugin-public.httprequestinit.integrity.md) | string
| Subresource integrity metadata, which is a cryptographic hash of the resource being fetched. Its value consists of multiple hashes separated by whitespace. |
-| [keepalive](./kibana-plugin-public.httprequestinit.keepalive.md) | boolean
| Whether or not request can outlive the global in which it was created. |
-| [method](./kibana-plugin-public.httprequestinit.method.md) | string
| HTTP method, which is "GET" by default. |
-| [mode](./kibana-plugin-public.httprequestinit.mode.md) | RequestMode
| The mode associated with request, which is a string indicating whether the request will use CORS, or will be restricted to same-origin URLs. |
-| [redirect](./kibana-plugin-public.httprequestinit.redirect.md) | RequestRedirect
| The redirect mode associated with request, which is a string indicating how redirects for the request will be handled during fetching. A request will follow redirects by default. |
-| [referrer](./kibana-plugin-public.httprequestinit.referrer.md) | string
| The referrer of request. Its value can be a same-origin URL if explicitly set in init, the empty string to indicate no referrer, and "about:client" when defaulting to the global's default. This is used during fetching to determine the value of the Referer
header of the request being made. |
-| [referrerPolicy](./kibana-plugin-public.httprequestinit.referrerpolicy.md) | ReferrerPolicy
| The referrer policy associated with request. This is used during fetching to compute the value of the request's referrer. |
-| [signal](./kibana-plugin-public.httprequestinit.signal.md) | AbortSignal | null
| Returns the signal associated with request, which is an AbortSignal object indicating whether or not request has been aborted, and its abort event handler. |
-| [window](./kibana-plugin-public.httprequestinit.window.md) | null
| Can only be null. Used to disassociate request from any Window. |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpRequestInit](./kibana-plugin-public.httprequestinit.md)
+
+## HttpRequestInit interface
+
+Fetch API options available to [HttpHandler](./kibana-plugin-public.httphandler.md)s.
+
+Signature:
+
+```typescript
+export interface HttpRequestInit
+```
+
+## Properties
+
+| Property | Type | Description |
+| --- | --- | --- |
+| [body](./kibana-plugin-public.httprequestinit.body.md) | BodyInit | null
| A BodyInit object or null to set request's body. |
+| [cache](./kibana-plugin-public.httprequestinit.cache.md) | RequestCache
| The cache mode associated with request, which is a string indicating how the request will interact with the browser's cache when fetching. |
+| [credentials](./kibana-plugin-public.httprequestinit.credentials.md) | RequestCredentials
| The credentials mode associated with request, which is a string indicating whether credentials will be sent with the request always, never, or only when sent to a same-origin URL. |
+| [headers](./kibana-plugin-public.httprequestinit.headers.md) | HttpHeadersInit
| [HttpHeadersInit](./kibana-plugin-public.httpheadersinit.md) |
+| [integrity](./kibana-plugin-public.httprequestinit.integrity.md) | string
| Subresource integrity metadata, which is a cryptographic hash of the resource being fetched. Its value consists of multiple hashes separated by whitespace. |
+| [keepalive](./kibana-plugin-public.httprequestinit.keepalive.md) | boolean
| Whether or not request can outlive the global in which it was created. |
+| [method](./kibana-plugin-public.httprequestinit.method.md) | string
| HTTP method, which is "GET" by default. |
+| [mode](./kibana-plugin-public.httprequestinit.mode.md) | RequestMode
| The mode associated with request, which is a string indicating whether the request will use CORS, or will be restricted to same-origin URLs. |
+| [redirect](./kibana-plugin-public.httprequestinit.redirect.md) | RequestRedirect
| The redirect mode associated with request, which is a string indicating how redirects for the request will be handled during fetching. A request will follow redirects by default. |
+| [referrer](./kibana-plugin-public.httprequestinit.referrer.md) | string
| The referrer of request. Its value can be a same-origin URL if explicitly set in init, the empty string to indicate no referrer, and "about:client" when defaulting to the global's default. This is used during fetching to determine the value of the Referer
header of the request being made. |
+| [referrerPolicy](./kibana-plugin-public.httprequestinit.referrerpolicy.md) | ReferrerPolicy
| The referrer policy associated with request. This is used during fetching to compute the value of the request's referrer. |
+| [signal](./kibana-plugin-public.httprequestinit.signal.md) | AbortSignal | null
| Returns the signal associated with request, which is an AbortSignal object indicating whether or not request has been aborted, and its abort event handler. |
+| [window](./kibana-plugin-public.httprequestinit.window.md) | null
| Can only be null. Used to disassociate request from any Window. |
+
diff --git a/docs/development/core/public/kibana-plugin-public.httprequestinit.method.md b/docs/development/core/public/kibana-plugin-public.httprequestinit.method.md
index c3465ae75521d..1c14d72e5e5f9 100644
--- a/docs/development/core/public/kibana-plugin-public.httprequestinit.method.md
+++ b/docs/development/core/public/kibana-plugin-public.httprequestinit.method.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpRequestInit](./kibana-plugin-public.httprequestinit.md) > [method](./kibana-plugin-public.httprequestinit.method.md)
-
-## HttpRequestInit.method property
-
-HTTP method, which is "GET" by default.
-
-Signature:
-
-```typescript
-method?: string;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpRequestInit](./kibana-plugin-public.httprequestinit.md) > [method](./kibana-plugin-public.httprequestinit.method.md)
+
+## HttpRequestInit.method property
+
+HTTP method, which is "GET" by default.
+
+Signature:
+
+```typescript
+method?: string;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.httprequestinit.mode.md b/docs/development/core/public/kibana-plugin-public.httprequestinit.mode.md
index 5ba625318eb27..d3358a3a6b068 100644
--- a/docs/development/core/public/kibana-plugin-public.httprequestinit.mode.md
+++ b/docs/development/core/public/kibana-plugin-public.httprequestinit.mode.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpRequestInit](./kibana-plugin-public.httprequestinit.md) > [mode](./kibana-plugin-public.httprequestinit.mode.md)
-
-## HttpRequestInit.mode property
-
-The mode associated with request, which is a string indicating whether the request will use CORS, or will be restricted to same-origin URLs.
-
-Signature:
-
-```typescript
-mode?: RequestMode;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpRequestInit](./kibana-plugin-public.httprequestinit.md) > [mode](./kibana-plugin-public.httprequestinit.mode.md)
+
+## HttpRequestInit.mode property
+
+The mode associated with request, which is a string indicating whether the request will use CORS, or will be restricted to same-origin URLs.
+
+Signature:
+
+```typescript
+mode?: RequestMode;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.httprequestinit.redirect.md b/docs/development/core/public/kibana-plugin-public.httprequestinit.redirect.md
index b2554812fadf9..6b07fd44416b7 100644
--- a/docs/development/core/public/kibana-plugin-public.httprequestinit.redirect.md
+++ b/docs/development/core/public/kibana-plugin-public.httprequestinit.redirect.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpRequestInit](./kibana-plugin-public.httprequestinit.md) > [redirect](./kibana-plugin-public.httprequestinit.redirect.md)
-
-## HttpRequestInit.redirect property
-
-The redirect mode associated with request, which is a string indicating how redirects for the request will be handled during fetching. A request will follow redirects by default.
-
-Signature:
-
-```typescript
-redirect?: RequestRedirect;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpRequestInit](./kibana-plugin-public.httprequestinit.md) > [redirect](./kibana-plugin-public.httprequestinit.redirect.md)
+
+## HttpRequestInit.redirect property
+
+The redirect mode associated with request, which is a string indicating how redirects for the request will be handled during fetching. A request will follow redirects by default.
+
+Signature:
+
+```typescript
+redirect?: RequestRedirect;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.httprequestinit.referrer.md b/docs/development/core/public/kibana-plugin-public.httprequestinit.referrer.md
index 56c9bcb4afaa9..c1a8960de6eac 100644
--- a/docs/development/core/public/kibana-plugin-public.httprequestinit.referrer.md
+++ b/docs/development/core/public/kibana-plugin-public.httprequestinit.referrer.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpRequestInit](./kibana-plugin-public.httprequestinit.md) > [referrer](./kibana-plugin-public.httprequestinit.referrer.md)
-
-## HttpRequestInit.referrer property
-
-The referrer of request. Its value can be a same-origin URL if explicitly set in init, the empty string to indicate no referrer, and "about:client" when defaulting to the global's default. This is used during fetching to determine the value of the `Referer` header of the request being made.
-
-Signature:
-
-```typescript
-referrer?: string;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpRequestInit](./kibana-plugin-public.httprequestinit.md) > [referrer](./kibana-plugin-public.httprequestinit.referrer.md)
+
+## HttpRequestInit.referrer property
+
+The referrer of request. Its value can be a same-origin URL if explicitly set in init, the empty string to indicate no referrer, and "about:client" when defaulting to the global's default. This is used during fetching to determine the value of the `Referer` header of the request being made.
+
+Signature:
+
+```typescript
+referrer?: string;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.httprequestinit.referrerpolicy.md b/docs/development/core/public/kibana-plugin-public.httprequestinit.referrerpolicy.md
index 07231203c0030..05e1e2487f8f2 100644
--- a/docs/development/core/public/kibana-plugin-public.httprequestinit.referrerpolicy.md
+++ b/docs/development/core/public/kibana-plugin-public.httprequestinit.referrerpolicy.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpRequestInit](./kibana-plugin-public.httprequestinit.md) > [referrerPolicy](./kibana-plugin-public.httprequestinit.referrerpolicy.md)
-
-## HttpRequestInit.referrerPolicy property
-
-The referrer policy associated with request. This is used during fetching to compute the value of the request's referrer.
-
-Signature:
-
-```typescript
-referrerPolicy?: ReferrerPolicy;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpRequestInit](./kibana-plugin-public.httprequestinit.md) > [referrerPolicy](./kibana-plugin-public.httprequestinit.referrerpolicy.md)
+
+## HttpRequestInit.referrerPolicy property
+
+The referrer policy associated with request. This is used during fetching to compute the value of the request's referrer.
+
+Signature:
+
+```typescript
+referrerPolicy?: ReferrerPolicy;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.httprequestinit.signal.md b/docs/development/core/public/kibana-plugin-public.httprequestinit.signal.md
index b0e863eaa804f..38a9f5d48056a 100644
--- a/docs/development/core/public/kibana-plugin-public.httprequestinit.signal.md
+++ b/docs/development/core/public/kibana-plugin-public.httprequestinit.signal.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpRequestInit](./kibana-plugin-public.httprequestinit.md) > [signal](./kibana-plugin-public.httprequestinit.signal.md)
-
-## HttpRequestInit.signal property
-
-Returns the signal associated with request, which is an AbortSignal object indicating whether or not request has been aborted, and its abort event handler.
-
-Signature:
-
-```typescript
-signal?: AbortSignal | null;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpRequestInit](./kibana-plugin-public.httprequestinit.md) > [signal](./kibana-plugin-public.httprequestinit.signal.md)
+
+## HttpRequestInit.signal property
+
+Returns the signal associated with request, which is an AbortSignal object indicating whether or not request has been aborted, and its abort event handler.
+
+Signature:
+
+```typescript
+signal?: AbortSignal | null;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.httprequestinit.window.md b/docs/development/core/public/kibana-plugin-public.httprequestinit.window.md
index 1a6d740065423..67a3a163a5d27 100644
--- a/docs/development/core/public/kibana-plugin-public.httprequestinit.window.md
+++ b/docs/development/core/public/kibana-plugin-public.httprequestinit.window.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpRequestInit](./kibana-plugin-public.httprequestinit.md) > [window](./kibana-plugin-public.httprequestinit.window.md)
-
-## HttpRequestInit.window property
-
-Can only be null. Used to disassociate request from any Window.
-
-Signature:
-
-```typescript
-window?: null;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpRequestInit](./kibana-plugin-public.httprequestinit.md) > [window](./kibana-plugin-public.httprequestinit.window.md)
+
+## HttpRequestInit.window property
+
+Can only be null. Used to disassociate request from any Window.
+
+Signature:
+
+```typescript
+window?: null;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.httpresponse.body.md b/docs/development/core/public/kibana-plugin-public.httpresponse.body.md
index 3eb167afaa40e..773812135602b 100644
--- a/docs/development/core/public/kibana-plugin-public.httpresponse.body.md
+++ b/docs/development/core/public/kibana-plugin-public.httpresponse.body.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpResponse](./kibana-plugin-public.httpresponse.md) > [body](./kibana-plugin-public.httpresponse.body.md)
-
-## HttpResponse.body property
-
-Parsed body received, may be undefined if there was an error.
-
-Signature:
-
-```typescript
-readonly body?: TResponseBody;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpResponse](./kibana-plugin-public.httpresponse.md) > [body](./kibana-plugin-public.httpresponse.body.md)
+
+## HttpResponse.body property
+
+Parsed body received, may be undefined if there was an error.
+
+Signature:
+
+```typescript
+readonly body?: TResponseBody;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.httpresponse.fetchoptions.md b/docs/development/core/public/kibana-plugin-public.httpresponse.fetchoptions.md
index 65974efe8494e..8fd4f8d1e908e 100644
--- a/docs/development/core/public/kibana-plugin-public.httpresponse.fetchoptions.md
+++ b/docs/development/core/public/kibana-plugin-public.httpresponse.fetchoptions.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpResponse](./kibana-plugin-public.httpresponse.md) > [fetchOptions](./kibana-plugin-public.httpresponse.fetchoptions.md)
-
-## HttpResponse.fetchOptions property
-
-The original [HttpFetchOptionsWithPath](./kibana-plugin-public.httpfetchoptionswithpath.md) used to send this request.
-
-Signature:
-
-```typescript
-readonly fetchOptions: Readonly;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpResponse](./kibana-plugin-public.httpresponse.md) > [fetchOptions](./kibana-plugin-public.httpresponse.fetchoptions.md)
+
+## HttpResponse.fetchOptions property
+
+The original [HttpFetchOptionsWithPath](./kibana-plugin-public.httpfetchoptionswithpath.md) used to send this request.
+
+Signature:
+
+```typescript
+readonly fetchOptions: Readonly;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.httpresponse.md b/docs/development/core/public/kibana-plugin-public.httpresponse.md
index 74097533f6090..3e70e5556b982 100644
--- a/docs/development/core/public/kibana-plugin-public.httpresponse.md
+++ b/docs/development/core/public/kibana-plugin-public.httpresponse.md
@@ -1,22 +1,22 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpResponse](./kibana-plugin-public.httpresponse.md)
-
-## HttpResponse interface
-
-
-Signature:
-
-```typescript
-export interface HttpResponse
-```
-
-## Properties
-
-| Property | Type | Description |
-| --- | --- | --- |
-| [body](./kibana-plugin-public.httpresponse.body.md) | TResponseBody
| Parsed body received, may be undefined if there was an error. |
-| [fetchOptions](./kibana-plugin-public.httpresponse.fetchoptions.md) | Readonly<HttpFetchOptionsWithPath>
| The original [HttpFetchOptionsWithPath](./kibana-plugin-public.httpfetchoptionswithpath.md) used to send this request. |
-| [request](./kibana-plugin-public.httpresponse.request.md) | Readonly<Request>
| Raw request sent to Kibana server. |
-| [response](./kibana-plugin-public.httpresponse.response.md) | Readonly<Response>
| Raw response received, may be undefined if there was an error. |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpResponse](./kibana-plugin-public.httpresponse.md)
+
+## HttpResponse interface
+
+
+Signature:
+
+```typescript
+export interface HttpResponse
+```
+
+## Properties
+
+| Property | Type | Description |
+| --- | --- | --- |
+| [body](./kibana-plugin-public.httpresponse.body.md) | TResponseBody
| Parsed body received, may be undefined if there was an error. |
+| [fetchOptions](./kibana-plugin-public.httpresponse.fetchoptions.md) | Readonly<HttpFetchOptionsWithPath>
| The original [HttpFetchOptionsWithPath](./kibana-plugin-public.httpfetchoptionswithpath.md) used to send this request. |
+| [request](./kibana-plugin-public.httpresponse.request.md) | Readonly<Request>
| Raw request sent to Kibana server. |
+| [response](./kibana-plugin-public.httpresponse.response.md) | Readonly<Response>
| Raw response received, may be undefined if there was an error. |
+
diff --git a/docs/development/core/public/kibana-plugin-public.httpresponse.request.md b/docs/development/core/public/kibana-plugin-public.httpresponse.request.md
index c2a483033247d..583a295e26a72 100644
--- a/docs/development/core/public/kibana-plugin-public.httpresponse.request.md
+++ b/docs/development/core/public/kibana-plugin-public.httpresponse.request.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpResponse](./kibana-plugin-public.httpresponse.md) > [request](./kibana-plugin-public.httpresponse.request.md)
-
-## HttpResponse.request property
-
-Raw request sent to Kibana server.
-
-Signature:
-
-```typescript
-readonly request: Readonly;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpResponse](./kibana-plugin-public.httpresponse.md) > [request](./kibana-plugin-public.httpresponse.request.md)
+
+## HttpResponse.request property
+
+Raw request sent to Kibana server.
+
+Signature:
+
+```typescript
+readonly request: Readonly;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.httpresponse.response.md b/docs/development/core/public/kibana-plugin-public.httpresponse.response.md
index 3a58a3f35012f..b773b3a4d5b55 100644
--- a/docs/development/core/public/kibana-plugin-public.httpresponse.response.md
+++ b/docs/development/core/public/kibana-plugin-public.httpresponse.response.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpResponse](./kibana-plugin-public.httpresponse.md) > [response](./kibana-plugin-public.httpresponse.response.md)
-
-## HttpResponse.response property
-
-Raw response received, may be undefined if there was an error.
-
-Signature:
-
-```typescript
-readonly response?: Readonly;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpResponse](./kibana-plugin-public.httpresponse.md) > [response](./kibana-plugin-public.httpresponse.response.md)
+
+## HttpResponse.response property
+
+Raw response received, may be undefined if there was an error.
+
+Signature:
+
+```typescript
+readonly response?: Readonly;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.httpsetup.addloadingcountsource.md b/docs/development/core/public/kibana-plugin-public.httpsetup.addloadingcountsource.md
index a2fe66bb55c77..88b1e14f6e85b 100644
--- a/docs/development/core/public/kibana-plugin-public.httpsetup.addloadingcountsource.md
+++ b/docs/development/core/public/kibana-plugin-public.httpsetup.addloadingcountsource.md
@@ -1,24 +1,24 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpSetup](./kibana-plugin-public.httpsetup.md) > [addLoadingCountSource](./kibana-plugin-public.httpsetup.addloadingcountsource.md)
-
-## HttpSetup.addLoadingCountSource() method
-
-Adds a new source of loading counts. Used to show the global loading indicator when sum of all observed counts are more than 0.
-
-Signature:
-
-```typescript
-addLoadingCountSource(countSource$: Observable): void;
-```
-
-## Parameters
-
-| Parameter | Type | Description |
-| --- | --- | --- |
-| countSource$ | Observable<number>
| |
-
-Returns:
-
-`void`
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpSetup](./kibana-plugin-public.httpsetup.md) > [addLoadingCountSource](./kibana-plugin-public.httpsetup.addloadingcountsource.md)
+
+## HttpSetup.addLoadingCountSource() method
+
+Adds a new source of loading counts. Used to show the global loading indicator when sum of all observed counts are more than 0.
+
+Signature:
+
+```typescript
+addLoadingCountSource(countSource$: Observable): void;
+```
+
+## Parameters
+
+| Parameter | Type | Description |
+| --- | --- | --- |
+| countSource$ | Observable<number>
| |
+
+Returns:
+
+`void`
+
diff --git a/docs/development/core/public/kibana-plugin-public.httpsetup.anonymouspaths.md b/docs/development/core/public/kibana-plugin-public.httpsetup.anonymouspaths.md
index a9268ca1d8ed6..c44357b39443f 100644
--- a/docs/development/core/public/kibana-plugin-public.httpsetup.anonymouspaths.md
+++ b/docs/development/core/public/kibana-plugin-public.httpsetup.anonymouspaths.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpSetup](./kibana-plugin-public.httpsetup.md) > [anonymousPaths](./kibana-plugin-public.httpsetup.anonymouspaths.md)
-
-## HttpSetup.anonymousPaths property
-
-APIs for denoting certain paths for not requiring authentication
-
-Signature:
-
-```typescript
-anonymousPaths: IAnonymousPaths;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpSetup](./kibana-plugin-public.httpsetup.md) > [anonymousPaths](./kibana-plugin-public.httpsetup.anonymouspaths.md)
+
+## HttpSetup.anonymousPaths property
+
+APIs for denoting certain paths for not requiring authentication
+
+Signature:
+
+```typescript
+anonymousPaths: IAnonymousPaths;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.httpsetup.basepath.md b/docs/development/core/public/kibana-plugin-public.httpsetup.basepath.md
index 6b0726dc8ef2b..fa5ec7d6fef38 100644
--- a/docs/development/core/public/kibana-plugin-public.httpsetup.basepath.md
+++ b/docs/development/core/public/kibana-plugin-public.httpsetup.basepath.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpSetup](./kibana-plugin-public.httpsetup.md) > [basePath](./kibana-plugin-public.httpsetup.basepath.md)
-
-## HttpSetup.basePath property
-
-APIs for manipulating the basePath on URL segments.
-
-Signature:
-
-```typescript
-basePath: IBasePath;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpSetup](./kibana-plugin-public.httpsetup.md) > [basePath](./kibana-plugin-public.httpsetup.basepath.md)
+
+## HttpSetup.basePath property
+
+APIs for manipulating the basePath on URL segments.
+
+Signature:
+
+```typescript
+basePath: IBasePath;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.httpsetup.delete.md b/docs/development/core/public/kibana-plugin-public.httpsetup.delete.md
index 565f0eb336d4f..83ce558826baf 100644
--- a/docs/development/core/public/kibana-plugin-public.httpsetup.delete.md
+++ b/docs/development/core/public/kibana-plugin-public.httpsetup.delete.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpSetup](./kibana-plugin-public.httpsetup.md) > [delete](./kibana-plugin-public.httpsetup.delete.md)
-
-## HttpSetup.delete property
-
-Makes an HTTP request with the DELETE method. See [HttpHandler](./kibana-plugin-public.httphandler.md) for options.
-
-Signature:
-
-```typescript
-delete: HttpHandler;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpSetup](./kibana-plugin-public.httpsetup.md) > [delete](./kibana-plugin-public.httpsetup.delete.md)
+
+## HttpSetup.delete property
+
+Makes an HTTP request with the DELETE method. See [HttpHandler](./kibana-plugin-public.httphandler.md) for options.
+
+Signature:
+
+```typescript
+delete: HttpHandler;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.httpsetup.fetch.md b/docs/development/core/public/kibana-plugin-public.httpsetup.fetch.md
index 2d6447363fa9b..4f9b24ca03e61 100644
--- a/docs/development/core/public/kibana-plugin-public.httpsetup.fetch.md
+++ b/docs/development/core/public/kibana-plugin-public.httpsetup.fetch.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpSetup](./kibana-plugin-public.httpsetup.md) > [fetch](./kibana-plugin-public.httpsetup.fetch.md)
-
-## HttpSetup.fetch property
-
-Makes an HTTP request. Defaults to a GET request unless overriden. See [HttpHandler](./kibana-plugin-public.httphandler.md) for options.
-
-Signature:
-
-```typescript
-fetch: HttpHandler;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpSetup](./kibana-plugin-public.httpsetup.md) > [fetch](./kibana-plugin-public.httpsetup.fetch.md)
+
+## HttpSetup.fetch property
+
+Makes an HTTP request. Defaults to a GET request unless overriden. See [HttpHandler](./kibana-plugin-public.httphandler.md) for options.
+
+Signature:
+
+```typescript
+fetch: HttpHandler;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.httpsetup.get.md b/docs/development/core/public/kibana-plugin-public.httpsetup.get.md
index 0c484e33e9b58..920b53d23c95c 100644
--- a/docs/development/core/public/kibana-plugin-public.httpsetup.get.md
+++ b/docs/development/core/public/kibana-plugin-public.httpsetup.get.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpSetup](./kibana-plugin-public.httpsetup.md) > [get](./kibana-plugin-public.httpsetup.get.md)
-
-## HttpSetup.get property
-
-Makes an HTTP request with the GET method. See [HttpHandler](./kibana-plugin-public.httphandler.md) for options.
-
-Signature:
-
-```typescript
-get: HttpHandler;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpSetup](./kibana-plugin-public.httpsetup.md) > [get](./kibana-plugin-public.httpsetup.get.md)
+
+## HttpSetup.get property
+
+Makes an HTTP request with the GET method. See [HttpHandler](./kibana-plugin-public.httphandler.md) for options.
+
+Signature:
+
+```typescript
+get: HttpHandler;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.httpsetup.getloadingcount_.md b/docs/development/core/public/kibana-plugin-public.httpsetup.getloadingcount_.md
index 628b62b2ffc27..7f7a275e990f0 100644
--- a/docs/development/core/public/kibana-plugin-public.httpsetup.getloadingcount_.md
+++ b/docs/development/core/public/kibana-plugin-public.httpsetup.getloadingcount_.md
@@ -1,17 +1,17 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpSetup](./kibana-plugin-public.httpsetup.md) > [getLoadingCount$](./kibana-plugin-public.httpsetup.getloadingcount_.md)
-
-## HttpSetup.getLoadingCount$() method
-
-Get the sum of all loading count sources as a single Observable.
-
-Signature:
-
-```typescript
-getLoadingCount$(): Observable;
-```
-Returns:
-
-`Observable`
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpSetup](./kibana-plugin-public.httpsetup.md) > [getLoadingCount$](./kibana-plugin-public.httpsetup.getloadingcount_.md)
+
+## HttpSetup.getLoadingCount$() method
+
+Get the sum of all loading count sources as a single Observable.
+
+Signature:
+
+```typescript
+getLoadingCount$(): Observable;
+```
+Returns:
+
+`Observable`
+
diff --git a/docs/development/core/public/kibana-plugin-public.httpsetup.head.md b/docs/development/core/public/kibana-plugin-public.httpsetup.head.md
index e4d49c843e572..243998a68eb44 100644
--- a/docs/development/core/public/kibana-plugin-public.httpsetup.head.md
+++ b/docs/development/core/public/kibana-plugin-public.httpsetup.head.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpSetup](./kibana-plugin-public.httpsetup.md) > [head](./kibana-plugin-public.httpsetup.head.md)
-
-## HttpSetup.head property
-
-Makes an HTTP request with the HEAD method. See [HttpHandler](./kibana-plugin-public.httphandler.md) for options.
-
-Signature:
-
-```typescript
-head: HttpHandler;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpSetup](./kibana-plugin-public.httpsetup.md) > [head](./kibana-plugin-public.httpsetup.head.md)
+
+## HttpSetup.head property
+
+Makes an HTTP request with the HEAD method. See [HttpHandler](./kibana-plugin-public.httphandler.md) for options.
+
+Signature:
+
+```typescript
+head: HttpHandler;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.httpsetup.intercept.md b/docs/development/core/public/kibana-plugin-public.httpsetup.intercept.md
index 1bda0c6166e65..36cf80aeb52de 100644
--- a/docs/development/core/public/kibana-plugin-public.httpsetup.intercept.md
+++ b/docs/development/core/public/kibana-plugin-public.httpsetup.intercept.md
@@ -1,26 +1,26 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpSetup](./kibana-plugin-public.httpsetup.md) > [intercept](./kibana-plugin-public.httpsetup.intercept.md)
-
-## HttpSetup.intercept() method
-
-Adds a new [HttpInterceptor](./kibana-plugin-public.httpinterceptor.md) to the global HTTP client.
-
-Signature:
-
-```typescript
-intercept(interceptor: HttpInterceptor): () => void;
-```
-
-## Parameters
-
-| Parameter | Type | Description |
-| --- | --- | --- |
-| interceptor | HttpInterceptor
| |
-
-Returns:
-
-`() => void`
-
-a function for removing the attached interceptor.
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpSetup](./kibana-plugin-public.httpsetup.md) > [intercept](./kibana-plugin-public.httpsetup.intercept.md)
+
+## HttpSetup.intercept() method
+
+Adds a new [HttpInterceptor](./kibana-plugin-public.httpinterceptor.md) to the global HTTP client.
+
+Signature:
+
+```typescript
+intercept(interceptor: HttpInterceptor): () => void;
+```
+
+## Parameters
+
+| Parameter | Type | Description |
+| --- | --- | --- |
+| interceptor | HttpInterceptor
| |
+
+Returns:
+
+`() => void`
+
+a function for removing the attached interceptor.
+
diff --git a/docs/development/core/public/kibana-plugin-public.httpsetup.md b/docs/development/core/public/kibana-plugin-public.httpsetup.md
index 8a14d26c57ca3..d458f0edcc8a8 100644
--- a/docs/development/core/public/kibana-plugin-public.httpsetup.md
+++ b/docs/development/core/public/kibana-plugin-public.httpsetup.md
@@ -1,36 +1,36 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpSetup](./kibana-plugin-public.httpsetup.md)
-
-## HttpSetup interface
-
-
-Signature:
-
-```typescript
-export interface HttpSetup
-```
-
-## Properties
-
-| Property | Type | Description |
-| --- | --- | --- |
-| [anonymousPaths](./kibana-plugin-public.httpsetup.anonymouspaths.md) | IAnonymousPaths
| APIs for denoting certain paths for not requiring authentication |
-| [basePath](./kibana-plugin-public.httpsetup.basepath.md) | IBasePath
| APIs for manipulating the basePath on URL segments. |
-| [delete](./kibana-plugin-public.httpsetup.delete.md) | HttpHandler
| Makes an HTTP request with the DELETE method. See [HttpHandler](./kibana-plugin-public.httphandler.md) for options. |
-| [fetch](./kibana-plugin-public.httpsetup.fetch.md) | HttpHandler
| Makes an HTTP request. Defaults to a GET request unless overriden. See [HttpHandler](./kibana-plugin-public.httphandler.md) for options. |
-| [get](./kibana-plugin-public.httpsetup.get.md) | HttpHandler
| Makes an HTTP request with the GET method. See [HttpHandler](./kibana-plugin-public.httphandler.md) for options. |
-| [head](./kibana-plugin-public.httpsetup.head.md) | HttpHandler
| Makes an HTTP request with the HEAD method. See [HttpHandler](./kibana-plugin-public.httphandler.md) for options. |
-| [options](./kibana-plugin-public.httpsetup.options.md) | HttpHandler
| Makes an HTTP request with the OPTIONS method. See [HttpHandler](./kibana-plugin-public.httphandler.md) for options. |
-| [patch](./kibana-plugin-public.httpsetup.patch.md) | HttpHandler
| Makes an HTTP request with the PATCH method. See [HttpHandler](./kibana-plugin-public.httphandler.md) for options. |
-| [post](./kibana-plugin-public.httpsetup.post.md) | HttpHandler
| Makes an HTTP request with the POST method. See [HttpHandler](./kibana-plugin-public.httphandler.md) for options. |
-| [put](./kibana-plugin-public.httpsetup.put.md) | HttpHandler
| Makes an HTTP request with the PUT method. See [HttpHandler](./kibana-plugin-public.httphandler.md) for options. |
-
-## Methods
-
-| Method | Description |
-| --- | --- |
-| [addLoadingCountSource(countSource$)](./kibana-plugin-public.httpsetup.addloadingcountsource.md) | Adds a new source of loading counts. Used to show the global loading indicator when sum of all observed counts are more than 0. |
-| [getLoadingCount$()](./kibana-plugin-public.httpsetup.getloadingcount_.md) | Get the sum of all loading count sources as a single Observable. |
-| [intercept(interceptor)](./kibana-plugin-public.httpsetup.intercept.md) | Adds a new [HttpInterceptor](./kibana-plugin-public.httpinterceptor.md) to the global HTTP client. |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpSetup](./kibana-plugin-public.httpsetup.md)
+
+## HttpSetup interface
+
+
+Signature:
+
+```typescript
+export interface HttpSetup
+```
+
+## Properties
+
+| Property | Type | Description |
+| --- | --- | --- |
+| [anonymousPaths](./kibana-plugin-public.httpsetup.anonymouspaths.md) | IAnonymousPaths
| APIs for denoting certain paths for not requiring authentication |
+| [basePath](./kibana-plugin-public.httpsetup.basepath.md) | IBasePath
| APIs for manipulating the basePath on URL segments. |
+| [delete](./kibana-plugin-public.httpsetup.delete.md) | HttpHandler
| Makes an HTTP request with the DELETE method. See [HttpHandler](./kibana-plugin-public.httphandler.md) for options. |
+| [fetch](./kibana-plugin-public.httpsetup.fetch.md) | HttpHandler
| Makes an HTTP request. Defaults to a GET request unless overriden. See [HttpHandler](./kibana-plugin-public.httphandler.md) for options. |
+| [get](./kibana-plugin-public.httpsetup.get.md) | HttpHandler
| Makes an HTTP request with the GET method. See [HttpHandler](./kibana-plugin-public.httphandler.md) for options. |
+| [head](./kibana-plugin-public.httpsetup.head.md) | HttpHandler
| Makes an HTTP request with the HEAD method. See [HttpHandler](./kibana-plugin-public.httphandler.md) for options. |
+| [options](./kibana-plugin-public.httpsetup.options.md) | HttpHandler
| Makes an HTTP request with the OPTIONS method. See [HttpHandler](./kibana-plugin-public.httphandler.md) for options. |
+| [patch](./kibana-plugin-public.httpsetup.patch.md) | HttpHandler
| Makes an HTTP request with the PATCH method. See [HttpHandler](./kibana-plugin-public.httphandler.md) for options. |
+| [post](./kibana-plugin-public.httpsetup.post.md) | HttpHandler
| Makes an HTTP request with the POST method. See [HttpHandler](./kibana-plugin-public.httphandler.md) for options. |
+| [put](./kibana-plugin-public.httpsetup.put.md) | HttpHandler
| Makes an HTTP request with the PUT method. See [HttpHandler](./kibana-plugin-public.httphandler.md) for options. |
+
+## Methods
+
+| Method | Description |
+| --- | --- |
+| [addLoadingCountSource(countSource$)](./kibana-plugin-public.httpsetup.addloadingcountsource.md) | Adds a new source of loading counts. Used to show the global loading indicator when sum of all observed counts are more than 0. |
+| [getLoadingCount$()](./kibana-plugin-public.httpsetup.getloadingcount_.md) | Get the sum of all loading count sources as a single Observable. |
+| [intercept(interceptor)](./kibana-plugin-public.httpsetup.intercept.md) | Adds a new [HttpInterceptor](./kibana-plugin-public.httpinterceptor.md) to the global HTTP client. |
+
diff --git a/docs/development/core/public/kibana-plugin-public.httpsetup.options.md b/docs/development/core/public/kibana-plugin-public.httpsetup.options.md
index 4ea5be8826bff..005ca3ab19ddd 100644
--- a/docs/development/core/public/kibana-plugin-public.httpsetup.options.md
+++ b/docs/development/core/public/kibana-plugin-public.httpsetup.options.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpSetup](./kibana-plugin-public.httpsetup.md) > [options](./kibana-plugin-public.httpsetup.options.md)
-
-## HttpSetup.options property
-
-Makes an HTTP request with the OPTIONS method. See [HttpHandler](./kibana-plugin-public.httphandler.md) for options.
-
-Signature:
-
-```typescript
-options: HttpHandler;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpSetup](./kibana-plugin-public.httpsetup.md) > [options](./kibana-plugin-public.httpsetup.options.md)
+
+## HttpSetup.options property
+
+Makes an HTTP request with the OPTIONS method. See [HttpHandler](./kibana-plugin-public.httphandler.md) for options.
+
+Signature:
+
+```typescript
+options: HttpHandler;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.httpsetup.patch.md b/docs/development/core/public/kibana-plugin-public.httpsetup.patch.md
index ef1d50005b012..ee06af0ca6351 100644
--- a/docs/development/core/public/kibana-plugin-public.httpsetup.patch.md
+++ b/docs/development/core/public/kibana-plugin-public.httpsetup.patch.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpSetup](./kibana-plugin-public.httpsetup.md) > [patch](./kibana-plugin-public.httpsetup.patch.md)
-
-## HttpSetup.patch property
-
-Makes an HTTP request with the PATCH method. See [HttpHandler](./kibana-plugin-public.httphandler.md) for options.
-
-Signature:
-
-```typescript
-patch: HttpHandler;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpSetup](./kibana-plugin-public.httpsetup.md) > [patch](./kibana-plugin-public.httpsetup.patch.md)
+
+## HttpSetup.patch property
+
+Makes an HTTP request with the PATCH method. See [HttpHandler](./kibana-plugin-public.httphandler.md) for options.
+
+Signature:
+
+```typescript
+patch: HttpHandler;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.httpsetup.post.md b/docs/development/core/public/kibana-plugin-public.httpsetup.post.md
index 1c19c35ac3038..7b9a7af51fe04 100644
--- a/docs/development/core/public/kibana-plugin-public.httpsetup.post.md
+++ b/docs/development/core/public/kibana-plugin-public.httpsetup.post.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpSetup](./kibana-plugin-public.httpsetup.md) > [post](./kibana-plugin-public.httpsetup.post.md)
-
-## HttpSetup.post property
-
-Makes an HTTP request with the POST method. See [HttpHandler](./kibana-plugin-public.httphandler.md) for options.
-
-Signature:
-
-```typescript
-post: HttpHandler;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpSetup](./kibana-plugin-public.httpsetup.md) > [post](./kibana-plugin-public.httpsetup.post.md)
+
+## HttpSetup.post property
+
+Makes an HTTP request with the POST method. See [HttpHandler](./kibana-plugin-public.httphandler.md) for options.
+
+Signature:
+
+```typescript
+post: HttpHandler;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.httpsetup.put.md b/docs/development/core/public/kibana-plugin-public.httpsetup.put.md
index e5243d8c80dae..d9d412ff13d92 100644
--- a/docs/development/core/public/kibana-plugin-public.httpsetup.put.md
+++ b/docs/development/core/public/kibana-plugin-public.httpsetup.put.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpSetup](./kibana-plugin-public.httpsetup.md) > [put](./kibana-plugin-public.httpsetup.put.md)
-
-## HttpSetup.put property
-
-Makes an HTTP request with the PUT method. See [HttpHandler](./kibana-plugin-public.httphandler.md) for options.
-
-Signature:
-
-```typescript
-put: HttpHandler;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpSetup](./kibana-plugin-public.httpsetup.md) > [put](./kibana-plugin-public.httpsetup.put.md)
+
+## HttpSetup.put property
+
+Makes an HTTP request with the PUT method. See [HttpHandler](./kibana-plugin-public.httphandler.md) for options.
+
+Signature:
+
+```typescript
+put: HttpHandler;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.httpstart.md b/docs/development/core/public/kibana-plugin-public.httpstart.md
index 9abf319acf00d..5e3b5d066b0db 100644
--- a/docs/development/core/public/kibana-plugin-public.httpstart.md
+++ b/docs/development/core/public/kibana-plugin-public.httpstart.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpStart](./kibana-plugin-public.httpstart.md)
-
-## HttpStart type
-
-See [HttpSetup](./kibana-plugin-public.httpsetup.md)
-
-Signature:
-
-```typescript
-export declare type HttpStart = HttpSetup;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [HttpStart](./kibana-plugin-public.httpstart.md)
+
+## HttpStart type
+
+See [HttpSetup](./kibana-plugin-public.httpsetup.md)
+
+Signature:
+
+```typescript
+export declare type HttpStart = HttpSetup;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.i18nstart.context.md b/docs/development/core/public/kibana-plugin-public.i18nstart.context.md
index 1dda40711b49b..29ac950cc7adb 100644
--- a/docs/development/core/public/kibana-plugin-public.i18nstart.context.md
+++ b/docs/development/core/public/kibana-plugin-public.i18nstart.context.md
@@ -1,15 +1,15 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [I18nStart](./kibana-plugin-public.i18nstart.md) > [Context](./kibana-plugin-public.i18nstart.context.md)
-
-## I18nStart.Context property
-
-React Context provider required as the topmost component for any i18n-compatible React tree.
-
-Signature:
-
-```typescript
-Context: ({ children }: {
- children: React.ReactNode;
- }) => JSX.Element;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [I18nStart](./kibana-plugin-public.i18nstart.md) > [Context](./kibana-plugin-public.i18nstart.context.md)
+
+## I18nStart.Context property
+
+React Context provider required as the topmost component for any i18n-compatible React tree.
+
+Signature:
+
+```typescript
+Context: ({ children }: {
+ children: React.ReactNode;
+ }) => JSX.Element;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.i18nstart.md b/docs/development/core/public/kibana-plugin-public.i18nstart.md
index 0df5ee93a6af0..83dd60abfb490 100644
--- a/docs/development/core/public/kibana-plugin-public.i18nstart.md
+++ b/docs/development/core/public/kibana-plugin-public.i18nstart.md
@@ -1,20 +1,20 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [I18nStart](./kibana-plugin-public.i18nstart.md)
-
-## I18nStart interface
-
-I18nStart.Context is required by any localizable React component from @kbn/i18n and @elastic/eui packages and is supposed to be used as the topmost component for any i18n-compatible React tree.
-
-Signature:
-
-```typescript
-export interface I18nStart
-```
-
-## Properties
-
-| Property | Type | Description |
-| --- | --- | --- |
-| [Context](./kibana-plugin-public.i18nstart.context.md) | ({ children }: {
children: React.ReactNode;
}) => JSX.Element
| React Context provider required as the topmost component for any i18n-compatible React tree. |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [I18nStart](./kibana-plugin-public.i18nstart.md)
+
+## I18nStart interface
+
+I18nStart.Context is required by any localizable React component from @kbn/i18n and @elastic/eui packages and is supposed to be used as the topmost component for any i18n-compatible React tree.
+
+Signature:
+
+```typescript
+export interface I18nStart
+```
+
+## Properties
+
+| Property | Type | Description |
+| --- | --- | --- |
+| [Context](./kibana-plugin-public.i18nstart.context.md) | ({ children }: {
children: React.ReactNode;
}) => JSX.Element
| React Context provider required as the topmost component for any i18n-compatible React tree. |
+
diff --git a/docs/development/core/public/kibana-plugin-public.ianonymouspaths.isanonymous.md b/docs/development/core/public/kibana-plugin-public.ianonymouspaths.isanonymous.md
index d6be78e1e725b..269c255e880f0 100644
--- a/docs/development/core/public/kibana-plugin-public.ianonymouspaths.isanonymous.md
+++ b/docs/development/core/public/kibana-plugin-public.ianonymouspaths.isanonymous.md
@@ -1,24 +1,24 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IAnonymousPaths](./kibana-plugin-public.ianonymouspaths.md) > [isAnonymous](./kibana-plugin-public.ianonymouspaths.isanonymous.md)
-
-## IAnonymousPaths.isAnonymous() method
-
-Determines whether the provided path doesn't require authentication. `path` should include the current basePath.
-
-Signature:
-
-```typescript
-isAnonymous(path: string): boolean;
-```
-
-## Parameters
-
-| Parameter | Type | Description |
-| --- | --- | --- |
-| path | string
| |
-
-Returns:
-
-`boolean`
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IAnonymousPaths](./kibana-plugin-public.ianonymouspaths.md) > [isAnonymous](./kibana-plugin-public.ianonymouspaths.isanonymous.md)
+
+## IAnonymousPaths.isAnonymous() method
+
+Determines whether the provided path doesn't require authentication. `path` should include the current basePath.
+
+Signature:
+
+```typescript
+isAnonymous(path: string): boolean;
+```
+
+## Parameters
+
+| Parameter | Type | Description |
+| --- | --- | --- |
+| path | string
| |
+
+Returns:
+
+`boolean`
+
diff --git a/docs/development/core/public/kibana-plugin-public.ianonymouspaths.md b/docs/development/core/public/kibana-plugin-public.ianonymouspaths.md
index 1290df28780cf..65563f1f8d903 100644
--- a/docs/development/core/public/kibana-plugin-public.ianonymouspaths.md
+++ b/docs/development/core/public/kibana-plugin-public.ianonymouspaths.md
@@ -1,21 +1,21 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IAnonymousPaths](./kibana-plugin-public.ianonymouspaths.md)
-
-## IAnonymousPaths interface
-
-APIs for denoting paths as not requiring authentication
-
-Signature:
-
-```typescript
-export interface IAnonymousPaths
-```
-
-## Methods
-
-| Method | Description |
-| --- | --- |
-| [isAnonymous(path)](./kibana-plugin-public.ianonymouspaths.isanonymous.md) | Determines whether the provided path doesn't require authentication. path
should include the current basePath. |
-| [register(path)](./kibana-plugin-public.ianonymouspaths.register.md) | Register path
as not requiring authentication. path
should not include the current basePath. |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IAnonymousPaths](./kibana-plugin-public.ianonymouspaths.md)
+
+## IAnonymousPaths interface
+
+APIs for denoting paths as not requiring authentication
+
+Signature:
+
+```typescript
+export interface IAnonymousPaths
+```
+
+## Methods
+
+| Method | Description |
+| --- | --- |
+| [isAnonymous(path)](./kibana-plugin-public.ianonymouspaths.isanonymous.md) | Determines whether the provided path doesn't require authentication. path
should include the current basePath. |
+| [register(path)](./kibana-plugin-public.ianonymouspaths.register.md) | Register path
as not requiring authentication. path
should not include the current basePath. |
+
diff --git a/docs/development/core/public/kibana-plugin-public.ianonymouspaths.register.md b/docs/development/core/public/kibana-plugin-public.ianonymouspaths.register.md
index 3ab9bf438aa16..49819ae7f2420 100644
--- a/docs/development/core/public/kibana-plugin-public.ianonymouspaths.register.md
+++ b/docs/development/core/public/kibana-plugin-public.ianonymouspaths.register.md
@@ -1,24 +1,24 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IAnonymousPaths](./kibana-plugin-public.ianonymouspaths.md) > [register](./kibana-plugin-public.ianonymouspaths.register.md)
-
-## IAnonymousPaths.register() method
-
-Register `path` as not requiring authentication. `path` should not include the current basePath.
-
-Signature:
-
-```typescript
-register(path: string): void;
-```
-
-## Parameters
-
-| Parameter | Type | Description |
-| --- | --- | --- |
-| path | string
| |
-
-Returns:
-
-`void`
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IAnonymousPaths](./kibana-plugin-public.ianonymouspaths.md) > [register](./kibana-plugin-public.ianonymouspaths.register.md)
+
+## IAnonymousPaths.register() method
+
+Register `path` as not requiring authentication. `path` should not include the current basePath.
+
+Signature:
+
+```typescript
+register(path: string): void;
+```
+
+## Parameters
+
+| Parameter | Type | Description |
+| --- | --- | --- |
+| path | string
| |
+
+Returns:
+
+`void`
+
diff --git a/docs/development/core/public/kibana-plugin-public.ibasepath.get.md b/docs/development/core/public/kibana-plugin-public.ibasepath.get.md
index 08ca3afee11f7..2b3354c00c0f6 100644
--- a/docs/development/core/public/kibana-plugin-public.ibasepath.get.md
+++ b/docs/development/core/public/kibana-plugin-public.ibasepath.get.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IBasePath](./kibana-plugin-public.ibasepath.md) > [get](./kibana-plugin-public.ibasepath.get.md)
-
-## IBasePath.get property
-
-Gets the `basePath` string.
-
-Signature:
-
-```typescript
-get: () => string;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IBasePath](./kibana-plugin-public.ibasepath.md) > [get](./kibana-plugin-public.ibasepath.get.md)
+
+## IBasePath.get property
+
+Gets the `basePath` string.
+
+Signature:
+
+```typescript
+get: () => string;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.ibasepath.md b/docs/development/core/public/kibana-plugin-public.ibasepath.md
index de392d45c4493..ca4c4b7ad3be7 100644
--- a/docs/development/core/public/kibana-plugin-public.ibasepath.md
+++ b/docs/development/core/public/kibana-plugin-public.ibasepath.md
@@ -1,22 +1,22 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IBasePath](./kibana-plugin-public.ibasepath.md)
-
-## IBasePath interface
-
-APIs for manipulating the basePath on URL segments.
-
-Signature:
-
-```typescript
-export interface IBasePath
-```
-
-## Properties
-
-| Property | Type | Description |
-| --- | --- | --- |
-| [get](./kibana-plugin-public.ibasepath.get.md) | () => string
| Gets the basePath
string. |
-| [prepend](./kibana-plugin-public.ibasepath.prepend.md) | (url: string) => string
| Prepends path
with the basePath. |
-| [remove](./kibana-plugin-public.ibasepath.remove.md) | (url: string) => string
| Removes the prepended basePath from the path
. |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IBasePath](./kibana-plugin-public.ibasepath.md)
+
+## IBasePath interface
+
+APIs for manipulating the basePath on URL segments.
+
+Signature:
+
+```typescript
+export interface IBasePath
+```
+
+## Properties
+
+| Property | Type | Description |
+| --- | --- | --- |
+| [get](./kibana-plugin-public.ibasepath.get.md) | () => string
| Gets the basePath
string. |
+| [prepend](./kibana-plugin-public.ibasepath.prepend.md) | (url: string) => string
| Prepends path
with the basePath. |
+| [remove](./kibana-plugin-public.ibasepath.remove.md) | (url: string) => string
| Removes the prepended basePath from the path
. |
+
diff --git a/docs/development/core/public/kibana-plugin-public.ibasepath.prepend.md b/docs/development/core/public/kibana-plugin-public.ibasepath.prepend.md
index 48b909aa2f7a8..98c07f848a5a9 100644
--- a/docs/development/core/public/kibana-plugin-public.ibasepath.prepend.md
+++ b/docs/development/core/public/kibana-plugin-public.ibasepath.prepend.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IBasePath](./kibana-plugin-public.ibasepath.md) > [prepend](./kibana-plugin-public.ibasepath.prepend.md)
-
-## IBasePath.prepend property
-
-Prepends `path` with the basePath.
-
-Signature:
-
-```typescript
-prepend: (url: string) => string;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IBasePath](./kibana-plugin-public.ibasepath.md) > [prepend](./kibana-plugin-public.ibasepath.prepend.md)
+
+## IBasePath.prepend property
+
+Prepends `path` with the basePath.
+
+Signature:
+
+```typescript
+prepend: (url: string) => string;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.ibasepath.remove.md b/docs/development/core/public/kibana-plugin-public.ibasepath.remove.md
index 6af8564420830..ce930fa1e1596 100644
--- a/docs/development/core/public/kibana-plugin-public.ibasepath.remove.md
+++ b/docs/development/core/public/kibana-plugin-public.ibasepath.remove.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IBasePath](./kibana-plugin-public.ibasepath.md) > [remove](./kibana-plugin-public.ibasepath.remove.md)
-
-## IBasePath.remove property
-
-Removes the prepended basePath from the `path`.
-
-Signature:
-
-```typescript
-remove: (url: string) => string;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IBasePath](./kibana-plugin-public.ibasepath.md) > [remove](./kibana-plugin-public.ibasepath.remove.md)
+
+## IBasePath.remove property
+
+Removes the prepended basePath from the `path`.
+
+Signature:
+
+```typescript
+remove: (url: string) => string;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.icontextcontainer.createhandler.md b/docs/development/core/public/kibana-plugin-public.icontextcontainer.createhandler.md
index af3b5e3fc2eb6..58db072fabc15 100644
--- a/docs/development/core/public/kibana-plugin-public.icontextcontainer.createhandler.md
+++ b/docs/development/core/public/kibana-plugin-public.icontextcontainer.createhandler.md
@@ -1,27 +1,27 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IContextContainer](./kibana-plugin-public.icontextcontainer.md) > [createHandler](./kibana-plugin-public.icontextcontainer.createhandler.md)
-
-## IContextContainer.createHandler() method
-
-Create a new handler function pre-wired to context for the plugin.
-
-Signature:
-
-```typescript
-createHandler(pluginOpaqueId: PluginOpaqueId, handler: THandler): (...rest: HandlerParameters) => ShallowPromise>;
-```
-
-## Parameters
-
-| Parameter | Type | Description |
-| --- | --- | --- |
-| pluginOpaqueId | PluginOpaqueId
| The plugin opaque ID for the plugin that registers this handler. |
-| handler | THandler
| Handler function to pass context object to. |
-
-Returns:
-
-`(...rest: HandlerParameters) => ShallowPromise>`
-
-A function that takes `THandlerParameters`, calls `handler` with a new context, and returns a Promise of the `handler` return value.
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IContextContainer](./kibana-plugin-public.icontextcontainer.md) > [createHandler](./kibana-plugin-public.icontextcontainer.createhandler.md)
+
+## IContextContainer.createHandler() method
+
+Create a new handler function pre-wired to context for the plugin.
+
+Signature:
+
+```typescript
+createHandler(pluginOpaqueId: PluginOpaqueId, handler: THandler): (...rest: HandlerParameters) => ShallowPromise>;
+```
+
+## Parameters
+
+| Parameter | Type | Description |
+| --- | --- | --- |
+| pluginOpaqueId | PluginOpaqueId
| The plugin opaque ID for the plugin that registers this handler. |
+| handler | THandler
| Handler function to pass context object to. |
+
+Returns:
+
+`(...rest: HandlerParameters) => ShallowPromise>`
+
+A function that takes `THandlerParameters`, calls `handler` with a new context, and returns a Promise of the `handler` return value.
+
diff --git a/docs/development/core/public/kibana-plugin-public.icontextcontainer.md b/docs/development/core/public/kibana-plugin-public.icontextcontainer.md
index 7a21df6b93bb5..4b01554662aad 100644
--- a/docs/development/core/public/kibana-plugin-public.icontextcontainer.md
+++ b/docs/development/core/public/kibana-plugin-public.icontextcontainer.md
@@ -1,80 +1,80 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IContextContainer](./kibana-plugin-public.icontextcontainer.md)
-
-## IContextContainer interface
-
-An object that handles registration of context providers and configuring handlers with context.
-
-Signature:
-
-```typescript
-export interface IContextContainer>
-```
-
-## Remarks
-
-A [IContextContainer](./kibana-plugin-public.icontextcontainer.md) can be used by any Core service or plugin (known as the "service owner") which wishes to expose APIs in a handler function. The container object will manage registering context providers and configuring a handler with all of the contexts that should be exposed to the handler's plugin. This is dependent on the dependencies that the handler's plugin declares.
-
-Contexts providers are executed in the order they were registered. Each provider gets access to context values provided by any plugins that it depends on.
-
-In order to configure a handler with context, you must call the [IContextContainer.createHandler()](./kibana-plugin-public.icontextcontainer.createhandler.md) function and use the returned handler which will automatically build a context object when called.
-
-When registering context or creating handlers, the \_calling plugin's opaque id\_ must be provided. This id is passed in via the plugin's initializer and can be accessed from the [PluginInitializerContext.opaqueId](./kibana-plugin-public.plugininitializercontext.opaqueid.md) Note this should NOT be the context service owner's id, but the plugin that is actually registering the context or handler.
-
-```ts
-// Correct
-class MyPlugin {
- private readonly handlers = new Map();
-
- setup(core) {
- this.contextContainer = core.context.createContextContainer();
- return {
- registerContext(pluginOpaqueId, contextName, provider) {
- this.contextContainer.registerContext(pluginOpaqueId, contextName, provider);
- },
- registerRoute(pluginOpaqueId, path, handler) {
- this.handlers.set(
- path,
- this.contextContainer.createHandler(pluginOpaqueId, handler)
- );
- }
- }
- }
-}
-
-// Incorrect
-class MyPlugin {
- private readonly handlers = new Map();
-
- constructor(private readonly initContext: PluginInitializerContext) {}
-
- setup(core) {
- this.contextContainer = core.context.createContextContainer();
- return {
- registerContext(contextName, provider) {
- // BUG!
- // This would leak this context to all handlers rather that only plugins that depend on the calling plugin.
- this.contextContainer.registerContext(this.initContext.opaqueId, contextName, provider);
- },
- registerRoute(path, handler) {
- this.handlers.set(
- path,
- // BUG!
- // This handler will not receive any contexts provided by other dependencies of the calling plugin.
- this.contextContainer.createHandler(this.initContext.opaqueId, handler)
- );
- }
- }
- }
-}
-
-```
-
-## Methods
-
-| Method | Description |
-| --- | --- |
-| [createHandler(pluginOpaqueId, handler)](./kibana-plugin-public.icontextcontainer.createhandler.md) | Create a new handler function pre-wired to context for the plugin. |
-| [registerContext(pluginOpaqueId, contextName, provider)](./kibana-plugin-public.icontextcontainer.registercontext.md) | Register a new context provider. |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IContextContainer](./kibana-plugin-public.icontextcontainer.md)
+
+## IContextContainer interface
+
+An object that handles registration of context providers and configuring handlers with context.
+
+Signature:
+
+```typescript
+export interface IContextContainer>
+```
+
+## Remarks
+
+A [IContextContainer](./kibana-plugin-public.icontextcontainer.md) can be used by any Core service or plugin (known as the "service owner") which wishes to expose APIs in a handler function. The container object will manage registering context providers and configuring a handler with all of the contexts that should be exposed to the handler's plugin. This is dependent on the dependencies that the handler's plugin declares.
+
+Contexts providers are executed in the order they were registered. Each provider gets access to context values provided by any plugins that it depends on.
+
+In order to configure a handler with context, you must call the [IContextContainer.createHandler()](./kibana-plugin-public.icontextcontainer.createhandler.md) function and use the returned handler which will automatically build a context object when called.
+
+When registering context or creating handlers, the \_calling plugin's opaque id\_ must be provided. This id is passed in via the plugin's initializer and can be accessed from the [PluginInitializerContext.opaqueId](./kibana-plugin-public.plugininitializercontext.opaqueid.md) Note this should NOT be the context service owner's id, but the plugin that is actually registering the context or handler.
+
+```ts
+// Correct
+class MyPlugin {
+ private readonly handlers = new Map();
+
+ setup(core) {
+ this.contextContainer = core.context.createContextContainer();
+ return {
+ registerContext(pluginOpaqueId, contextName, provider) {
+ this.contextContainer.registerContext(pluginOpaqueId, contextName, provider);
+ },
+ registerRoute(pluginOpaqueId, path, handler) {
+ this.handlers.set(
+ path,
+ this.contextContainer.createHandler(pluginOpaqueId, handler)
+ );
+ }
+ }
+ }
+}
+
+// Incorrect
+class MyPlugin {
+ private readonly handlers = new Map();
+
+ constructor(private readonly initContext: PluginInitializerContext) {}
+
+ setup(core) {
+ this.contextContainer = core.context.createContextContainer();
+ return {
+ registerContext(contextName, provider) {
+ // BUG!
+ // This would leak this context to all handlers rather that only plugins that depend on the calling plugin.
+ this.contextContainer.registerContext(this.initContext.opaqueId, contextName, provider);
+ },
+ registerRoute(path, handler) {
+ this.handlers.set(
+ path,
+ // BUG!
+ // This handler will not receive any contexts provided by other dependencies of the calling plugin.
+ this.contextContainer.createHandler(this.initContext.opaqueId, handler)
+ );
+ }
+ }
+ }
+}
+
+```
+
+## Methods
+
+| Method | Description |
+| --- | --- |
+| [createHandler(pluginOpaqueId, handler)](./kibana-plugin-public.icontextcontainer.createhandler.md) | Create a new handler function pre-wired to context for the plugin. |
+| [registerContext(pluginOpaqueId, contextName, provider)](./kibana-plugin-public.icontextcontainer.registercontext.md) | Register a new context provider. |
+
diff --git a/docs/development/core/public/kibana-plugin-public.icontextcontainer.registercontext.md b/docs/development/core/public/kibana-plugin-public.icontextcontainer.registercontext.md
index 775f95bd7affa..15db2467582b6 100644
--- a/docs/development/core/public/kibana-plugin-public.icontextcontainer.registercontext.md
+++ b/docs/development/core/public/kibana-plugin-public.icontextcontainer.registercontext.md
@@ -1,34 +1,34 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IContextContainer](./kibana-plugin-public.icontextcontainer.md) > [registerContext](./kibana-plugin-public.icontextcontainer.registercontext.md)
-
-## IContextContainer.registerContext() method
-
-Register a new context provider.
-
-Signature:
-
-```typescript
-registerContext>(pluginOpaqueId: PluginOpaqueId, contextName: TContextName, provider: IContextProvider): this;
-```
-
-## Parameters
-
-| Parameter | Type | Description |
-| --- | --- | --- |
-| pluginOpaqueId | PluginOpaqueId
| The plugin opaque ID for the plugin that registers this context. |
-| contextName | TContextName
| The key of the TContext
object this provider supplies the value for. |
-| provider | IContextProvider<THandler, TContextName>
| A [IContextProvider](./kibana-plugin-public.icontextprovider.md) to be called each time a new context is created. |
-
-Returns:
-
-`this`
-
-The [IContextContainer](./kibana-plugin-public.icontextcontainer.md) for method chaining.
-
-## Remarks
-
-The value (or resolved Promise value) returned by the `provider` function will be attached to the context object on the key specified by `contextName`.
-
-Throws an exception if more than one provider is registered for the same `contextName`.
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IContextContainer](./kibana-plugin-public.icontextcontainer.md) > [registerContext](./kibana-plugin-public.icontextcontainer.registercontext.md)
+
+## IContextContainer.registerContext() method
+
+Register a new context provider.
+
+Signature:
+
+```typescript
+registerContext>(pluginOpaqueId: PluginOpaqueId, contextName: TContextName, provider: IContextProvider): this;
+```
+
+## Parameters
+
+| Parameter | Type | Description |
+| --- | --- | --- |
+| pluginOpaqueId | PluginOpaqueId
| The plugin opaque ID for the plugin that registers this context. |
+| contextName | TContextName
| The key of the TContext
object this provider supplies the value for. |
+| provider | IContextProvider<THandler, TContextName>
| A [IContextProvider](./kibana-plugin-public.icontextprovider.md) to be called each time a new context is created. |
+
+Returns:
+
+`this`
+
+The [IContextContainer](./kibana-plugin-public.icontextcontainer.md) for method chaining.
+
+## Remarks
+
+The value (or resolved Promise value) returned by the `provider` function will be attached to the context object on the key specified by `contextName`.
+
+Throws an exception if more than one provider is registered for the same `contextName`.
+
diff --git a/docs/development/core/public/kibana-plugin-public.icontextprovider.md b/docs/development/core/public/kibana-plugin-public.icontextprovider.md
index 40f0ee3782f6d..157b4834d648f 100644
--- a/docs/development/core/public/kibana-plugin-public.icontextprovider.md
+++ b/docs/development/core/public/kibana-plugin-public.icontextprovider.md
@@ -1,18 +1,18 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IContextProvider](./kibana-plugin-public.icontextprovider.md)
-
-## IContextProvider type
-
-A function that returns a context value for a specific key of given context type.
-
-Signature:
-
-```typescript
-export declare type IContextProvider, TContextName extends keyof HandlerContextType> = (context: Partial>, ...rest: HandlerParameters) => Promise[TContextName]> | HandlerContextType[TContextName];
-```
-
-## Remarks
-
-This function will be called each time a new context is built for a handler invocation.
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IContextProvider](./kibana-plugin-public.icontextprovider.md)
+
+## IContextProvider type
+
+A function that returns a context value for a specific key of given context type.
+
+Signature:
+
+```typescript
+export declare type IContextProvider, TContextName extends keyof HandlerContextType> = (context: Partial>, ...rest: HandlerParameters) => Promise[TContextName]> | HandlerContextType[TContextName];
+```
+
+## Remarks
+
+This function will be called each time a new context is built for a handler invocation.
+
diff --git a/docs/development/core/public/kibana-plugin-public.ihttpfetcherror.body.md b/docs/development/core/public/kibana-plugin-public.ihttpfetcherror.body.md
index 2a5f3a68635b8..3c9475dc2549f 100644
--- a/docs/development/core/public/kibana-plugin-public.ihttpfetcherror.body.md
+++ b/docs/development/core/public/kibana-plugin-public.ihttpfetcherror.body.md
@@ -1,11 +1,11 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IHttpFetchError](./kibana-plugin-public.ihttpfetcherror.md) > [body](./kibana-plugin-public.ihttpfetcherror.body.md)
-
-## IHttpFetchError.body property
-
-Signature:
-
-```typescript
-readonly body?: any;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IHttpFetchError](./kibana-plugin-public.ihttpfetcherror.md) > [body](./kibana-plugin-public.ihttpfetcherror.body.md)
+
+## IHttpFetchError.body property
+
+Signature:
+
+```typescript
+readonly body?: any;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.ihttpfetcherror.md b/docs/development/core/public/kibana-plugin-public.ihttpfetcherror.md
index 0be3b58179209..6109671bb1aa6 100644
--- a/docs/development/core/public/kibana-plugin-public.ihttpfetcherror.md
+++ b/docs/development/core/public/kibana-plugin-public.ihttpfetcherror.md
@@ -1,23 +1,23 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IHttpFetchError](./kibana-plugin-public.ihttpfetcherror.md)
-
-## IHttpFetchError interface
-
-
-Signature:
-
-```typescript
-export interface IHttpFetchError extends Error
-```
-
-## Properties
-
-| Property | Type | Description |
-| --- | --- | --- |
-| [body](./kibana-plugin-public.ihttpfetcherror.body.md) | any
| |
-| [req](./kibana-plugin-public.ihttpfetcherror.req.md) | Request
| |
-| [request](./kibana-plugin-public.ihttpfetcherror.request.md) | Request
| |
-| [res](./kibana-plugin-public.ihttpfetcherror.res.md) | Response
| |
-| [response](./kibana-plugin-public.ihttpfetcherror.response.md) | Response
| |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IHttpFetchError](./kibana-plugin-public.ihttpfetcherror.md)
+
+## IHttpFetchError interface
+
+
+Signature:
+
+```typescript
+export interface IHttpFetchError extends Error
+```
+
+## Properties
+
+| Property | Type | Description |
+| --- | --- | --- |
+| [body](./kibana-plugin-public.ihttpfetcherror.body.md) | any
| |
+| [req](./kibana-plugin-public.ihttpfetcherror.req.md) | Request
| |
+| [request](./kibana-plugin-public.ihttpfetcherror.request.md) | Request
| |
+| [res](./kibana-plugin-public.ihttpfetcherror.res.md) | Response
| |
+| [response](./kibana-plugin-public.ihttpfetcherror.response.md) | Response
| |
+
diff --git a/docs/development/core/public/kibana-plugin-public.ihttpfetcherror.req.md b/docs/development/core/public/kibana-plugin-public.ihttpfetcherror.req.md
index 1d20aa5ecd416..b8d84e9bbec4c 100644
--- a/docs/development/core/public/kibana-plugin-public.ihttpfetcherror.req.md
+++ b/docs/development/core/public/kibana-plugin-public.ihttpfetcherror.req.md
@@ -1,16 +1,16 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IHttpFetchError](./kibana-plugin-public.ihttpfetcherror.md) > [req](./kibana-plugin-public.ihttpfetcherror.req.md)
-
-## IHttpFetchError.req property
-
-> Warning: This API is now obsolete.
->
-> Provided for legacy compatibility. Prefer the `request` property instead.
->
-
-Signature:
-
-```typescript
-readonly req: Request;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IHttpFetchError](./kibana-plugin-public.ihttpfetcherror.md) > [req](./kibana-plugin-public.ihttpfetcherror.req.md)
+
+## IHttpFetchError.req property
+
+> Warning: This API is now obsolete.
+>
+> Provided for legacy compatibility. Prefer the `request` property instead.
+>
+
+Signature:
+
+```typescript
+readonly req: Request;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.ihttpfetcherror.request.md b/docs/development/core/public/kibana-plugin-public.ihttpfetcherror.request.md
index bbb1432f13bfb..9917df69c799a 100644
--- a/docs/development/core/public/kibana-plugin-public.ihttpfetcherror.request.md
+++ b/docs/development/core/public/kibana-plugin-public.ihttpfetcherror.request.md
@@ -1,11 +1,11 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IHttpFetchError](./kibana-plugin-public.ihttpfetcherror.md) > [request](./kibana-plugin-public.ihttpfetcherror.request.md)
-
-## IHttpFetchError.request property
-
-Signature:
-
-```typescript
-readonly request: Request;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IHttpFetchError](./kibana-plugin-public.ihttpfetcherror.md) > [request](./kibana-plugin-public.ihttpfetcherror.request.md)
+
+## IHttpFetchError.request property
+
+Signature:
+
+```typescript
+readonly request: Request;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.ihttpfetcherror.res.md b/docs/development/core/public/kibana-plugin-public.ihttpfetcherror.res.md
index 291b28f6a4250..f23fdc3e40848 100644
--- a/docs/development/core/public/kibana-plugin-public.ihttpfetcherror.res.md
+++ b/docs/development/core/public/kibana-plugin-public.ihttpfetcherror.res.md
@@ -1,16 +1,16 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IHttpFetchError](./kibana-plugin-public.ihttpfetcherror.md) > [res](./kibana-plugin-public.ihttpfetcherror.res.md)
-
-## IHttpFetchError.res property
-
-> Warning: This API is now obsolete.
->
-> Provided for legacy compatibility. Prefer the `response` property instead.
->
-
-Signature:
-
-```typescript
-readonly res?: Response;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IHttpFetchError](./kibana-plugin-public.ihttpfetcherror.md) > [res](./kibana-plugin-public.ihttpfetcherror.res.md)
+
+## IHttpFetchError.res property
+
+> Warning: This API is now obsolete.
+>
+> Provided for legacy compatibility. Prefer the `response` property instead.
+>
+
+Signature:
+
+```typescript
+readonly res?: Response;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.ihttpfetcherror.response.md b/docs/development/core/public/kibana-plugin-public.ihttpfetcherror.response.md
index c5efc1cc3858c..7e4639db1eefe 100644
--- a/docs/development/core/public/kibana-plugin-public.ihttpfetcherror.response.md
+++ b/docs/development/core/public/kibana-plugin-public.ihttpfetcherror.response.md
@@ -1,11 +1,11 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IHttpFetchError](./kibana-plugin-public.ihttpfetcherror.md) > [response](./kibana-plugin-public.ihttpfetcherror.response.md)
-
-## IHttpFetchError.response property
-
-Signature:
-
-```typescript
-readonly response?: Response;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IHttpFetchError](./kibana-plugin-public.ihttpfetcherror.md) > [response](./kibana-plugin-public.ihttpfetcherror.response.md)
+
+## IHttpFetchError.response property
+
+Signature:
+
+```typescript
+readonly response?: Response;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.ihttpinterceptcontroller.halt.md b/docs/development/core/public/kibana-plugin-public.ihttpinterceptcontroller.halt.md
index 6bd3e2e397b91..b501d7c97aded 100644
--- a/docs/development/core/public/kibana-plugin-public.ihttpinterceptcontroller.halt.md
+++ b/docs/development/core/public/kibana-plugin-public.ihttpinterceptcontroller.halt.md
@@ -1,17 +1,17 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IHttpInterceptController](./kibana-plugin-public.ihttpinterceptcontroller.md) > [halt](./kibana-plugin-public.ihttpinterceptcontroller.halt.md)
-
-## IHttpInterceptController.halt() method
-
-Halt the request Promise chain and do not process further interceptors or response handlers.
-
-Signature:
-
-```typescript
-halt(): void;
-```
-Returns:
-
-`void`
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IHttpInterceptController](./kibana-plugin-public.ihttpinterceptcontroller.md) > [halt](./kibana-plugin-public.ihttpinterceptcontroller.halt.md)
+
+## IHttpInterceptController.halt() method
+
+Halt the request Promise chain and do not process further interceptors or response handlers.
+
+Signature:
+
+```typescript
+halt(): void;
+```
+Returns:
+
+`void`
+
diff --git a/docs/development/core/public/kibana-plugin-public.ihttpinterceptcontroller.halted.md b/docs/development/core/public/kibana-plugin-public.ihttpinterceptcontroller.halted.md
index 2e61e8da56e6f..d2b15f8389c58 100644
--- a/docs/development/core/public/kibana-plugin-public.ihttpinterceptcontroller.halted.md
+++ b/docs/development/core/public/kibana-plugin-public.ihttpinterceptcontroller.halted.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IHttpInterceptController](./kibana-plugin-public.ihttpinterceptcontroller.md) > [halted](./kibana-plugin-public.ihttpinterceptcontroller.halted.md)
-
-## IHttpInterceptController.halted property
-
-Whether or not this chain has been halted.
-
-Signature:
-
-```typescript
-halted: boolean;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IHttpInterceptController](./kibana-plugin-public.ihttpinterceptcontroller.md) > [halted](./kibana-plugin-public.ihttpinterceptcontroller.halted.md)
+
+## IHttpInterceptController.halted property
+
+Whether or not this chain has been halted.
+
+Signature:
+
+```typescript
+halted: boolean;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.ihttpinterceptcontroller.md b/docs/development/core/public/kibana-plugin-public.ihttpinterceptcontroller.md
index b07d9fceb91f0..657614cd3e6e0 100644
--- a/docs/development/core/public/kibana-plugin-public.ihttpinterceptcontroller.md
+++ b/docs/development/core/public/kibana-plugin-public.ihttpinterceptcontroller.md
@@ -1,26 +1,26 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IHttpInterceptController](./kibana-plugin-public.ihttpinterceptcontroller.md)
-
-## IHttpInterceptController interface
-
-Used to halt a request Promise chain in a [HttpInterceptor](./kibana-plugin-public.httpinterceptor.md).
-
-Signature:
-
-```typescript
-export interface IHttpInterceptController
-```
-
-## Properties
-
-| Property | Type | Description |
-| --- | --- | --- |
-| [halted](./kibana-plugin-public.ihttpinterceptcontroller.halted.md) | boolean
| Whether or not this chain has been halted. |
-
-## Methods
-
-| Method | Description |
-| --- | --- |
-| [halt()](./kibana-plugin-public.ihttpinterceptcontroller.halt.md) | Halt the request Promise chain and do not process further interceptors or response handlers. |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IHttpInterceptController](./kibana-plugin-public.ihttpinterceptcontroller.md)
+
+## IHttpInterceptController interface
+
+Used to halt a request Promise chain in a [HttpInterceptor](./kibana-plugin-public.httpinterceptor.md).
+
+Signature:
+
+```typescript
+export interface IHttpInterceptController
+```
+
+## Properties
+
+| Property | Type | Description |
+| --- | --- | --- |
+| [halted](./kibana-plugin-public.ihttpinterceptcontroller.halted.md) | boolean
| Whether or not this chain has been halted. |
+
+## Methods
+
+| Method | Description |
+| --- | --- |
+| [halt()](./kibana-plugin-public.ihttpinterceptcontroller.halt.md) | Halt the request Promise chain and do not process further interceptors or response handlers. |
+
diff --git a/docs/development/core/public/kibana-plugin-public.ihttpresponseinterceptoroverrides.body.md b/docs/development/core/public/kibana-plugin-public.ihttpresponseinterceptoroverrides.body.md
index 36fcfb390617c..718083fa4cf77 100644
--- a/docs/development/core/public/kibana-plugin-public.ihttpresponseinterceptoroverrides.body.md
+++ b/docs/development/core/public/kibana-plugin-public.ihttpresponseinterceptoroverrides.body.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IHttpResponseInterceptorOverrides](./kibana-plugin-public.ihttpresponseinterceptoroverrides.md) > [body](./kibana-plugin-public.ihttpresponseinterceptoroverrides.body.md)
-
-## IHttpResponseInterceptorOverrides.body property
-
-Parsed body received, may be undefined if there was an error.
-
-Signature:
-
-```typescript
-readonly body?: TResponseBody;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IHttpResponseInterceptorOverrides](./kibana-plugin-public.ihttpresponseinterceptoroverrides.md) > [body](./kibana-plugin-public.ihttpresponseinterceptoroverrides.body.md)
+
+## IHttpResponseInterceptorOverrides.body property
+
+Parsed body received, may be undefined if there was an error.
+
+Signature:
+
+```typescript
+readonly body?: TResponseBody;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.ihttpresponseinterceptoroverrides.md b/docs/development/core/public/kibana-plugin-public.ihttpresponseinterceptoroverrides.md
index 44f067c429e98..dbb871f354cef 100644
--- a/docs/development/core/public/kibana-plugin-public.ihttpresponseinterceptoroverrides.md
+++ b/docs/development/core/public/kibana-plugin-public.ihttpresponseinterceptoroverrides.md
@@ -1,21 +1,21 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IHttpResponseInterceptorOverrides](./kibana-plugin-public.ihttpresponseinterceptoroverrides.md)
-
-## IHttpResponseInterceptorOverrides interface
-
-Properties that can be returned by HttpInterceptor.request to override the response.
-
-Signature:
-
-```typescript
-export interface IHttpResponseInterceptorOverrides
-```
-
-## Properties
-
-| Property | Type | Description |
-| --- | --- | --- |
-| [body](./kibana-plugin-public.ihttpresponseinterceptoroverrides.body.md) | TResponseBody
| Parsed body received, may be undefined if there was an error. |
-| [response](./kibana-plugin-public.ihttpresponseinterceptoroverrides.response.md) | Readonly<Response>
| Raw response received, may be undefined if there was an error. |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IHttpResponseInterceptorOverrides](./kibana-plugin-public.ihttpresponseinterceptoroverrides.md)
+
+## IHttpResponseInterceptorOverrides interface
+
+Properties that can be returned by HttpInterceptor.request to override the response.
+
+Signature:
+
+```typescript
+export interface IHttpResponseInterceptorOverrides
+```
+
+## Properties
+
+| Property | Type | Description |
+| --- | --- | --- |
+| [body](./kibana-plugin-public.ihttpresponseinterceptoroverrides.body.md) | TResponseBody
| Parsed body received, may be undefined if there was an error. |
+| [response](./kibana-plugin-public.ihttpresponseinterceptoroverrides.response.md) | Readonly<Response>
| Raw response received, may be undefined if there was an error. |
+
diff --git a/docs/development/core/public/kibana-plugin-public.ihttpresponseinterceptoroverrides.response.md b/docs/development/core/public/kibana-plugin-public.ihttpresponseinterceptoroverrides.response.md
index bcba996645ba6..73ce3ba9a366d 100644
--- a/docs/development/core/public/kibana-plugin-public.ihttpresponseinterceptoroverrides.response.md
+++ b/docs/development/core/public/kibana-plugin-public.ihttpresponseinterceptoroverrides.response.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IHttpResponseInterceptorOverrides](./kibana-plugin-public.ihttpresponseinterceptoroverrides.md) > [response](./kibana-plugin-public.ihttpresponseinterceptoroverrides.response.md)
-
-## IHttpResponseInterceptorOverrides.response property
-
-Raw response received, may be undefined if there was an error.
-
-Signature:
-
-```typescript
-readonly response?: Readonly;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IHttpResponseInterceptorOverrides](./kibana-plugin-public.ihttpresponseinterceptoroverrides.md) > [response](./kibana-plugin-public.ihttpresponseinterceptoroverrides.response.md)
+
+## IHttpResponseInterceptorOverrides.response property
+
+Raw response received, may be undefined if there was an error.
+
+Signature:
+
+```typescript
+readonly response?: Readonly;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.imagevalidation.maxsize.md b/docs/development/core/public/kibana-plugin-public.imagevalidation.maxsize.md
index 07c4588ff2c8e..18e99c2a34e7e 100644
--- a/docs/development/core/public/kibana-plugin-public.imagevalidation.maxsize.md
+++ b/docs/development/core/public/kibana-plugin-public.imagevalidation.maxsize.md
@@ -1,14 +1,14 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ImageValidation](./kibana-plugin-public.imagevalidation.md) > [maxSize](./kibana-plugin-public.imagevalidation.maxsize.md)
-
-## ImageValidation.maxSize property
-
-Signature:
-
-```typescript
-maxSize: {
- length: number;
- description: string;
- };
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ImageValidation](./kibana-plugin-public.imagevalidation.md) > [maxSize](./kibana-plugin-public.imagevalidation.maxsize.md)
+
+## ImageValidation.maxSize property
+
+Signature:
+
+```typescript
+maxSize: {
+ length: number;
+ description: string;
+ };
+```
diff --git a/docs/development/core/public/kibana-plugin-public.imagevalidation.md b/docs/development/core/public/kibana-plugin-public.imagevalidation.md
index 783f417d0fb4d..99c23e44d35f1 100644
--- a/docs/development/core/public/kibana-plugin-public.imagevalidation.md
+++ b/docs/development/core/public/kibana-plugin-public.imagevalidation.md
@@ -1,19 +1,19 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ImageValidation](./kibana-plugin-public.imagevalidation.md)
-
-## ImageValidation interface
-
-
-Signature:
-
-```typescript
-export interface ImageValidation
-```
-
-## Properties
-
-| Property | Type | Description |
-| --- | --- | --- |
-| [maxSize](./kibana-plugin-public.imagevalidation.maxsize.md) | {
length: number;
description: string;
}
| |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [ImageValidation](./kibana-plugin-public.imagevalidation.md)
+
+## ImageValidation interface
+
+
+Signature:
+
+```typescript
+export interface ImageValidation
+```
+
+## Properties
+
+| Property | Type | Description |
+| --- | --- | --- |
+| [maxSize](./kibana-plugin-public.imagevalidation.maxsize.md) | {
length: number;
description: string;
}
| |
+
diff --git a/docs/development/core/public/kibana-plugin-public.itoasts.md b/docs/development/core/public/kibana-plugin-public.itoasts.md
index 2a6d454e2194a..999103e23ad5e 100644
--- a/docs/development/core/public/kibana-plugin-public.itoasts.md
+++ b/docs/development/core/public/kibana-plugin-public.itoasts.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IToasts](./kibana-plugin-public.itoasts.md)
-
-## IToasts type
-
-Methods for adding and removing global toast messages. See [ToastsApi](./kibana-plugin-public.toastsapi.md).
-
-Signature:
-
-```typescript
-export declare type IToasts = Pick;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IToasts](./kibana-plugin-public.itoasts.md)
+
+## IToasts type
+
+Methods for adding and removing global toast messages. See [ToastsApi](./kibana-plugin-public.toastsapi.md).
+
+Signature:
+
+```typescript
+export declare type IToasts = Pick;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.iuisettingsclient.get.md b/docs/development/core/public/kibana-plugin-public.iuisettingsclient.get.md
index 8d14a10951a92..367129e55135c 100644
--- a/docs/development/core/public/kibana-plugin-public.iuisettingsclient.get.md
+++ b/docs/development/core/public/kibana-plugin-public.iuisettingsclient.get.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IUiSettingsClient](./kibana-plugin-public.iuisettingsclient.md) > [get](./kibana-plugin-public.iuisettingsclient.get.md)
-
-## IUiSettingsClient.get property
-
-Gets the value for a specific uiSetting. If this setting has no user-defined value then the `defaultOverride` parameter is returned (and parsed if setting is of type "json" or "number). If the parameter is not defined and the key is not registered by any plugin then an error is thrown, otherwise reads the default value defined by a plugin.
-
-Signature:
-
-```typescript
-get: (key: string, defaultOverride?: T) => T;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IUiSettingsClient](./kibana-plugin-public.iuisettingsclient.md) > [get](./kibana-plugin-public.iuisettingsclient.get.md)
+
+## IUiSettingsClient.get property
+
+Gets the value for a specific uiSetting. If this setting has no user-defined value then the `defaultOverride` parameter is returned (and parsed if setting is of type "json" or "number). If the parameter is not defined and the key is not registered by any plugin then an error is thrown, otherwise reads the default value defined by a plugin.
+
+Signature:
+
+```typescript
+get: (key: string, defaultOverride?: T) => T;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.iuisettingsclient.get_.md b/docs/development/core/public/kibana-plugin-public.iuisettingsclient.get_.md
index b7680b769f303..e68ee4698a642 100644
--- a/docs/development/core/public/kibana-plugin-public.iuisettingsclient.get_.md
+++ b/docs/development/core/public/kibana-plugin-public.iuisettingsclient.get_.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IUiSettingsClient](./kibana-plugin-public.iuisettingsclient.md) > [get$](./kibana-plugin-public.iuisettingsclient.get_.md)
-
-## IUiSettingsClient.get$ property
-
-Gets an observable of the current value for a config key, and all updates to that config key in the future. Providing a `defaultOverride` argument behaves the same as it does in \#get()
-
-Signature:
-
-```typescript
-get$: (key: string, defaultOverride?: T) => Observable;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IUiSettingsClient](./kibana-plugin-public.iuisettingsclient.md) > [get$](./kibana-plugin-public.iuisettingsclient.get_.md)
+
+## IUiSettingsClient.get$ property
+
+Gets an observable of the current value for a config key, and all updates to that config key in the future. Providing a `defaultOverride` argument behaves the same as it does in \#get()
+
+Signature:
+
+```typescript
+get$: (key: string, defaultOverride?: T) => Observable;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.iuisettingsclient.getall.md b/docs/development/core/public/kibana-plugin-public.iuisettingsclient.getall.md
index b767a8ff603c8..61e2edc7f1675 100644
--- a/docs/development/core/public/kibana-plugin-public.iuisettingsclient.getall.md
+++ b/docs/development/core/public/kibana-plugin-public.iuisettingsclient.getall.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IUiSettingsClient](./kibana-plugin-public.iuisettingsclient.md) > [getAll](./kibana-plugin-public.iuisettingsclient.getall.md)
-
-## IUiSettingsClient.getAll property
-
-Gets the metadata about all uiSettings, including the type, default value, and user value for each key.
-
-Signature:
-
-```typescript
-getAll: () => Readonly>;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IUiSettingsClient](./kibana-plugin-public.iuisettingsclient.md) > [getAll](./kibana-plugin-public.iuisettingsclient.getall.md)
+
+## IUiSettingsClient.getAll property
+
+Gets the metadata about all uiSettings, including the type, default value, and user value for each key.
+
+Signature:
+
+```typescript
+getAll: () => Readonly>;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.iuisettingsclient.getsaved_.md b/docs/development/core/public/kibana-plugin-public.iuisettingsclient.getsaved_.md
index a4ddb9abcba97..c5cf081423870 100644
--- a/docs/development/core/public/kibana-plugin-public.iuisettingsclient.getsaved_.md
+++ b/docs/development/core/public/kibana-plugin-public.iuisettingsclient.getsaved_.md
@@ -1,17 +1,17 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IUiSettingsClient](./kibana-plugin-public.iuisettingsclient.md) > [getSaved$](./kibana-plugin-public.iuisettingsclient.getsaved_.md)
-
-## IUiSettingsClient.getSaved$ property
-
-Returns an Observable that notifies subscribers of each update to the uiSettings, including the key, newValue, and oldValue of the setting that changed.
-
-Signature:
-
-```typescript
-getSaved$: () => Observable<{
- key: string;
- newValue: T;
- oldValue: T;
- }>;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IUiSettingsClient](./kibana-plugin-public.iuisettingsclient.md) > [getSaved$](./kibana-plugin-public.iuisettingsclient.getsaved_.md)
+
+## IUiSettingsClient.getSaved$ property
+
+Returns an Observable that notifies subscribers of each update to the uiSettings, including the key, newValue, and oldValue of the setting that changed.
+
+Signature:
+
+```typescript
+getSaved$: () => Observable<{
+ key: string;
+ newValue: T;
+ oldValue: T;
+ }>;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.iuisettingsclient.getupdate_.md b/docs/development/core/public/kibana-plugin-public.iuisettingsclient.getupdate_.md
index cec5bc096cf02..471dc3dfe0c31 100644
--- a/docs/development/core/public/kibana-plugin-public.iuisettingsclient.getupdate_.md
+++ b/docs/development/core/public/kibana-plugin-public.iuisettingsclient.getupdate_.md
@@ -1,17 +1,17 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IUiSettingsClient](./kibana-plugin-public.iuisettingsclient.md) > [getUpdate$](./kibana-plugin-public.iuisettingsclient.getupdate_.md)
-
-## IUiSettingsClient.getUpdate$ property
-
-Returns an Observable that notifies subscribers of each update to the uiSettings, including the key, newValue, and oldValue of the setting that changed.
-
-Signature:
-
-```typescript
-getUpdate$: () => Observable<{
- key: string;
- newValue: T;
- oldValue: T;
- }>;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IUiSettingsClient](./kibana-plugin-public.iuisettingsclient.md) > [getUpdate$](./kibana-plugin-public.iuisettingsclient.getupdate_.md)
+
+## IUiSettingsClient.getUpdate$ property
+
+Returns an Observable that notifies subscribers of each update to the uiSettings, including the key, newValue, and oldValue of the setting that changed.
+
+Signature:
+
+```typescript
+getUpdate$: () => Observable<{
+ key: string;
+ newValue: T;
+ oldValue: T;
+ }>;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.iuisettingsclient.getupdateerrors_.md b/docs/development/core/public/kibana-plugin-public.iuisettingsclient.getupdateerrors_.md
index 2fbcaac03e2bb..743219d935bbf 100644
--- a/docs/development/core/public/kibana-plugin-public.iuisettingsclient.getupdateerrors_.md
+++ b/docs/development/core/public/kibana-plugin-public.iuisettingsclient.getupdateerrors_.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IUiSettingsClient](./kibana-plugin-public.iuisettingsclient.md) > [getUpdateErrors$](./kibana-plugin-public.iuisettingsclient.getupdateerrors_.md)
-
-## IUiSettingsClient.getUpdateErrors$ property
-
-Returns an Observable that notifies subscribers of each error while trying to update the settings, containing the actual Error class.
-
-Signature:
-
-```typescript
-getUpdateErrors$: () => Observable;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IUiSettingsClient](./kibana-plugin-public.iuisettingsclient.md) > [getUpdateErrors$](./kibana-plugin-public.iuisettingsclient.getupdateerrors_.md)
+
+## IUiSettingsClient.getUpdateErrors$ property
+
+Returns an Observable that notifies subscribers of each error while trying to update the settings, containing the actual Error class.
+
+Signature:
+
+```typescript
+getUpdateErrors$: () => Observable;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.iuisettingsclient.iscustom.md b/docs/development/core/public/kibana-plugin-public.iuisettingsclient.iscustom.md
index 30de59c066ee3..c26b9b42dd00c 100644
--- a/docs/development/core/public/kibana-plugin-public.iuisettingsclient.iscustom.md
+++ b/docs/development/core/public/kibana-plugin-public.iuisettingsclient.iscustom.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IUiSettingsClient](./kibana-plugin-public.iuisettingsclient.md) > [isCustom](./kibana-plugin-public.iuisettingsclient.iscustom.md)
-
-## IUiSettingsClient.isCustom property
-
-Returns true if the setting wasn't registered by any plugin, but was either added directly via `set()`, or is an unknown setting found in the uiSettings saved object
-
-Signature:
-
-```typescript
-isCustom: (key: string) => boolean;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IUiSettingsClient](./kibana-plugin-public.iuisettingsclient.md) > [isCustom](./kibana-plugin-public.iuisettingsclient.iscustom.md)
+
+## IUiSettingsClient.isCustom property
+
+Returns true if the setting wasn't registered by any plugin, but was either added directly via `set()`, or is an unknown setting found in the uiSettings saved object
+
+Signature:
+
+```typescript
+isCustom: (key: string) => boolean;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.iuisettingsclient.isdeclared.md b/docs/development/core/public/kibana-plugin-public.iuisettingsclient.isdeclared.md
index 1ffcb61967e8a..e064d787e0c92 100644
--- a/docs/development/core/public/kibana-plugin-public.iuisettingsclient.isdeclared.md
+++ b/docs/development/core/public/kibana-plugin-public.iuisettingsclient.isdeclared.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IUiSettingsClient](./kibana-plugin-public.iuisettingsclient.md) > [isDeclared](./kibana-plugin-public.iuisettingsclient.isdeclared.md)
-
-## IUiSettingsClient.isDeclared property
-
-Returns true if the key is a "known" uiSetting, meaning it is either registered by any plugin or was previously added as a custom setting via the `set()` method.
-
-Signature:
-
-```typescript
-isDeclared: (key: string) => boolean;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IUiSettingsClient](./kibana-plugin-public.iuisettingsclient.md) > [isDeclared](./kibana-plugin-public.iuisettingsclient.isdeclared.md)
+
+## IUiSettingsClient.isDeclared property
+
+Returns true if the key is a "known" uiSetting, meaning it is either registered by any plugin or was previously added as a custom setting via the `set()` method.
+
+Signature:
+
+```typescript
+isDeclared: (key: string) => boolean;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.iuisettingsclient.isdefault.md b/docs/development/core/public/kibana-plugin-public.iuisettingsclient.isdefault.md
index d61367c9841d4..6fafaac0a01ff 100644
--- a/docs/development/core/public/kibana-plugin-public.iuisettingsclient.isdefault.md
+++ b/docs/development/core/public/kibana-plugin-public.iuisettingsclient.isdefault.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IUiSettingsClient](./kibana-plugin-public.iuisettingsclient.md) > [isDefault](./kibana-plugin-public.iuisettingsclient.isdefault.md)
-
-## IUiSettingsClient.isDefault property
-
-Returns true if the setting has no user-defined value or is unknown
-
-Signature:
-
-```typescript
-isDefault: (key: string) => boolean;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IUiSettingsClient](./kibana-plugin-public.iuisettingsclient.md) > [isDefault](./kibana-plugin-public.iuisettingsclient.isdefault.md)
+
+## IUiSettingsClient.isDefault property
+
+Returns true if the setting has no user-defined value or is unknown
+
+Signature:
+
+```typescript
+isDefault: (key: string) => boolean;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.iuisettingsclient.isoverridden.md b/docs/development/core/public/kibana-plugin-public.iuisettingsclient.isoverridden.md
index 5749e1db1fe43..28018eddafdde 100644
--- a/docs/development/core/public/kibana-plugin-public.iuisettingsclient.isoverridden.md
+++ b/docs/development/core/public/kibana-plugin-public.iuisettingsclient.isoverridden.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IUiSettingsClient](./kibana-plugin-public.iuisettingsclient.md) > [isOverridden](./kibana-plugin-public.iuisettingsclient.isoverridden.md)
-
-## IUiSettingsClient.isOverridden property
-
-Shows whether the uiSettings value set by the user.
-
-Signature:
-
-```typescript
-isOverridden: (key: string) => boolean;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IUiSettingsClient](./kibana-plugin-public.iuisettingsclient.md) > [isOverridden](./kibana-plugin-public.iuisettingsclient.isoverridden.md)
+
+## IUiSettingsClient.isOverridden property
+
+Shows whether the uiSettings value set by the user.
+
+Signature:
+
+```typescript
+isOverridden: (key: string) => boolean;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.iuisettingsclient.md b/docs/development/core/public/kibana-plugin-public.iuisettingsclient.md
index 4183a30806d9a..bc2fc02977f43 100644
--- a/docs/development/core/public/kibana-plugin-public.iuisettingsclient.md
+++ b/docs/development/core/public/kibana-plugin-public.iuisettingsclient.md
@@ -1,32 +1,32 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IUiSettingsClient](./kibana-plugin-public.iuisettingsclient.md)
-
-## IUiSettingsClient interface
-
-Client-side client that provides access to the advanced settings stored in elasticsearch. The settings provide control over the behavior of the Kibana application. For example, a user can specify how to display numeric or date fields. Users can adjust the settings via Management UI. [IUiSettingsClient](./kibana-plugin-public.iuisettingsclient.md)
-
-Signature:
-
-```typescript
-export interface IUiSettingsClient
-```
-
-## Properties
-
-| Property | Type | Description |
-| --- | --- | --- |
-| [get](./kibana-plugin-public.iuisettingsclient.get.md) | <T = any>(key: string, defaultOverride?: T) => T
| Gets the value for a specific uiSetting. If this setting has no user-defined value then the defaultOverride
parameter is returned (and parsed if setting is of type "json" or "number). If the parameter is not defined and the key is not registered by any plugin then an error is thrown, otherwise reads the default value defined by a plugin. |
-| [get$](./kibana-plugin-public.iuisettingsclient.get_.md) | <T = any>(key: string, defaultOverride?: T) => Observable<T>
| Gets an observable of the current value for a config key, and all updates to that config key in the future. Providing a defaultOverride
argument behaves the same as it does in \#get() |
-| [getAll](./kibana-plugin-public.iuisettingsclient.getall.md) | () => Readonly<Record<string, UiSettingsParams & UserProvidedValues>>
| Gets the metadata about all uiSettings, including the type, default value, and user value for each key. |
-| [getSaved$](./kibana-plugin-public.iuisettingsclient.getsaved_.md) | <T = any>() => Observable<{
key: string;
newValue: T;
oldValue: T;
}>
| Returns an Observable that notifies subscribers of each update to the uiSettings, including the key, newValue, and oldValue of the setting that changed. |
-| [getUpdate$](./kibana-plugin-public.iuisettingsclient.getupdate_.md) | <T = any>() => Observable<{
key: string;
newValue: T;
oldValue: T;
}>
| Returns an Observable that notifies subscribers of each update to the uiSettings, including the key, newValue, and oldValue of the setting that changed. |
-| [getUpdateErrors$](./kibana-plugin-public.iuisettingsclient.getupdateerrors_.md) | () => Observable<Error>
| Returns an Observable that notifies subscribers of each error while trying to update the settings, containing the actual Error class. |
-| [isCustom](./kibana-plugin-public.iuisettingsclient.iscustom.md) | (key: string) => boolean
| Returns true if the setting wasn't registered by any plugin, but was either added directly via set()
, or is an unknown setting found in the uiSettings saved object |
-| [isDeclared](./kibana-plugin-public.iuisettingsclient.isdeclared.md) | (key: string) => boolean
| Returns true if the key is a "known" uiSetting, meaning it is either registered by any plugin or was previously added as a custom setting via the set()
method. |
-| [isDefault](./kibana-plugin-public.iuisettingsclient.isdefault.md) | (key: string) => boolean
| Returns true if the setting has no user-defined value or is unknown |
-| [isOverridden](./kibana-plugin-public.iuisettingsclient.isoverridden.md) | (key: string) => boolean
| Shows whether the uiSettings value set by the user. |
-| [overrideLocalDefault](./kibana-plugin-public.iuisettingsclient.overridelocaldefault.md) | (key: string, newDefault: any) => void
| Overrides the default value for a setting in this specific browser tab. If the page is reloaded the default override is lost. |
-| [remove](./kibana-plugin-public.iuisettingsclient.remove.md) | (key: string) => Promise<boolean>
| Removes the user-defined value for a setting, causing it to revert to the default. This method behaves the same as calling set(key, null)
, including the synchronization, custom setting, and error behavior of that method. |
-| [set](./kibana-plugin-public.iuisettingsclient.set.md) | (key: string, value: any) => Promise<boolean>
| Sets the value for a uiSetting. If the setting is not registered by any plugin it will be stored as a custom setting. The new value will be synchronously available via the get()
method and sent to the server in the background. If the request to the server fails then a updateErrors$ will be notified and the setting will be reverted to its value before set()
was called. |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IUiSettingsClient](./kibana-plugin-public.iuisettingsclient.md)
+
+## IUiSettingsClient interface
+
+Client-side client that provides access to the advanced settings stored in elasticsearch. The settings provide control over the behavior of the Kibana application. For example, a user can specify how to display numeric or date fields. Users can adjust the settings via Management UI. [IUiSettingsClient](./kibana-plugin-public.iuisettingsclient.md)
+
+Signature:
+
+```typescript
+export interface IUiSettingsClient
+```
+
+## Properties
+
+| Property | Type | Description |
+| --- | --- | --- |
+| [get](./kibana-plugin-public.iuisettingsclient.get.md) | <T = any>(key: string, defaultOverride?: T) => T
| Gets the value for a specific uiSetting. If this setting has no user-defined value then the defaultOverride
parameter is returned (and parsed if setting is of type "json" or "number). If the parameter is not defined and the key is not registered by any plugin then an error is thrown, otherwise reads the default value defined by a plugin. |
+| [get$](./kibana-plugin-public.iuisettingsclient.get_.md) | <T = any>(key: string, defaultOverride?: T) => Observable<T>
| Gets an observable of the current value for a config key, and all updates to that config key in the future. Providing a defaultOverride
argument behaves the same as it does in \#get() |
+| [getAll](./kibana-plugin-public.iuisettingsclient.getall.md) | () => Readonly<Record<string, UiSettingsParams & UserProvidedValues>>
| Gets the metadata about all uiSettings, including the type, default value, and user value for each key. |
+| [getSaved$](./kibana-plugin-public.iuisettingsclient.getsaved_.md) | <T = any>() => Observable<{
key: string;
newValue: T;
oldValue: T;
}>
| Returns an Observable that notifies subscribers of each update to the uiSettings, including the key, newValue, and oldValue of the setting that changed. |
+| [getUpdate$](./kibana-plugin-public.iuisettingsclient.getupdate_.md) | <T = any>() => Observable<{
key: string;
newValue: T;
oldValue: T;
}>
| Returns an Observable that notifies subscribers of each update to the uiSettings, including the key, newValue, and oldValue of the setting that changed. |
+| [getUpdateErrors$](./kibana-plugin-public.iuisettingsclient.getupdateerrors_.md) | () => Observable<Error>
| Returns an Observable that notifies subscribers of each error while trying to update the settings, containing the actual Error class. |
+| [isCustom](./kibana-plugin-public.iuisettingsclient.iscustom.md) | (key: string) => boolean
| Returns true if the setting wasn't registered by any plugin, but was either added directly via set()
, or is an unknown setting found in the uiSettings saved object |
+| [isDeclared](./kibana-plugin-public.iuisettingsclient.isdeclared.md) | (key: string) => boolean
| Returns true if the key is a "known" uiSetting, meaning it is either registered by any plugin or was previously added as a custom setting via the set()
method. |
+| [isDefault](./kibana-plugin-public.iuisettingsclient.isdefault.md) | (key: string) => boolean
| Returns true if the setting has no user-defined value or is unknown |
+| [isOverridden](./kibana-plugin-public.iuisettingsclient.isoverridden.md) | (key: string) => boolean
| Shows whether the uiSettings value set by the user. |
+| [overrideLocalDefault](./kibana-plugin-public.iuisettingsclient.overridelocaldefault.md) | (key: string, newDefault: any) => void
| Overrides the default value for a setting in this specific browser tab. If the page is reloaded the default override is lost. |
+| [remove](./kibana-plugin-public.iuisettingsclient.remove.md) | (key: string) => Promise<boolean>
| Removes the user-defined value for a setting, causing it to revert to the default. This method behaves the same as calling set(key, null)
, including the synchronization, custom setting, and error behavior of that method. |
+| [set](./kibana-plugin-public.iuisettingsclient.set.md) | (key: string, value: any) => Promise<boolean>
| Sets the value for a uiSetting. If the setting is not registered by any plugin it will be stored as a custom setting. The new value will be synchronously available via the get()
method and sent to the server in the background. If the request to the server fails then a updateErrors$ will be notified and the setting will be reverted to its value before set()
was called. |
+
diff --git a/docs/development/core/public/kibana-plugin-public.iuisettingsclient.overridelocaldefault.md b/docs/development/core/public/kibana-plugin-public.iuisettingsclient.overridelocaldefault.md
index d7e7c01876654..f56b5687da5a4 100644
--- a/docs/development/core/public/kibana-plugin-public.iuisettingsclient.overridelocaldefault.md
+++ b/docs/development/core/public/kibana-plugin-public.iuisettingsclient.overridelocaldefault.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IUiSettingsClient](./kibana-plugin-public.iuisettingsclient.md) > [overrideLocalDefault](./kibana-plugin-public.iuisettingsclient.overridelocaldefault.md)
-
-## IUiSettingsClient.overrideLocalDefault property
-
-Overrides the default value for a setting in this specific browser tab. If the page is reloaded the default override is lost.
-
-Signature:
-
-```typescript
-overrideLocalDefault: (key: string, newDefault: any) => void;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IUiSettingsClient](./kibana-plugin-public.iuisettingsclient.md) > [overrideLocalDefault](./kibana-plugin-public.iuisettingsclient.overridelocaldefault.md)
+
+## IUiSettingsClient.overrideLocalDefault property
+
+Overrides the default value for a setting in this specific browser tab. If the page is reloaded the default override is lost.
+
+Signature:
+
+```typescript
+overrideLocalDefault: (key: string, newDefault: any) => void;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.iuisettingsclient.remove.md b/docs/development/core/public/kibana-plugin-public.iuisettingsclient.remove.md
index c2171e5c883f8..d086eb3dfc1a2 100644
--- a/docs/development/core/public/kibana-plugin-public.iuisettingsclient.remove.md
+++ b/docs/development/core/public/kibana-plugin-public.iuisettingsclient.remove.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IUiSettingsClient](./kibana-plugin-public.iuisettingsclient.md) > [remove](./kibana-plugin-public.iuisettingsclient.remove.md)
-
-## IUiSettingsClient.remove property
-
-Removes the user-defined value for a setting, causing it to revert to the default. This method behaves the same as calling `set(key, null)`, including the synchronization, custom setting, and error behavior of that method.
-
-Signature:
-
-```typescript
-remove: (key: string) => Promise;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IUiSettingsClient](./kibana-plugin-public.iuisettingsclient.md) > [remove](./kibana-plugin-public.iuisettingsclient.remove.md)
+
+## IUiSettingsClient.remove property
+
+Removes the user-defined value for a setting, causing it to revert to the default. This method behaves the same as calling `set(key, null)`, including the synchronization, custom setting, and error behavior of that method.
+
+Signature:
+
+```typescript
+remove: (key: string) => Promise;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.iuisettingsclient.set.md b/docs/development/core/public/kibana-plugin-public.iuisettingsclient.set.md
index d9e62eec4cf08..0c452d13beefd 100644
--- a/docs/development/core/public/kibana-plugin-public.iuisettingsclient.set.md
+++ b/docs/development/core/public/kibana-plugin-public.iuisettingsclient.set.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IUiSettingsClient](./kibana-plugin-public.iuisettingsclient.md) > [set](./kibana-plugin-public.iuisettingsclient.set.md)
-
-## IUiSettingsClient.set property
-
-Sets the value for a uiSetting. If the setting is not registered by any plugin it will be stored as a custom setting. The new value will be synchronously available via the `get()` method and sent to the server in the background. If the request to the server fails then a updateErrors$ will be notified and the setting will be reverted to its value before `set()` was called.
-
-Signature:
-
-```typescript
-set: (key: string, value: any) => Promise;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [IUiSettingsClient](./kibana-plugin-public.iuisettingsclient.md) > [set](./kibana-plugin-public.iuisettingsclient.set.md)
+
+## IUiSettingsClient.set property
+
+Sets the value for a uiSetting. If the setting is not registered by any plugin it will be stored as a custom setting. The new value will be synchronously available via the `get()` method and sent to the server in the background. If the request to the server fails then a updateErrors$ will be notified and the setting will be reverted to its value before `set()` was called.
+
+Signature:
+
+```typescript
+set: (key: string, value: any) => Promise;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.legacycoresetup.injectedmetadata.md b/docs/development/core/public/kibana-plugin-public.legacycoresetup.injectedmetadata.md
index f71277e64ff17..7f3430e6de95e 100644
--- a/docs/development/core/public/kibana-plugin-public.legacycoresetup.injectedmetadata.md
+++ b/docs/development/core/public/kibana-plugin-public.legacycoresetup.injectedmetadata.md
@@ -1,15 +1,15 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [LegacyCoreSetup](./kibana-plugin-public.legacycoresetup.md) > [injectedMetadata](./kibana-plugin-public.legacycoresetup.injectedmetadata.md)
-
-## LegacyCoreSetup.injectedMetadata property
-
-> Warning: This API is now obsolete.
->
->
-
-Signature:
-
-```typescript
-injectedMetadata: InjectedMetadataSetup;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [LegacyCoreSetup](./kibana-plugin-public.legacycoresetup.md) > [injectedMetadata](./kibana-plugin-public.legacycoresetup.injectedmetadata.md)
+
+## LegacyCoreSetup.injectedMetadata property
+
+> Warning: This API is now obsolete.
+>
+>
+
+Signature:
+
+```typescript
+injectedMetadata: InjectedMetadataSetup;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.legacycoresetup.md b/docs/development/core/public/kibana-plugin-public.legacycoresetup.md
index 803c96cd0b22c..6a06343cec70e 100644
--- a/docs/development/core/public/kibana-plugin-public.legacycoresetup.md
+++ b/docs/development/core/public/kibana-plugin-public.legacycoresetup.md
@@ -1,28 +1,28 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [LegacyCoreSetup](./kibana-plugin-public.legacycoresetup.md)
-
-## LegacyCoreSetup interface
-
-> Warning: This API is now obsolete.
->
->
-
-Setup interface exposed to the legacy platform via the `ui/new_platform` module.
-
-Signature:
-
-```typescript
-export interface LegacyCoreSetup extends CoreSetup
-```
-
-## Remarks
-
-Some methods are not supported in the legacy platform and while present to make this type compatibile with [CoreSetup](./kibana-plugin-public.coresetup.md), unsupported methods will throw exceptions when called.
-
-## Properties
-
-| Property | Type | Description |
-| --- | --- | --- |
-| [injectedMetadata](./kibana-plugin-public.legacycoresetup.injectedmetadata.md) | InjectedMetadataSetup
| |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [LegacyCoreSetup](./kibana-plugin-public.legacycoresetup.md)
+
+## LegacyCoreSetup interface
+
+> Warning: This API is now obsolete.
+>
+>
+
+Setup interface exposed to the legacy platform via the `ui/new_platform` module.
+
+Signature:
+
+```typescript
+export interface LegacyCoreSetup extends CoreSetup
+```
+
+## Remarks
+
+Some methods are not supported in the legacy platform and while present to make this type compatibile with [CoreSetup](./kibana-plugin-public.coresetup.md), unsupported methods will throw exceptions when called.
+
+## Properties
+
+| Property | Type | Description |
+| --- | --- | --- |
+| [injectedMetadata](./kibana-plugin-public.legacycoresetup.injectedmetadata.md) | InjectedMetadataSetup
| |
+
diff --git a/docs/development/core/public/kibana-plugin-public.legacycorestart.injectedmetadata.md b/docs/development/core/public/kibana-plugin-public.legacycorestart.injectedmetadata.md
index cd818c3f5adc7..273b28a111bd4 100644
--- a/docs/development/core/public/kibana-plugin-public.legacycorestart.injectedmetadata.md
+++ b/docs/development/core/public/kibana-plugin-public.legacycorestart.injectedmetadata.md
@@ -1,15 +1,15 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [LegacyCoreStart](./kibana-plugin-public.legacycorestart.md) > [injectedMetadata](./kibana-plugin-public.legacycorestart.injectedmetadata.md)
-
-## LegacyCoreStart.injectedMetadata property
-
-> Warning: This API is now obsolete.
->
->
-
-Signature:
-
-```typescript
-injectedMetadata: InjectedMetadataStart;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [LegacyCoreStart](./kibana-plugin-public.legacycorestart.md) > [injectedMetadata](./kibana-plugin-public.legacycorestart.injectedmetadata.md)
+
+## LegacyCoreStart.injectedMetadata property
+
+> Warning: This API is now obsolete.
+>
+>
+
+Signature:
+
+```typescript
+injectedMetadata: InjectedMetadataStart;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.legacycorestart.md b/docs/development/core/public/kibana-plugin-public.legacycorestart.md
index 438a3d6110776..17bf021f06444 100644
--- a/docs/development/core/public/kibana-plugin-public.legacycorestart.md
+++ b/docs/development/core/public/kibana-plugin-public.legacycorestart.md
@@ -1,28 +1,28 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [LegacyCoreStart](./kibana-plugin-public.legacycorestart.md)
-
-## LegacyCoreStart interface
-
-> Warning: This API is now obsolete.
->
->
-
-Start interface exposed to the legacy platform via the `ui/new_platform` module.
-
-Signature:
-
-```typescript
-export interface LegacyCoreStart extends CoreStart
-```
-
-## Remarks
-
-Some methods are not supported in the legacy platform and while present to make this type compatibile with [CoreStart](./kibana-plugin-public.corestart.md), unsupported methods will throw exceptions when called.
-
-## Properties
-
-| Property | Type | Description |
-| --- | --- | --- |
-| [injectedMetadata](./kibana-plugin-public.legacycorestart.injectedmetadata.md) | InjectedMetadataStart
| |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [LegacyCoreStart](./kibana-plugin-public.legacycorestart.md)
+
+## LegacyCoreStart interface
+
+> Warning: This API is now obsolete.
+>
+>
+
+Start interface exposed to the legacy platform via the `ui/new_platform` module.
+
+Signature:
+
+```typescript
+export interface LegacyCoreStart extends CoreStart
+```
+
+## Remarks
+
+Some methods are not supported in the legacy platform and while present to make this type compatibile with [CoreStart](./kibana-plugin-public.corestart.md), unsupported methods will throw exceptions when called.
+
+## Properties
+
+| Property | Type | Description |
+| --- | --- | --- |
+| [injectedMetadata](./kibana-plugin-public.legacycorestart.injectedmetadata.md) | InjectedMetadataStart
| |
+
diff --git a/docs/development/core/public/kibana-plugin-public.legacynavlink.category.md b/docs/development/core/public/kibana-plugin-public.legacynavlink.category.md
index 7026e9b519cc0..ff952b4509079 100644
--- a/docs/development/core/public/kibana-plugin-public.legacynavlink.category.md
+++ b/docs/development/core/public/kibana-plugin-public.legacynavlink.category.md
@@ -1,11 +1,11 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [LegacyNavLink](./kibana-plugin-public.legacynavlink.md) > [category](./kibana-plugin-public.legacynavlink.category.md)
-
-## LegacyNavLink.category property
-
-Signature:
-
-```typescript
-category?: AppCategory;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [LegacyNavLink](./kibana-plugin-public.legacynavlink.md) > [category](./kibana-plugin-public.legacynavlink.category.md)
+
+## LegacyNavLink.category property
+
+Signature:
+
+```typescript
+category?: AppCategory;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.legacynavlink.euiicontype.md b/docs/development/core/public/kibana-plugin-public.legacynavlink.euiicontype.md
index bf0308e88d506..5cb803d1d2f91 100644
--- a/docs/development/core/public/kibana-plugin-public.legacynavlink.euiicontype.md
+++ b/docs/development/core/public/kibana-plugin-public.legacynavlink.euiicontype.md
@@ -1,11 +1,11 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [LegacyNavLink](./kibana-plugin-public.legacynavlink.md) > [euiIconType](./kibana-plugin-public.legacynavlink.euiicontype.md)
-
-## LegacyNavLink.euiIconType property
-
-Signature:
-
-```typescript
-euiIconType?: string;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [LegacyNavLink](./kibana-plugin-public.legacynavlink.md) > [euiIconType](./kibana-plugin-public.legacynavlink.euiicontype.md)
+
+## LegacyNavLink.euiIconType property
+
+Signature:
+
+```typescript
+euiIconType?: string;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.legacynavlink.icon.md b/docs/development/core/public/kibana-plugin-public.legacynavlink.icon.md
index 5dfe64c3a9610..1bc64b6086628 100644
--- a/docs/development/core/public/kibana-plugin-public.legacynavlink.icon.md
+++ b/docs/development/core/public/kibana-plugin-public.legacynavlink.icon.md
@@ -1,11 +1,11 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [LegacyNavLink](./kibana-plugin-public.legacynavlink.md) > [icon](./kibana-plugin-public.legacynavlink.icon.md)
-
-## LegacyNavLink.icon property
-
-Signature:
-
-```typescript
-icon?: string;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [LegacyNavLink](./kibana-plugin-public.legacynavlink.md) > [icon](./kibana-plugin-public.legacynavlink.icon.md)
+
+## LegacyNavLink.icon property
+
+Signature:
+
+```typescript
+icon?: string;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.legacynavlink.id.md b/docs/development/core/public/kibana-plugin-public.legacynavlink.id.md
index c8d8b025e48ee..c6c2f2dfd8d98 100644
--- a/docs/development/core/public/kibana-plugin-public.legacynavlink.id.md
+++ b/docs/development/core/public/kibana-plugin-public.legacynavlink.id.md
@@ -1,11 +1,11 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [LegacyNavLink](./kibana-plugin-public.legacynavlink.md) > [id](./kibana-plugin-public.legacynavlink.id.md)
-
-## LegacyNavLink.id property
-
-Signature:
-
-```typescript
-id: string;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [LegacyNavLink](./kibana-plugin-public.legacynavlink.md) > [id](./kibana-plugin-public.legacynavlink.id.md)
+
+## LegacyNavLink.id property
+
+Signature:
+
+```typescript
+id: string;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.legacynavlink.md b/docs/development/core/public/kibana-plugin-public.legacynavlink.md
index e112110dd10f8..1476052ed7a43 100644
--- a/docs/development/core/public/kibana-plugin-public.legacynavlink.md
+++ b/docs/development/core/public/kibana-plugin-public.legacynavlink.md
@@ -1,25 +1,25 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [LegacyNavLink](./kibana-plugin-public.legacynavlink.md)
-
-## LegacyNavLink interface
-
-
-Signature:
-
-```typescript
-export interface LegacyNavLink
-```
-
-## Properties
-
-| Property | Type | Description |
-| --- | --- | --- |
-| [category](./kibana-plugin-public.legacynavlink.category.md) | AppCategory
| |
-| [euiIconType](./kibana-plugin-public.legacynavlink.euiicontype.md) | string
| |
-| [icon](./kibana-plugin-public.legacynavlink.icon.md) | string
| |
-| [id](./kibana-plugin-public.legacynavlink.id.md) | string
| |
-| [order](./kibana-plugin-public.legacynavlink.order.md) | number
| |
-| [title](./kibana-plugin-public.legacynavlink.title.md) | string
| |
-| [url](./kibana-plugin-public.legacynavlink.url.md) | string
| |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [LegacyNavLink](./kibana-plugin-public.legacynavlink.md)
+
+## LegacyNavLink interface
+
+
+Signature:
+
+```typescript
+export interface LegacyNavLink
+```
+
+## Properties
+
+| Property | Type | Description |
+| --- | --- | --- |
+| [category](./kibana-plugin-public.legacynavlink.category.md) | AppCategory
| |
+| [euiIconType](./kibana-plugin-public.legacynavlink.euiicontype.md) | string
| |
+| [icon](./kibana-plugin-public.legacynavlink.icon.md) | string
| |
+| [id](./kibana-plugin-public.legacynavlink.id.md) | string
| |
+| [order](./kibana-plugin-public.legacynavlink.order.md) | number
| |
+| [title](./kibana-plugin-public.legacynavlink.title.md) | string
| |
+| [url](./kibana-plugin-public.legacynavlink.url.md) | string
| |
+
diff --git a/docs/development/core/public/kibana-plugin-public.legacynavlink.order.md b/docs/development/core/public/kibana-plugin-public.legacynavlink.order.md
index bfb2a2caad623..255fcfd0fb8cf 100644
--- a/docs/development/core/public/kibana-plugin-public.legacynavlink.order.md
+++ b/docs/development/core/public/kibana-plugin-public.legacynavlink.order.md
@@ -1,11 +1,11 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [LegacyNavLink](./kibana-plugin-public.legacynavlink.md) > [order](./kibana-plugin-public.legacynavlink.order.md)
-
-## LegacyNavLink.order property
-
-Signature:
-
-```typescript
-order: number;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [LegacyNavLink](./kibana-plugin-public.legacynavlink.md) > [order](./kibana-plugin-public.legacynavlink.order.md)
+
+## LegacyNavLink.order property
+
+Signature:
+
+```typescript
+order: number;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.legacynavlink.title.md b/docs/development/core/public/kibana-plugin-public.legacynavlink.title.md
index 2cb7a4ebdbc76..90b1a98a90fef 100644
--- a/docs/development/core/public/kibana-plugin-public.legacynavlink.title.md
+++ b/docs/development/core/public/kibana-plugin-public.legacynavlink.title.md
@@ -1,11 +1,11 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [LegacyNavLink](./kibana-plugin-public.legacynavlink.md) > [title](./kibana-plugin-public.legacynavlink.title.md)
-
-## LegacyNavLink.title property
-
-Signature:
-
-```typescript
-title: string;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [LegacyNavLink](./kibana-plugin-public.legacynavlink.md) > [title](./kibana-plugin-public.legacynavlink.title.md)
+
+## LegacyNavLink.title property
+
+Signature:
+
+```typescript
+title: string;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.legacynavlink.url.md b/docs/development/core/public/kibana-plugin-public.legacynavlink.url.md
index fc2d55109dc98..e26095bfbfb6e 100644
--- a/docs/development/core/public/kibana-plugin-public.legacynavlink.url.md
+++ b/docs/development/core/public/kibana-plugin-public.legacynavlink.url.md
@@ -1,11 +1,11 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [LegacyNavLink](./kibana-plugin-public.legacynavlink.md) > [url](./kibana-plugin-public.legacynavlink.url.md)
-
-## LegacyNavLink.url property
-
-Signature:
-
-```typescript
-url: string;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [LegacyNavLink](./kibana-plugin-public.legacynavlink.md) > [url](./kibana-plugin-public.legacynavlink.url.md)
+
+## LegacyNavLink.url property
+
+Signature:
+
+```typescript
+url: string;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.md b/docs/development/core/public/kibana-plugin-public.md
index de6726b34dfab..95a4327728139 100644
--- a/docs/development/core/public/kibana-plugin-public.md
+++ b/docs/development/core/public/kibana-plugin-public.md
@@ -1,161 +1,161 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md)
-
-## kibana-plugin-public package
-
-The Kibana Core APIs for client-side plugins.
-
-A plugin's `public/index` file must contain a named import, `plugin`, that implements [PluginInitializer](./kibana-plugin-public.plugininitializer.md) which returns an object that implements [Plugin](./kibana-plugin-public.plugin.md).
-
-The plugin integrates with the core system via lifecycle events: `setup`, `start`, and `stop`. In each lifecycle method, the plugin will receive the corresponding core services available (either [CoreSetup](./kibana-plugin-public.coresetup.md) or [CoreStart](./kibana-plugin-public.corestart.md)) and any interfaces returned by dependency plugins' lifecycle method. Anything returned by the plugin's lifecycle method will be exposed to downstream dependencies when their corresponding lifecycle methods are invoked.
-
-## Classes
-
-| Class | Description |
-| --- | --- |
-| [SavedObjectsClient](./kibana-plugin-public.savedobjectsclient.md) | Saved Objects is Kibana's data persisentence mechanism allowing plugins to use Elasticsearch for storing plugin state. The client-side SavedObjectsClient is a thin convenience library around the SavedObjects HTTP API for interacting with Saved Objects. |
-| [SimpleSavedObject](./kibana-plugin-public.simplesavedobject.md) | This class is a very simple wrapper for SavedObjects loaded from the server with the [SavedObjectsClient](./kibana-plugin-public.savedobjectsclient.md).It provides basic functionality for creating/saving/deleting saved objects, but doesn't include any type-specific implementations. |
-| [ToastsApi](./kibana-plugin-public.toastsapi.md) | Methods for adding and removing global toast messages. |
-
-## Enumerations
-
-| Enumeration | Description |
-| --- | --- |
-| [AppLeaveActionType](./kibana-plugin-public.appleaveactiontype.md) | Possible type of actions on application leave. |
-| [AppNavLinkStatus](./kibana-plugin-public.appnavlinkstatus.md) | Status of the application's navLink. |
-| [AppStatus](./kibana-plugin-public.appstatus.md) | Accessibility status of an application. |
-
-## Interfaces
-
-| Interface | Description |
-| --- | --- |
-| [App](./kibana-plugin-public.app.md) | Extension of [common app properties](./kibana-plugin-public.appbase.md) with the mount function. |
-| [AppBase](./kibana-plugin-public.appbase.md) | |
-| [AppCategory](./kibana-plugin-public.appcategory.md) | A category definition for nav links to know where to sort them in the left hand nav |
-| [AppLeaveConfirmAction](./kibana-plugin-public.appleaveconfirmaction.md) | Action to return from a [AppLeaveHandler](./kibana-plugin-public.appleavehandler.md) to show a confirmation message when trying to leave an application.See |
-| [AppLeaveDefaultAction](./kibana-plugin-public.appleavedefaultaction.md) | Action to return from a [AppLeaveHandler](./kibana-plugin-public.appleavehandler.md) to execute the default behaviour when leaving the application.See |
-| [ApplicationSetup](./kibana-plugin-public.applicationsetup.md) | |
-| [ApplicationStart](./kibana-plugin-public.applicationstart.md) | |
-| [AppMountContext](./kibana-plugin-public.appmountcontext.md) | The context object received when applications are mounted to the DOM. Deprecated, use [CoreSetup.getStartServices()](./kibana-plugin-public.coresetup.getstartservices.md). |
-| [AppMountParameters](./kibana-plugin-public.appmountparameters.md) | |
-| [Capabilities](./kibana-plugin-public.capabilities.md) | The read-only set of capabilities available for the current UI session. Capabilities are simple key-value pairs of (string, boolean), where the string denotes the capability ID, and the boolean is a flag indicating if the capability is enabled or disabled. |
-| [ChromeBadge](./kibana-plugin-public.chromebadge.md) | |
-| [ChromeBrand](./kibana-plugin-public.chromebrand.md) | |
-| [ChromeDocTitle](./kibana-plugin-public.chromedoctitle.md) | APIs for accessing and updating the document title. |
-| [ChromeHelpExtension](./kibana-plugin-public.chromehelpextension.md) | |
-| [ChromeNavControl](./kibana-plugin-public.chromenavcontrol.md) | |
-| [ChromeNavControls](./kibana-plugin-public.chromenavcontrols.md) | [APIs](./kibana-plugin-public.chromenavcontrols.md) for registering new controls to be displayed in the navigation bar. |
-| [ChromeNavLink](./kibana-plugin-public.chromenavlink.md) | |
-| [ChromeNavLinks](./kibana-plugin-public.chromenavlinks.md) | [APIs](./kibana-plugin-public.chromenavlinks.md) for manipulating nav links. |
-| [ChromeRecentlyAccessed](./kibana-plugin-public.chromerecentlyaccessed.md) | [APIs](./kibana-plugin-public.chromerecentlyaccessed.md) for recently accessed history. |
-| [ChromeRecentlyAccessedHistoryItem](./kibana-plugin-public.chromerecentlyaccessedhistoryitem.md) | |
-| [ChromeStart](./kibana-plugin-public.chromestart.md) | ChromeStart allows plugins to customize the global chrome header UI and enrich the UX with additional information about the current location of the browser. |
-| [ContextSetup](./kibana-plugin-public.contextsetup.md) | An object that handles registration of context providers and configuring handlers with context. |
-| [CoreSetup](./kibana-plugin-public.coresetup.md) | Core services exposed to the Plugin
setup lifecycle |
-| [CoreStart](./kibana-plugin-public.corestart.md) | Core services exposed to the Plugin
start lifecycle |
-| [DocLinksStart](./kibana-plugin-public.doclinksstart.md) | |
-| [EnvironmentMode](./kibana-plugin-public.environmentmode.md) | |
-| [ErrorToastOptions](./kibana-plugin-public.errortoastoptions.md) | Options available for [IToasts](./kibana-plugin-public.itoasts.md) APIs. |
-| [FatalErrorInfo](./kibana-plugin-public.fatalerrorinfo.md) | Represents the message
and stack
of a fatal Error |
-| [FatalErrorsSetup](./kibana-plugin-public.fatalerrorssetup.md) | FatalErrors stop the Kibana Public Core and displays a fatal error screen with details about the Kibana build and the error. |
-| [HttpFetchOptions](./kibana-plugin-public.httpfetchoptions.md) | All options that may be used with a [HttpHandler](./kibana-plugin-public.httphandler.md). |
-| [HttpFetchOptionsWithPath](./kibana-plugin-public.httpfetchoptionswithpath.md) | Similar to [HttpFetchOptions](./kibana-plugin-public.httpfetchoptions.md) but with the URL path included. |
-| [HttpFetchQuery](./kibana-plugin-public.httpfetchquery.md) | |
-| [HttpHandler](./kibana-plugin-public.httphandler.md) | A function for making an HTTP requests to Kibana's backend. See [HttpFetchOptions](./kibana-plugin-public.httpfetchoptions.md) for options and [HttpResponse](./kibana-plugin-public.httpresponse.md) for the response. |
-| [HttpHeadersInit](./kibana-plugin-public.httpheadersinit.md) | Headers to append to the request. Any headers that begin with kbn-
are considered private to Core and will cause [HttpHandler](./kibana-plugin-public.httphandler.md) to throw an error. |
-| [HttpInterceptor](./kibana-plugin-public.httpinterceptor.md) | An object that may define global interceptor functions for different parts of the request and response lifecycle. See [IHttpInterceptController](./kibana-plugin-public.ihttpinterceptcontroller.md). |
-| [HttpInterceptorRequestError](./kibana-plugin-public.httpinterceptorrequesterror.md) | |
-| [HttpInterceptorResponseError](./kibana-plugin-public.httpinterceptorresponseerror.md) | |
-| [HttpRequestInit](./kibana-plugin-public.httprequestinit.md) | Fetch API options available to [HttpHandler](./kibana-plugin-public.httphandler.md)s. |
-| [HttpResponse](./kibana-plugin-public.httpresponse.md) | |
-| [HttpSetup](./kibana-plugin-public.httpsetup.md) | |
-| [I18nStart](./kibana-plugin-public.i18nstart.md) | I18nStart.Context is required by any localizable React component from @kbn/i18n and @elastic/eui packages and is supposed to be used as the topmost component for any i18n-compatible React tree. |
-| [IAnonymousPaths](./kibana-plugin-public.ianonymouspaths.md) | APIs for denoting paths as not requiring authentication |
-| [IBasePath](./kibana-plugin-public.ibasepath.md) | APIs for manipulating the basePath on URL segments. |
-| [IContextContainer](./kibana-plugin-public.icontextcontainer.md) | An object that handles registration of context providers and configuring handlers with context. |
-| [IHttpFetchError](./kibana-plugin-public.ihttpfetcherror.md) | |
-| [IHttpInterceptController](./kibana-plugin-public.ihttpinterceptcontroller.md) | Used to halt a request Promise chain in a [HttpInterceptor](./kibana-plugin-public.httpinterceptor.md). |
-| [IHttpResponseInterceptorOverrides](./kibana-plugin-public.ihttpresponseinterceptoroverrides.md) | Properties that can be returned by HttpInterceptor.request to override the response. |
-| [ImageValidation](./kibana-plugin-public.imagevalidation.md) | |
-| [IUiSettingsClient](./kibana-plugin-public.iuisettingsclient.md) | Client-side client that provides access to the advanced settings stored in elasticsearch. The settings provide control over the behavior of the Kibana application. For example, a user can specify how to display numeric or date fields. Users can adjust the settings via Management UI. [IUiSettingsClient](./kibana-plugin-public.iuisettingsclient.md) |
-| [LegacyCoreSetup](./kibana-plugin-public.legacycoresetup.md) | Setup interface exposed to the legacy platform via the ui/new_platform
module. |
-| [LegacyCoreStart](./kibana-plugin-public.legacycorestart.md) | Start interface exposed to the legacy platform via the ui/new_platform
module. |
-| [LegacyNavLink](./kibana-plugin-public.legacynavlink.md) | |
-| [NotificationsSetup](./kibana-plugin-public.notificationssetup.md) | |
-| [NotificationsStart](./kibana-plugin-public.notificationsstart.md) | |
-| [OverlayBannersStart](./kibana-plugin-public.overlaybannersstart.md) | |
-| [OverlayRef](./kibana-plugin-public.overlayref.md) | Returned by [OverlayStart](./kibana-plugin-public.overlaystart.md) methods for closing a mounted overlay. |
-| [OverlayStart](./kibana-plugin-public.overlaystart.md) | |
-| [PackageInfo](./kibana-plugin-public.packageinfo.md) | |
-| [Plugin](./kibana-plugin-public.plugin.md) | The interface that should be returned by a PluginInitializer
. |
-| [PluginInitializerContext](./kibana-plugin-public.plugininitializercontext.md) | The available core services passed to a PluginInitializer
|
-| [SavedObject](./kibana-plugin-public.savedobject.md) | |
-| [SavedObjectAttributes](./kibana-plugin-public.savedobjectattributes.md) | The data for a Saved Object is stored as an object in the attributes
property. |
-| [SavedObjectReference](./kibana-plugin-public.savedobjectreference.md) | A reference to another saved object. |
-| [SavedObjectsBaseOptions](./kibana-plugin-public.savedobjectsbaseoptions.md) | |
-| [SavedObjectsBatchResponse](./kibana-plugin-public.savedobjectsbatchresponse.md) | |
-| [SavedObjectsBulkCreateObject](./kibana-plugin-public.savedobjectsbulkcreateobject.md) | |
-| [SavedObjectsBulkCreateOptions](./kibana-plugin-public.savedobjectsbulkcreateoptions.md) | |
-| [SavedObjectsBulkUpdateObject](./kibana-plugin-public.savedobjectsbulkupdateobject.md) | |
-| [SavedObjectsBulkUpdateOptions](./kibana-plugin-public.savedobjectsbulkupdateoptions.md) | |
-| [SavedObjectsCreateOptions](./kibana-plugin-public.savedobjectscreateoptions.md) | |
-| [SavedObjectsFindOptions](./kibana-plugin-public.savedobjectsfindoptions.md) | |
-| [SavedObjectsFindResponsePublic](./kibana-plugin-public.savedobjectsfindresponsepublic.md) | Return type of the Saved Objects find()
method.\*Note\*: this type is different between the Public and Server Saved Objects clients. |
-| [SavedObjectsImportConflictError](./kibana-plugin-public.savedobjectsimportconflicterror.md) | Represents a failure to import due to a conflict. |
-| [SavedObjectsImportError](./kibana-plugin-public.savedobjectsimporterror.md) | Represents a failure to import. |
-| [SavedObjectsImportMissingReferencesError](./kibana-plugin-public.savedobjectsimportmissingreferenceserror.md) | Represents a failure to import due to missing references. |
-| [SavedObjectsImportResponse](./kibana-plugin-public.savedobjectsimportresponse.md) | The response describing the result of an import. |
-| [SavedObjectsImportRetry](./kibana-plugin-public.savedobjectsimportretry.md) | Describes a retry operation for importing a saved object. |
-| [SavedObjectsImportUnknownError](./kibana-plugin-public.savedobjectsimportunknownerror.md) | Represents a failure to import due to an unknown reason. |
-| [SavedObjectsImportUnsupportedTypeError](./kibana-plugin-public.savedobjectsimportunsupportedtypeerror.md) | Represents a failure to import due to having an unsupported saved object type. |
-| [SavedObjectsMigrationVersion](./kibana-plugin-public.savedobjectsmigrationversion.md) | Information about the migrations that have been applied to this SavedObject. When Kibana starts up, KibanaMigrator detects outdated documents and migrates them based on this value. For each migration that has been applied, the plugin's name is used as a key and the latest migration version as the value. |
-| [SavedObjectsStart](./kibana-plugin-public.savedobjectsstart.md) | |
-| [SavedObjectsUpdateOptions](./kibana-plugin-public.savedobjectsupdateoptions.md) | |
-| [StringValidationRegex](./kibana-plugin-public.stringvalidationregex.md) | StringValidation with regex object |
-| [StringValidationRegexString](./kibana-plugin-public.stringvalidationregexstring.md) | StringValidation as regex string |
-| [UiSettingsParams](./kibana-plugin-public.uisettingsparams.md) | UiSettings parameters defined by the plugins. |
-| [UiSettingsState](./kibana-plugin-public.uisettingsstate.md) | |
-| [UserProvidedValues](./kibana-plugin-public.userprovidedvalues.md) | Describes the values explicitly set by user. |
-
-## Type Aliases
-
-| Type Alias | Description |
-| --- | --- |
-| [AppLeaveAction](./kibana-plugin-public.appleaveaction.md) | Possible actions to return from a [AppLeaveHandler](./kibana-plugin-public.appleavehandler.md)See [AppLeaveConfirmAction](./kibana-plugin-public.appleaveconfirmaction.md) and [AppLeaveDefaultAction](./kibana-plugin-public.appleavedefaultaction.md) |
-| [AppLeaveHandler](./kibana-plugin-public.appleavehandler.md) | A handler that will be executed before leaving the application, either when going to another application or when closing the browser tab or manually changing the url. Should return confirm
to to prompt a message to the user before leaving the page, or default
to keep the default behavior (doing nothing).See [AppMountParameters](./kibana-plugin-public.appmountparameters.md) for detailed usage examples. |
-| [AppMount](./kibana-plugin-public.appmount.md) | A mount function called when the user navigates to this app's route. |
-| [AppMountDeprecated](./kibana-plugin-public.appmountdeprecated.md) | A mount function called when the user navigates to this app's route. |
-| [AppUnmount](./kibana-plugin-public.appunmount.md) | A function called when an application should be unmounted from the page. This function should be synchronous. |
-| [AppUpdatableFields](./kibana-plugin-public.appupdatablefields.md) | Defines the list of fields that can be updated via an [AppUpdater](./kibana-plugin-public.appupdater.md). |
-| [AppUpdater](./kibana-plugin-public.appupdater.md) | Updater for applications. see [ApplicationSetup](./kibana-plugin-public.applicationsetup.md) |
-| [ChromeBreadcrumb](./kibana-plugin-public.chromebreadcrumb.md) | |
-| [ChromeHelpExtensionMenuCustomLink](./kibana-plugin-public.chromehelpextensionmenucustomlink.md) | |
-| [ChromeHelpExtensionMenuDiscussLink](./kibana-plugin-public.chromehelpextensionmenudiscusslink.md) | |
-| [ChromeHelpExtensionMenuDocumentationLink](./kibana-plugin-public.chromehelpextensionmenudocumentationlink.md) | |
-| [ChromeHelpExtensionMenuGitHubLink](./kibana-plugin-public.chromehelpextensionmenugithublink.md) | |
-| [ChromeHelpExtensionMenuLink](./kibana-plugin-public.chromehelpextensionmenulink.md) | |
-| [ChromeNavLinkUpdateableFields](./kibana-plugin-public.chromenavlinkupdateablefields.md) | |
-| [FatalErrorsStart](./kibana-plugin-public.fatalerrorsstart.md) | FatalErrors stop the Kibana Public Core and displays a fatal error screen with details about the Kibana build and the error. |
-| [HandlerContextType](./kibana-plugin-public.handlercontexttype.md) | Extracts the type of the first argument of a [HandlerFunction](./kibana-plugin-public.handlerfunction.md) to represent the type of the context. |
-| [HandlerFunction](./kibana-plugin-public.handlerfunction.md) | A function that accepts a context object and an optional number of additional arguments. Used for the generic types in [IContextContainer](./kibana-plugin-public.icontextcontainer.md) |
-| [HandlerParameters](./kibana-plugin-public.handlerparameters.md) | Extracts the types of the additional arguments of a [HandlerFunction](./kibana-plugin-public.handlerfunction.md), excluding the [HandlerContextType](./kibana-plugin-public.handlercontexttype.md). |
-| [HttpStart](./kibana-plugin-public.httpstart.md) | See [HttpSetup](./kibana-plugin-public.httpsetup.md) |
-| [IContextProvider](./kibana-plugin-public.icontextprovider.md) | A function that returns a context value for a specific key of given context type. |
-| [IToasts](./kibana-plugin-public.itoasts.md) | Methods for adding and removing global toast messages. See [ToastsApi](./kibana-plugin-public.toastsapi.md). |
-| [MountPoint](./kibana-plugin-public.mountpoint.md) | A function that should mount DOM content inside the provided container element and return a handler to unmount it. |
-| [PluginInitializer](./kibana-plugin-public.plugininitializer.md) | The plugin
export at the root of a plugin's public
directory should conform to this interface. |
-| [PluginOpaqueId](./kibana-plugin-public.pluginopaqueid.md) | |
-| [RecursiveReadonly](./kibana-plugin-public.recursivereadonly.md) | |
-| [SavedObjectAttribute](./kibana-plugin-public.savedobjectattribute.md) | Type definition for a Saved Object attribute value |
-| [SavedObjectAttributeSingle](./kibana-plugin-public.savedobjectattributesingle.md) | Don't use this type, it's simply a helper type for [SavedObjectAttribute](./kibana-plugin-public.savedobjectattribute.md) |
-| [SavedObjectsClientContract](./kibana-plugin-public.savedobjectsclientcontract.md) | SavedObjectsClientContract as implemented by the [SavedObjectsClient](./kibana-plugin-public.savedobjectsclient.md) |
-| [StringValidation](./kibana-plugin-public.stringvalidation.md) | Allows regex objects or a regex string |
-| [Toast](./kibana-plugin-public.toast.md) | |
-| [ToastInput](./kibana-plugin-public.toastinput.md) | Inputs for [IToasts](./kibana-plugin-public.itoasts.md) APIs. |
-| [ToastInputFields](./kibana-plugin-public.toastinputfields.md) | Allowed fields for [ToastInput](./kibana-plugin-public.toastinput.md). |
-| [ToastsSetup](./kibana-plugin-public.toastssetup.md) | [IToasts](./kibana-plugin-public.itoasts.md) |
-| [ToastsStart](./kibana-plugin-public.toastsstart.md) | [IToasts](./kibana-plugin-public.itoasts.md) |
-| [UiSettingsType](./kibana-plugin-public.uisettingstype.md) | UI element type to represent the settings. |
-| [UnmountCallback](./kibana-plugin-public.unmountcallback.md) | A function that will unmount the element previously mounted by the associated [MountPoint](./kibana-plugin-public.mountpoint.md) |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md)
+
+## kibana-plugin-public package
+
+The Kibana Core APIs for client-side plugins.
+
+A plugin's `public/index` file must contain a named import, `plugin`, that implements [PluginInitializer](./kibana-plugin-public.plugininitializer.md) which returns an object that implements [Plugin](./kibana-plugin-public.plugin.md).
+
+The plugin integrates with the core system via lifecycle events: `setup`, `start`, and `stop`. In each lifecycle method, the plugin will receive the corresponding core services available (either [CoreSetup](./kibana-plugin-public.coresetup.md) or [CoreStart](./kibana-plugin-public.corestart.md)) and any interfaces returned by dependency plugins' lifecycle method. Anything returned by the plugin's lifecycle method will be exposed to downstream dependencies when their corresponding lifecycle methods are invoked.
+
+## Classes
+
+| Class | Description |
+| --- | --- |
+| [SavedObjectsClient](./kibana-plugin-public.savedobjectsclient.md) | Saved Objects is Kibana's data persisentence mechanism allowing plugins to use Elasticsearch for storing plugin state. The client-side SavedObjectsClient is a thin convenience library around the SavedObjects HTTP API for interacting with Saved Objects. |
+| [SimpleSavedObject](./kibana-plugin-public.simplesavedobject.md) | This class is a very simple wrapper for SavedObjects loaded from the server with the [SavedObjectsClient](./kibana-plugin-public.savedobjectsclient.md).It provides basic functionality for creating/saving/deleting saved objects, but doesn't include any type-specific implementations. |
+| [ToastsApi](./kibana-plugin-public.toastsapi.md) | Methods for adding and removing global toast messages. |
+
+## Enumerations
+
+| Enumeration | Description |
+| --- | --- |
+| [AppLeaveActionType](./kibana-plugin-public.appleaveactiontype.md) | Possible type of actions on application leave. |
+| [AppNavLinkStatus](./kibana-plugin-public.appnavlinkstatus.md) | Status of the application's navLink. |
+| [AppStatus](./kibana-plugin-public.appstatus.md) | Accessibility status of an application. |
+
+## Interfaces
+
+| Interface | Description |
+| --- | --- |
+| [App](./kibana-plugin-public.app.md) | Extension of [common app properties](./kibana-plugin-public.appbase.md) with the mount function. |
+| [AppBase](./kibana-plugin-public.appbase.md) | |
+| [AppCategory](./kibana-plugin-public.appcategory.md) | A category definition for nav links to know where to sort them in the left hand nav |
+| [AppLeaveConfirmAction](./kibana-plugin-public.appleaveconfirmaction.md) | Action to return from a [AppLeaveHandler](./kibana-plugin-public.appleavehandler.md) to show a confirmation message when trying to leave an application.See |
+| [AppLeaveDefaultAction](./kibana-plugin-public.appleavedefaultaction.md) | Action to return from a [AppLeaveHandler](./kibana-plugin-public.appleavehandler.md) to execute the default behaviour when leaving the application.See |
+| [ApplicationSetup](./kibana-plugin-public.applicationsetup.md) | |
+| [ApplicationStart](./kibana-plugin-public.applicationstart.md) | |
+| [AppMountContext](./kibana-plugin-public.appmountcontext.md) | The context object received when applications are mounted to the DOM. Deprecated, use [CoreSetup.getStartServices()](./kibana-plugin-public.coresetup.getstartservices.md). |
+| [AppMountParameters](./kibana-plugin-public.appmountparameters.md) | |
+| [Capabilities](./kibana-plugin-public.capabilities.md) | The read-only set of capabilities available for the current UI session. Capabilities are simple key-value pairs of (string, boolean), where the string denotes the capability ID, and the boolean is a flag indicating if the capability is enabled or disabled. |
+| [ChromeBadge](./kibana-plugin-public.chromebadge.md) | |
+| [ChromeBrand](./kibana-plugin-public.chromebrand.md) | |
+| [ChromeDocTitle](./kibana-plugin-public.chromedoctitle.md) | APIs for accessing and updating the document title. |
+| [ChromeHelpExtension](./kibana-plugin-public.chromehelpextension.md) | |
+| [ChromeNavControl](./kibana-plugin-public.chromenavcontrol.md) | |
+| [ChromeNavControls](./kibana-plugin-public.chromenavcontrols.md) | [APIs](./kibana-plugin-public.chromenavcontrols.md) for registering new controls to be displayed in the navigation bar. |
+| [ChromeNavLink](./kibana-plugin-public.chromenavlink.md) | |
+| [ChromeNavLinks](./kibana-plugin-public.chromenavlinks.md) | [APIs](./kibana-plugin-public.chromenavlinks.md) for manipulating nav links. |
+| [ChromeRecentlyAccessed](./kibana-plugin-public.chromerecentlyaccessed.md) | [APIs](./kibana-plugin-public.chromerecentlyaccessed.md) for recently accessed history. |
+| [ChromeRecentlyAccessedHistoryItem](./kibana-plugin-public.chromerecentlyaccessedhistoryitem.md) | |
+| [ChromeStart](./kibana-plugin-public.chromestart.md) | ChromeStart allows plugins to customize the global chrome header UI and enrich the UX with additional information about the current location of the browser. |
+| [ContextSetup](./kibana-plugin-public.contextsetup.md) | An object that handles registration of context providers and configuring handlers with context. |
+| [CoreSetup](./kibana-plugin-public.coresetup.md) | Core services exposed to the Plugin
setup lifecycle |
+| [CoreStart](./kibana-plugin-public.corestart.md) | Core services exposed to the Plugin
start lifecycle |
+| [DocLinksStart](./kibana-plugin-public.doclinksstart.md) | |
+| [EnvironmentMode](./kibana-plugin-public.environmentmode.md) | |
+| [ErrorToastOptions](./kibana-plugin-public.errortoastoptions.md) | Options available for [IToasts](./kibana-plugin-public.itoasts.md) APIs. |
+| [FatalErrorInfo](./kibana-plugin-public.fatalerrorinfo.md) | Represents the message
and stack
of a fatal Error |
+| [FatalErrorsSetup](./kibana-plugin-public.fatalerrorssetup.md) | FatalErrors stop the Kibana Public Core and displays a fatal error screen with details about the Kibana build and the error. |
+| [HttpFetchOptions](./kibana-plugin-public.httpfetchoptions.md) | All options that may be used with a [HttpHandler](./kibana-plugin-public.httphandler.md). |
+| [HttpFetchOptionsWithPath](./kibana-plugin-public.httpfetchoptionswithpath.md) | Similar to [HttpFetchOptions](./kibana-plugin-public.httpfetchoptions.md) but with the URL path included. |
+| [HttpFetchQuery](./kibana-plugin-public.httpfetchquery.md) | |
+| [HttpHandler](./kibana-plugin-public.httphandler.md) | A function for making an HTTP requests to Kibana's backend. See [HttpFetchOptions](./kibana-plugin-public.httpfetchoptions.md) for options and [HttpResponse](./kibana-plugin-public.httpresponse.md) for the response. |
+| [HttpHeadersInit](./kibana-plugin-public.httpheadersinit.md) | Headers to append to the request. Any headers that begin with kbn-
are considered private to Core and will cause [HttpHandler](./kibana-plugin-public.httphandler.md) to throw an error. |
+| [HttpInterceptor](./kibana-plugin-public.httpinterceptor.md) | An object that may define global interceptor functions for different parts of the request and response lifecycle. See [IHttpInterceptController](./kibana-plugin-public.ihttpinterceptcontroller.md). |
+| [HttpInterceptorRequestError](./kibana-plugin-public.httpinterceptorrequesterror.md) | |
+| [HttpInterceptorResponseError](./kibana-plugin-public.httpinterceptorresponseerror.md) | |
+| [HttpRequestInit](./kibana-plugin-public.httprequestinit.md) | Fetch API options available to [HttpHandler](./kibana-plugin-public.httphandler.md)s. |
+| [HttpResponse](./kibana-plugin-public.httpresponse.md) | |
+| [HttpSetup](./kibana-plugin-public.httpsetup.md) | |
+| [I18nStart](./kibana-plugin-public.i18nstart.md) | I18nStart.Context is required by any localizable React component from @kbn/i18n and @elastic/eui packages and is supposed to be used as the topmost component for any i18n-compatible React tree. |
+| [IAnonymousPaths](./kibana-plugin-public.ianonymouspaths.md) | APIs for denoting paths as not requiring authentication |
+| [IBasePath](./kibana-plugin-public.ibasepath.md) | APIs for manipulating the basePath on URL segments. |
+| [IContextContainer](./kibana-plugin-public.icontextcontainer.md) | An object that handles registration of context providers and configuring handlers with context. |
+| [IHttpFetchError](./kibana-plugin-public.ihttpfetcherror.md) | |
+| [IHttpInterceptController](./kibana-plugin-public.ihttpinterceptcontroller.md) | Used to halt a request Promise chain in a [HttpInterceptor](./kibana-plugin-public.httpinterceptor.md). |
+| [IHttpResponseInterceptorOverrides](./kibana-plugin-public.ihttpresponseinterceptoroverrides.md) | Properties that can be returned by HttpInterceptor.request to override the response. |
+| [ImageValidation](./kibana-plugin-public.imagevalidation.md) | |
+| [IUiSettingsClient](./kibana-plugin-public.iuisettingsclient.md) | Client-side client that provides access to the advanced settings stored in elasticsearch. The settings provide control over the behavior of the Kibana application. For example, a user can specify how to display numeric or date fields. Users can adjust the settings via Management UI. [IUiSettingsClient](./kibana-plugin-public.iuisettingsclient.md) |
+| [LegacyCoreSetup](./kibana-plugin-public.legacycoresetup.md) | Setup interface exposed to the legacy platform via the ui/new_platform
module. |
+| [LegacyCoreStart](./kibana-plugin-public.legacycorestart.md) | Start interface exposed to the legacy platform via the ui/new_platform
module. |
+| [LegacyNavLink](./kibana-plugin-public.legacynavlink.md) | |
+| [NotificationsSetup](./kibana-plugin-public.notificationssetup.md) | |
+| [NotificationsStart](./kibana-plugin-public.notificationsstart.md) | |
+| [OverlayBannersStart](./kibana-plugin-public.overlaybannersstart.md) | |
+| [OverlayRef](./kibana-plugin-public.overlayref.md) | Returned by [OverlayStart](./kibana-plugin-public.overlaystart.md) methods for closing a mounted overlay. |
+| [OverlayStart](./kibana-plugin-public.overlaystart.md) | |
+| [PackageInfo](./kibana-plugin-public.packageinfo.md) | |
+| [Plugin](./kibana-plugin-public.plugin.md) | The interface that should be returned by a PluginInitializer
. |
+| [PluginInitializerContext](./kibana-plugin-public.plugininitializercontext.md) | The available core services passed to a PluginInitializer
|
+| [SavedObject](./kibana-plugin-public.savedobject.md) | |
+| [SavedObjectAttributes](./kibana-plugin-public.savedobjectattributes.md) | The data for a Saved Object is stored as an object in the attributes
property. |
+| [SavedObjectReference](./kibana-plugin-public.savedobjectreference.md) | A reference to another saved object. |
+| [SavedObjectsBaseOptions](./kibana-plugin-public.savedobjectsbaseoptions.md) | |
+| [SavedObjectsBatchResponse](./kibana-plugin-public.savedobjectsbatchresponse.md) | |
+| [SavedObjectsBulkCreateObject](./kibana-plugin-public.savedobjectsbulkcreateobject.md) | |
+| [SavedObjectsBulkCreateOptions](./kibana-plugin-public.savedobjectsbulkcreateoptions.md) | |
+| [SavedObjectsBulkUpdateObject](./kibana-plugin-public.savedobjectsbulkupdateobject.md) | |
+| [SavedObjectsBulkUpdateOptions](./kibana-plugin-public.savedobjectsbulkupdateoptions.md) | |
+| [SavedObjectsCreateOptions](./kibana-plugin-public.savedobjectscreateoptions.md) | |
+| [SavedObjectsFindOptions](./kibana-plugin-public.savedobjectsfindoptions.md) | |
+| [SavedObjectsFindResponsePublic](./kibana-plugin-public.savedobjectsfindresponsepublic.md) | Return type of the Saved Objects find()
method.\*Note\*: this type is different between the Public and Server Saved Objects clients. |
+| [SavedObjectsImportConflictError](./kibana-plugin-public.savedobjectsimportconflicterror.md) | Represents a failure to import due to a conflict. |
+| [SavedObjectsImportError](./kibana-plugin-public.savedobjectsimporterror.md) | Represents a failure to import. |
+| [SavedObjectsImportMissingReferencesError](./kibana-plugin-public.savedobjectsimportmissingreferenceserror.md) | Represents a failure to import due to missing references. |
+| [SavedObjectsImportResponse](./kibana-plugin-public.savedobjectsimportresponse.md) | The response describing the result of an import. |
+| [SavedObjectsImportRetry](./kibana-plugin-public.savedobjectsimportretry.md) | Describes a retry operation for importing a saved object. |
+| [SavedObjectsImportUnknownError](./kibana-plugin-public.savedobjectsimportunknownerror.md) | Represents a failure to import due to an unknown reason. |
+| [SavedObjectsImportUnsupportedTypeError](./kibana-plugin-public.savedobjectsimportunsupportedtypeerror.md) | Represents a failure to import due to having an unsupported saved object type. |
+| [SavedObjectsMigrationVersion](./kibana-plugin-public.savedobjectsmigrationversion.md) | Information about the migrations that have been applied to this SavedObject. When Kibana starts up, KibanaMigrator detects outdated documents and migrates them based on this value. For each migration that has been applied, the plugin's name is used as a key and the latest migration version as the value. |
+| [SavedObjectsStart](./kibana-plugin-public.savedobjectsstart.md) | |
+| [SavedObjectsUpdateOptions](./kibana-plugin-public.savedobjectsupdateoptions.md) | |
+| [StringValidationRegex](./kibana-plugin-public.stringvalidationregex.md) | StringValidation with regex object |
+| [StringValidationRegexString](./kibana-plugin-public.stringvalidationregexstring.md) | StringValidation as regex string |
+| [UiSettingsParams](./kibana-plugin-public.uisettingsparams.md) | UiSettings parameters defined by the plugins. |
+| [UiSettingsState](./kibana-plugin-public.uisettingsstate.md) | |
+| [UserProvidedValues](./kibana-plugin-public.userprovidedvalues.md) | Describes the values explicitly set by user. |
+
+## Type Aliases
+
+| Type Alias | Description |
+| --- | --- |
+| [AppLeaveAction](./kibana-plugin-public.appleaveaction.md) | Possible actions to return from a [AppLeaveHandler](./kibana-plugin-public.appleavehandler.md)See [AppLeaveConfirmAction](./kibana-plugin-public.appleaveconfirmaction.md) and [AppLeaveDefaultAction](./kibana-plugin-public.appleavedefaultaction.md) |
+| [AppLeaveHandler](./kibana-plugin-public.appleavehandler.md) | A handler that will be executed before leaving the application, either when going to another application or when closing the browser tab or manually changing the url. Should return confirm
to to prompt a message to the user before leaving the page, or default
to keep the default behavior (doing nothing).See [AppMountParameters](./kibana-plugin-public.appmountparameters.md) for detailed usage examples. |
+| [AppMount](./kibana-plugin-public.appmount.md) | A mount function called when the user navigates to this app's route. |
+| [AppMountDeprecated](./kibana-plugin-public.appmountdeprecated.md) | A mount function called when the user navigates to this app's route. |
+| [AppUnmount](./kibana-plugin-public.appunmount.md) | A function called when an application should be unmounted from the page. This function should be synchronous. |
+| [AppUpdatableFields](./kibana-plugin-public.appupdatablefields.md) | Defines the list of fields that can be updated via an [AppUpdater](./kibana-plugin-public.appupdater.md). |
+| [AppUpdater](./kibana-plugin-public.appupdater.md) | Updater for applications. see [ApplicationSetup](./kibana-plugin-public.applicationsetup.md) |
+| [ChromeBreadcrumb](./kibana-plugin-public.chromebreadcrumb.md) | |
+| [ChromeHelpExtensionMenuCustomLink](./kibana-plugin-public.chromehelpextensionmenucustomlink.md) | |
+| [ChromeHelpExtensionMenuDiscussLink](./kibana-plugin-public.chromehelpextensionmenudiscusslink.md) | |
+| [ChromeHelpExtensionMenuDocumentationLink](./kibana-plugin-public.chromehelpextensionmenudocumentationlink.md) | |
+| [ChromeHelpExtensionMenuGitHubLink](./kibana-plugin-public.chromehelpextensionmenugithublink.md) | |
+| [ChromeHelpExtensionMenuLink](./kibana-plugin-public.chromehelpextensionmenulink.md) | |
+| [ChromeNavLinkUpdateableFields](./kibana-plugin-public.chromenavlinkupdateablefields.md) | |
+| [FatalErrorsStart](./kibana-plugin-public.fatalerrorsstart.md) | FatalErrors stop the Kibana Public Core and displays a fatal error screen with details about the Kibana build and the error. |
+| [HandlerContextType](./kibana-plugin-public.handlercontexttype.md) | Extracts the type of the first argument of a [HandlerFunction](./kibana-plugin-public.handlerfunction.md) to represent the type of the context. |
+| [HandlerFunction](./kibana-plugin-public.handlerfunction.md) | A function that accepts a context object and an optional number of additional arguments. Used for the generic types in [IContextContainer](./kibana-plugin-public.icontextcontainer.md) |
+| [HandlerParameters](./kibana-plugin-public.handlerparameters.md) | Extracts the types of the additional arguments of a [HandlerFunction](./kibana-plugin-public.handlerfunction.md), excluding the [HandlerContextType](./kibana-plugin-public.handlercontexttype.md). |
+| [HttpStart](./kibana-plugin-public.httpstart.md) | See [HttpSetup](./kibana-plugin-public.httpsetup.md) |
+| [IContextProvider](./kibana-plugin-public.icontextprovider.md) | A function that returns a context value for a specific key of given context type. |
+| [IToasts](./kibana-plugin-public.itoasts.md) | Methods for adding and removing global toast messages. See [ToastsApi](./kibana-plugin-public.toastsapi.md). |
+| [MountPoint](./kibana-plugin-public.mountpoint.md) | A function that should mount DOM content inside the provided container element and return a handler to unmount it. |
+| [PluginInitializer](./kibana-plugin-public.plugininitializer.md) | The plugin
export at the root of a plugin's public
directory should conform to this interface. |
+| [PluginOpaqueId](./kibana-plugin-public.pluginopaqueid.md) | |
+| [RecursiveReadonly](./kibana-plugin-public.recursivereadonly.md) | |
+| [SavedObjectAttribute](./kibana-plugin-public.savedobjectattribute.md) | Type definition for a Saved Object attribute value |
+| [SavedObjectAttributeSingle](./kibana-plugin-public.savedobjectattributesingle.md) | Don't use this type, it's simply a helper type for [SavedObjectAttribute](./kibana-plugin-public.savedobjectattribute.md) |
+| [SavedObjectsClientContract](./kibana-plugin-public.savedobjectsclientcontract.md) | SavedObjectsClientContract as implemented by the [SavedObjectsClient](./kibana-plugin-public.savedobjectsclient.md) |
+| [StringValidation](./kibana-plugin-public.stringvalidation.md) | Allows regex objects or a regex string |
+| [Toast](./kibana-plugin-public.toast.md) | |
+| [ToastInput](./kibana-plugin-public.toastinput.md) | Inputs for [IToasts](./kibana-plugin-public.itoasts.md) APIs. |
+| [ToastInputFields](./kibana-plugin-public.toastinputfields.md) | Allowed fields for [ToastInput](./kibana-plugin-public.toastinput.md). |
+| [ToastsSetup](./kibana-plugin-public.toastssetup.md) | [IToasts](./kibana-plugin-public.itoasts.md) |
+| [ToastsStart](./kibana-plugin-public.toastsstart.md) | [IToasts](./kibana-plugin-public.itoasts.md) |
+| [UiSettingsType](./kibana-plugin-public.uisettingstype.md) | UI element type to represent the settings. |
+| [UnmountCallback](./kibana-plugin-public.unmountcallback.md) | A function that will unmount the element previously mounted by the associated [MountPoint](./kibana-plugin-public.mountpoint.md) |
+
diff --git a/docs/development/core/public/kibana-plugin-public.mountpoint.md b/docs/development/core/public/kibana-plugin-public.mountpoint.md
index 928d22f00ed00..4b4d1def18acc 100644
--- a/docs/development/core/public/kibana-plugin-public.mountpoint.md
+++ b/docs/development/core/public/kibana-plugin-public.mountpoint.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [MountPoint](./kibana-plugin-public.mountpoint.md)
-
-## MountPoint type
-
-A function that should mount DOM content inside the provided container element and return a handler to unmount it.
-
-Signature:
-
-```typescript
-export declare type MountPoint = (element: T) => UnmountCallback;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [MountPoint](./kibana-plugin-public.mountpoint.md)
+
+## MountPoint type
+
+A function that should mount DOM content inside the provided container element and return a handler to unmount it.
+
+Signature:
+
+```typescript
+export declare type MountPoint = (element: T) => UnmountCallback;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.notificationssetup.md b/docs/development/core/public/kibana-plugin-public.notificationssetup.md
index c03abf9d01dca..62251067b7a3d 100644
--- a/docs/development/core/public/kibana-plugin-public.notificationssetup.md
+++ b/docs/development/core/public/kibana-plugin-public.notificationssetup.md
@@ -1,19 +1,19 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [NotificationsSetup](./kibana-plugin-public.notificationssetup.md)
-
-## NotificationsSetup interface
-
-
-Signature:
-
-```typescript
-export interface NotificationsSetup
-```
-
-## Properties
-
-| Property | Type | Description |
-| --- | --- | --- |
-| [toasts](./kibana-plugin-public.notificationssetup.toasts.md) | ToastsSetup
| [ToastsSetup](./kibana-plugin-public.toastssetup.md) |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [NotificationsSetup](./kibana-plugin-public.notificationssetup.md)
+
+## NotificationsSetup interface
+
+
+Signature:
+
+```typescript
+export interface NotificationsSetup
+```
+
+## Properties
+
+| Property | Type | Description |
+| --- | --- | --- |
+| [toasts](./kibana-plugin-public.notificationssetup.toasts.md) | ToastsSetup
| [ToastsSetup](./kibana-plugin-public.toastssetup.md) |
+
diff --git a/docs/development/core/public/kibana-plugin-public.notificationssetup.toasts.md b/docs/development/core/public/kibana-plugin-public.notificationssetup.toasts.md
index dd613a959061e..44262cd3c559c 100644
--- a/docs/development/core/public/kibana-plugin-public.notificationssetup.toasts.md
+++ b/docs/development/core/public/kibana-plugin-public.notificationssetup.toasts.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [NotificationsSetup](./kibana-plugin-public.notificationssetup.md) > [toasts](./kibana-plugin-public.notificationssetup.toasts.md)
-
-## NotificationsSetup.toasts property
-
-[ToastsSetup](./kibana-plugin-public.toastssetup.md)
-
-Signature:
-
-```typescript
-toasts: ToastsSetup;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [NotificationsSetup](./kibana-plugin-public.notificationssetup.md) > [toasts](./kibana-plugin-public.notificationssetup.toasts.md)
+
+## NotificationsSetup.toasts property
+
+[ToastsSetup](./kibana-plugin-public.toastssetup.md)
+
+Signature:
+
+```typescript
+toasts: ToastsSetup;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.notificationsstart.md b/docs/development/core/public/kibana-plugin-public.notificationsstart.md
index 56a1ce2095742..88ebd6cf3d830 100644
--- a/docs/development/core/public/kibana-plugin-public.notificationsstart.md
+++ b/docs/development/core/public/kibana-plugin-public.notificationsstart.md
@@ -1,19 +1,19 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [NotificationsStart](./kibana-plugin-public.notificationsstart.md)
-
-## NotificationsStart interface
-
-
-Signature:
-
-```typescript
-export interface NotificationsStart
-```
-
-## Properties
-
-| Property | Type | Description |
-| --- | --- | --- |
-| [toasts](./kibana-plugin-public.notificationsstart.toasts.md) | ToastsStart
| [ToastsStart](./kibana-plugin-public.toastsstart.md) |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [NotificationsStart](./kibana-plugin-public.notificationsstart.md)
+
+## NotificationsStart interface
+
+
+Signature:
+
+```typescript
+export interface NotificationsStart
+```
+
+## Properties
+
+| Property | Type | Description |
+| --- | --- | --- |
+| [toasts](./kibana-plugin-public.notificationsstart.toasts.md) | ToastsStart
| [ToastsStart](./kibana-plugin-public.toastsstart.md) |
+
diff --git a/docs/development/core/public/kibana-plugin-public.notificationsstart.toasts.md b/docs/development/core/public/kibana-plugin-public.notificationsstart.toasts.md
index 9d2c685946fda..1e742495559d7 100644
--- a/docs/development/core/public/kibana-plugin-public.notificationsstart.toasts.md
+++ b/docs/development/core/public/kibana-plugin-public.notificationsstart.toasts.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [NotificationsStart](./kibana-plugin-public.notificationsstart.md) > [toasts](./kibana-plugin-public.notificationsstart.toasts.md)
-
-## NotificationsStart.toasts property
-
-[ToastsStart](./kibana-plugin-public.toastsstart.md)
-
-Signature:
-
-```typescript
-toasts: ToastsStart;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [NotificationsStart](./kibana-plugin-public.notificationsstart.md) > [toasts](./kibana-plugin-public.notificationsstart.toasts.md)
+
+## NotificationsStart.toasts property
+
+[ToastsStart](./kibana-plugin-public.toastsstart.md)
+
+Signature:
+
+```typescript
+toasts: ToastsStart;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.overlaybannersstart.add.md b/docs/development/core/public/kibana-plugin-public.overlaybannersstart.add.md
index 8ce59d5d9ca78..c0281090e20e1 100644
--- a/docs/development/core/public/kibana-plugin-public.overlaybannersstart.add.md
+++ b/docs/development/core/public/kibana-plugin-public.overlaybannersstart.add.md
@@ -1,27 +1,27 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [OverlayBannersStart](./kibana-plugin-public.overlaybannersstart.md) > [add](./kibana-plugin-public.overlaybannersstart.add.md)
-
-## OverlayBannersStart.add() method
-
-Add a new banner
-
-Signature:
-
-```typescript
-add(mount: MountPoint, priority?: number): string;
-```
-
-## Parameters
-
-| Parameter | Type | Description |
-| --- | --- | --- |
-| mount | MountPoint
| |
-| priority | number
| |
-
-Returns:
-
-`string`
-
-a unique identifier for the given banner to be used with [OverlayBannersStart.remove()](./kibana-plugin-public.overlaybannersstart.remove.md) and [OverlayBannersStart.replace()](./kibana-plugin-public.overlaybannersstart.replace.md)
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [OverlayBannersStart](./kibana-plugin-public.overlaybannersstart.md) > [add](./kibana-plugin-public.overlaybannersstart.add.md)
+
+## OverlayBannersStart.add() method
+
+Add a new banner
+
+Signature:
+
+```typescript
+add(mount: MountPoint, priority?: number): string;
+```
+
+## Parameters
+
+| Parameter | Type | Description |
+| --- | --- | --- |
+| mount | MountPoint
| |
+| priority | number
| |
+
+Returns:
+
+`string`
+
+a unique identifier for the given banner to be used with [OverlayBannersStart.remove()](./kibana-plugin-public.overlaybannersstart.remove.md) and [OverlayBannersStart.replace()](./kibana-plugin-public.overlaybannersstart.replace.md)
+
diff --git a/docs/development/core/public/kibana-plugin-public.overlaybannersstart.getcomponent.md b/docs/development/core/public/kibana-plugin-public.overlaybannersstart.getcomponent.md
index 0ecb9862dee3d..3a89c1a0171e4 100644
--- a/docs/development/core/public/kibana-plugin-public.overlaybannersstart.getcomponent.md
+++ b/docs/development/core/public/kibana-plugin-public.overlaybannersstart.getcomponent.md
@@ -1,15 +1,15 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [OverlayBannersStart](./kibana-plugin-public.overlaybannersstart.md) > [getComponent](./kibana-plugin-public.overlaybannersstart.getcomponent.md)
-
-## OverlayBannersStart.getComponent() method
-
-Signature:
-
-```typescript
-getComponent(): JSX.Element;
-```
-Returns:
-
-`JSX.Element`
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [OverlayBannersStart](./kibana-plugin-public.overlaybannersstart.md) > [getComponent](./kibana-plugin-public.overlaybannersstart.getcomponent.md)
+
+## OverlayBannersStart.getComponent() method
+
+Signature:
+
+```typescript
+getComponent(): JSX.Element;
+```
+Returns:
+
+`JSX.Element`
+
diff --git a/docs/development/core/public/kibana-plugin-public.overlaybannersstart.md b/docs/development/core/public/kibana-plugin-public.overlaybannersstart.md
index 34e4ab8553792..0d5e221174a50 100644
--- a/docs/development/core/public/kibana-plugin-public.overlaybannersstart.md
+++ b/docs/development/core/public/kibana-plugin-public.overlaybannersstart.md
@@ -1,22 +1,22 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [OverlayBannersStart](./kibana-plugin-public.overlaybannersstart.md)
-
-## OverlayBannersStart interface
-
-
-Signature:
-
-```typescript
-export interface OverlayBannersStart
-```
-
-## Methods
-
-| Method | Description |
-| --- | --- |
-| [add(mount, priority)](./kibana-plugin-public.overlaybannersstart.add.md) | Add a new banner |
-| [getComponent()](./kibana-plugin-public.overlaybannersstart.getcomponent.md) | |
-| [remove(id)](./kibana-plugin-public.overlaybannersstart.remove.md) | Remove a banner |
-| [replace(id, mount, priority)](./kibana-plugin-public.overlaybannersstart.replace.md) | Replace a banner in place |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [OverlayBannersStart](./kibana-plugin-public.overlaybannersstart.md)
+
+## OverlayBannersStart interface
+
+
+Signature:
+
+```typescript
+export interface OverlayBannersStart
+```
+
+## Methods
+
+| Method | Description |
+| --- | --- |
+| [add(mount, priority)](./kibana-plugin-public.overlaybannersstart.add.md) | Add a new banner |
+| [getComponent()](./kibana-plugin-public.overlaybannersstart.getcomponent.md) | |
+| [remove(id)](./kibana-plugin-public.overlaybannersstart.remove.md) | Remove a banner |
+| [replace(id, mount, priority)](./kibana-plugin-public.overlaybannersstart.replace.md) | Replace a banner in place |
+
diff --git a/docs/development/core/public/kibana-plugin-public.overlaybannersstart.remove.md b/docs/development/core/public/kibana-plugin-public.overlaybannersstart.remove.md
index 4fc5cfcd1c8d0..8406fbbc26c21 100644
--- a/docs/development/core/public/kibana-plugin-public.overlaybannersstart.remove.md
+++ b/docs/development/core/public/kibana-plugin-public.overlaybannersstart.remove.md
@@ -1,26 +1,26 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [OverlayBannersStart](./kibana-plugin-public.overlaybannersstart.md) > [remove](./kibana-plugin-public.overlaybannersstart.remove.md)
-
-## OverlayBannersStart.remove() method
-
-Remove a banner
-
-Signature:
-
-```typescript
-remove(id: string): boolean;
-```
-
-## Parameters
-
-| Parameter | Type | Description |
-| --- | --- | --- |
-| id | string
| |
-
-Returns:
-
-`boolean`
-
-if the banner was found or not
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [OverlayBannersStart](./kibana-plugin-public.overlaybannersstart.md) > [remove](./kibana-plugin-public.overlaybannersstart.remove.md)
+
+## OverlayBannersStart.remove() method
+
+Remove a banner
+
+Signature:
+
+```typescript
+remove(id: string): boolean;
+```
+
+## Parameters
+
+| Parameter | Type | Description |
+| --- | --- | --- |
+| id | string
| |
+
+Returns:
+
+`boolean`
+
+if the banner was found or not
+
diff --git a/docs/development/core/public/kibana-plugin-public.overlaybannersstart.replace.md b/docs/development/core/public/kibana-plugin-public.overlaybannersstart.replace.md
index a8f6915ea9bb7..5a6cd79300b74 100644
--- a/docs/development/core/public/kibana-plugin-public.overlaybannersstart.replace.md
+++ b/docs/development/core/public/kibana-plugin-public.overlaybannersstart.replace.md
@@ -1,28 +1,28 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [OverlayBannersStart](./kibana-plugin-public.overlaybannersstart.md) > [replace](./kibana-plugin-public.overlaybannersstart.replace.md)
-
-## OverlayBannersStart.replace() method
-
-Replace a banner in place
-
-Signature:
-
-```typescript
-replace(id: string | undefined, mount: MountPoint, priority?: number): string;
-```
-
-## Parameters
-
-| Parameter | Type | Description |
-| --- | --- | --- |
-| id | string | undefined
| |
-| mount | MountPoint
| |
-| priority | number
| |
-
-Returns:
-
-`string`
-
-a new identifier for the given banner to be used with [OverlayBannersStart.remove()](./kibana-plugin-public.overlaybannersstart.remove.md) and [OverlayBannersStart.replace()](./kibana-plugin-public.overlaybannersstart.replace.md)
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [OverlayBannersStart](./kibana-plugin-public.overlaybannersstart.md) > [replace](./kibana-plugin-public.overlaybannersstart.replace.md)
+
+## OverlayBannersStart.replace() method
+
+Replace a banner in place
+
+Signature:
+
+```typescript
+replace(id: string | undefined, mount: MountPoint, priority?: number): string;
+```
+
+## Parameters
+
+| Parameter | Type | Description |
+| --- | --- | --- |
+| id | string | undefined
| |
+| mount | MountPoint
| |
+| priority | number
| |
+
+Returns:
+
+`string`
+
+a new identifier for the given banner to be used with [OverlayBannersStart.remove()](./kibana-plugin-public.overlaybannersstart.remove.md) and [OverlayBannersStart.replace()](./kibana-plugin-public.overlaybannersstart.replace.md)
+
diff --git a/docs/development/core/public/kibana-plugin-public.overlayref.close.md b/docs/development/core/public/kibana-plugin-public.overlayref.close.md
index 32f17882af304..4dc0e8ab9a3c4 100644
--- a/docs/development/core/public/kibana-plugin-public.overlayref.close.md
+++ b/docs/development/core/public/kibana-plugin-public.overlayref.close.md
@@ -1,17 +1,17 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [OverlayRef](./kibana-plugin-public.overlayref.md) > [close](./kibana-plugin-public.overlayref.close.md)
-
-## OverlayRef.close() method
-
-Closes the referenced overlay if it's still open which in turn will resolve the `onClose` Promise. If the overlay had already been closed this method does nothing.
-
-Signature:
-
-```typescript
-close(): Promise;
-```
-Returns:
-
-`Promise`
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [OverlayRef](./kibana-plugin-public.overlayref.md) > [close](./kibana-plugin-public.overlayref.close.md)
+
+## OverlayRef.close() method
+
+Closes the referenced overlay if it's still open which in turn will resolve the `onClose` Promise. If the overlay had already been closed this method does nothing.
+
+Signature:
+
+```typescript
+close(): Promise;
+```
+Returns:
+
+`Promise`
+
diff --git a/docs/development/core/public/kibana-plugin-public.overlayref.md b/docs/development/core/public/kibana-plugin-public.overlayref.md
index e71415280e4d2..a5ba8e61d3f9b 100644
--- a/docs/development/core/public/kibana-plugin-public.overlayref.md
+++ b/docs/development/core/public/kibana-plugin-public.overlayref.md
@@ -1,26 +1,26 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [OverlayRef](./kibana-plugin-public.overlayref.md)
-
-## OverlayRef interface
-
-Returned by [OverlayStart](./kibana-plugin-public.overlaystart.md) methods for closing a mounted overlay.
-
-Signature:
-
-```typescript
-export interface OverlayRef
-```
-
-## Properties
-
-| Property | Type | Description |
-| --- | --- | --- |
-| [onClose](./kibana-plugin-public.overlayref.onclose.md) | Promise<void>
| A Promise that will resolve once this overlay is closed.Overlays can close from user interaction, calling close()
on the overlay reference or another overlay replacing yours via openModal
or openFlyout
. |
-
-## Methods
-
-| Method | Description |
-| --- | --- |
-| [close()](./kibana-plugin-public.overlayref.close.md) | Closes the referenced overlay if it's still open which in turn will resolve the onClose
Promise. If the overlay had already been closed this method does nothing. |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [OverlayRef](./kibana-plugin-public.overlayref.md)
+
+## OverlayRef interface
+
+Returned by [OverlayStart](./kibana-plugin-public.overlaystart.md) methods for closing a mounted overlay.
+
+Signature:
+
+```typescript
+export interface OverlayRef
+```
+
+## Properties
+
+| Property | Type | Description |
+| --- | --- | --- |
+| [onClose](./kibana-plugin-public.overlayref.onclose.md) | Promise<void>
| A Promise that will resolve once this overlay is closed.Overlays can close from user interaction, calling close()
on the overlay reference or another overlay replacing yours via openModal
or openFlyout
. |
+
+## Methods
+
+| Method | Description |
+| --- | --- |
+| [close()](./kibana-plugin-public.overlayref.close.md) | Closes the referenced overlay if it's still open which in turn will resolve the onClose
Promise. If the overlay had already been closed this method does nothing. |
+
diff --git a/docs/development/core/public/kibana-plugin-public.overlayref.onclose.md b/docs/development/core/public/kibana-plugin-public.overlayref.onclose.md
index 641b48b2b1ca1..64b4526b5c3ce 100644
--- a/docs/development/core/public/kibana-plugin-public.overlayref.onclose.md
+++ b/docs/development/core/public/kibana-plugin-public.overlayref.onclose.md
@@ -1,15 +1,15 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [OverlayRef](./kibana-plugin-public.overlayref.md) > [onClose](./kibana-plugin-public.overlayref.onclose.md)
-
-## OverlayRef.onClose property
-
-A Promise that will resolve once this overlay is closed.
-
-Overlays can close from user interaction, calling `close()` on the overlay reference or another overlay replacing yours via `openModal` or `openFlyout`.
-
-Signature:
-
-```typescript
-onClose: Promise;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [OverlayRef](./kibana-plugin-public.overlayref.md) > [onClose](./kibana-plugin-public.overlayref.onclose.md)
+
+## OverlayRef.onClose property
+
+A Promise that will resolve once this overlay is closed.
+
+Overlays can close from user interaction, calling `close()` on the overlay reference or another overlay replacing yours via `openModal` or `openFlyout`.
+
+Signature:
+
+```typescript
+onClose: Promise;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.overlaystart.banners.md b/docs/development/core/public/kibana-plugin-public.overlaystart.banners.md
index 60ecc4b873f0d..a9dc10dfcbc80 100644
--- a/docs/development/core/public/kibana-plugin-public.overlaystart.banners.md
+++ b/docs/development/core/public/kibana-plugin-public.overlaystart.banners.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [OverlayStart](./kibana-plugin-public.overlaystart.md) > [banners](./kibana-plugin-public.overlaystart.banners.md)
-
-## OverlayStart.banners property
-
-[OverlayBannersStart](./kibana-plugin-public.overlaybannersstart.md)
-
-Signature:
-
-```typescript
-banners: OverlayBannersStart;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [OverlayStart](./kibana-plugin-public.overlaystart.md) > [banners](./kibana-plugin-public.overlaystart.banners.md)
+
+## OverlayStart.banners property
+
+[OverlayBannersStart](./kibana-plugin-public.overlaybannersstart.md)
+
+Signature:
+
+```typescript
+banners: OverlayBannersStart;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.overlaystart.md b/docs/development/core/public/kibana-plugin-public.overlaystart.md
index a83044763344b..1f9d9d020ecf0 100644
--- a/docs/development/core/public/kibana-plugin-public.overlaystart.md
+++ b/docs/development/core/public/kibana-plugin-public.overlaystart.md
@@ -1,22 +1,22 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [OverlayStart](./kibana-plugin-public.overlaystart.md)
-
-## OverlayStart interface
-
-
-Signature:
-
-```typescript
-export interface OverlayStart
-```
-
-## Properties
-
-| Property | Type | Description |
-| --- | --- | --- |
-| [banners](./kibana-plugin-public.overlaystart.banners.md) | OverlayBannersStart
| [OverlayBannersStart](./kibana-plugin-public.overlaybannersstart.md) |
-| [openConfirm](./kibana-plugin-public.overlaystart.openconfirm.md) | OverlayModalStart['openConfirm']
| |
-| [openFlyout](./kibana-plugin-public.overlaystart.openflyout.md) | OverlayFlyoutStart['open']
| |
-| [openModal](./kibana-plugin-public.overlaystart.openmodal.md) | OverlayModalStart['open']
| |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [OverlayStart](./kibana-plugin-public.overlaystart.md)
+
+## OverlayStart interface
+
+
+Signature:
+
+```typescript
+export interface OverlayStart
+```
+
+## Properties
+
+| Property | Type | Description |
+| --- | --- | --- |
+| [banners](./kibana-plugin-public.overlaystart.banners.md) | OverlayBannersStart
| [OverlayBannersStart](./kibana-plugin-public.overlaybannersstart.md) |
+| [openConfirm](./kibana-plugin-public.overlaystart.openconfirm.md) | OverlayModalStart['openConfirm']
| |
+| [openFlyout](./kibana-plugin-public.overlaystart.openflyout.md) | OverlayFlyoutStart['open']
| |
+| [openModal](./kibana-plugin-public.overlaystart.openmodal.md) | OverlayModalStart['open']
| |
+
diff --git a/docs/development/core/public/kibana-plugin-public.overlaystart.openconfirm.md b/docs/development/core/public/kibana-plugin-public.overlaystart.openconfirm.md
index 543a69e0b3318..8c53cb39b60ef 100644
--- a/docs/development/core/public/kibana-plugin-public.overlaystart.openconfirm.md
+++ b/docs/development/core/public/kibana-plugin-public.overlaystart.openconfirm.md
@@ -1,12 +1,12 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [OverlayStart](./kibana-plugin-public.overlaystart.md) > [openConfirm](./kibana-plugin-public.overlaystart.openconfirm.md)
-
-## OverlayStart.openConfirm property
-
-
-Signature:
-
-```typescript
-openConfirm: OverlayModalStart['openConfirm'];
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [OverlayStart](./kibana-plugin-public.overlaystart.md) > [openConfirm](./kibana-plugin-public.overlaystart.openconfirm.md)
+
+## OverlayStart.openConfirm property
+
+
+Signature:
+
+```typescript
+openConfirm: OverlayModalStart['openConfirm'];
+```
diff --git a/docs/development/core/public/kibana-plugin-public.overlaystart.openflyout.md b/docs/development/core/public/kibana-plugin-public.overlaystart.openflyout.md
index ad3351fb4d098..1717d881a8806 100644
--- a/docs/development/core/public/kibana-plugin-public.overlaystart.openflyout.md
+++ b/docs/development/core/public/kibana-plugin-public.overlaystart.openflyout.md
@@ -1,12 +1,12 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [OverlayStart](./kibana-plugin-public.overlaystart.md) > [openFlyout](./kibana-plugin-public.overlaystart.openflyout.md)
-
-## OverlayStart.openFlyout property
-
-
-Signature:
-
-```typescript
-openFlyout: OverlayFlyoutStart['open'];
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [OverlayStart](./kibana-plugin-public.overlaystart.md) > [openFlyout](./kibana-plugin-public.overlaystart.openflyout.md)
+
+## OverlayStart.openFlyout property
+
+
+Signature:
+
+```typescript
+openFlyout: OverlayFlyoutStart['open'];
+```
diff --git a/docs/development/core/public/kibana-plugin-public.overlaystart.openmodal.md b/docs/development/core/public/kibana-plugin-public.overlaystart.openmodal.md
index 2c983d6151f4c..2c5a30be5138e 100644
--- a/docs/development/core/public/kibana-plugin-public.overlaystart.openmodal.md
+++ b/docs/development/core/public/kibana-plugin-public.overlaystart.openmodal.md
@@ -1,12 +1,12 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [OverlayStart](./kibana-plugin-public.overlaystart.md) > [openModal](./kibana-plugin-public.overlaystart.openmodal.md)
-
-## OverlayStart.openModal property
-
-
-Signature:
-
-```typescript
-openModal: OverlayModalStart['open'];
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [OverlayStart](./kibana-plugin-public.overlaystart.md) > [openModal](./kibana-plugin-public.overlaystart.openmodal.md)
+
+## OverlayStart.openModal property
+
+
+Signature:
+
+```typescript
+openModal: OverlayModalStart['open'];
+```
diff --git a/docs/development/core/public/kibana-plugin-public.packageinfo.branch.md b/docs/development/core/public/kibana-plugin-public.packageinfo.branch.md
index 774a290969938..008edb80af86e 100644
--- a/docs/development/core/public/kibana-plugin-public.packageinfo.branch.md
+++ b/docs/development/core/public/kibana-plugin-public.packageinfo.branch.md
@@ -1,11 +1,11 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [PackageInfo](./kibana-plugin-public.packageinfo.md) > [branch](./kibana-plugin-public.packageinfo.branch.md)
-
-## PackageInfo.branch property
-
-Signature:
-
-```typescript
-branch: string;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [PackageInfo](./kibana-plugin-public.packageinfo.md) > [branch](./kibana-plugin-public.packageinfo.branch.md)
+
+## PackageInfo.branch property
+
+Signature:
+
+```typescript
+branch: string;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.packageinfo.buildnum.md b/docs/development/core/public/kibana-plugin-public.packageinfo.buildnum.md
index 0c1003f8d8aff..8895955e4dee1 100644
--- a/docs/development/core/public/kibana-plugin-public.packageinfo.buildnum.md
+++ b/docs/development/core/public/kibana-plugin-public.packageinfo.buildnum.md
@@ -1,11 +1,11 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [PackageInfo](./kibana-plugin-public.packageinfo.md) > [buildNum](./kibana-plugin-public.packageinfo.buildnum.md)
-
-## PackageInfo.buildNum property
-
-Signature:
-
-```typescript
-buildNum: number;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [PackageInfo](./kibana-plugin-public.packageinfo.md) > [buildNum](./kibana-plugin-public.packageinfo.buildnum.md)
+
+## PackageInfo.buildNum property
+
+Signature:
+
+```typescript
+buildNum: number;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.packageinfo.buildsha.md b/docs/development/core/public/kibana-plugin-public.packageinfo.buildsha.md
index 98a7916c142e9..f12471f5ea7f5 100644
--- a/docs/development/core/public/kibana-plugin-public.packageinfo.buildsha.md
+++ b/docs/development/core/public/kibana-plugin-public.packageinfo.buildsha.md
@@ -1,11 +1,11 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [PackageInfo](./kibana-plugin-public.packageinfo.md) > [buildSha](./kibana-plugin-public.packageinfo.buildsha.md)
-
-## PackageInfo.buildSha property
-
-Signature:
-
-```typescript
-buildSha: string;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [PackageInfo](./kibana-plugin-public.packageinfo.md) > [buildSha](./kibana-plugin-public.packageinfo.buildsha.md)
+
+## PackageInfo.buildSha property
+
+Signature:
+
+```typescript
+buildSha: string;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.packageinfo.dist.md b/docs/development/core/public/kibana-plugin-public.packageinfo.dist.md
index c70299bbe6fcc..f13f2ac4c679e 100644
--- a/docs/development/core/public/kibana-plugin-public.packageinfo.dist.md
+++ b/docs/development/core/public/kibana-plugin-public.packageinfo.dist.md
@@ -1,11 +1,11 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [PackageInfo](./kibana-plugin-public.packageinfo.md) > [dist](./kibana-plugin-public.packageinfo.dist.md)
-
-## PackageInfo.dist property
-
-Signature:
-
-```typescript
-dist: boolean;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [PackageInfo](./kibana-plugin-public.packageinfo.md) > [dist](./kibana-plugin-public.packageinfo.dist.md)
+
+## PackageInfo.dist property
+
+Signature:
+
+```typescript
+dist: boolean;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.packageinfo.md b/docs/development/core/public/kibana-plugin-public.packageinfo.md
index 1dbd8cb85c56b..bd38e5e2c06e1 100644
--- a/docs/development/core/public/kibana-plugin-public.packageinfo.md
+++ b/docs/development/core/public/kibana-plugin-public.packageinfo.md
@@ -1,23 +1,23 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [PackageInfo](./kibana-plugin-public.packageinfo.md)
-
-## PackageInfo interface
-
-
-Signature:
-
-```typescript
-export interface PackageInfo
-```
-
-## Properties
-
-| Property | Type | Description |
-| --- | --- | --- |
-| [branch](./kibana-plugin-public.packageinfo.branch.md) | string
| |
-| [buildNum](./kibana-plugin-public.packageinfo.buildnum.md) | number
| |
-| [buildSha](./kibana-plugin-public.packageinfo.buildsha.md) | string
| |
-| [dist](./kibana-plugin-public.packageinfo.dist.md) | boolean
| |
-| [version](./kibana-plugin-public.packageinfo.version.md) | string
| |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [PackageInfo](./kibana-plugin-public.packageinfo.md)
+
+## PackageInfo interface
+
+
+Signature:
+
+```typescript
+export interface PackageInfo
+```
+
+## Properties
+
+| Property | Type | Description |
+| --- | --- | --- |
+| [branch](./kibana-plugin-public.packageinfo.branch.md) | string
| |
+| [buildNum](./kibana-plugin-public.packageinfo.buildnum.md) | number
| |
+| [buildSha](./kibana-plugin-public.packageinfo.buildsha.md) | string
| |
+| [dist](./kibana-plugin-public.packageinfo.dist.md) | boolean
| |
+| [version](./kibana-plugin-public.packageinfo.version.md) | string
| |
+
diff --git a/docs/development/core/public/kibana-plugin-public.packageinfo.version.md b/docs/development/core/public/kibana-plugin-public.packageinfo.version.md
index 26def753e424a..6b8267c79b6d6 100644
--- a/docs/development/core/public/kibana-plugin-public.packageinfo.version.md
+++ b/docs/development/core/public/kibana-plugin-public.packageinfo.version.md
@@ -1,11 +1,11 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [PackageInfo](./kibana-plugin-public.packageinfo.md) > [version](./kibana-plugin-public.packageinfo.version.md)
-
-## PackageInfo.version property
-
-Signature:
-
-```typescript
-version: string;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [PackageInfo](./kibana-plugin-public.packageinfo.md) > [version](./kibana-plugin-public.packageinfo.version.md)
+
+## PackageInfo.version property
+
+Signature:
+
+```typescript
+version: string;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.plugin.md b/docs/development/core/public/kibana-plugin-public.plugin.md
index 979436e6dab37..a81f9cd60fbbe 100644
--- a/docs/development/core/public/kibana-plugin-public.plugin.md
+++ b/docs/development/core/public/kibana-plugin-public.plugin.md
@@ -1,22 +1,22 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [Plugin](./kibana-plugin-public.plugin.md)
-
-## Plugin interface
-
-The interface that should be returned by a `PluginInitializer`.
-
-Signature:
-
-```typescript
-export interface Plugin
-```
-
-## Methods
-
-| Method | Description |
-| --- | --- |
-| [setup(core, plugins)](./kibana-plugin-public.plugin.setup.md) | |
-| [start(core, plugins)](./kibana-plugin-public.plugin.start.md) | |
-| [stop()](./kibana-plugin-public.plugin.stop.md) | |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [Plugin](./kibana-plugin-public.plugin.md)
+
+## Plugin interface
+
+The interface that should be returned by a `PluginInitializer`.
+
+Signature:
+
+```typescript
+export interface Plugin
+```
+
+## Methods
+
+| Method | Description |
+| --- | --- |
+| [setup(core, plugins)](./kibana-plugin-public.plugin.setup.md) | |
+| [start(core, plugins)](./kibana-plugin-public.plugin.start.md) | |
+| [stop()](./kibana-plugin-public.plugin.stop.md) | |
+
diff --git a/docs/development/core/public/kibana-plugin-public.plugin.setup.md b/docs/development/core/public/kibana-plugin-public.plugin.setup.md
index f058bc8d86fbc..98d7db19cc353 100644
--- a/docs/development/core/public/kibana-plugin-public.plugin.setup.md
+++ b/docs/development/core/public/kibana-plugin-public.plugin.setup.md
@@ -1,23 +1,23 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [Plugin](./kibana-plugin-public.plugin.md) > [setup](./kibana-plugin-public.plugin.setup.md)
-
-## Plugin.setup() method
-
-Signature:
-
-```typescript
-setup(core: CoreSetup, plugins: TPluginsSetup): TSetup | Promise;
-```
-
-## Parameters
-
-| Parameter | Type | Description |
-| --- | --- | --- |
-| core | CoreSetup<TPluginsStart>
| |
-| plugins | TPluginsSetup
| |
-
-Returns:
-
-`TSetup | Promise`
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [Plugin](./kibana-plugin-public.plugin.md) > [setup](./kibana-plugin-public.plugin.setup.md)
+
+## Plugin.setup() method
+
+Signature:
+
+```typescript
+setup(core: CoreSetup, plugins: TPluginsSetup): TSetup | Promise;
+```
+
+## Parameters
+
+| Parameter | Type | Description |
+| --- | --- | --- |
+| core | CoreSetup<TPluginsStart>
| |
+| plugins | TPluginsSetup
| |
+
+Returns:
+
+`TSetup | Promise`
+
diff --git a/docs/development/core/public/kibana-plugin-public.plugin.start.md b/docs/development/core/public/kibana-plugin-public.plugin.start.md
index b132706f4b7c0..149d925f670ef 100644
--- a/docs/development/core/public/kibana-plugin-public.plugin.start.md
+++ b/docs/development/core/public/kibana-plugin-public.plugin.start.md
@@ -1,23 +1,23 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [Plugin](./kibana-plugin-public.plugin.md) > [start](./kibana-plugin-public.plugin.start.md)
-
-## Plugin.start() method
-
-Signature:
-
-```typescript
-start(core: CoreStart, plugins: TPluginsStart): TStart | Promise;
-```
-
-## Parameters
-
-| Parameter | Type | Description |
-| --- | --- | --- |
-| core | CoreStart
| |
-| plugins | TPluginsStart
| |
-
-Returns:
-
-`TStart | Promise`
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [Plugin](./kibana-plugin-public.plugin.md) > [start](./kibana-plugin-public.plugin.start.md)
+
+## Plugin.start() method
+
+Signature:
+
+```typescript
+start(core: CoreStart, plugins: TPluginsStart): TStart | Promise;
+```
+
+## Parameters
+
+| Parameter | Type | Description |
+| --- | --- | --- |
+| core | CoreStart
| |
+| plugins | TPluginsStart
| |
+
+Returns:
+
+`TStart | Promise`
+
diff --git a/docs/development/core/public/kibana-plugin-public.plugin.stop.md b/docs/development/core/public/kibana-plugin-public.plugin.stop.md
index 2ccb9f5f3655b..e30bc4b5d8933 100644
--- a/docs/development/core/public/kibana-plugin-public.plugin.stop.md
+++ b/docs/development/core/public/kibana-plugin-public.plugin.stop.md
@@ -1,15 +1,15 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [Plugin](./kibana-plugin-public.plugin.md) > [stop](./kibana-plugin-public.plugin.stop.md)
-
-## Plugin.stop() method
-
-Signature:
-
-```typescript
-stop?(): void;
-```
-Returns:
-
-`void`
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [Plugin](./kibana-plugin-public.plugin.md) > [stop](./kibana-plugin-public.plugin.stop.md)
+
+## Plugin.stop() method
+
+Signature:
+
+```typescript
+stop?(): void;
+```
+Returns:
+
+`void`
+
diff --git a/docs/development/core/public/kibana-plugin-public.plugininitializer.md b/docs/development/core/public/kibana-plugin-public.plugininitializer.md
index 0e1124afff369..ec2b145c09e5a 100644
--- a/docs/development/core/public/kibana-plugin-public.plugininitializer.md
+++ b/docs/development/core/public/kibana-plugin-public.plugininitializer.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [PluginInitializer](./kibana-plugin-public.plugininitializer.md)
-
-## PluginInitializer type
-
-The `plugin` export at the root of a plugin's `public` directory should conform to this interface.
-
-Signature:
-
-```typescript
-export declare type PluginInitializer = (core: PluginInitializerContext) => Plugin;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [PluginInitializer](./kibana-plugin-public.plugininitializer.md)
+
+## PluginInitializer type
+
+The `plugin` export at the root of a plugin's `public` directory should conform to this interface.
+
+Signature:
+
+```typescript
+export declare type PluginInitializer = (core: PluginInitializerContext) => Plugin;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.plugininitializercontext.config.md b/docs/development/core/public/kibana-plugin-public.plugininitializercontext.config.md
index 28141c9e13749..a628a2b43c407 100644
--- a/docs/development/core/public/kibana-plugin-public.plugininitializercontext.config.md
+++ b/docs/development/core/public/kibana-plugin-public.plugininitializercontext.config.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [PluginInitializerContext](./kibana-plugin-public.plugininitializercontext.md) > [config](./kibana-plugin-public.plugininitializercontext.config.md)
-
-## PluginInitializerContext.config property
-
-Signature:
-
-```typescript
-readonly config: {
- get: () => T;
- };
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [PluginInitializerContext](./kibana-plugin-public.plugininitializercontext.md) > [config](./kibana-plugin-public.plugininitializercontext.config.md)
+
+## PluginInitializerContext.config property
+
+Signature:
+
+```typescript
+readonly config: {
+ get: () => T;
+ };
+```
diff --git a/docs/development/core/public/kibana-plugin-public.plugininitializercontext.env.md b/docs/development/core/public/kibana-plugin-public.plugininitializercontext.env.md
index 92f36ab64a1d6..eff61de2dadb1 100644
--- a/docs/development/core/public/kibana-plugin-public.plugininitializercontext.env.md
+++ b/docs/development/core/public/kibana-plugin-public.plugininitializercontext.env.md
@@ -1,14 +1,14 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [PluginInitializerContext](./kibana-plugin-public.plugininitializercontext.md) > [env](./kibana-plugin-public.plugininitializercontext.env.md)
-
-## PluginInitializerContext.env property
-
-Signature:
-
-```typescript
-readonly env: {
- mode: Readonly;
- packageInfo: Readonly;
- };
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [PluginInitializerContext](./kibana-plugin-public.plugininitializercontext.md) > [env](./kibana-plugin-public.plugininitializercontext.env.md)
+
+## PluginInitializerContext.env property
+
+Signature:
+
+```typescript
+readonly env: {
+ mode: Readonly;
+ packageInfo: Readonly;
+ };
+```
diff --git a/docs/development/core/public/kibana-plugin-public.plugininitializercontext.md b/docs/development/core/public/kibana-plugin-public.plugininitializercontext.md
index 64eaabb28646d..78c5a88f89c8e 100644
--- a/docs/development/core/public/kibana-plugin-public.plugininitializercontext.md
+++ b/docs/development/core/public/kibana-plugin-public.plugininitializercontext.md
@@ -1,22 +1,22 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [PluginInitializerContext](./kibana-plugin-public.plugininitializercontext.md)
-
-## PluginInitializerContext interface
-
-The available core services passed to a `PluginInitializer`
-
-Signature:
-
-```typescript
-export interface PluginInitializerContext
-```
-
-## Properties
-
-| Property | Type | Description |
-| --- | --- | --- |
-| [config](./kibana-plugin-public.plugininitializercontext.config.md) | {
get: <T extends object = ConfigSchema>() => T;
}
| |
-| [env](./kibana-plugin-public.plugininitializercontext.env.md) | {
mode: Readonly<EnvironmentMode>;
packageInfo: Readonly<PackageInfo>;
}
| |
-| [opaqueId](./kibana-plugin-public.plugininitializercontext.opaqueid.md) | PluginOpaqueId
| A symbol used to identify this plugin in the system. Needed when registering handlers or context providers. |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [PluginInitializerContext](./kibana-plugin-public.plugininitializercontext.md)
+
+## PluginInitializerContext interface
+
+The available core services passed to a `PluginInitializer`
+
+Signature:
+
+```typescript
+export interface PluginInitializerContext
+```
+
+## Properties
+
+| Property | Type | Description |
+| --- | --- | --- |
+| [config](./kibana-plugin-public.plugininitializercontext.config.md) | {
get: <T extends object = ConfigSchema>() => T;
}
| |
+| [env](./kibana-plugin-public.plugininitializercontext.env.md) | {
mode: Readonly<EnvironmentMode>;
packageInfo: Readonly<PackageInfo>;
}
| |
+| [opaqueId](./kibana-plugin-public.plugininitializercontext.opaqueid.md) | PluginOpaqueId
| A symbol used to identify this plugin in the system. Needed when registering handlers or context providers. |
+
diff --git a/docs/development/core/public/kibana-plugin-public.plugininitializercontext.opaqueid.md b/docs/development/core/public/kibana-plugin-public.plugininitializercontext.opaqueid.md
index 10e6b79be4959..5a77dc154f1cc 100644
--- a/docs/development/core/public/kibana-plugin-public.plugininitializercontext.opaqueid.md
+++ b/docs/development/core/public/kibana-plugin-public.plugininitializercontext.opaqueid.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [PluginInitializerContext](./kibana-plugin-public.plugininitializercontext.md) > [opaqueId](./kibana-plugin-public.plugininitializercontext.opaqueid.md)
-
-## PluginInitializerContext.opaqueId property
-
-A symbol used to identify this plugin in the system. Needed when registering handlers or context providers.
-
-Signature:
-
-```typescript
-readonly opaqueId: PluginOpaqueId;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [PluginInitializerContext](./kibana-plugin-public.plugininitializercontext.md) > [opaqueId](./kibana-plugin-public.plugininitializercontext.opaqueid.md)
+
+## PluginInitializerContext.opaqueId property
+
+A symbol used to identify this plugin in the system. Needed when registering handlers or context providers.
+
+Signature:
+
+```typescript
+readonly opaqueId: PluginOpaqueId;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.pluginopaqueid.md b/docs/development/core/public/kibana-plugin-public.pluginopaqueid.md
index 8a8202ae1334e..54aa8c60f9f6f 100644
--- a/docs/development/core/public/kibana-plugin-public.pluginopaqueid.md
+++ b/docs/development/core/public/kibana-plugin-public.pluginopaqueid.md
@@ -1,12 +1,12 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [PluginOpaqueId](./kibana-plugin-public.pluginopaqueid.md)
-
-## PluginOpaqueId type
-
-
-Signature:
-
-```typescript
-export declare type PluginOpaqueId = symbol;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [PluginOpaqueId](./kibana-plugin-public.pluginopaqueid.md)
+
+## PluginOpaqueId type
+
+
+Signature:
+
+```typescript
+export declare type PluginOpaqueId = symbol;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.recursivereadonly.md b/docs/development/core/public/kibana-plugin-public.recursivereadonly.md
index fe048494063a0..8fe63c4ed838e 100644
--- a/docs/development/core/public/kibana-plugin-public.recursivereadonly.md
+++ b/docs/development/core/public/kibana-plugin-public.recursivereadonly.md
@@ -1,14 +1,14 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [RecursiveReadonly](./kibana-plugin-public.recursivereadonly.md)
-
-## RecursiveReadonly type
-
-
-Signature:
-
-```typescript
-export declare type RecursiveReadonly = T extends (...args: any[]) => any ? T : T extends any[] ? RecursiveReadonlyArray : T extends object ? Readonly<{
- [K in keyof T]: RecursiveReadonly;
-}> : T;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [RecursiveReadonly](./kibana-plugin-public.recursivereadonly.md)
+
+## RecursiveReadonly type
+
+
+Signature:
+
+```typescript
+export declare type RecursiveReadonly = T extends (...args: any[]) => any ? T : T extends any[] ? RecursiveReadonlyArray : T extends object ? Readonly<{
+ [K in keyof T]: RecursiveReadonly;
+}> : T;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.savedobject.attributes.md b/docs/development/core/public/kibana-plugin-public.savedobject.attributes.md
index 0ec57d679920c..b619418da8432 100644
--- a/docs/development/core/public/kibana-plugin-public.savedobject.attributes.md
+++ b/docs/development/core/public/kibana-plugin-public.savedobject.attributes.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObject](./kibana-plugin-public.savedobject.md) > [attributes](./kibana-plugin-public.savedobject.attributes.md)
-
-## SavedObject.attributes property
-
-The data for a Saved Object is stored as an object in the `attributes` property.
-
-Signature:
-
-```typescript
-attributes: T;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObject](./kibana-plugin-public.savedobject.md) > [attributes](./kibana-plugin-public.savedobject.attributes.md)
+
+## SavedObject.attributes property
+
+The data for a Saved Object is stored as an object in the `attributes` property.
+
+Signature:
+
+```typescript
+attributes: T;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.savedobject.error.md b/docs/development/core/public/kibana-plugin-public.savedobject.error.md
index 1d00863ef6ecf..a085da04d0c71 100644
--- a/docs/development/core/public/kibana-plugin-public.savedobject.error.md
+++ b/docs/development/core/public/kibana-plugin-public.savedobject.error.md
@@ -1,14 +1,14 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObject](./kibana-plugin-public.savedobject.md) > [error](./kibana-plugin-public.savedobject.error.md)
-
-## SavedObject.error property
-
-Signature:
-
-```typescript
-error?: {
- message: string;
- statusCode: number;
- };
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObject](./kibana-plugin-public.savedobject.md) > [error](./kibana-plugin-public.savedobject.error.md)
+
+## SavedObject.error property
+
+Signature:
+
+```typescript
+error?: {
+ message: string;
+ statusCode: number;
+ };
+```
diff --git a/docs/development/core/public/kibana-plugin-public.savedobject.id.md b/docs/development/core/public/kibana-plugin-public.savedobject.id.md
index 7b54e0a7c2a74..1e2fc6e8fbc64 100644
--- a/docs/development/core/public/kibana-plugin-public.savedobject.id.md
+++ b/docs/development/core/public/kibana-plugin-public.savedobject.id.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObject](./kibana-plugin-public.savedobject.md) > [id](./kibana-plugin-public.savedobject.id.md)
-
-## SavedObject.id property
-
-The ID of this Saved Object, guaranteed to be unique for all objects of the same `type`
-
-Signature:
-
-```typescript
-id: string;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObject](./kibana-plugin-public.savedobject.md) > [id](./kibana-plugin-public.savedobject.id.md)
+
+## SavedObject.id property
+
+The ID of this Saved Object, guaranteed to be unique for all objects of the same `type`
+
+Signature:
+
+```typescript
+id: string;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.savedobject.md b/docs/development/core/public/kibana-plugin-public.savedobject.md
index 00260c62dd934..b1bb3e267bf0e 100644
--- a/docs/development/core/public/kibana-plugin-public.savedobject.md
+++ b/docs/development/core/public/kibana-plugin-public.savedobject.md
@@ -1,26 +1,26 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObject](./kibana-plugin-public.savedobject.md)
-
-## SavedObject interface
-
-
-Signature:
-
-```typescript
-export interface SavedObject
-```
-
-## Properties
-
-| Property | Type | Description |
-| --- | --- | --- |
-| [attributes](./kibana-plugin-public.savedobject.attributes.md) | T
| The data for a Saved Object is stored as an object in the attributes
property. |
-| [error](./kibana-plugin-public.savedobject.error.md) | {
message: string;
statusCode: number;
}
| |
-| [id](./kibana-plugin-public.savedobject.id.md) | string
| The ID of this Saved Object, guaranteed to be unique for all objects of the same type
|
-| [migrationVersion](./kibana-plugin-public.savedobject.migrationversion.md) | SavedObjectsMigrationVersion
| Information about the migrations that have been applied to this SavedObject. When Kibana starts up, KibanaMigrator detects outdated documents and migrates them based on this value. For each migration that has been applied, the plugin's name is used as a key and the latest migration version as the value. |
-| [references](./kibana-plugin-public.savedobject.references.md) | SavedObjectReference[]
| A reference to another saved object. |
-| [type](./kibana-plugin-public.savedobject.type.md) | string
| The type of Saved Object. Each plugin can define it's own custom Saved Object types. |
-| [updated\_at](./kibana-plugin-public.savedobject.updated_at.md) | string
| Timestamp of the last time this document had been updated. |
-| [version](./kibana-plugin-public.savedobject.version.md) | string
| An opaque version number which changes on each successful write operation. Can be used for implementing optimistic concurrency control. |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObject](./kibana-plugin-public.savedobject.md)
+
+## SavedObject interface
+
+
+Signature:
+
+```typescript
+export interface SavedObject
+```
+
+## Properties
+
+| Property | Type | Description |
+| --- | --- | --- |
+| [attributes](./kibana-plugin-public.savedobject.attributes.md) | T
| The data for a Saved Object is stored as an object in the attributes
property. |
+| [error](./kibana-plugin-public.savedobject.error.md) | {
message: string;
statusCode: number;
}
| |
+| [id](./kibana-plugin-public.savedobject.id.md) | string
| The ID of this Saved Object, guaranteed to be unique for all objects of the same type
|
+| [migrationVersion](./kibana-plugin-public.savedobject.migrationversion.md) | SavedObjectsMigrationVersion
| Information about the migrations that have been applied to this SavedObject. When Kibana starts up, KibanaMigrator detects outdated documents and migrates them based on this value. For each migration that has been applied, the plugin's name is used as a key and the latest migration version as the value. |
+| [references](./kibana-plugin-public.savedobject.references.md) | SavedObjectReference[]
| A reference to another saved object. |
+| [type](./kibana-plugin-public.savedobject.type.md) | string
| The type of Saved Object. Each plugin can define it's own custom Saved Object types. |
+| [updated\_at](./kibana-plugin-public.savedobject.updated_at.md) | string
| Timestamp of the last time this document had been updated. |
+| [version](./kibana-plugin-public.savedobject.version.md) | string
| An opaque version number which changes on each successful write operation. Can be used for implementing optimistic concurrency control. |
+
diff --git a/docs/development/core/public/kibana-plugin-public.savedobject.migrationversion.md b/docs/development/core/public/kibana-plugin-public.savedobject.migrationversion.md
index d07b664f11ff2..98c274df3473c 100644
--- a/docs/development/core/public/kibana-plugin-public.savedobject.migrationversion.md
+++ b/docs/development/core/public/kibana-plugin-public.savedobject.migrationversion.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObject](./kibana-plugin-public.savedobject.md) > [migrationVersion](./kibana-plugin-public.savedobject.migrationversion.md)
-
-## SavedObject.migrationVersion property
-
-Information about the migrations that have been applied to this SavedObject. When Kibana starts up, KibanaMigrator detects outdated documents and migrates them based on this value. For each migration that has been applied, the plugin's name is used as a key and the latest migration version as the value.
-
-Signature:
-
-```typescript
-migrationVersion?: SavedObjectsMigrationVersion;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObject](./kibana-plugin-public.savedobject.md) > [migrationVersion](./kibana-plugin-public.savedobject.migrationversion.md)
+
+## SavedObject.migrationVersion property
+
+Information about the migrations that have been applied to this SavedObject. When Kibana starts up, KibanaMigrator detects outdated documents and migrates them based on this value. For each migration that has been applied, the plugin's name is used as a key and the latest migration version as the value.
+
+Signature:
+
+```typescript
+migrationVersion?: SavedObjectsMigrationVersion;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.savedobject.references.md b/docs/development/core/public/kibana-plugin-public.savedobject.references.md
index 3c3ecdd283b5f..055275fcb48a7 100644
--- a/docs/development/core/public/kibana-plugin-public.savedobject.references.md
+++ b/docs/development/core/public/kibana-plugin-public.savedobject.references.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObject](./kibana-plugin-public.savedobject.md) > [references](./kibana-plugin-public.savedobject.references.md)
-
-## SavedObject.references property
-
-A reference to another saved object.
-
-Signature:
-
-```typescript
-references: SavedObjectReference[];
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObject](./kibana-plugin-public.savedobject.md) > [references](./kibana-plugin-public.savedobject.references.md)
+
+## SavedObject.references property
+
+A reference to another saved object.
+
+Signature:
+
+```typescript
+references: SavedObjectReference[];
+```
diff --git a/docs/development/core/public/kibana-plugin-public.savedobject.type.md b/docs/development/core/public/kibana-plugin-public.savedobject.type.md
index 2bce5b8a15634..0f7096ec143f7 100644
--- a/docs/development/core/public/kibana-plugin-public.savedobject.type.md
+++ b/docs/development/core/public/kibana-plugin-public.savedobject.type.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObject](./kibana-plugin-public.savedobject.md) > [type](./kibana-plugin-public.savedobject.type.md)
-
-## SavedObject.type property
-
-The type of Saved Object. Each plugin can define it's own custom Saved Object types.
-
-Signature:
-
-```typescript
-type: string;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObject](./kibana-plugin-public.savedobject.md) > [type](./kibana-plugin-public.savedobject.type.md)
+
+## SavedObject.type property
+
+The type of Saved Object. Each plugin can define it's own custom Saved Object types.
+
+Signature:
+
+```typescript
+type: string;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.savedobject.updated_at.md b/docs/development/core/public/kibana-plugin-public.savedobject.updated_at.md
index 861128c69ae2a..0bea6d602a9a0 100644
--- a/docs/development/core/public/kibana-plugin-public.savedobject.updated_at.md
+++ b/docs/development/core/public/kibana-plugin-public.savedobject.updated_at.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObject](./kibana-plugin-public.savedobject.md) > [updated\_at](./kibana-plugin-public.savedobject.updated_at.md)
-
-## SavedObject.updated\_at property
-
-Timestamp of the last time this document had been updated.
-
-Signature:
-
-```typescript
-updated_at?: string;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObject](./kibana-plugin-public.savedobject.md) > [updated\_at](./kibana-plugin-public.savedobject.updated_at.md)
+
+## SavedObject.updated\_at property
+
+Timestamp of the last time this document had been updated.
+
+Signature:
+
+```typescript
+updated_at?: string;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.savedobject.version.md b/docs/development/core/public/kibana-plugin-public.savedobject.version.md
index 26356f444f2ca..572d7f7305756 100644
--- a/docs/development/core/public/kibana-plugin-public.savedobject.version.md
+++ b/docs/development/core/public/kibana-plugin-public.savedobject.version.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObject](./kibana-plugin-public.savedobject.md) > [version](./kibana-plugin-public.savedobject.version.md)
-
-## SavedObject.version property
-
-An opaque version number which changes on each successful write operation. Can be used for implementing optimistic concurrency control.
-
-Signature:
-
-```typescript
-version?: string;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObject](./kibana-plugin-public.savedobject.md) > [version](./kibana-plugin-public.savedobject.version.md)
+
+## SavedObject.version property
+
+An opaque version number which changes on each successful write operation. Can be used for implementing optimistic concurrency control.
+
+Signature:
+
+```typescript
+version?: string;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.savedobjectattribute.md b/docs/development/core/public/kibana-plugin-public.savedobjectattribute.md
index 5ce6a60f76c79..00f8e7216d445 100644
--- a/docs/development/core/public/kibana-plugin-public.savedobjectattribute.md
+++ b/docs/development/core/public/kibana-plugin-public.savedobjectattribute.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObjectAttribute](./kibana-plugin-public.savedobjectattribute.md)
-
-## SavedObjectAttribute type
-
-Type definition for a Saved Object attribute value
-
-Signature:
-
-```typescript
-export declare type SavedObjectAttribute = SavedObjectAttributeSingle | SavedObjectAttributeSingle[];
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObjectAttribute](./kibana-plugin-public.savedobjectattribute.md)
+
+## SavedObjectAttribute type
+
+Type definition for a Saved Object attribute value
+
+Signature:
+
+```typescript
+export declare type SavedObjectAttribute = SavedObjectAttributeSingle | SavedObjectAttributeSingle[];
+```
diff --git a/docs/development/core/public/kibana-plugin-public.savedobjectattributes.md b/docs/development/core/public/kibana-plugin-public.savedobjectattributes.md
index 39c02216f4827..54cc3edeb5224 100644
--- a/docs/development/core/public/kibana-plugin-public.savedobjectattributes.md
+++ b/docs/development/core/public/kibana-plugin-public.savedobjectattributes.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObjectAttributes](./kibana-plugin-public.savedobjectattributes.md)
-
-## SavedObjectAttributes interface
-
-The data for a Saved Object is stored as an object in the `attributes` property.
-
-Signature:
-
-```typescript
-export interface SavedObjectAttributes
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObjectAttributes](./kibana-plugin-public.savedobjectattributes.md)
+
+## SavedObjectAttributes interface
+
+The data for a Saved Object is stored as an object in the `attributes` property.
+
+Signature:
+
+```typescript
+export interface SavedObjectAttributes
+```
diff --git a/docs/development/core/public/kibana-plugin-public.savedobjectattributesingle.md b/docs/development/core/public/kibana-plugin-public.savedobjectattributesingle.md
index 3f2d70baa64e6..a72538a5ee4a9 100644
--- a/docs/development/core/public/kibana-plugin-public.savedobjectattributesingle.md
+++ b/docs/development/core/public/kibana-plugin-public.savedobjectattributesingle.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObjectAttributeSingle](./kibana-plugin-public.savedobjectattributesingle.md)
-
-## SavedObjectAttributeSingle type
-
-Don't use this type, it's simply a helper type for [SavedObjectAttribute](./kibana-plugin-public.savedobjectattribute.md)
-
-Signature:
-
-```typescript
-export declare type SavedObjectAttributeSingle = string | number | boolean | null | undefined | SavedObjectAttributes;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObjectAttributeSingle](./kibana-plugin-public.savedobjectattributesingle.md)
+
+## SavedObjectAttributeSingle type
+
+Don't use this type, it's simply a helper type for [SavedObjectAttribute](./kibana-plugin-public.savedobjectattribute.md)
+
+Signature:
+
+```typescript
+export declare type SavedObjectAttributeSingle = string | number | boolean | null | undefined | SavedObjectAttributes;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.savedobjectreference.id.md b/docs/development/core/public/kibana-plugin-public.savedobjectreference.id.md
index 27b820607f860..1bc1f35641df0 100644
--- a/docs/development/core/public/kibana-plugin-public.savedobjectreference.id.md
+++ b/docs/development/core/public/kibana-plugin-public.savedobjectreference.id.md
@@ -1,11 +1,11 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObjectReference](./kibana-plugin-public.savedobjectreference.md) > [id](./kibana-plugin-public.savedobjectreference.id.md)
-
-## SavedObjectReference.id property
-
-Signature:
-
-```typescript
-id: string;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObjectReference](./kibana-plugin-public.savedobjectreference.md) > [id](./kibana-plugin-public.savedobjectreference.id.md)
+
+## SavedObjectReference.id property
+
+Signature:
+
+```typescript
+id: string;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.savedobjectreference.md b/docs/development/core/public/kibana-plugin-public.savedobjectreference.md
index 7ae05e24a5d89..f6c0d3676f64f 100644
--- a/docs/development/core/public/kibana-plugin-public.savedobjectreference.md
+++ b/docs/development/core/public/kibana-plugin-public.savedobjectreference.md
@@ -1,22 +1,22 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObjectReference](./kibana-plugin-public.savedobjectreference.md)
-
-## SavedObjectReference interface
-
-A reference to another saved object.
-
-Signature:
-
-```typescript
-export interface SavedObjectReference
-```
-
-## Properties
-
-| Property | Type | Description |
-| --- | --- | --- |
-| [id](./kibana-plugin-public.savedobjectreference.id.md) | string
| |
-| [name](./kibana-plugin-public.savedobjectreference.name.md) | string
| |
-| [type](./kibana-plugin-public.savedobjectreference.type.md) | string
| |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObjectReference](./kibana-plugin-public.savedobjectreference.md)
+
+## SavedObjectReference interface
+
+A reference to another saved object.
+
+Signature:
+
+```typescript
+export interface SavedObjectReference
+```
+
+## Properties
+
+| Property | Type | Description |
+| --- | --- | --- |
+| [id](./kibana-plugin-public.savedobjectreference.id.md) | string
| |
+| [name](./kibana-plugin-public.savedobjectreference.name.md) | string
| |
+| [type](./kibana-plugin-public.savedobjectreference.type.md) | string
| |
+
diff --git a/docs/development/core/public/kibana-plugin-public.savedobjectreference.name.md b/docs/development/core/public/kibana-plugin-public.savedobjectreference.name.md
index 104a8c313b528..cd39686b09ad7 100644
--- a/docs/development/core/public/kibana-plugin-public.savedobjectreference.name.md
+++ b/docs/development/core/public/kibana-plugin-public.savedobjectreference.name.md
@@ -1,11 +1,11 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObjectReference](./kibana-plugin-public.savedobjectreference.md) > [name](./kibana-plugin-public.savedobjectreference.name.md)
-
-## SavedObjectReference.name property
-
-Signature:
-
-```typescript
-name: string;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObjectReference](./kibana-plugin-public.savedobjectreference.md) > [name](./kibana-plugin-public.savedobjectreference.name.md)
+
+## SavedObjectReference.name property
+
+Signature:
+
+```typescript
+name: string;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.savedobjectreference.type.md b/docs/development/core/public/kibana-plugin-public.savedobjectreference.type.md
index 5b55a18becab7..deba8fe324843 100644
--- a/docs/development/core/public/kibana-plugin-public.savedobjectreference.type.md
+++ b/docs/development/core/public/kibana-plugin-public.savedobjectreference.type.md
@@ -1,11 +1,11 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObjectReference](./kibana-plugin-public.savedobjectreference.md) > [type](./kibana-plugin-public.savedobjectreference.type.md)
-
-## SavedObjectReference.type property
-
-Signature:
-
-```typescript
-type: string;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObjectReference](./kibana-plugin-public.savedobjectreference.md) > [type](./kibana-plugin-public.savedobjectreference.type.md)
+
+## SavedObjectReference.type property
+
+Signature:
+
+```typescript
+type: string;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.savedobjectsbaseoptions.md b/docs/development/core/public/kibana-plugin-public.savedobjectsbaseoptions.md
index 00ea2fd158291..1fc64405d7702 100644
--- a/docs/development/core/public/kibana-plugin-public.savedobjectsbaseoptions.md
+++ b/docs/development/core/public/kibana-plugin-public.savedobjectsbaseoptions.md
@@ -1,19 +1,19 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObjectsBaseOptions](./kibana-plugin-public.savedobjectsbaseoptions.md)
-
-## SavedObjectsBaseOptions interface
-
-
-Signature:
-
-```typescript
-export interface SavedObjectsBaseOptions
-```
-
-## Properties
-
-| Property | Type | Description |
-| --- | --- | --- |
-| [namespace](./kibana-plugin-public.savedobjectsbaseoptions.namespace.md) | string
| Specify the namespace for this operation |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObjectsBaseOptions](./kibana-plugin-public.savedobjectsbaseoptions.md)
+
+## SavedObjectsBaseOptions interface
+
+
+Signature:
+
+```typescript
+export interface SavedObjectsBaseOptions
+```
+
+## Properties
+
+| Property | Type | Description |
+| --- | --- | --- |
+| [namespace](./kibana-plugin-public.savedobjectsbaseoptions.namespace.md) | string
| Specify the namespace for this operation |
+
diff --git a/docs/development/core/public/kibana-plugin-public.savedobjectsbaseoptions.namespace.md b/docs/development/core/public/kibana-plugin-public.savedobjectsbaseoptions.namespace.md
index fb8d0d957a275..a30b6e9963a74 100644
--- a/docs/development/core/public/kibana-plugin-public.savedobjectsbaseoptions.namespace.md
+++ b/docs/development/core/public/kibana-plugin-public.savedobjectsbaseoptions.namespace.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObjectsBaseOptions](./kibana-plugin-public.savedobjectsbaseoptions.md) > [namespace](./kibana-plugin-public.savedobjectsbaseoptions.namespace.md)
-
-## SavedObjectsBaseOptions.namespace property
-
-Specify the namespace for this operation
-
-Signature:
-
-```typescript
-namespace?: string;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObjectsBaseOptions](./kibana-plugin-public.savedobjectsbaseoptions.md) > [namespace](./kibana-plugin-public.savedobjectsbaseoptions.namespace.md)
+
+## SavedObjectsBaseOptions.namespace property
+
+Specify the namespace for this operation
+
+Signature:
+
+```typescript
+namespace?: string;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.savedobjectsbatchresponse.md b/docs/development/core/public/kibana-plugin-public.savedobjectsbatchresponse.md
index 2ccddb8f71bd6..5a08b3f97f429 100644
--- a/docs/development/core/public/kibana-plugin-public.savedobjectsbatchresponse.md
+++ b/docs/development/core/public/kibana-plugin-public.savedobjectsbatchresponse.md
@@ -1,19 +1,19 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObjectsBatchResponse](./kibana-plugin-public.savedobjectsbatchresponse.md)
-
-## SavedObjectsBatchResponse interface
-
-
-Signature:
-
-```typescript
-export interface SavedObjectsBatchResponse
-```
-
-## Properties
-
-| Property | Type | Description |
-| --- | --- | --- |
-| [savedObjects](./kibana-plugin-public.savedobjectsbatchresponse.savedobjects.md) | Array<SimpleSavedObject<T>>
| |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObjectsBatchResponse](./kibana-plugin-public.savedobjectsbatchresponse.md)
+
+## SavedObjectsBatchResponse interface
+
+
+Signature:
+
+```typescript
+export interface SavedObjectsBatchResponse
+```
+
+## Properties
+
+| Property | Type | Description |
+| --- | --- | --- |
+| [savedObjects](./kibana-plugin-public.savedobjectsbatchresponse.savedobjects.md) | Array<SimpleSavedObject<T>>
| |
+
diff --git a/docs/development/core/public/kibana-plugin-public.savedobjectsbatchresponse.savedobjects.md b/docs/development/core/public/kibana-plugin-public.savedobjectsbatchresponse.savedobjects.md
index f83b6268431c7..7b8e1acb0d9de 100644
--- a/docs/development/core/public/kibana-plugin-public.savedobjectsbatchresponse.savedobjects.md
+++ b/docs/development/core/public/kibana-plugin-public.savedobjectsbatchresponse.savedobjects.md
@@ -1,11 +1,11 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObjectsBatchResponse](./kibana-plugin-public.savedobjectsbatchresponse.md) > [savedObjects](./kibana-plugin-public.savedobjectsbatchresponse.savedobjects.md)
-
-## SavedObjectsBatchResponse.savedObjects property
-
-Signature:
-
-```typescript
-savedObjects: Array>;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObjectsBatchResponse](./kibana-plugin-public.savedobjectsbatchresponse.md) > [savedObjects](./kibana-plugin-public.savedobjectsbatchresponse.savedobjects.md)
+
+## SavedObjectsBatchResponse.savedObjects property
+
+Signature:
+
+```typescript
+savedObjects: Array>;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.savedobjectsbulkcreateobject.attributes.md b/docs/development/core/public/kibana-plugin-public.savedobjectsbulkcreateobject.attributes.md
index e3f7e0d676087..f078ec35aa816 100644
--- a/docs/development/core/public/kibana-plugin-public.savedobjectsbulkcreateobject.attributes.md
+++ b/docs/development/core/public/kibana-plugin-public.savedobjectsbulkcreateobject.attributes.md
@@ -1,11 +1,11 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObjectsBulkCreateObject](./kibana-plugin-public.savedobjectsbulkcreateobject.md) > [attributes](./kibana-plugin-public.savedobjectsbulkcreateobject.attributes.md)
-
-## SavedObjectsBulkCreateObject.attributes property
-
-Signature:
-
-```typescript
-attributes: T;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObjectsBulkCreateObject](./kibana-plugin-public.savedobjectsbulkcreateobject.md) > [attributes](./kibana-plugin-public.savedobjectsbulkcreateobject.attributes.md)
+
+## SavedObjectsBulkCreateObject.attributes property
+
+Signature:
+
+```typescript
+attributes: T;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.savedobjectsbulkcreateobject.md b/docs/development/core/public/kibana-plugin-public.savedobjectsbulkcreateobject.md
index 8f95c0533dded..c479e9f9f3e3f 100644
--- a/docs/development/core/public/kibana-plugin-public.savedobjectsbulkcreateobject.md
+++ b/docs/development/core/public/kibana-plugin-public.savedobjectsbulkcreateobject.md
@@ -1,19 +1,19 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObjectsBulkCreateObject](./kibana-plugin-public.savedobjectsbulkcreateobject.md)
-
-## SavedObjectsBulkCreateObject interface
-
-Signature:
-
-```typescript
-export interface SavedObjectsBulkCreateObject extends SavedObjectsCreateOptions
-```
-
-## Properties
-
-| Property | Type | Description |
-| --- | --- | --- |
-| [attributes](./kibana-plugin-public.savedobjectsbulkcreateobject.attributes.md) | T
| |
-| [type](./kibana-plugin-public.savedobjectsbulkcreateobject.type.md) | string
| |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObjectsBulkCreateObject](./kibana-plugin-public.savedobjectsbulkcreateobject.md)
+
+## SavedObjectsBulkCreateObject interface
+
+Signature:
+
+```typescript
+export interface SavedObjectsBulkCreateObject extends SavedObjectsCreateOptions
+```
+
+## Properties
+
+| Property | Type | Description |
+| --- | --- | --- |
+| [attributes](./kibana-plugin-public.savedobjectsbulkcreateobject.attributes.md) | T
| |
+| [type](./kibana-plugin-public.savedobjectsbulkcreateobject.type.md) | string
| |
+
diff --git a/docs/development/core/public/kibana-plugin-public.savedobjectsbulkcreateobject.type.md b/docs/development/core/public/kibana-plugin-public.savedobjectsbulkcreateobject.type.md
index 37497b9178782..3c29e99fa30c3 100644
--- a/docs/development/core/public/kibana-plugin-public.savedobjectsbulkcreateobject.type.md
+++ b/docs/development/core/public/kibana-plugin-public.savedobjectsbulkcreateobject.type.md
@@ -1,11 +1,11 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObjectsBulkCreateObject](./kibana-plugin-public.savedobjectsbulkcreateobject.md) > [type](./kibana-plugin-public.savedobjectsbulkcreateobject.type.md)
-
-## SavedObjectsBulkCreateObject.type property
-
-Signature:
-
-```typescript
-type: string;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObjectsBulkCreateObject](./kibana-plugin-public.savedobjectsbulkcreateobject.md) > [type](./kibana-plugin-public.savedobjectsbulkcreateobject.type.md)
+
+## SavedObjectsBulkCreateObject.type property
+
+Signature:
+
+```typescript
+type: string;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.savedobjectsbulkcreateoptions.md b/docs/development/core/public/kibana-plugin-public.savedobjectsbulkcreateoptions.md
index 697084d8eee38..198968f93f7e4 100644
--- a/docs/development/core/public/kibana-plugin-public.savedobjectsbulkcreateoptions.md
+++ b/docs/development/core/public/kibana-plugin-public.savedobjectsbulkcreateoptions.md
@@ -1,19 +1,19 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObjectsBulkCreateOptions](./kibana-plugin-public.savedobjectsbulkcreateoptions.md)
-
-## SavedObjectsBulkCreateOptions interface
-
-
-Signature:
-
-```typescript
-export interface SavedObjectsBulkCreateOptions
-```
-
-## Properties
-
-| Property | Type | Description |
-| --- | --- | --- |
-| [overwrite](./kibana-plugin-public.savedobjectsbulkcreateoptions.overwrite.md) | boolean
| If a document with the given id
already exists, overwrite it's contents (default=false). |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObjectsBulkCreateOptions](./kibana-plugin-public.savedobjectsbulkcreateoptions.md)
+
+## SavedObjectsBulkCreateOptions interface
+
+
+Signature:
+
+```typescript
+export interface SavedObjectsBulkCreateOptions
+```
+
+## Properties
+
+| Property | Type | Description |
+| --- | --- | --- |
+| [overwrite](./kibana-plugin-public.savedobjectsbulkcreateoptions.overwrite.md) | boolean
| If a document with the given id
already exists, overwrite it's contents (default=false). |
+
diff --git a/docs/development/core/public/kibana-plugin-public.savedobjectsbulkcreateoptions.overwrite.md b/docs/development/core/public/kibana-plugin-public.savedobjectsbulkcreateoptions.overwrite.md
index e3b425da892b2..0acc51bfdb76b 100644
--- a/docs/development/core/public/kibana-plugin-public.savedobjectsbulkcreateoptions.overwrite.md
+++ b/docs/development/core/public/kibana-plugin-public.savedobjectsbulkcreateoptions.overwrite.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObjectsBulkCreateOptions](./kibana-plugin-public.savedobjectsbulkcreateoptions.md) > [overwrite](./kibana-plugin-public.savedobjectsbulkcreateoptions.overwrite.md)
-
-## SavedObjectsBulkCreateOptions.overwrite property
-
-If a document with the given `id` already exists, overwrite it's contents (default=false).
-
-Signature:
-
-```typescript
-overwrite?: boolean;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObjectsBulkCreateOptions](./kibana-plugin-public.savedobjectsbulkcreateoptions.md) > [overwrite](./kibana-plugin-public.savedobjectsbulkcreateoptions.overwrite.md)
+
+## SavedObjectsBulkCreateOptions.overwrite property
+
+If a document with the given `id` already exists, overwrite it's contents (default=false).
+
+Signature:
+
+```typescript
+overwrite?: boolean;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.savedobjectsbulkupdateobject.attributes.md b/docs/development/core/public/kibana-plugin-public.savedobjectsbulkupdateobject.attributes.md
index 235c896532beb..9dc333d005e8e 100644
--- a/docs/development/core/public/kibana-plugin-public.savedobjectsbulkupdateobject.attributes.md
+++ b/docs/development/core/public/kibana-plugin-public.savedobjectsbulkupdateobject.attributes.md
@@ -1,11 +1,11 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObjectsBulkUpdateObject](./kibana-plugin-public.savedobjectsbulkupdateobject.md) > [attributes](./kibana-plugin-public.savedobjectsbulkupdateobject.attributes.md)
-
-## SavedObjectsBulkUpdateObject.attributes property
-
-Signature:
-
-```typescript
-attributes: T;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObjectsBulkUpdateObject](./kibana-plugin-public.savedobjectsbulkupdateobject.md) > [attributes](./kibana-plugin-public.savedobjectsbulkupdateobject.attributes.md)
+
+## SavedObjectsBulkUpdateObject.attributes property
+
+Signature:
+
+```typescript
+attributes: T;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.savedobjectsbulkupdateobject.id.md b/docs/development/core/public/kibana-plugin-public.savedobjectsbulkupdateobject.id.md
index 8fbece1de7aa1..4f253769fc912 100644
--- a/docs/development/core/public/kibana-plugin-public.savedobjectsbulkupdateobject.id.md
+++ b/docs/development/core/public/kibana-plugin-public.savedobjectsbulkupdateobject.id.md
@@ -1,11 +1,11 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObjectsBulkUpdateObject](./kibana-plugin-public.savedobjectsbulkupdateobject.md) > [id](./kibana-plugin-public.savedobjectsbulkupdateobject.id.md)
-
-## SavedObjectsBulkUpdateObject.id property
-
-Signature:
-
-```typescript
-id: string;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObjectsBulkUpdateObject](./kibana-plugin-public.savedobjectsbulkupdateobject.md) > [id](./kibana-plugin-public.savedobjectsbulkupdateobject.id.md)
+
+## SavedObjectsBulkUpdateObject.id property
+
+Signature:
+
+```typescript
+id: string;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.savedobjectsbulkupdateobject.md b/docs/development/core/public/kibana-plugin-public.savedobjectsbulkupdateobject.md
index 91688c01df34c..ca0eabb265901 100644
--- a/docs/development/core/public/kibana-plugin-public.savedobjectsbulkupdateobject.md
+++ b/docs/development/core/public/kibana-plugin-public.savedobjectsbulkupdateobject.md
@@ -1,23 +1,23 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObjectsBulkUpdateObject](./kibana-plugin-public.savedobjectsbulkupdateobject.md)
-
-## SavedObjectsBulkUpdateObject interface
-
-
-Signature:
-
-```typescript
-export interface SavedObjectsBulkUpdateObject
-```
-
-## Properties
-
-| Property | Type | Description |
-| --- | --- | --- |
-| [attributes](./kibana-plugin-public.savedobjectsbulkupdateobject.attributes.md) | T
| |
-| [id](./kibana-plugin-public.savedobjectsbulkupdateobject.id.md) | string
| |
-| [references](./kibana-plugin-public.savedobjectsbulkupdateobject.references.md) | SavedObjectReference[]
| |
-| [type](./kibana-plugin-public.savedobjectsbulkupdateobject.type.md) | string
| |
-| [version](./kibana-plugin-public.savedobjectsbulkupdateobject.version.md) | string
| |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObjectsBulkUpdateObject](./kibana-plugin-public.savedobjectsbulkupdateobject.md)
+
+## SavedObjectsBulkUpdateObject interface
+
+
+Signature:
+
+```typescript
+export interface SavedObjectsBulkUpdateObject
+```
+
+## Properties
+
+| Property | Type | Description |
+| --- | --- | --- |
+| [attributes](./kibana-plugin-public.savedobjectsbulkupdateobject.attributes.md) | T
| |
+| [id](./kibana-plugin-public.savedobjectsbulkupdateobject.id.md) | string
| |
+| [references](./kibana-plugin-public.savedobjectsbulkupdateobject.references.md) | SavedObjectReference[]
| |
+| [type](./kibana-plugin-public.savedobjectsbulkupdateobject.type.md) | string
| |
+| [version](./kibana-plugin-public.savedobjectsbulkupdateobject.version.md) | string
| |
+
diff --git a/docs/development/core/public/kibana-plugin-public.savedobjectsbulkupdateobject.references.md b/docs/development/core/public/kibana-plugin-public.savedobjectsbulkupdateobject.references.md
index 3949eb809c3a0..fd24cfa13c688 100644
--- a/docs/development/core/public/kibana-plugin-public.savedobjectsbulkupdateobject.references.md
+++ b/docs/development/core/public/kibana-plugin-public.savedobjectsbulkupdateobject.references.md
@@ -1,11 +1,11 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObjectsBulkUpdateObject](./kibana-plugin-public.savedobjectsbulkupdateobject.md) > [references](./kibana-plugin-public.savedobjectsbulkupdateobject.references.md)
-
-## SavedObjectsBulkUpdateObject.references property
-
-Signature:
-
-```typescript
-references?: SavedObjectReference[];
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObjectsBulkUpdateObject](./kibana-plugin-public.savedobjectsbulkupdateobject.md) > [references](./kibana-plugin-public.savedobjectsbulkupdateobject.references.md)
+
+## SavedObjectsBulkUpdateObject.references property
+
+Signature:
+
+```typescript
+references?: SavedObjectReference[];
+```
diff --git a/docs/development/core/public/kibana-plugin-public.savedobjectsbulkupdateobject.type.md b/docs/development/core/public/kibana-plugin-public.savedobjectsbulkupdateobject.type.md
index b3bd0f7eb2580..d0c9b11316b46 100644
--- a/docs/development/core/public/kibana-plugin-public.savedobjectsbulkupdateobject.type.md
+++ b/docs/development/core/public/kibana-plugin-public.savedobjectsbulkupdateobject.type.md
@@ -1,11 +1,11 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObjectsBulkUpdateObject](./kibana-plugin-public.savedobjectsbulkupdateobject.md) > [type](./kibana-plugin-public.savedobjectsbulkupdateobject.type.md)
-
-## SavedObjectsBulkUpdateObject.type property
-
-Signature:
-
-```typescript
-type: string;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObjectsBulkUpdateObject](./kibana-plugin-public.savedobjectsbulkupdateobject.md) > [type](./kibana-plugin-public.savedobjectsbulkupdateobject.type.md)
+
+## SavedObjectsBulkUpdateObject.type property
+
+Signature:
+
+```typescript
+type: string;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.savedobjectsbulkupdateobject.version.md b/docs/development/core/public/kibana-plugin-public.savedobjectsbulkupdateobject.version.md
index 7608bc7aff909..ab1844430784b 100644
--- a/docs/development/core/public/kibana-plugin-public.savedobjectsbulkupdateobject.version.md
+++ b/docs/development/core/public/kibana-plugin-public.savedobjectsbulkupdateobject.version.md
@@ -1,11 +1,11 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObjectsBulkUpdateObject](./kibana-plugin-public.savedobjectsbulkupdateobject.md) > [version](./kibana-plugin-public.savedobjectsbulkupdateobject.version.md)
-
-## SavedObjectsBulkUpdateObject.version property
-
-Signature:
-
-```typescript
-version?: string;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObjectsBulkUpdateObject](./kibana-plugin-public.savedobjectsbulkupdateobject.md) > [version](./kibana-plugin-public.savedobjectsbulkupdateobject.version.md)
+
+## SavedObjectsBulkUpdateObject.version property
+
+Signature:
+
+```typescript
+version?: string;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.savedobjectsbulkupdateoptions.md b/docs/development/core/public/kibana-plugin-public.savedobjectsbulkupdateoptions.md
index 8a2ecefb73283..d3c29fa40dd30 100644
--- a/docs/development/core/public/kibana-plugin-public.savedobjectsbulkupdateoptions.md
+++ b/docs/development/core/public/kibana-plugin-public.savedobjectsbulkupdateoptions.md
@@ -1,19 +1,19 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObjectsBulkUpdateOptions](./kibana-plugin-public.savedobjectsbulkupdateoptions.md)
-
-## SavedObjectsBulkUpdateOptions interface
-
-
-Signature:
-
-```typescript
-export interface SavedObjectsBulkUpdateOptions
-```
-
-## Properties
-
-| Property | Type | Description |
-| --- | --- | --- |
-| [namespace](./kibana-plugin-public.savedobjectsbulkupdateoptions.namespace.md) | string
| |
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObjectsBulkUpdateOptions](./kibana-plugin-public.savedobjectsbulkupdateoptions.md)
+
+## SavedObjectsBulkUpdateOptions interface
+
+
+Signature:
+
+```typescript
+export interface SavedObjectsBulkUpdateOptions
+```
+
+## Properties
+
+| Property | Type | Description |
+| --- | --- | --- |
+| [namespace](./kibana-plugin-public.savedobjectsbulkupdateoptions.namespace.md) | string
| |
+
diff --git a/docs/development/core/public/kibana-plugin-public.savedobjectsbulkupdateoptions.namespace.md b/docs/development/core/public/kibana-plugin-public.savedobjectsbulkupdateoptions.namespace.md
index 0079e56684b75..2ea3feead9792 100644
--- a/docs/development/core/public/kibana-plugin-public.savedobjectsbulkupdateoptions.namespace.md
+++ b/docs/development/core/public/kibana-plugin-public.savedobjectsbulkupdateoptions.namespace.md
@@ -1,11 +1,11 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObjectsBulkUpdateOptions](./kibana-plugin-public.savedobjectsbulkupdateoptions.md) > [namespace](./kibana-plugin-public.savedobjectsbulkupdateoptions.namespace.md)
-
-## SavedObjectsBulkUpdateOptions.namespace property
-
-Signature:
-
-```typescript
-namespace?: string;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObjectsBulkUpdateOptions](./kibana-plugin-public.savedobjectsbulkupdateoptions.md) > [namespace](./kibana-plugin-public.savedobjectsbulkupdateoptions.namespace.md)
+
+## SavedObjectsBulkUpdateOptions.namespace property
+
+Signature:
+
+```typescript
+namespace?: string;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.savedobjectsclient.bulkcreate.md b/docs/development/core/public/kibana-plugin-public.savedobjectsclient.bulkcreate.md
index 426096d96c9ba..391b2f57205d5 100644
--- a/docs/development/core/public/kibana-plugin-public.savedobjectsclient.bulkcreate.md
+++ b/docs/development/core/public/kibana-plugin-public.savedobjectsclient.bulkcreate.md
@@ -1,13 +1,13 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObjectsClient](./kibana-plugin-public.savedobjectsclient.md) > [bulkCreate](./kibana-plugin-public.savedobjectsclient.bulkcreate.md)
-
-## SavedObjectsClient.bulkCreate property
-
-Creates multiple documents at once
-
-Signature:
-
-```typescript
-bulkCreate: (objects?: SavedObjectsBulkCreateObject[], options?: SavedObjectsBulkCreateOptions) => Promise>;
-```
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObjectsClient](./kibana-plugin-public.savedobjectsclient.md) > [bulkCreate](./kibana-plugin-public.savedobjectsclient.bulkcreate.md)
+
+## SavedObjectsClient.bulkCreate property
+
+Creates multiple documents at once
+
+Signature:
+
+```typescript
+bulkCreate: (objects?: SavedObjectsBulkCreateObject[], options?: SavedObjectsBulkCreateOptions) => Promise>;
+```
diff --git a/docs/development/core/public/kibana-plugin-public.savedobjectsclient.bulkget.md b/docs/development/core/public/kibana-plugin-public.savedobjectsclient.bulkget.md
index fc8b3c8258f9c..a54dfe72167a7 100644
--- a/docs/development/core/public/kibana-plugin-public.savedobjectsclient.bulkget.md
+++ b/docs/development/core/public/kibana-plugin-public.savedobjectsclient.bulkget.md
@@ -1,21 +1,21 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObjectsClient](./kibana-plugin-public.savedobjectsclient.md) > [bulkGet](./kibana-plugin-public.savedobjectsclient.bulkget.md)
-
-## SavedObjectsClient.bulkGet property
-
-Returns an array of objects by id
-
-Signature:
-
-```typescript
-bulkGet: (objects?: {
- id: string;
- type: string;
- }[]) => Promise>;
-```
-
-## Example
-
-bulkGet(\[ { id: 'one', type: 'config' }, { id: 'foo', type: 'index-pattern' } \])
-
+
+
+[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObjectsClient](./kibana-plugin-public.savedobjectsclient.md) > [bulkGet](./kibana-plugin-public.savedobjectsclient.bulkget.md)
+
+## SavedObjectsClient.bulkGet property
+
+Returns an array of objects by id
+
+Signature:
+
+```typescript
+bulkGet: (objects?: {
+ id: string;
+ type: string;
+ }[]) => Promise>;
+```
+
+## Example
+
+bulkGet(\[ { id: 'one', type: 'config' }, { id: 'foo', type: 'index-pattern' } \])
+
diff --git a/docs/development/core/public/kibana-plugin-public.savedobjectsclient.bulkupdate.md b/docs/development/core/public/kibana-plugin-public.savedobjectsclient.bulkupdate.md
index f39638575beb1..94ae9bb70ccda 100644
--- a/docs/development/core/public/kibana-plugin-public.savedobjectsclient.bulkupdate.md
+++ b/docs/development/core/public/kibana-plugin-public.savedobjectsclient.bulkupdate.md
@@ -1,26 +1,26 @@
-
-
-[Home](./index.md) > [kibana-plugin-public](./kibana-plugin-public.md) > [SavedObjectsClient](./kibana-plugin-public.savedobjectsclient.md) > [bulkUpdate](./kibana-plugin-public.savedobjectsclient.bulkupdate.md)
-
-## SavedObjectsClient.bulkUpdate() method
-
-Update multiple documents at once
-
-