Skip to content

Commit 1be1b8e

Browse files
Merge branch 'master' into kertal-pr-2020-01-27-get_sort_jest_test
2 parents b990240 + 4bb56c8 commit 1be1b8e

717 files changed

Lines changed: 17537 additions & 6834 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/CODEOWNERS

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
/src/legacy/core_plugins/kibana/public/dev_tools/ @elastic/kibana-app
1616
/src/legacy/core_plugins/metrics/ @elastic/kibana-app
1717
/src/legacy/core_plugins/vis_type_vislib/ @elastic/kibana-app
18+
/src/legacy/core_plugins/vis_type_xy/ @elastic/kibana-app
1819
# Exclude tutorials folder for now because they are not owned by Kibana app and most will move out soon
1920
/src/plugins/home/public @elastic/kibana-app
2021
/src/plugins/home/server/*.ts @elastic/kibana-app
@@ -28,15 +29,7 @@
2829
/src/plugins/dev_tools/ @elastic/kibana-app
2930

3031
# App Architecture
31-
/src/plugins/data/ @elastic/kibana-app-arch
32-
/src/plugins/embeddable/ @elastic/kibana-app-arch
33-
/src/plugins/expressions/ @elastic/kibana-app-arch
34-
/src/plugins/kibana_react/ @elastic/kibana-app-arch
35-
/src/plugins/kibana_utils/ @elastic/kibana-app-arch
36-
/src/plugins/navigation/ @elastic/kibana-app-arch
37-
/src/plugins/ui_actions/ @elastic/kibana-app-arch
38-
/src/plugins/visualizations/ @elastic/kibana-app-arch
39-
/x-pack/plugins/advanced_ui_actions/ @elastic/kibana-app-arch
32+
/packages/kbn-interpreter/ @elastic/kibana-app-arch
4033
/src/legacy/core_plugins/data/ @elastic/kibana-app-arch
4134
/src/legacy/core_plugins/elasticsearch/lib/create_proxy.js @elastic/kibana-app-arch
4235
/src/legacy/core_plugins/embeddable_api/ @elastic/kibana-app-arch
@@ -48,6 +41,19 @@
4841
/src/legacy/core_plugins/kibana/server/routes/api/suggestions/ @elastic/kibana-app-arch
4942
/src/legacy/core_plugins/visualizations/ @elastic/kibana-app-arch
5043
/src/legacy/server/index_patterns/ @elastic/kibana-app-arch
44+
/src/plugins/bfetch/ @elastic/kibana-app-arch
45+
/src/plugins/dashboard_embeddable_container/ @elastic/kibana-app-arch
46+
/src/plugins/data/ @elastic/kibana-app-arch
47+
/src/plugins/embeddable/ @elastic/kibana-app-arch
48+
/src/plugins/expressions/ @elastic/kibana-app-arch
49+
/src/plugins/inspector/ @elastic/kibana-app-arch
50+
/src/plugins/kibana_react/ @elastic/kibana-app-arch
51+
/src/plugins/kibana_utils/ @elastic/kibana-app-arch
52+
/src/plugins/management/ @elastic/kibana-app-arch
53+
/src/plugins/navigation/ @elastic/kibana-app-arch
54+
/src/plugins/ui_actions/ @elastic/kibana-app-arch
55+
/src/plugins/visualizations/ @elastic/kibana-app-arch
56+
/x-pack/plugins/advanced_ui_actions/ @elastic/kibana-app-arch
5157

5258
# APM
5359
/x-pack/legacy/plugins/apm/ @elastic/apm-ui

.github/workflows/pr-project-assigner.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
name: Assign a PR to project based on label
99
steps:
1010
- name: Assign to project
11-
uses: elastic/github-actions/project-assigner@v1.0.0
11+
uses: elastic/github-actions/project-assigner@v1.0.1
1212
id: project_assigner
1313
with:
1414
issue-mappings: |

.github/workflows/project-assigner.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
name: Assign issue or PR to project based on label
99
steps:
1010
- name: Assign to project
11-
uses: elastic/github-actions/project-assigner@v1.0.0
11+
uses: elastic/github-actions/project-assigner@v1.0.1
1212
id: project_assigner
1313
with:
1414
issue-mappings: '[{"label": "Team:AppArch", "projectName": "kibana-app-arch", "columnId": 6173895}, {"label": "Feature:Lens", "projectName": "Lens", "columnId": 6219363}, {"label": "Team:Canvas", "projectName": "canvas", "columnId": 6187593}]'

.i18nrc.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,10 @@
2222
"interpreter": "src/legacy/core_plugins/interpreter",
2323
"kbn": "src/legacy/core_plugins/kibana",
2424
"kbnDocViews": "src/legacy/core_plugins/kbn_doc_views",
25-
"management": ["src/legacy/core_plugins/management", "src/plugins/management"],
25+
"management": [
26+
"src/legacy/core_plugins/management",
27+
"src/plugins/management"
28+
],
2629
"kibana_react": "src/legacy/core_plugins/kibana_react",
2730
"kibana-react": "src/plugins/kibana_react",
2831
"kibana_utils": "src/plugins/kibana_utils",
@@ -43,6 +46,7 @@
4346
"visTypeTimeseries": ["src/legacy/core_plugins/vis_type_timeseries", "src/plugins/vis_type_timeseries"],
4447
"visTypeVega": "src/legacy/core_plugins/vis_type_vega",
4548
"visTypeVislib": "src/legacy/core_plugins/vis_type_vislib",
49+
"visTypeXy": "src/legacy/core_plugins/vis_type_xy",
4650
"visualizations": [
4751
"src/plugins/visualizations",
4852
"src/legacy/core_plugins/visualizations"

.sass-lint.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ files:
33
- 'src/legacy/core_plugins/metrics/**/*.s+(a|c)ss'
44
- 'src/legacy/core_plugins/timelion/**/*.s+(a|c)ss'
55
- 'src/legacy/core_plugins/vis_type_vislib/**/*.s+(a|c)ss'
6+
- 'src/legacy/core_plugins/vis_type_xy/**/*.s+(a|c)ss'
67
- 'x-pack/legacy/plugins/rollup/**/*.s+(a|c)ss'
78
- 'x-pack/legacy/plugins/security/**/*.s+(a|c)ss'
89
- 'x-pack/legacy/plugins/canvas/**/*.s+(a|c)ss'
Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
2-
3-
[Home](./index.md) &gt; [kibana-plugin-public](./kibana-plugin-public.md) &gt; [ChromeNavLink](./kibana-plugin-public.chromenavlink.md) &gt; [disableSubUrlTracking](./kibana-plugin-public.chromenavlink.disablesuburltracking.md)
4-
5-
## ChromeNavLink.disableSubUrlTracking property
6-
7-
> Warning: This API is now obsolete.
8-
>
9-
>
10-
11-
A flag that tells legacy chrome to ignore the link when tracking sub-urls
12-
13-
<b>Signature:</b>
14-
15-
```typescript
16-
readonly disableSubUrlTracking?: boolean;
17-
```
1+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
2+
3+
[Home](./index.md) &gt; [kibana-plugin-public](./kibana-plugin-public.md) &gt; [ChromeNavLink](./kibana-plugin-public.chromenavlink.md) &gt; [disableSubUrlTracking](./kibana-plugin-public.chromenavlink.disablesuburltracking.md)
4+
5+
## ChromeNavLink.disableSubUrlTracking property
6+
7+
> Warning: This API is now obsolete.
8+
>
9+
>
10+
11+
A flag that tells legacy chrome to ignore the link when tracking sub-urls
12+
13+
<b>Signature:</b>
14+
15+
```typescript
16+
readonly disableSubUrlTracking?: boolean;
17+
```
Lines changed: 33 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,33 @@
1-
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
2-
3-
[Home](./index.md) &gt; [kibana-plugin-public](./kibana-plugin-public.md) &gt; [ChromeNavLink](./kibana-plugin-public.chromenavlink.md)
4-
5-
## ChromeNavLink interface
6-
7-
8-
<b>Signature:</b>
9-
10-
```typescript
11-
export interface ChromeNavLink
12-
```
13-
14-
## Properties
15-
16-
| Property | Type | Description |
17-
| --- | --- | --- |
18-
| [active](./kibana-plugin-public.chromenavlink.active.md) | <code>boolean</code> | Indicates whether or not this app is currently on the screen. |
19-
| [baseUrl](./kibana-plugin-public.chromenavlink.baseurl.md) | <code>string</code> | The base route used to open the root of an application. |
20-
| [category](./kibana-plugin-public.chromenavlink.category.md) | <code>AppCategory</code> | The category the app lives in |
21-
| [disabled](./kibana-plugin-public.chromenavlink.disabled.md) | <code>boolean</code> | Disables a link from being clickable. |
22-
| [disableSubUrlTracking](./kibana-plugin-public.chromenavlink.disablesuburltracking.md) | <code>boolean</code> | A flag that tells legacy chrome to ignore the link when tracking sub-urls |
23-
| [euiIconType](./kibana-plugin-public.chromenavlink.euiicontype.md) | <code>string</code> | A EUI iconType that will be used for the app's icon. This icon takes precendence over the <code>icon</code> property. |
24-
| [hidden](./kibana-plugin-public.chromenavlink.hidden.md) | <code>boolean</code> | Hides a link from the navigation. |
25-
| [icon](./kibana-plugin-public.chromenavlink.icon.md) | <code>string</code> | A URL to an image file used as an icon. Used as a fallback if <code>euiIconType</code> is not provided. |
26-
| [id](./kibana-plugin-public.chromenavlink.id.md) | <code>string</code> | A unique identifier for looking up links. |
27-
| [linkToLastSubUrl](./kibana-plugin-public.chromenavlink.linktolastsuburl.md) | <code>boolean</code> | Whether or not the subUrl feature should be enabled. |
28-
| [order](./kibana-plugin-public.chromenavlink.order.md) | <code>number</code> | An ordinal used to sort nav links relative to one another for display. |
29-
| [subUrlBase](./kibana-plugin-public.chromenavlink.suburlbase.md) | <code>string</code> | A url base that legacy apps can set to match deep URLs to an application. |
30-
| [title](./kibana-plugin-public.chromenavlink.title.md) | <code>string</code> | The title of the application. |
31-
| [tooltip](./kibana-plugin-public.chromenavlink.tooltip.md) | <code>string</code> | A tooltip shown when hovering over an app link. |
32-
| [url](./kibana-plugin-public.chromenavlink.url.md) | <code>string</code> | A url that legacy apps can set to deep link into their applications. |
33-
1+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
2+
3+
[Home](./index.md) &gt; [kibana-plugin-public](./kibana-plugin-public.md) &gt; [ChromeNavLink](./kibana-plugin-public.chromenavlink.md)
4+
5+
## ChromeNavLink interface
6+
7+
8+
<b>Signature:</b>
9+
10+
```typescript
11+
export interface ChromeNavLink
12+
```
13+
14+
## Properties
15+
16+
| Property | Type | Description |
17+
| --- | --- | --- |
18+
| [active](./kibana-plugin-public.chromenavlink.active.md) | <code>boolean</code> | Indicates whether or not this app is currently on the screen. |
19+
| [baseUrl](./kibana-plugin-public.chromenavlink.baseurl.md) | <code>string</code> | The base route used to open the root of an application. |
20+
| [category](./kibana-plugin-public.chromenavlink.category.md) | <code>AppCategory</code> | The category the app lives in |
21+
| [disabled](./kibana-plugin-public.chromenavlink.disabled.md) | <code>boolean</code> | Disables a link from being clickable. |
22+
| [disableSubUrlTracking](./kibana-plugin-public.chromenavlink.disablesuburltracking.md) | <code>boolean</code> | A flag that tells legacy chrome to ignore the link when tracking sub-urls |
23+
| [euiIconType](./kibana-plugin-public.chromenavlink.euiicontype.md) | <code>string</code> | A EUI iconType that will be used for the app's icon. This icon takes precendence over the <code>icon</code> property. |
24+
| [hidden](./kibana-plugin-public.chromenavlink.hidden.md) | <code>boolean</code> | Hides a link from the navigation. |
25+
| [icon](./kibana-plugin-public.chromenavlink.icon.md) | <code>string</code> | A URL to an image file used as an icon. Used as a fallback if <code>euiIconType</code> is not provided. |
26+
| [id](./kibana-plugin-public.chromenavlink.id.md) | <code>string</code> | A unique identifier for looking up links. |
27+
| [linkToLastSubUrl](./kibana-plugin-public.chromenavlink.linktolastsuburl.md) | <code>boolean</code> | Whether or not the subUrl feature should be enabled. |
28+
| [order](./kibana-plugin-public.chromenavlink.order.md) | <code>number</code> | An ordinal used to sort nav links relative to one another for display. |
29+
| [subUrlBase](./kibana-plugin-public.chromenavlink.suburlbase.md) | <code>string</code> | A url base that legacy apps can set to match deep URLs to an application. |
30+
| [title](./kibana-plugin-public.chromenavlink.title.md) | <code>string</code> | The title of the application. |
31+
| [tooltip](./kibana-plugin-public.chromenavlink.tooltip.md) | <code>string</code> | A tooltip shown when hovering over an app link. |
32+
| [url](./kibana-plugin-public.chromenavlink.url.md) | <code>string</code> | A url that legacy apps can set to deep link into their applications. |
33+

