Skip to content

Commit bbdefb8

Browse files
committed
Merge branch 'master' of github.com:elastic/kibana into savedObjects/fix-export-all
2 parents c185132 + 6d1be8e commit bbdefb8

835 files changed

Lines changed: 14894 additions & 8373 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.

.ci/jobs.yml

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,34 @@
11
JOB:
2-
- intake
3-
- firefoxSmoke
2+
- kibana-intake
3+
- x-pack-intake
4+
- kibana-firefoxSmoke
45
- kibana-ciGroup1
56
- kibana-ciGroup2
67
- kibana-ciGroup3
78
- kibana-ciGroup4
89
- kibana-ciGroup5
910
- kibana-ciGroup6
10-
# - kibana-visualRegression
11+
- kibana-ciGroup7
12+
- kibana-ciGroup8
13+
- kibana-ciGroup9
14+
- kibana-ciGroup10
15+
- kibana-ciGroup11
16+
- kibana-ciGroup12
17+
- kibana-visualRegression
1118

1219
# make sure all x-pack-ciGroups are listed in test/scripts/jenkins_xpack_ci_group.sh
20+
- x-pack-firefoxSmoke
1321
- x-pack-ciGroup1
1422
- x-pack-ciGroup2
1523
- x-pack-ciGroup3
1624
- x-pack-ciGroup4
1725
- x-pack-ciGroup5
18-
# - x-pack-visualRegression
26+
- x-pack-ciGroup6
27+
- x-pack-ciGroup7
28+
- x-pack-ciGroup8
29+
- x-pack-ciGroup9
30+
- x-pack-ciGroup10
31+
- x-pack-visualRegression
1932

2033
# `~` is yaml for `null`
2134
exclude: ~

.ci/run.sh

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ source src/dev/ci_setup/setup.sh
1111
source src/dev/ci_setup/checkout_sibling_es.sh
1212

1313
case "$JOB" in
14-
intake)
14+
kibana-intake)
1515
./test/scripts/jenkins_unit.sh
1616
;;
1717
kibana-ciGroup*)
@@ -21,16 +21,22 @@ kibana-ciGroup*)
2121
kibana-visualRegression*)
2222
./test/scripts/jenkins_visual_regression.sh
2323
;;
24-
firefoxSmoke*)
24+
kibana-firefoxSmoke*)
2525
./test/scripts/jenkins_firefox_smoke.sh
2626
;;
27+
x-pack-intake)
28+
./test/scripts/jenkins_xpack.sh
29+
;;
2730
x-pack-ciGroup*)
2831
export CI_GROUP="${JOB##x-pack-ciGroup}"
2932
./test/scripts/jenkins_xpack_ci_group.sh
3033
;;
3134
x-pack-visualRegression*)
3235
./test/scripts/jenkins_xpack_visual_regression.sh
3336
;;
37+
x-pack-firefoxSmoke*)
38+
./test/scripts/jenkins_xpack_firefox_smoke.sh
39+
;;
3440
*)
3541
echo "JOB '$JOB' is not implemented."
3642
exit 1

.eslintrc.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ const ELASTIC_LICENSE_HEADER = `
3131
`;
3232

3333
module.exports = {
34+
root: true,
35+
3436
extends: ['@elastic/eslint-config-kibana', 'plugin:@elastic/eui/recommended'],
3537

3638
overrides: [
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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; [App](./kibana-plugin-public.app.md)
4+
5+
## App interface
6+
7+
Extension of [common app properties](./kibana-plugin-public.appbase.md) with the mount function.
8+
9+
<b>Signature:</b>
10+
11+
```typescript
12+
export interface App extends AppBase
13+
```
14+
15+
## Properties
16+
17+
| Property | Type | Description |
18+
| --- | --- | --- |
19+
| [mount](./kibana-plugin-public.app.mount.md) | <code>(context: AppMountContext, params: AppMountParameters) =&gt; AppUnmount &#124; Promise&lt;AppUnmount&gt;</code> | A mount function called when the user navigates to this app's route. |
20+
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-public](./kibana-plugin-public.md) &gt; [App](./kibana-plugin-public.app.md) &gt; [mount](./kibana-plugin-public.app.mount.md)
4+
5+
## App.mount property
6+
7+
A mount function called when the user navigates to this app's route.
8+
9+
<b>Signature:</b>
10+
11+
```typescript
12+
mount: (context: AppMountContext, params: AppMountParameters) => AppUnmount | Promise<AppUnmount>;
13+
```
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-public](./kibana-plugin-public.md) &gt; [AppBase](./kibana-plugin-public.appbase.md) &gt; [capabilities](./kibana-plugin-public.appbase.capabilities.md)
4+
5+
## AppBase.capabilities property
6+
7+
Custom capabilities defined by the app.
8+
9+
<b>Signature:</b>
10+
11+
```typescript
12+
capabilities?: Partial<Capabilities>;
13+
```
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-public](./kibana-plugin-public.md) &gt; [AppBase](./kibana-plugin-public.appbase.md) &gt; [euiIconType](./kibana-plugin-public.appbase.euiicontype.md)
4+
5+
## AppBase.euiIconType property
6+
7+
A EUI iconType that will be used for the app's icon. This icon takes precendence over the `icon` property.
8+
9+
<b>Signature:</b>
10+
11+
```typescript
12+
euiIconType?: string;
13+
```
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-public](./kibana-plugin-public.md) &gt; [AppBase](./kibana-plugin-public.appbase.md) &gt; [icon](./kibana-plugin-public.appbase.icon.md)
4+
5+
## AppBase.icon property
6+
7+
A URL to an image file used as an icon. Used as a fallback if `euiIconType` is not provided.
8+
9+
<b>Signature:</b>
10+
11+
```typescript
12+
icon?: string;
13+
```
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
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; [AppBase](./kibana-plugin-public.appbase.md) &gt; [id](./kibana-plugin-public.appbase.id.md)
4+
5+
## AppBase.id property
6+
7+
<b>Signature:</b>
8+
9+
```typescript
10+
id: string;
11+
```
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
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; [AppBase](./kibana-plugin-public.appbase.md)
4+
5+
## AppBase interface
6+
7+
8+
<b>Signature:</b>
9+
10+
```typescript
11+
export interface AppBase
12+
```
13+
14+
## Properties
15+
16+
| Property | Type | Description |
17+
| --- | --- | --- |
18+
| [capabilities](./kibana-plugin-public.appbase.capabilities.md) | <code>Partial&lt;Capabilities&gt;</code> | Custom capabilities defined by the app. |
19+
| [euiIconType](./kibana-plugin-public.appbase.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. |
20+
| [icon](./kibana-plugin-public.appbase.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. |
21+
| [id](./kibana-plugin-public.appbase.id.md) | <code>string</code> | |
22+
| [order](./kibana-plugin-public.appbase.order.md) | <code>number</code> | An ordinal used to sort nav links relative to one another for display. |
23+
| [title](./kibana-plugin-public.appbase.title.md) | <code>string</code> | The title of the application. |
24+
| [tooltip$](./kibana-plugin-public.appbase.tooltip$.md) | <code>Observable&lt;string&gt;</code> | An observable for a tooltip shown when hovering over app link. |
25+

0 commit comments

Comments
 (0)