Skip to content

Commit 94296d3

Browse files
Merge branch 'master' into np/watcher/out-of-legacy
2 parents b680298 + c6f9eff commit 94296d3

File tree

1,241 files changed

+27252
-14589
lines changed

Some content is hidden

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

1,241 files changed

+27252
-14589
lines changed

.eslintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ bower_components
99
/built_assets
1010
/html_docs
1111
/src/plugins/data/common/es_query/kuery/ast/_generated_/**
12+
/src/legacy/core_plugins/vis_type_timelion/public/_generated_/**
1213
src/legacy/core_plugins/vis_type_vislib/public/vislib/__tests__/lib/fixtures/mock_data
1314
/src/legacy/ui/public/angular-bootstrap
1415
/src/legacy/ui/public/flot-charts

.github/CODEOWNERS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
/src/legacy/core_plugins/kibana/public/home/ @elastic/kibana-app
1616
/src/legacy/core_plugins/kibana/public/dev_tools/ @elastic/kibana-app
1717
/src/legacy/core_plugins/metrics/ @elastic/kibana-app
18+
/src/legacy/core_plugins/vis_type_vislib/ @elastic/kibana-app
1819
/src/plugins/home/ @elastic/kibana-app
1920
/src/plugins/kibana_legacy/ @elastic/kibana-app
2021
/src/plugins/timelion/ @elastic/kibana-app
@@ -128,6 +129,7 @@
128129
# Kibana Alerting Services
129130
/x-pack/legacy/plugins/alerting/ @elastic/kibana-alerting-services
130131
/x-pack/legacy/plugins/actions/ @elastic/kibana-alerting-services
132+
/x-pack/plugins/event_log/ @elastic/kibana-alerting-services
131133
/x-pack/plugins/task_manager/ @elastic/kibana-alerting-services
132134
/x-pack/test/alerting_api_integration/ @elastic/kibana-alerting-services
133135
/x-pack/test/plugin_api_integration/plugins/task_manager/ @elastic/kibana-alerting-services

.i18nrc.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
"interpreter": "src/legacy/core_plugins/interpreter",
2222
"kbn": "src/legacy/core_plugins/kibana",
2323
"kbnDocViews": "src/legacy/core_plugins/kbn_doc_views",
24-
"kbnVislibVisTypes": "src/legacy/core_plugins/vis_type_vislib",
2524
"management": ["src/legacy/core_plugins/management", "src/plugins/management"],
2625
"kibana_react": "src/legacy/core_plugins/kibana_react",
2726
"kibana-react": "src/plugins/kibana_react",
@@ -41,6 +40,7 @@
4140
"visTypeTagCloud": "src/legacy/core_plugins/vis_type_tagcloud",
4241
"visTypeTimeseries": "src/legacy/core_plugins/vis_type_timeseries",
4342
"visTypeVega": "src/legacy/core_plugins/vis_type_vega",
43+
"visTypeVislib": "src/legacy/core_plugins/vis_type_vislib",
4444
"visualizations": [
4545
"src/plugins/visualizations",
4646
"src/legacy/core_plugins/visualizations"
@@ -50,4 +50,4 @@
5050
"src/legacy/ui/ui_render/ui_render_mixin.js"
5151
],
5252
"translations": []
53-
}
53+
}
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; [category](./kibana-plugin-public.appbase.category.md)
4+
5+
## AppBase.category property
6+
7+
The category definition of the product See [AppCategory](./kibana-plugin-public.appcategory.md) See DEFAULT\_APP\_CATEGORIES for more reference
8+
9+
<b>Signature:</b>
10+
11+
```typescript
12+
category?: AppCategory;
13+
```

docs/development/core/public/kibana-plugin-public.appbase.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ export interface AppBase
1616
| Property | Type | Description |
1717
| --- | --- | --- |
1818
| [capabilities](./kibana-plugin-public.appbase.capabilities.md) | <code>Partial&lt;Capabilities&gt;</code> | Custom capabilities defined by the app. |
19+
| [category](./kibana-plugin-public.appbase.category.md) | <code>AppCategory</code> | The category definition of the product See [AppCategory](./kibana-plugin-public.appcategory.md) See DEFAULT\_APP\_CATEGORIES for more reference |
1920
| [chromeless](./kibana-plugin-public.appbase.chromeless.md) | <code>boolean</code> | Hide the UI chrome when the application is mounted. Defaults to <code>false</code>. Takes precedence over chrome service visibility settings. |
2021
| [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. |
2122
| [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. |
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; [AppCategory](./kibana-plugin-public.appcategory.md) &gt; [ariaLabel](./kibana-plugin-public.appcategory.arialabel.md)
4+
5+
## AppCategory.ariaLabel property
6+
7+
If the visual label isn't appropriate for screen readers, can override it here
8+
9+
<b>Signature:</b>
10+
11+
```typescript
12+
ariaLabel?: 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; [AppCategory](./kibana-plugin-public.appcategory.md) &gt; [euiIconType](./kibana-plugin-public.appcategory.euiicontype.md)
4+
5+
## AppCategory.euiIconType property
6+
7+
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
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; [AppCategory](./kibana-plugin-public.appcategory.md) &gt; [label](./kibana-plugin-public.appcategory.label.md)
4+
5+
## AppCategory.label property
6+
7+
Label used for cateogry name. Also used as aria-label if one isn't set.
8+
9+
<b>Signature:</b>
10+
11+
```typescript
12+
label: string;
13+
```
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
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; [AppCategory](./kibana-plugin-public.appcategory.md)
4+
5+
## AppCategory interface
6+
7+
A category definition for nav links to know where to sort them in the left hand nav
8+
9+
<b>Signature:</b>
10+
11+
```typescript
12+
export interface AppCategory
13+
```
14+
15+
## Properties
16+
17+
| Property | Type | Description |
18+
| --- | --- | --- |
19+
| [ariaLabel](./kibana-plugin-public.appcategory.arialabel.md) | <code>string</code> | If the visual label isn't appropriate for screen readers, can override it here |
20+
| [euiIconType](./kibana-plugin-public.appcategory.euiicontype.md) | <code>string</code> | 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 |
21+
| [label](./kibana-plugin-public.appcategory.label.md) | <code>string</code> | Label used for cateogry name. Also used as aria-label if one isn't set. |
22+
| [order](./kibana-plugin-public.appcategory.order.md) | <code>number</code> | 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) |
23+
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; [AppCategory](./kibana-plugin-public.appcategory.md) &gt; [order](./kibana-plugin-public.appcategory.order.md)
4+
5+
## AppCategory.order property
6+
7+
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)
8+
9+
<b>Signature:</b>
10+
11+
```typescript
12+
order?: number;
13+
```

0 commit comments

Comments
 (0)