docs/development/core/server/kibana-plugin-server.configdeprecationfactory.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ const provider: ConfigDeprecationProvider = ({ rename, unused }) => [
3030
| Method | Description |
3131
| --- | --- |
3232
| [rename(oldKey, newKey)](./kibana-plugin-server.configdeprecationfactory.rename.md) | Rename a configuration property from inside a plugin's configuration path. Will log a deprecation warning if the oldKey was found and deprecation applied. |
33-
| [renameFromRoot(oldKey, newKey)](./kibana-plugin-server.configdeprecationfactory.renamefromroot.md) | Rename a configuration property from the root configuration. Will log a deprecation warning if the oldKey was found and deprecation applied.<!-- -->This should be only used when renaming properties from different configuration's path. To rename properties from inside a plugin's configuration, use 'rename' instead. |
33+
| [renameFromRoot(oldKey, newKey, silent)](./kibana-plugin-server.configdeprecationfactory.renamefromroot.md) | Rename a configuration property from the root configuration. Will log a deprecation warning if the oldKey was found and deprecation applied.<!-- -->This should be only used when renaming properties from different configuration's path. To rename properties from inside a plugin's configuration, use 'rename' instead. |
3434
| [unused(unusedKey)](./kibana-plugin-server.configdeprecationfactory.unused.md) | Remove a configuration property from inside a plugin's configuration path. Will log a deprecation warning if the unused key was found and deprecation applied. |
3535
| [unusedFromRoot(unusedKey)](./kibana-plugin-server.configdeprecationfactory.unusedfromroot.md) | Remove a configuration property from the root configuration. Will log a deprecation warning if the unused key was found and deprecation applied.<!-- -->This should be only used when removing properties from outside of a plugin's configuration. To remove properties from inside a plugin's configuration, use 'unused' instead. |
3636

docs/development/core/server/kibana-plugin-server.configdeprecationfactory.renamefromroot.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This should be only used when renaming properties from different configuration's
1111
<b>Signature:</b>
1212

1313
```typescript
14-
renameFromRoot(oldKey: string, newKey: string): ConfigDeprecation;
14+
renameFromRoot(oldKey: string, newKey: string, silent?: boolean): ConfigDeprecation;
1515
```
1616

1717
## Parameters
@@ -20,6 +20,7 @@ renameFromRoot(oldKey: string, newKey: string): ConfigDeprecation;
2020
| --- | --- | --- |
2121
| oldKey | <code>string</code> | |
2222
| newKey | <code>string</code> | |
23+
| silent | <code>boolean</code> | |
2324

2425
<b>Returns:</b>
2526

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
2+
3+
[Home](./index.md) &gt; [kibana-plugin-server](./kibana-plugin-server.md) &gt; [HttpServerInfo](./kibana-plugin-server.httpserverinfo.md) &gt; [host](./kibana-plugin-server.httpserverinfo.host.md)
4+
5+
## HttpServerInfo.host property
6+
7+
The hostname of the server
8+
9+
<b>Signature:</b>
10+
11+
```typescript
12+
host: string;
13+
```

0 commit comments

Comments
 (0)